- 3 Posts
- 4.21K Comments
Feathercrown@lemmy.worldto
Games@sh.itjust.works•Gabe Newell reportedly snapped 'What the f*** do I pay you for if that's your opinion?' at Valve lawyer pushing for more content moderation on SteamEnglish
634·3 days agoTo be fair, their job is also to recommend the course of action least likely to get Valve sued.
Feathercrown@lemmy.worldto
Linux@lemmy.ml•Colorado and California age verification bills exempt open source operating systemsEnglish
462·11 days ago“Don’t complain, just fork it” people when complaining works: 😳
Ooh that’s a good roll, idk if I can beat that… unless you’re bluffing
Nine fives
Feathercrown@lemmy.worldto
Programmer Humor@programming.dev•Even my own code sometimes.English
5·15 days agoDefinitely. I’ve seen this advice summarized as “Comment ‘why’, not ‘how’” and it’s always helpful to come back to weird code and immediately understand these things.
Hopefully he won’t even be alive by then. Those burgers are gonna catch up with him eventually.
I’ve had to use vim once or twice. It’s… fine. Not really my thing. I’m a nano guy (or, ideally, VS Code).
Feathercrown@lemmy.worldto
Programmer Humor@programming.dev•Even my own code sometimes.English
10·16 days agoDear lord lmao
Feathercrown@lemmy.worldto
Programmer Humor@programming.dev•Even my own code sometimes.English
6·16 days agolmfao
Feathercrown@lemmy.worldto
Flippanarchy@lemmy.dbzer0.com•A masked anarchist helps his suburban community in Portland.English
12·16 days agoAt some point the gov is spending more effort stopping public works than doing them and at that point they lose the battle of public opinion lol
Feathercrown@lemmy.worldto
Programmer Humor@programming.dev•Even my own code sometimes.English
16·16 days ago
Feathercrown@lemmy.worldto
Programmer Humor@programming.dev•Even my own code sometimes.English
3·16 days agoI haven’t seen him do it lately in any code I’ve reviewed but I do change it whenever I see it if I’m doing work nearby lol
Feathercrown@lemmy.worldto
Programmer Humor@programming.dev•Even my own code sometimes.English
3·16 days agoIt can work or it can look good, you can’t have both
Feathercrown@lemmy.worldto
Programmer Humor@programming.dev•Even my own code sometimes.English
10·16 days agoOne of my coworkers is fond of using ternary expressions instead of “if” blocks. Even ones without an “else”. So I see things like:
condition ? someVar = "blah" : null;or
condition ? doSomething() : nullWhich should both just use “if” statements. Or my favorite:
condition ? someVar = "foo" : someVar = "bar"which should really be
someVar = condition ? "foo" : "bar"
Feathercrown@lemmy.worldto
Programmer Humor@programming.dev•Even my own code sometimes.English
8·16 days agoYup there are certain patterns that I can just tell
Feathercrown@lemmy.worldto
Programmer Humor@programming.dev•Even my own code sometimes.English
75·16 days agoI love that they called it “blame” lol. They knew what it would be used for.
Feathercrown@lemmy.worldto
Programmer Humor@programming.dev•Even my own code sometimes.English
98·16 days ago




He’s using it correctly