Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)FR
Посты
0
Комментарии
629
Joined
2 yr. ago

  • I had some of those headphones like hat guy has. They were uncomfortable. Strange design.

    Damn I miss LAN parties. Ultimately it was World of Warcraft that killed them in my social circles.

  • They’re not even real servers actually, 2 of them are my old gaming PCs I built in 2012 and 2017 and I have many Dell Optiplexes and the like lying around I reuse for various things

    I have upgraded some of the parts in them - including the RAM, because ballooning VMs are annoying - but it’s still true they’d be ewaste otherwise

  • I have an overkill hardware setup because it’s fun. No I don’t really need 4 servers in a Proxmox cluster with 64GB RAM each.. but it’s cool lol. Besides the hardware was just gonna become ewaste anyway, I’m repurposing it

  • Coming from software development, the systemd controversy is starting to feel more familiar as I learn more of it.

    It really reminds me of what happens sometimes in backend web systems development when an overly complicated framework takes over a programming language community. Getting anything done no longer becomes about using the tools to interact with HTTP, or the language runtime (if relevant), or anything else absolutely essential to the task at hand - it’s about learning the framework itself and its peculiarities, its specific abstractions and semantics wrapping real concepts.

    An example is Spring Framework. One does not simply write a little bit of code to cache something in memory at the place one needs it, no! One must use a ProxyFactoryBean to apply a CachingInterceptor, in the bean configuration XML of course! (Of course being Java, you have the extra layer of indirection and fakery as the Java community is/was full of people obsessed with shoving everything possible into a design pattern for cred.)

    One does not simply read a systemd log file using cat, nor filter with grep. One must use journalctl with its specific arguments to filter by specific things. Because the logs are binary or something. I feel like I’m not learning Linux/UNIX anymore, I’m learning systemd.

    I do like systemd’s unit system, with its whole dependency graph for reaching certain targets, etc. However, given the nigh ubiquity of systemd, I’ve not really had much of a chance to learn any alternatives, so it seems I must simply get used to it regardless.

  • As a developer who got into DevOps and now is learning the vast world of sysadmin stuff, it’s validating to see you say that. Because the damn logging system is my number 1 gripe as well and it discourages me from doing any real digging. Why would I when I can just spin up a new VM?