From efbb8cbe0b459caec2bc749f7bc688c92959e571 Mon Sep 17 00:00:00 2001
From: Stephen Enders Without much to really say on the topic, I kept writing small programs
in C throughout the year. I spent a lot of time debugging and
- troubleshooting a prefix terminal calculator with the intention of
- making it a full utility to use on the command line / from within
- scripts. You could do simple math without opening up x-calc, which I find
- myself doing to check some quick math. Example code: Never ending C
calc "+ 1 1"
. To me this was far cleaner than
- writing: echo $((1+1))
. The big ideas I had
- for it was adding a REPL and making it a command line calculator tool
- where you could get the features of a standard calculator with store and
- recall functions. This project involved making two stacks: the operations
- and the numbers. Implementing two stacks from scratch was interesting and
- I may upload the source and link it in an update. Overall it was full of
- breaks, bugs, wrong turns, and bizarre memory issues. So needless to say
- it was a fun 3 days of programming.calc "+
+ 1 1"
. To me this was far cleaner than writing: echo $((1+1))
. The big ideas I had for it was adding a
+ REPL and making it a command line calculator tool where you could get the
+ features of a standard calculator with store and recall functions. This
+ project involved making two stacks: the operations and the numbers.
+ Implementing two stacks from scratch was interesting and I may upload the
+ source and link it in an update. Overall it was full of breaks, bugs,
+ wrong turns, and bizarre memory issues. So needless to say it was a fun 3
+ days of programming.
The project that soaked up a majority of my writing time, which sadly should've been documented here, was my conlang / world-building -- cgit v1.2.3-54-g00ecf