/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

fernandocorreia.dev
| | yasoob.me
4.3 parsecs away

Travel
| | Hi people! I am working at ASAPP and a lot of my work involves writing Golang code. This is the first time I am working with Golang full-time. I picked up a couple of tricks from my colleagues and mentors here and would like to share them with you. In this particular post, I will talk about the empty struct. There was a scenario where I wanted to check if two slices contained the same elements or not.
| | nhigham.com
4.4 parsecs away

Travel
| | The MATLAB output >> A = rand(2); whos Name Size Bytes Class Attributes A 2x2 32 double will be familiar to seasoned users. Consider this, however, from MATLAB R2016b: >> s = string({'One','Two'}) s = 1×2 string array "One" "Two" At first sight, you might not spot anything unusual, other than the new string datatype....
| | schadokar.dev
3.1 parsecs away

Travel
| | Conversion between byte array to hex string and hex string to byte array.
| | boats.gitlab.io
24.6 parsecs away

Travel
| In the previous post I said that in the second post in the series we'd talk about how rooting works. However, as I sat down to write that post, I realized that it would be a good idea to back up and give an initial overview of how a tracing garbage collector works - and in particular, how the underlying garbage collector in shifgrethor is implemented. In the abstract, we can think of the memory of a Rust program with garbage collection as being divided into three sections: the stack, the "unmanaged" heap...