Explore >> Select a destination


You are here

markphelps.me
| | kristoff.it
4.3 parsecs away

Travel
| | Let's take a quick look at what compile-time execution looks like in Zig.
| | blog.jak-linux.org
5.0 parsecs away

Travel
| | (What follows is an excerpt from my master's thesis, almost all of section 2.1, quickly introducing Go to people familiar with CS) Go is an imperative programming language for concurrent programming created at and mainly developed by Google, initially mostly by Robert Griesemer, Rob Pike, and Ken Thompson. Design of the language started in 2007, and an initial version was released in 2009; with the first stable version, 1.0 released in 2012 1.
| | blog.nuculabs.de
4.5 parsecs away

Travel
| | Hi ?? In this article I want to highlight a simple pattern for sorting a slice in Go on multiple keys. Given the following structure, let's say we want to sort it in ascending order after Version, Generation and Time. 1 2 3 4 5 type TheStruct struct { Generation int Time int Version int } The way we sort slices in Go is by using the sort interface or one of the sort.Slice functions. To sort the slice after the above criteria we'll call slice.Sort with the following function.
| | ankane.org
31.9 parsecs away

Travel
| Running Rails 4 with attr_accessible? Upgrade in three safe and easy steps 1 First, log all instances of forbidden attributes. Add to...