index.html (1191B)
1 <h1>projects</h1> 2 3 There are two types of projects I create: solutions to problems that annoy me 4 and ideas I pursue out of interest. 5 6 <h2>problem-solving projects</h2> 7 8 <h3><a href="/git/tacker/files.html">tacker</a></h3> 9 <p> 10 I like JavaScript and I like building websites and web applications. But modern 11 JS projects seem to require hundreds of npm dependencies. This is a big mess 12 and a security disaster. I do not want to run the megabytes of untrusted code 13 web bundlers seem to need on my machine but I do want to use JS modules to keep 14 my projects structured. <code>tacker</code> aims to solve this by being the 15 most simple way of stapling files together to create self-contained pages like 16 to one you are currently viewing. 17 </p> 18 19 <h3><a href="/git/timetracker/files.html">timetracker</a></h3> 20 <p> 21 I was searching for a timetracking program that works in terminal and GUI and 22 is not completely bloated. I did not find any and wrote my own. 23 </p> 24 25 <h2>interesting projects</h2> 26 27 <h3><a href="/git/brainfuck-2048/file/2048.bf.html">brainfuck-2048</a></h3> 28 <p> 29 This is my first (and so far only) brainfuck program. The most interesting 30 thing about this is the random number generator. 31 </p>