Posts by Kooda@merveilles.town
 (DIR) Post #A0xeH4rGjFyiuK1Q9o by Kooda@merveilles.town
       2020-11-07T14:02:50Z
       
       1 likes, 2 repeats
       
       Spent about 18 hours this week working on my COMFY-RV project, an assembly-like language for RISC-V embedded in Lisp inspired by Henry Baker’s design.I haven’t done much with it yet, but doing low-level programming really is relaxing for me.(example code in the screenshot is just a program that writes back what it reads on standard input)
       
 (DIR) Post #A3ERiIymP4gKk3GGFk by Kooda@merveilles.town
       2020-10-22T22:45:24Z
       
       0 likes, 0 repeats
       
       #introduction 1/5Hello Merveilles, I’m new here.I’m a 27 years old demiguy (he/him pronouns) living in a small apartment in Rennes, France with my artist boyfriend @Reptifur I am vegan and have a low income, I don’t have a job.I’m also autistic and have a hard time understanding subtext, please be precise and direct when talking with me! :)I love cartoon art, ambient/chill music and serif fonts.
       
 (DIR) Post #A3ERiJVkQV3MOIgadk by Kooda@merveilles.town
       2020-10-22T22:47:37Z
       
       0 likes, 0 repeats
       
       #introduction 2/5My main day-to-day occupations are playing my cello (classical and Irish folk music these day) and thinking about electronics and computers.I often dream of having a tiny house to make music at any time of the day, with a garden to grow my food and a workshop to build stuff.I like to tinker, repair and make things. My computer is a mix of second-hand and handmade parts, all my data is served and stored at home in a cardboard box low-power server.
       
 (DIR) Post #A3ERiK1IXCI3y9Rmoi by Kooda@merveilles.town
       2020-10-22T22:48:57Z
       
       0 likes, 0 repeats
       
       #introduction 3/5I love programming and wish it was more accessible so that everyone would be able to make what they need.I play a lot with programming language design and implementation. I’m in love with very small languages with very few core concepts that fan out into everything else, such as Forth, Scheme, Kernel and PicoLisp. I’m one of the devs of the CHICKEN Scheme compiler.I’m building my own lisp system.I also enjoy making procedural art, but I’m not very good at it.
       
 (DIR) Post #A4mCQGstekLAzdCcb2 by Kooda@merveilles.town
       2020-11-09T18:15:21Z
       
       2 likes, 1 repeats
       
       Today I implemented the alt (similar to || in C), while and if operators in Comfy-RV #riscv #lisp #assembly #theWorkshop I really love how everything is so simple to write with explicit continuations (the last two arguments of the `compile` procedure: win and lose). And De Morgan’s law to implement alt as a composition of the existing seq (&&) and not. As a bonus, the code generated by this is the most optimal one.