this post was submitted on 27 Nov 2025
739 points (91.1% liked)
Science Memes
19765 readers
1718 users here now
Welcome to c/science_memes @ Mander.xyz!
A place for majestic STEMLORD peacocking, as well as memes about the realities of working in a lab.

Rules
- Don't throw mud. Behave like an intellectual and remember the human.
- Keep it rooted (on topic).
- No spam.
- Infographics welcome, get schooled.
This is a science community. We use the Dawkins definition of meme.
Research Committee
Other Mander Communities
Science and Research
Biology and Life Sciences
- !abiogenesis@mander.xyz
- !animal-behavior@mander.xyz
- !anthropology@mander.xyz
- !arachnology@mander.xyz
- !balconygardening@slrpnk.net
- !biodiversity@mander.xyz
- !biology@mander.xyz
- !biophysics@mander.xyz
- !botany@mander.xyz
- !ecology@mander.xyz
- !entomology@mander.xyz
- !fermentation@mander.xyz
- !herpetology@mander.xyz
- !houseplants@mander.xyz
- !medicine@mander.xyz
- !microscopy@mander.xyz
- !mycology@mander.xyz
- !nudibranchs@mander.xyz
- !nutrition@mander.xyz
- !palaeoecology@mander.xyz
- !palaeontology@mander.xyz
- !photosynthesis@mander.xyz
- !plantid@mander.xyz
- !plants@mander.xyz
- !reptiles and amphibians@mander.xyz
Physical Sciences
- !astronomy@mander.xyz
- !chemistry@mander.xyz
- !earthscience@mander.xyz
- !geography@mander.xyz
- !geospatial@mander.xyz
- !nuclear@mander.xyz
- !physics@mander.xyz
- !quantum-computing@mander.xyz
- !spectroscopy@mander.xyz
Humanities and Social Sciences
Practical and Applied Sciences
- !exercise-and sports-science@mander.xyz
- !gardening@mander.xyz
- !self sufficiency@mander.xyz
- !soilscience@slrpnk.net
- !terrariums@mander.xyz
- !timelapse@mander.xyz
Memes
Miscellaneous
founded 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Personally I tend to bracket aggressively, because I've been repeatedly betrayed by compilers. One in particular applied the high priority of & (bitwise and) to the low-priority && (logical and), so if( 1 < 2 && 3 ) would always fail because 2 && 3 evaluates to 1.
That was the topic the first time I dealt with this dingus and their rules of maths!!! about a year ago. The post was several months old. They've never understood that some things are fundamental... and some things are made up. Some things are mutable. So even if their nonsense was widespread, we could say, that's kinda stupid, we should do something else.
The dumbest argument I've ever suffered online was some dingdong convinced that "two times three" meant the quantity two, three times. Even though "two times" is right there, in the sentence. Even though "twice three" literally means "two times three." Even though the song "Three Times A Lady" obviously does not mean the quantity three, ladyce. Not even that dipshit thought two times three-squared could be thirty-six.
Yeah, I'd make most stuff explicit in programming. You're rarely gonna do more than two arithmetic operations at a time anyways so you often get it for free. The most common one for me is % which I expect to bind weakly. I guess it binds tightly because it follows division, but I read "a + 1 % n" out loud with a "modulo" and when you say that in a mathematical context the modulo would apply to the entire expression to the left.