• 0 Posts
  • 220 Comments
Joined 2 years ago
cake
Cake day: August 19th, 2023

help-circle



  • Systemd is controlled by redhat and is a very large part of the Linux stack. It’s become so universal that a lot random stuff won’t work unless the system has systemd.

    Compared to X11 to wayland or pulseaudio to pipewire it’s a lot hard to now replace an init system and with that in the hands of redhat which is for profit is not a nice thought.

    But you know, fuck it, having systemd is a massive headache for people making distros that’s just gone. Everyone is using the same thing and things just work so people aren’t really complaining. If redhat tries some shenanigans there’ll always be a fork or a systemd compatible init system or even whatever Alpine is using now that’ll take it’s place.









  • You make a fair point, programming skill is more important than language but picking a programming language is still important in a lot of cases.

    Ecosystem size can reduce “reinvent the wheel” code.

    Some languages just have dogshit performance like Ruby, lua is pretty good though and it absolutely matters when you have to crunch a lot of data. Access to developers is big since you ideally want to find someone with experience in the language your project is in.

    Some languages like Rust are very good for making safe code but very bad if you want to get out a microservice fast. I could make an equally correct version of some adapter in a fourth of the time in python compared to rust and I know them similarly well.

    Then there’s low RAM requirements like embedded devices, it’s best to run something that compiles to machine code and doesn’t need a big runtime. Java and C# become almost useless in very low RAM environments and you’d have to use Zig, C or Rust instead.

    So long story short, depending on what you’re writing it can just not matter or matter a lot.





  • KDE Neon, with Icons-Only task manager and global menu in a top bar. I have shortcuts for moving between activities and custom one for “show in all/show only in current activity” with a KWin script. Window rules for everything to open in the correct activity. Neon is not super stable but it’s nice and fun to get the latest KDE stuff.

    IDE is Neovim and Rider (Jetbrains)

    Neovim config is kickstart.nvim + autosave, noice-ui, commentary, luasnip and harpoon.

    Rider has Nyan progress bar, key promoter X, Ideavim and gittoolbox. I want to move to Neovim but debugger experience is very good in Rider. ctrl+p and alt+tab, Navigation is a bit too slow for me.

    Also bash, it’s big part of my development environment since I really like using the terminal and making alias and functions for everything. I have “clipboard filepath - > js code generator - > clipboard” stuff for example and it’s nice to just type gen -ts to convert C# class to TS interface ready to paste. Play/pause media with p, navigate to project and start it name [all, start, cs]. ref to fuzzy find a git branch and switch to it. Log how many hours I worked with logtime etc. I hate bash as a language but as a tool to interact with the computer I love deeply because you can automate a stupid amount of stuff.

    Also, no mouse, just trackpad for when I’m forced to use it which is not that often even though I’m in webdev (vimium plugin for browsers MVP there).