Explore >> Select a destination


You are here

blog.jak-linux.org
| | blog.percywegmann.com
3.5 parsecs away

Travel
| | Don't Overthink It
| | benhoyt.com
3.3 parsecs away

Travel
| | A brief introduction to Go for programmers who haven't used Go before: Why use it? The standard library. And the language itself.
| | akashgoswami.dev
3.7 parsecs away

Travel
| | A quick intro to the Go programming language, its advantages, what its main uses are, how it's used in companies like Monzo and how you can get started with writing your own Go programs.
| | tmandry.gitlab.io
25.4 parsecs away

Travel
| In Part 1, we covered how async fns in Rust are compiled to state machines. We saw that the internal compiler implementation uses generators and the yield statement to facilitate this transformation. We also saw that the optimal way to lay out one of these state machines in memory is using an enum-like representation, similar to the following: enum SumGenerator{Unresumed{xs: Vec},Suspend0{xs: Vec,iter0: Iter<'self,i32>,sum: i32 },Suspend1{xs: Vec,iter1: Iter<'self,i32>,sum: i32 },Returned}Each variable s...