Remembering why I don't write React anymore

After a couple of years of not writing any React I decided to give React Native a shot. I used Cursor to create a prototype to see how viable this would be. It was all great, till I made the mistake of looking at the codebase. To be fair to…

Never thought I'd say this, but I miss errors

For the last month on stream I've been working on an embedded program. The first part of writing a display driver went down pretty smoothly, call it beginners luck or whatever but I was like, this is a lot of fun. Until I stumbled upon the ESP-01S, which…

Off by 7

Was trying to figure out why only four lines were printed on the display as I was writing the driver this morning, took me a whole hour, re-read the datasheet like ten times only to realize that I made the hexadecimal rookie mistake. I was printing 0x01instead of 0xFF and…

I miss errors

Today I made a bit of progress with the display driver I have been attempting to write. Got a lot of the issues with the Zig version 0.14, mostly a skill issue on my part as I did not know how to fetch an untagged version of the dependency.…

Embedded programming time

This is something I've always wanted to do, but never did anything about. Probably because did not know where to start. Recently I came across Micro Zig which was the push I needed to finally commit to it. Mainly because it narrowed the hardware for me. I'…

Scrollbars are awesome

Today I hacked my scrollbar to work as it does on the browser. Hacked because, I couldn't get the math right and kept missing the bottom by a bit. So when it reaches the end I just put it in the right place. I know it's…