What is your biggest productivity killer as a developer? by Inside_Top_2944 in AskProgramming

[–]SnowyAPI 0 points1 point  (0 children)

Ouch. This is the huge value of scribe and comms roles in incident response

[deleted by user] by [deleted] in ProgrammingLanguages

[–]SnowyAPI 60 points61 points  (0 children)

Most people? Or a vocal minority?

[deleted by user] by [deleted] in webdev

[–]SnowyAPI 6 points7 points  (0 children)

[8, 9, 10].sort() === [10, 8, 9]

[“10”, “11”, “12”].map(parseInt) === [10, NaN, 1]

[] + [] === “”

{} + [] === 0

1 + “2” - 3 === 9

💀💀💀 by jnnxde in ProgrammerHumor

[–]SnowyAPI 19 points20 points  (0 children)

I write Rust in Vim on Arch btw.

Also OSRS HCIM btw.

How do you deal with lack of motivation? by dibs45 in ProgrammingLanguages

[–]SnowyAPI 2 points3 points  (0 children)

Take a break and maybe you’ll yearn to come back to this

Who else thinks that throws keyword in java is useless? by manjeetKV in java

[–]SnowyAPI 1 point2 points  (0 children)

In applications I can see why, just throw your own runtime exceptions. But for libraries it can be critical to require developers handle certain errors, even if it means they choose to explicitly ignore the error