About the author
A cool thing about a Go map or a dictionary, is that if a key is not initialized, then it returns the default value.
Here's an example:
intmap := make(map[int]bool)
Suppose now you add an entry into intmap with:
intmap[1] = true
And you retrieve a non-existent key:
boolval := intmap[2]
boolval will then contain a value of false, the default value for a boolean in Go.
How to free more space on your home drive by redirecting the location for SDKs in RAD Studio
Learn the command line used to compile System.pas in Delphi
A method to design records so that they're allocated on a specific byte boundary, such as 16 bytes, 512 bytes, 4096 bytes, etc.
Learn why the map is cool in Go!