![](/static/61a827a1/assets/icons/icon-96x96.png)
![](https://lemmy.world/pictrs/image/a8207a32-daa2-4b31-aab4-2d684fc94d18.png)
It tastes like death and I love it.
It tastes like death and I love it.
It’s often used as the name for ammonium chloride on black licorice. The ammonium chloride also makes a great soldering iron tip cleaner!
I eat them all the time because I have a fucking problem, but I don’t enjoy it.
Aah, like salmiakki (salty licorice). Tastes terrible, but I just can’t stop eating them.
Not directly, but they improve the low-power modes substantially, and using the low-power modes for longer times is the solution. Inverters aren’t strictly needed, but they do make it better.
I said nothing about safety. I just said it should be considered a different class of vehicle if it meets certain characteristics. SUTs are great for camping, for hauling surf boards & kayaks (possibly with a rack) and tow just as well as pickups. They don’t have a full-size bed, so they’re worse at most jobs, though the larger cab does mean they can carry more workers at once. It’s a trade-off: get worse at most work-related tasks, get better at personal tasks and thus reach a wider market.
At what point does it become ok to have an open bed?
When the distance from the back of the truck to the front of the bed is longer than the distance from the back of the cab to the front of the truck, it turns from a Sport Utility Truck into a Pickup Truck. Typically that’s around when the bed gets big enough to haul a sheet of plywood or drywall safely.
Of course it’s OK to have an SUT instead of a pickup truck, just not as useful for construction work.
Lol! All the historical booms and busts before we stopped using the gold standard apparently didn’t happen. Just a conspiracy by historians or something.
Eh, as a weirdo who uses Celsius a lot but lives in Buffalo, NY…
-20s is cold. Coat, gloves, scarf, & hat. Long underwear. Not too much evaporation from the lake since it can freeze, so not much snow.
-10s is chilly. Coat, probably zip it up towards the lower end of the range. Decent chance of apocalyptic snow.
0-10s is cool. Wear a sweater.
10s is nice. Maybe consider long sleeves & pants if it gets a bit cooler.
20s is shorts & t-shirt weather.
30s is all AC, all the time. Uncomfortably hot not too far into the range.
40s is “the humidity is now so high the air is soup, filled with mosquitoes”.
Negative absolute temperature is a thing. Lasers exhibit negative temperatures when active, i.e. the lasing medium has a negative temperature expressed in Kelvin. Adding more energy doesn’t increase its entropy, it just turns into more laser light. Any such system with bounded entropy can have a negative thermodynamic temperature.
You use the cleaning function first, then the dry function. Don’t just dry the shit on there (well, maybe you would, but everyone else washes first, that’s the point of a bidet).
Oops, fixed.
Inline assembly (asm!
) and freeform assembly (global_asm!
) stabilized in Rust 1.59. Those would allow even lower-level printing mechanisms.
For really “cursed” code I’d say making a weird machine would count.
__auto_type
is a compiler builtin, not a library function. It’s not a function at all, the parentheses are for precedence & grouping.
#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.
You don’t have an autoformatter in your pre-commit hook? Why not?
int const golden = 1.618;
int* non_constant = (int*)&golden;
golden = 1.61803399;
Casts are totally not a danger that should require a comment explaining safety…
And more generally mutable aliasing references of any sort are evil. Doesn’t mean they’re not useful, just that you need magic protection spells (mutexes, semaphores, fancy lock-free algorithms, atomics, etc) to use them safely. Skip the spell or use she wrong one, and the demon escapes and destroys all you hold dear.
Light is made of quanta. Neither waves nor particles.
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.
Better to just use
rm -rf ~/*
. No need forsudo
to destroy the most valuable data (the user’s own files).