• 41 Posts
  • 2.23K Comments
Joined 6 years ago
cake
Cake day: May 31st, 2020

help-circle
  • No worries, I did not get you wrong. I commented, because I (rightly) assumed that you care to not sound elitist.

    I think, a big part of the problem is that saying one choice is superior kind of implies in itself that people who don’t make this same choice are not the smartest.
    Obviously, in reality there is a lot of other factors, like inertia (you don’t have to be stupid to not want to learn a different system) and well, the system being separate from the ecosystem (all the light/dark mode features won’t convince someone to switch who strictly needs an application that won’t run on Linux).

    But yeah, if people don’t pick up on this nuance or don’t give you the benefit of the doubt, that just is likely to sound elitist to them… 🫠



  • Ephera@lemmy.mltoProgrammer Humor@lemmy.mlScrum
    link
    fedilink
    English
    arrow-up
    3
    ·
    2 days ago

    Yeah, this is probably going to sound like a truism, but to avoid shitty Scrum, you need to resist management trying to alter the processes, but you should absolutely tweak the processes to account for the needs of the devs.

    Basically, yet another reporting meeting does not help deliver the software faster. But more (or less) meetings for devs to sync what they’re working on, that can help, depending on your team’s specific needs.




  • At its core, SystemD coordinates and launches all the services in your operating system. So, it is essential for the boot process, but also does scheduling, meaning you could run a backup script every night with it, for example.

    That’s the simple answer. But in truth, SystemD is often criticized for doing too much, so it’s hard to describe what it really does. For example, you can also manage network interfaces via SystemD.

    Kind of the goal of SystemD is to provide common plumbing which works the same across distros, so that when you configure your services or network interfaces etc. on Ubuntu, it works the same as on openSUSE or Arch or whatever.




  • I’m guessing, you mean this then: https://github.com/edc/bass

    But well, I was rather thinking of when it’s using Bash-scripting-syntax to combine multiple commands.
    Like, maybe there’s a for-loop in there. You just can’t paste that directly into Fish and have it work. Granted, you should probably put that into a script file, even if you’re using Bash, but yeah, just temporarily launching bash is also an option.




  • Ephera@lemmy.mltolinuxmemes@lemmy.worldit's just the worst
    link
    fedilink
    English
    arrow-up
    16
    ·
    edit-2
    7 days ago

    To me, it genuinely makes a huge difference that I don’t have to manually press Ctrl+R for history search. Because 9 times out of 10, I accept a history suggestion from Fish where I did not think about whether it would be in my history.

    This includes really mundane commands, like cd some/deeply/nested/path/. You would not believe, how often I want to cd into the same directory.
    But I’ve also had it where I started typing a complicated docker run command and Fish suggests the exact command I want to write, because apparently I already ran that exact command months ago and simply forgot.


  • Yeah, my current software project at work was basically half a year of feature development and since then, we’ve purely tried to get it into the real world, which meant evaluating use-cases to see where it falls flat and what needs stabilizing, as well as figuring out people’s needs and how our software can assist with that, then setting up a demo and hoping they find money somewhere…



  • My problem was that “Albert Heijn” is a dude’s name. It does not exactly scream “we’re talking about a real physical building”.

    For all I knew, the impossible problem we’re solving could’ve been on a mathematical plane, named after mathematician Albert Heijn. “Sweeping” just as well can be used in an abstract sense.

    Obviously, I did think of physically sweeping a physical floor first and foremost, but especially with the rest of the blog post being so entirely abstract, I had doubts on that for far too long, which did not make it easier to understand.



  • If I could find something that offers a “run this cli command on file saving”, that’s really about the biggest requirement I hope to have in place.

    You can do that via CLI, too, by the way. You can watch your source code directory for file changes with entr: https://manpages.org/entr
    Make sure to see the examples at the end of the man page, since usage isn’t entirely obvious…


    And if you want KDevelop without being so focused on KDE development, then that’s basically Kate: https://kate-editor.org/
    If you install the LSP servers for your toolchain (and check that Kate auto-starts them), then it can assist pretty well for different programming languages (i.e. virtually indistinguishable from VSCode, as far as I’m aware).