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

help-circle

  • _____@lemm.eetoProgrammer Humor@programming.devWhy indeed
    link
    fedilink
    English
    arrow-up
    16
    arrow-down
    2
    ·
    11 days 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.









  • _____@lemm.eetoProgrammer Humor@lemmy.mlErrors
    link
    fedilink
    English
    arrow-up
    2
    ·
    edit-2
    2 months ago

    that’s IIS as well, I think it’s because we had our severs configured in a reverse proxy and hitting IIS and failing before the http serverhad returned a response caused the 502 error, completely useless error.

    (not very experienced with server configs so forgive me if the language isn’t 100%)









  • _____@lemm.eetoProgrammer Humor@lemmy.mlLean vs. fast
    link
    fedilink
    English
    arrow-up
    24
    ·
    edit-2
    4 months ago

    > someone nitpicks word you used in a variable declaration

    > you change it

    > someone more senior says the former made more sense

    > this goes on for far longer than it should

    > eventually you get a real review from someone in your team that identified something actually needs to change

    > you change it and re request reviews

    rinse and repeat



  • _____@lemm.eetoProgrammer Humor@programming.devMicrosoft Please Fix
    link
    fedilink
    English
    arrow-up
    124
    arrow-down
    2
    ·
    4 months ago

    let’s turn this into a constructive angle for future devs and current juniors: just learn git cli, I promise you it is much simpler than it seems.

    all those memes about git having like a thousand commands are true, but you really will only use like 7 at most per month.

    learn push, pull, merge, squash, stash, reset, im probably missing like one or two

    I promise you again: it is much simpler than it seems. and you won’t have to use these stupid git GUI things, and it will save you a hassle because you will know what commands you are running and what they do

    short disclaimer: using git GUI is totally fine but low-key you are missing out on so much