this post was submitted on 18 Jan 2024
697 points (98.6% liked)
Programmer Humor
24874 readers
1025 users here now
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
Rules
- Keep content in english
- No advertisements
- Posts must be related to programming or programmer topics
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Some C++ style guides suggest the following naming convention for functions that crash on any error
Personally, I like to call catched exception variables
up
, so for a rethrow I canthrow up;
.Except rethrowing an exception in C# is just
throw;
, anything else is a crime against the person who reads your stacktraces.One of the modules in a project I'm working on is called
VulkanOrDie
which always makes me crack up when I see it in the compilation messages.I mean, it makes sense to call ComplainToErrorAndExit just 'die', no?
It's funnier when you try to SysCallAndDie() :-P
(that's a real thing in perl btw - I guess that function didn't get the memo)
Now what about GZDoom's
GoAwayAndDie();
?