• 0 Posts
  • 59 Comments
Joined 1 year ago
cake
Cake day: June 22nd, 2023

help-circle
  • masterspace@lemmy.catoProgrammer Humor@programming.devSometimes, it's backwards
    link
    fedilink
    English
    arrow-up
    5
    arrow-down
    6
    ·
    edit-2
    1 day ago

    I have serve-web running as a service, but that only works well on desktop screen layouts — from my experience, it runs terribly on mobile.

    Congrats, if you’re trying to write software from your phone you should be fired as a software engineer.

    Again, it is stupid as fuck for any software developer to use VIM. If you have to telnet into some random bullshit server for whatever reason you’re obviously in a different position. But real, good, maintainable software is not written and built by teams insisting on creating learning curves for no reason.


  • masterspace@lemmy.catoProgrammer Humor@programming.devSometimes, it's backwards
    link
    fedilink
    English
    arrow-up
    3
    arrow-down
    3
    ·
    edit-2
    1 day ago

    This is either false, or you didn’t understand the environment you were working in.

    You have to explicitly turn on the setting to have VSCode reformat on save, it’s not on by default, and when it is on, it’s there for a reason, because having software developers that do not all follow the same standard for code formatting creates unpredictable needless chaos on git merge. This is literally ‘working as a software developer on a team 101’.




  • masterspace@lemmy.catoProgrammer Humor@programming.devSometimes, it's backwards
    link
    fedilink
    English
    arrow-up
    14
    arrow-down
    33
    ·
    edit-2
    1 day ago

    Lmao, devs who insist on using VIM and the terminal over better graphical alternatives just to seem hardcore are the worst devs who write the worst code.

    “Let me name all my variables with a single letter and abbreviations cause I can’t be bothered to learn how to setup a professional dev environment with intellisense and autocomplete.”






  • I found both sides rather aggressive to be honest. The implication that the use of “he” implies that the author assumes every user is male comes with an implied accusation of some form of misogyny.

    No, it didn’t. Go read the PR, it’s extremely polite. I in fact, would challenge you to try and think of a more polite and less accusatory way of bringing up the same issue. I can’t.

    Furthermore, the “generic he” has also been acceptable English for centuries, and has only been starting to be phased out in the past few decades.

    Yeah, you know what else has only been around for the past “few” decades? Literally every single computer and piece of software ever made, you know what literally none of them do? Refer to their users as “he”.

    You want to make it sound like it’s a simple ESL mistake? That’s fine you’re welcome to believe that, but do you know how I respond to translation mistakes when I’m speaking a foreign language? I laugh and say oops, sorry, my mistake I’ll fix that. I don’t say “don’t bring your politics into this”.

    I’m sorry but you are making up a fantasy to try and believe that the author wasn’t being an explicit asshole.











  • masterspace@lemmy.catoProgrammer Humor@programming.devTrying to understand JSON…
    link
    fedilink
    English
    arrow-up
    3
    arrow-down
    1
    ·
    edit-2
    3 months ago

    No there isn’t.

    Tell me how you partially change an object.

    Object User :

    { Name: whatever, age: 0}

    Tell me how you change the name without knowing the age. You fundamentally cannot, meaning that you either have to shuttle useless information back and forth constantly so that you can always patch the whole object, or you have to create a useless and unscalable number of endpoints, one for every possible field change.

    As others have roundly pointed out, it is asinine to generally assume that undefined and null are the same thing, and no, it flat out it is not possible to design around that, because at a fundamental level those are different statements.