Eufalconimorph@discuss.tchncs.detoProgrammer Humor@lemmy.ml•What are you using? Notepad?
3·
1 year agoYou don’t have an autoformatter in your pre-commit hook? Why not?
You don’t have an autoformatter in your pre-commit hook? Why not?
Looks a heck of a lot like the RS-485 serial cable I’ve got on my desk right now. Scale is hard to tell, not sure how big that bowl is.
If GitHub’s UI isn’t saying “infinity files changed” you’re not trying hard enough.
“Middle of the iceberg” layer.
It’s officially C♯, not C#.
#define max(x,y) ( { __auto_type __x = (x); __auto_type __y = (y); __x > __y ? __x : __y; })
GNU C. Also works with Clang. Avoids evaluating the arguments multiple times. The optimizer will convert the branch into a conditional move, if it doesn’t I’d replace the ternary with the “bit hacker 2” version.