blog@yourbrowser ~ $ cd /posts
blog@yourbrowser ~ $ cat blog_posts.md
-
Keyboard Journey Part 1: My new Split Keyboard
(August 09, 2025)I got myself an ortholinear split keyboard. These are my first experiences and my current setup.
-
Writing a Webserver in ARM64 Assembly
(July 31, 2025)I made a Webserver in ARM64 Assembly. This was incredibly interesting but also incredibly hard, what you can kinda expect when using assembly.
-
Flowlang Pt.4 - Garbage Collection
(July 22, 2025)I added working garbage collection to my own Programming language. It uses a Mark-And-Sweep strategy and leverages Zigs Allocator interface for seemless integration into the existing functionality.
-
Flowlang Pt.3 - Standalone Compiler
(July 20, 2025)The compile times got to slow for my liking, so I looked into a semi-correct way to make the compiler standalone. Now the compilation of flow code is blazingly fast© and you don’t need to have the Zig compiler installed to use Flowlang.
-
My 2024 Coding Journey
(January 01, 2025) -
Flowlang Pt.2 - Integration Testing
(December 08, 2024)I added Integration Tests to Flowlang to ensure correctness of the implementation and work against regressions when adding new features.
-
Flowlang Pt.1 - Introduction
(November 24, 2024)I am building my own programming language. It’s inspired by Golang and aims to be a simple, compiled language. It is implemented in Zig and compiles down to a custom bytecode, which is then ran by a stack-based VM.
-
Zine x Tailwind
(November 18, 2024)Bringing Tailwind into Zine was as easy as installing Tailwinds CLI-Tool and telling the Build System to use it. It brought back some of the fun in writing CSS and made my life designing and building pretty Webpages a whole lot simpler.
-
Exploring the Zig Buildsystem
(October 29, 2024)I made my own Command Line Parsing Library and used it as an excuse to explore the possibilities of comptime and the buildsystem.
-
How I Convinced My Teacher To Use Zig
(October 11, 2024)I used Zig instead of Python for an exercise, completely deviated from the given code example, and my teacher loved it.