/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

jurajmajerik.com
| | mfbmina.dev
4.7 parsecs away

Travel
| | One of the best Go features is how easy we can use concurrency. The language gives us goroutines, which are like lightweight threads managed by the Go runtime. It help us to run several functions at the same instant and is very helpful if you wish to improve the performance of your application. Using this feature is easy as adding the go keyword before any function call. This will make the function run concurrently. To make it simpler, let's show you the code. Here I've written the SleepSort algorithm, w...
| | infinitedigits.co
4.1 parsecs away

Travel
| | Exploring meta-behaviors.
| | pliutau.com
4.4 parsecs away

Travel
| | Software Engineering Lead with a passion for APIs, Web, Cloud, Microservices, DevOps, Kubernetes etc. Engineering Lead at solsten.io
| | mrcat.au
25.8 parsecs away

Travel
| I've started learning Zig, a new programming language in the same problem space as C, and it has some features I really like. While it's not memory-safe in the Rust way, it has a lot of compile time and runtime checks to prevent common footguns. It has packed structs and variable-width integers to allow for easy parsing of bitpacked binary formats. Its comptime metaprogramming capabilities are spectacular. And it even interoperates seamlessly with C!