What are you doing this week?
8 points by caius
8 points by caius
What are you doing this week? Feel free to share!
Keep in mind it’s OK to do nothing at all, too.
I'm working on a tiny writeup for my solution to the recently posted CuneiForth puzzle. It's nothing spectacular, but it's at least something to talk about.
Working, fixing cars/house and cycling as much as I can with others. Getting to a pretty consistent 2-3 decent rides a week now and enjoying it. Few things to fix on the cars, and some more parts to order for the StreetKA now I'm pretty convinced the front shocks/springs are foobar.
Video games!
Anime! (I usually wait for the dubs, but occasionally do subs)
Finalising the Record/Struct implementation for my programming language. I have added support to the parser, the ir, the codegen (x86 jit and bytecode) and now i just need to teach the x86 jit how to call out to the alloc function, which in turn will call the GC's allocation flow. Anyway after this my runtime can jit compile the following:
fn create_user() Record<name:Str age:Int job:Record<name:Str since:Int>> {
{
name: "teo"
age: 23
job: {
name: "author"
since: 2003
}
}
}
create_user().job.since
This took a lot of work, but its finally usable
It's going to be a hot one but I really want to find some time to get over to the gym again (finally cleared post-surgery!!). I have some chores around the house, maybe some painting, maybe some wrenching on the car (new swaybars have been sitting in the garage for months now) that I'd like to get to but everything is a race against the clock as we are traveling for the US holiday and my wife's grandmother's memorial at the end of the week.
Stay cool, everyone!
Finally continuing my work on a Clojure to Fennel transpiler.
Recently had to rework the parser module almost completely, and because of that, now I have to rework the compiler module from scratch. But still excited!
Back home after a week's PTO. So, today, trying to remember what I was working on and get back up to speed on it; then, from tomorrow onwards, continuing on with it!
Trying to understand g-expression in Guix, $dayjob and a bit of paragliding along the local sand dunes if the weather allows.
Also, not so fun, but tons of paperwork for the Australia EOFY (end of financial years).
Working on my OCaml DWARF library, durin. Focusing on getting a version 0.1 ready with documentation and reasonable spec coverage of DWARF 5 (partial coverage of DWARF 4). I have been working on this library on and off since early last year.
Then I can move onto the next project building a toy debugger for C.