• 0 Posts
  • 64 Comments
Joined 10 months ago
cake
Cake day: August 6th, 2024

help-circle


  • AI will create the most cursed entry jobs humans have yet to see.

    First job in the old days doing WordPress, managing someone’s vomit inducing PHP? Gone.

    Jobs with jQuery spaghetti calling dozens of asp APIs like a rat’s nest no rat can traverse? Gone.

    Welcome to the future: Fixing some “business” guy’s vibe coded personal hell made just for you.







  • Every morning on my way to work I see people juggling in all sorts of ways. Personally the most weird and socially acceptable way is to jog downtown. Downtown is terrible for jogging, dangerous drug addicts (no offense, just not the safest people to be around), dangerous drivers. an entire landscape built around cars, anxious and pissed of drivers trying to find their way out of the traffic hell hole the city created.

    A park is fine.






  • All your concerns are valid and Linux handles all these well except:

    If you play competitive games with kernel anti cheat it will simply not work on Linux courtesy of the game developers.

    Linux is fully capable of running the game and the anti cheat but the game developers restrict it. Notable games are cod, fortnite, apex legends.

    A notable competitive game that works on Linux is cs2 although you won’t be able to run 3rd party anti cheat like FACEIT as far as I know.

    You can use the proton site to tell you how many of your games on your steam library are playable on Linux.

    I’m on my 8th month or so using Linux to game and I’ve had no issues, most popular games will work. Most niche games use very simple tech like SDL and will just work.

    Wine essentially creates a fake windows environment and handles a lot of internal API calls by kind of redirecting them to existing Linux services, so a lot of windows stuff will just work.

    As for security. You realize most of the Internet runs on Linux ? Practically the majority of the internet is hosted on Linux machines.

    As for a distrto there is no optimal choice you can make.

    You can pick Ubuntu, Debian or Mint and find yourself disappointed in how restricting the power user experience is.

    You can pick arch or cachy for the latest wine improvements but find yourself lost in how to handle the OS in case something goes wrong.

    I personally think cachy (rolling release) is the best for gaming but you could encounter issues (skill issues really) that might frustrate you. These issues would lead to growth and improvement in your understanding of Linux but if all you want to do is game and you don’t care about understanding computers then it might not be for you.





  • _____@lemm.eetoProgrammer Humor@programming.devWhy indeed
    link
    fedilink
    English
    arrow-up
    16
    arrow-down
    2
    ·
    3 months ago

    There’s lots of valid reasons for this.

    Imo the biggest one people don’t account for is this: Dev salaries are incredibly high. if you want fast performance the most optimal way would be to target the platform and use low level native code, so C++ or Swift.

    It would cost you like 20x more than just using electron and it will cost you bigly if you have multiple platforms to maintain.

    So it turns out having 1 team crunching out an app on electron with hundreds of dependencies is cheaper, naturally that’s what most companies will do.

    Don’t want to use electron ? Then it’s kind of the same issue except this time you’re using Java and C# and you have to handle platform specific things on your own (think audio libraries for example). It’s definitely doable but will be more costly than using a cross platform chromium app.