powRSS
Home Recent Glimpses Shuffle Blogs Random

Mon May 16

Hey friend, We started reading Team Topologies in a book club at work. I'm still in the first 100 pages of the book, but one chapter changed my perspective, and I want to share that with you. Before, I thought that not all engineering managers (or team leaders) needed to be great engineers. To be more specific, I...
Codemeta Harvester This is a harvester for software metadata. It actively attempts to detect and convert software metadata in source code repositories and converts this to a unified codemeta representation. The tool is implemented as a simple POSIX shell script that in turn invokes a number of tools to do the actual...

vknabel

4y
Iterating over a map in Go is not predictable. This is a design decision to avoid relying on memory layout. for k, v := range map { // always prints different results! fmt.Printf("%s: %s\n", k, v) }