/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

juandebravo.com
| | codewithstyle.info
6.7 parsecs away

Travel
| | Recently, after three years of focusing mainly on the .NET platform, I've changed jobs. My current company uses Scala for server-side programming in t
| | korz.dev
6.9 parsecs away

Travel
| | This is a small interpreter for BF I wrote about a month ago. Nothing new, but I thought I might share it anyway. A small usage example: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 package de.niklaskorz.brainfuck class Interpreter { var offset = 0 var data = new Array[Char](30000) var loopStart = new scala.collection.mutable.Stack[Int] def eval(source: String) { var i = 0 while (i < source.
| | jakewharton.com
6.2 parsecs away

Travel
| |
| | mrcat.au
28.4 parsecs away

Travel
| I've started learning Zig, a new programming language in the same problem space as C, and it has some features I really like. While it's not memory-safe in the Rust way, it has a lot of compile time and runtime checks to prevent common footguns. It has packed structs and variable-width integers to allow for easy parsing of bitpacked binary formats. Its comptime metaprogramming capabilities are spectacular. And it even interoperates seamlessly with C!