ukrainian cat ~

  • 0 Posts
  • 4 Comments
Joined 3 years ago
Cake day: June 11th, 2023

  • systemd is more of a set of products and software components branded under a single name rather than a single thing.
    systemd itself is rather simple, as most other pieces systemd-* software, like systemd-boot, systemd-networkd and systemd-resolvd. these are usually more stable and less bloated than more popular alternatives




  • comptime is a huge killer feature for me. I used it to generate ARM lookup tables at compile time and it’s amazing, it also removes the need for generics as types are just arguments
    for example the Vec function accepts a type as and returns a struct that can hold arbitrary amounts of said type on the heap.
    I eventually switched to rust + proc macros tho (zig solution was MUCH cleaner!) because both ZLS and the Zig compiler are terrible and still needs a lot of work.