/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

jimlawless.net
| | schadokar.dev
2.1 parsecs away

Travel
| | Convert Hexadecimal to Decimal and Decimal to Hexadecimal
| | masnun.com
2.2 parsecs away

Travel
| | In Go or Golang, declaring an interface is pretty simple and easy. type Printer interface { Print(string) } We just defined an interface named Printerthat required an implementer to have a method named Printwhich takes a stringparameter and returns nothing. Interfaces are implemented implicitly in Go. Any type that has the Print(string)method implements the interface. [...]
| | golangtutorials.blogspot.com
2.4 parsecs away

Travel
| | Other topics in this series - Table of Contents Good code should also be maintainable. If code follows a standard format for writing it be...
| | boats.gitlab.io
22.6 parsecs away

Travel
| I'm really excited to share with you an experiment that I've been working on for the past 5 or 6 weeks. It's a Rust library called shifgrethor. shifgrethor implements a garbage collector in Rust with an API I believe to be properly memory safe. I'll be going through all of the technical details in future blog posts, so I want to kick this series off with a high level overview of the project's purpose and design decisions.