• 0 Posts
  • 95 Comments
Joined 2 months ago
cake
Cake day: February 5th, 2025

help-circle


  • I can’t for the life of me understand how you’re having a difficulty understanding this to begin with…

    You said that at 4% market share they would be idiots to not break their backs chasing that 4% in revenue but were there right now and they’re not breaking their back at all they’re hardly doing anything…

    The entirety of your statements that you’ve said so far are verifiably incorrect because they are the reality that we’re living right now. I’m not the one that struggling with reality buddy, that’s you.










  • Github is an important resource.

    And there’s dozens and dozens of replacements available. The issue you’re speaking of isn’t an issue with Github at all. It’s an issue with developers.

    If Github going off the map borks your development because PROGRAMMERS can’t use anything but Github, you have much bigger problems than you think.






  • Xanza@lemm.eetoLinux@lemmy.mlNotes on coreutils in Rust
    link
    fedilink
    English
    arrow-up
    12
    arrow-down
    3
    ·
    edit-2
    24 days ago

    The performance you’re dealing with here is in the tens of milliseconds possibly hundreds if you’re lucky. Anyone seriously pursuing this issue from the angle of performance genuinely doesn’t understand the deep rooted issues here.

    If you’re so incredibly hard up for compute time that it’s critical for you to squeeze out the extra 1/10 of a second from your system utilities then you need to shut your fucking computer down and go touch grass.

    I mean even if this saves you 30 seconds a day 50 weeks a year 5 days a week that’s 2 hours per year it’s saving you… I’d rather slow fuck the two hours and get an extra 2 hours of pay.


  • Xanza@lemm.eetoLinux@lemmy.mlThinking on switching to linux
    link
    fedilink
    English
    arrow-up
    4
    arrow-down
    6
    ·
    26 days ago

    The linux ecosystem, depending on which distro you choose, has anywhere from tens of thousands to hundreds of thousands of packages. There’s only select software that you can’t virtualize from Windows to Linux, so you may not even be required to find alternatives.

    But without listing any software at all, it’s hard to tell you definitively…



  • IMO, if the project is open source, no courtesy is required. Specifically if the original maintainer hasn’t done anything with the repo in a decade.

    Fork it, make your changes, and if you’re feeling generous in the readme drop the link for the original repo giving credit to the author. Anything more than that is above and beyond.

    In the case where the original upstream was being updated, how do I integrate those with my changes?

    #> cd project.git
    #> git fetch upstream
    #> git merge upstream/main
    

    Read more here.