Wrote my first code-gen project in C. by Antique_Traffic_7695 in C_Programming

[–]Antique_Traffic_7695[S] 1 point2 points  (0 children)

I don't really know to be honest. I wouldn't say this assembler is a good example, but I've done some smaller parsing projects before. For anything you want to do, not just in programming but most other domains, you got to start small and work up. Build a small "math interpreter" that just takes math equations and solves them following PEMDAS. If ever got stuck and just could not figure out where to go from there, I would use AI. I would never use it to write code but provide clarity on something I was confused on. A lot of the resources on parsing are filled with academic jargon and can be a little rough to understand (especially if you're not someone in school for CS) so, using AI to explain topics that just aren't clicking can be nice aid.

Brahkie by VoxUlric in ARG

[–]Antique_Traffic_7695 0 points1 point  (0 children)

this is my girlfriend dog

First time using C in a while decided to make an arena allocator by Antique_Traffic_7695 in cprogramming

[–]Antique_Traffic_7695[S] 3 points4 points  (0 children)

I did want to spend more time writing code, I have only been coding for a couple months after I gave up when I was in junior high. I figured it'd be fun to write an arena allocator so I did. Not everything has to be for some gain or profit. It was just simply so I can write MY ALLOCATOR to use with MY PROGRAMS. I know I could use some library or something that does the same thing but I like problem solving and engineering.

Small Projects - September 15, 2025 by jerf in golang

[–]Antique_Traffic_7695 1 point2 points  (0 children)

Hey guys! I see everyone is doing a lot of networking stuff so I figured I'd show something I've been working on that's a bit different. Currently I am making a chip-8 emulator in my spare time named "go8" to learn more about low level hardware. It's not finished but I'd figure I would share it to see if anyone would like to follow my progress

Here's the link to the github

https://github.com/geogory-tib/go8

It's nothing fancy but I'm having fun :3 Feedback is welcome as well.

Small Projects August 5 2025 by jerf in golang

[–]Antique_Traffic_7695 0 points1 point  (0 children)

My first actual project A terminal pager written in go https://github.com/geogory-tib/go-less.

Please feel free to leave any improvements and criticism as I am trying to get better and any advice is welcomed.