sabin

joined 11 months ago
[–] sabin 5 points 12 hours ago

Source of radiation given to someone to hold in their wallet/pocket

[–] sabin 11 points 2 weeks ago

Let the base kick ooooooooooo AAE-O-A-A-U-U-A- E-eee-ee-eee AAAAE-A-E-I-E-A- OO-ooo-oo-oo-oo EEEEO-A-AAA-AAAA

[–] sabin 3 points 4 weeks ago

Choose an operating system (common choices for newcomers are typically linux mint or ubuntu, but your choice of OS really doesn't matter imo). Burn the OS image onto a flashdrive, and boot into the flashdrive. Then follow the install instructions onscreen.

[–] sabin 2 points 1 month ago

I take it you're not a fan of the borrow rules?

Would you rather manage your memory yourself, or would you rather use a language with a runtime?

Those are your only 2 remaining options for managing memory if you exclude rust-like reference constraints.

[–] sabin 2 points 1 month ago

Wasm bindgen is an absolute nightmare of auto-generated function names. From a purely performance/functionality perspective it works but it's hella ugly. I hope some alternative arrives at some point.

[–] sabin 4 points 1 month ago

Not to mention, if you accelerate your spacecraft to a speed faster than the minimum speed needed to raise your orbit as far as mars, you're going to have to slow down by the difference between your speed and that min speed when you go for a landing anyways.

The pace of the orbits alone decides how quickly your spacecraft will get there.

[–] sabin 5 points 1 month ago

The ban is for all forms of gender affirming care (i.e, hrt, non-physical)

[–] sabin 1 points 1 month ago

So does old reddit but its also the only version of the site I find usable. UX people can have absurdly lopsided priorities.

[–] sabin 2 points 1 month ago (1 children)

Good luck determining which combination of its 1.5 billions weights/biases corresponds to sympathy for the chinese.

[–] sabin 3 points 1 month ago (1 children)

Deepseek's responses to questions about the ccp are likely not implemented in the same manner as the oversight mechanisms preventing you from asking about illicit drug production and whatnot.

If sufficient information about the CCP is literally not provided to it in its training data then it is not a simple matter of turning the mechanism on or off.

[–] sabin 6 points 1 month ago

There does exist a crate that allows you to turn it off. Unfortunately the compiler will still compiler your code assuming the same exclusive access rules imposed by the borrow checker, so any time you break the borrow checker rules you're basically guaranteed to segfault.

The rust compiler always assumes mutable pointers are exclusive. This is the crux of your issue with the borrow checker. If you don't make this assumption, then you can't automatically drop variables when they fall out of scope, thus the programmer would have to manually allocate memory.

You may prefer even then to allocate memory yourself, but if I was you I would just trust the rust compiler in its assumption that it can optimize programs much better when all pointers are exclusive, and learn to program in a compliant manner

view more: next ›