You are here |
marcmutz.wordpress.com | ||
| | | |
miparnisariblog.wordpress.com
|
|
| | | | Before March 2023 I couldn't for the life of me understand what was going on in the AWS VPC dashboard. I mean, look at the length of the scrolling bar on the left-hand panel! So, with the goal of figuring out the various resources involved in networking, I read (most of) this book: AWS Networking... | |
| | | |
futurecoder101.wordpress.com
|
|
| | | | There are different reasons and motivations that drew me to learn how to code and become a future software developer, the main ones are the opportunity to build and see something from scratch become important and useful to other people, and the sheer joy to find solutions to problems! If you're like me, someone searching... | |
| | | |
miparnisariblog.wordpress.com
|
|
| | | | package main import ( "context" "fmt" "os" "os/signal" "time" ) func main() { fmt.Println("Press Ctrl+C to exit") ctx, stop := signal.NotifyContext(context.Background(), os.Interrupt, os.Kill) defer stop() waitForExit := make(chan struct{}) go func(ctx context.Context) { for { select { case <-ctx.Done(): fmt.Println("before exit") time.Sleep(1 * time.Second) fmt.Println("after exit") waitForExit <- struct{}{} return default: fmt.Println("long running task") time.Sleep(1... | |
| | | |
ameeracademy.school.blog
|
|
| | Hi, I just published a blog post about documenting software architecture: https://herbertograca.com/2019/08/12/documenting-software-architecture/ Would be nice to get some feedback on it. Tkx. submitted by /u/hgraca [link] [comments] from Software Development - methodologies, techniques, and tools. Covering Agile, RUP, Waterfall + more! https://ift.tt/2YZcO08 |