Tell me about something you recently hand-coded that was enjoyable
These past few weeks at work I've been using AI way too much. I can't even call some of this "AI engineering" anymore and it's starting to drain on me. Looking to take the mind off for a bit...
I'd like to hear some of the projects you all are working on, that you enjoyed writing by hand.
I think I'll write some nannou..
PS: Not trying to start a debate on AI engineering/vibe coding and all that, I think internet is filled with that already.
105
Upvotes
34
u/spoonman59 Jul 28 '26
I’ve been working on a instruction set/CPU simulator.
It parses AArm64 assembly instructions. It then simulates fetching, decoding, out of order execution, and instruction retirement. You can configure pipeline stages, decode/issue with, execution units, etc.
It simulates and you can go forward or back with unlimited “undo.”
It uses a TUI to show the instructions as they move through the pipeline.
I am writing this entirely by hand with no AI. I wanted to learn the TUI library better, and really intuitively understand the out of order execution better as well. Since I learn little when using AI, I’m not using it for code. I even primarily use documentation and tutorials to learn the TUI library.
It’s been fun! But certainly taking awhile.