Back to Logs

Hello World: Building a Minimalist Portfolio

SYSTEMSREACT

This is my first blog post. I wanted a place to log my thoughts about low-level systems programming, embedded firmware, and computer architecture.

Why a Blog?

Writing forces clarity. By documenting my progress building kernels, firmware image packages, and RISC-V assemblers, I can crystallize what I learn.

Here is some example code:

c
#include <stdio.h>

int main() {
    printf("Hello from the kernel ring buffer!\n");
    return 0;
}

Stay tuned for more updates.