309 subscribers
51 photos
1 video
2 files
102 links
Be careful with what you know. That's where most people's troubles begin.
Download Telegram
Forwarded from Dark horse (Fearless Soul๐Ÿคด๐Ÿ‘จโ€๐Ÿฆฝ)
You work 8 hours to live 4.
You work 6 days to enjoy 1.
You work 8 hours to eat in 15 minutes.
Work 8 hours of sleep 5
You work all year just to take a week or two vacation.
You work all your life to retire in old age.
And watch only your last breaths.
Eventually, you realize that life is nothing but a parody of yourself practicing your own oblivion.
We have become so accustomed to material and social slavery that we no longer see the chains..
Life is a short trip,
Live it up!
u like the environment management idea, write me a simple scenario for this kind of problem

Sure, here's a simple scenario for the environment management problem:

Suppose you are working on a Go project that requires the use of a specific version of Go. In your development environment, you have Go installed, but the version installed is not the one you need for your project. To solve this problem, you can create a script that sets up the environment by downloading and installing the required version of Go.

Here's an example of how you can implement this solution using the os/exec package in Golang:

package main

import (
"fmt"
"os"
"os/exec"
)

func main() {
// Check if the required version of Go is already installed
cmd := exec.Command("go", "version")
out, err := cmd.CombinedOutput()
if err != nil {
fmt.Println("Go version not found. Installing...")

// Download and install the required version of Go
cmd = exec.Command("curl", "-L", "https://dl.google.com/go/go1.19.2.linux-amd64.tar.gz")
err = cmd.Run()
if err != nil {
fmt.Println("Error downloading Go version:", err)
return
}

cmd = exec.Command("tar", "-xzvf", "go1.19.2.linux-amd64.tar.gz")
err = cmd.Run()
if err != nil {
fmt.Println("Error extracting Go version:", err)
return
}

cmd = exec.Command("mv", "go1.19.2", "go")
err = cmd.Run()
if err != nil {
fmt.Println("Error moving Go version:", err)
return
}

fmt.Println("Go version installed successfully!")
} else {
fmt.Println("Go version found.")
}
}
In this script, we first check if the required version of Go is already installed by running the "go version" command. If the version is not found, we download and install the required version of Go using "curl" and "tar". Finally, we move the extracted Go version to the "go" directory.

This script can be run in your CI/CD pipeline to ensure that the required version of Go is available in the environment before running your Go application.
โค1๐Ÿ’ฉ1
๐Ÿ’ฉ1
Quick insight on how Github Self Hosted Runners work
๐Ÿ’ฉ1
You either die a hero, or you live long enough to see yourself create an online course
๐Ÿ˜7๐Ÿ’ฉ1
Such a good way to start the Morning
โค8
Future of astro might be even more interesting, I have been playing with astro for quite a while and I have been amazed by what it's capable of. It really makes development simpler.

This article is really giving me goosebumps
https://astro.build/blog/future-of-astro-server-islands/?abc
๐Ÿ‘2
No automated tool can tell you if your page is accessible, but WAVE facilitates human evaluation and educates about accessibility issues. All analysis is done entirely within the Chrome browser allowing secure valuation of intranet, local, password protected, and other sensitive web pages.

https://chromewebstore.google.com/detail/wave-evaluation-tool/jbbplnpkjmmeebjpijfedlgcdilocofh?pli=1
๐Ÿ”ฅ1๐Ÿ’ฉ1