Readit News logoReadit News
Georgelemental commented on NASA Is Worth Saving   caseyhandmer.wordpress.co... · Posted by u/EvgeniyZh
Georgelemental · 3 months ago
You have it exactly backwards. Musk has been one of the major forces in the administration fighting to preserve and fix NASA. It’s his opponents within the Trump admin who want to cut it, and who convinced Trump to scuttle Isaacman’s nomination.
Georgelemental commented on Marines being mobilized in response to LA protests   cnn.com/2025/06/09/politi... · Posted by u/sapphicsnail
Larrikin · 3 months ago
If illegal immigration is such a problem, why not fine businesses 5x salary for using the labor, for as long as it was used? There are a lot of systems in place to verify working status at this point. It eliminates any incentive to hire this cheaper labor willing to work for lower wages.

The people coming will be coming for a variety of reasons but it won't be to take the jobs of the uneducated Americans

Georgelemental · 3 months ago
Because that would require Congress to do something useful

Deleted Comment

Georgelemental commented on My five-year experiment with UTC   timestripe.com/magazine/b... · Posted by u/adamci
Georgelemental · 3 months ago
> Five years ago, I decided time zones should be abolished, and everyone should use one coordinated time.

> Moscow time, my local context.

Ah, Russia, what would we do without you! Never change. https://gwern.net/note/note#russia

Georgelemental commented on Ukraine destroys more than 40 military aircraft in drone attack deep in Russia   npr.org/2025/06/01/nx-s1-... · Posted by u/consumer451
storus · 3 months ago
While this is an impressive achievement, I am wondering if this prompts Russia to actually use nukes as it looks like they might be in front of a dilemma "use it or lose it" given what one can do with drones. Wiping out one third of one third of their strategic nuclear triad in a few hours might change their calculus considerably.
Georgelemental · 3 months ago
On the other hand, it’s by far the most useless and obsolete third
Georgelemental commented on Starting July 1, academic publishers can't paywall NIH-funded research   nih.gov/about-nih/who-we-... · Posted by u/m463
caycep · 4 months ago
This - Open Access has been around for a while. Battarchya is claiming he's removing the 1 year delay but I've def seen things published and openaccessed ASAP before so I'm not super familiar on the specifics.
Georgelemental · 4 months ago
The change is that now all NIH-funded research must be open access.
Georgelemental commented on Significant performance improvements with Edge 134   blogs.windows.com/msedged... · Posted by u/ksec
ArinaS · 5 months ago
3. Goanna exists, which is an engine forked from Gecko in 2016.
Georgelemental · 5 months ago
How many users does it have?
Georgelemental commented on Experimental release of GrapheneOS for Pixel 9a   grapheneos.social/@Graphe... · Posted by u/moelf
hexagonwin · 5 months ago
Huh? Pixels haven't had 3.5 jacks since Pixel 2 in 2017. wdym? GrapheneOS is exclusive to Pixels because no other device has the same security features like bootloader relocking.
Georgelemental · 5 months ago
The 3a, 4a, and 4a 5G had a headphone jack.
Georgelemental commented on A surprising enum size optimization in the Rust compiler   jpfennell.com/posts/enum-... · Posted by u/returningfory2
hinkley · 5 months ago
In a lot of languages space optimizing Optional Types without using a reserved enum value or pointer tags would lead to memory model problems with atomically writing two values at once which might be more easily solved in a borrow semantics world. I hope there is someone out there mining research papers for the implementation strategies that were abandoned as unworkable due to bookkeeping issues, which Rust has already paid.

But in the case of Options they tend to be both write-once and short-lived, so that removes a lot of necessity. Options are going to stay mostly on the stack and in async callbacks, unless they go into caches.

But for other data structures where multiples fields need a tag, I suspect Rust could use some bitfields for representing them. You’d need a fairly big win to make it worth implementing however.

Georgelemental · 5 months ago
> In a lot of languages space optimizing Optional Types without using a reserved enum value or pointer tags would lead to memory model problems with atomically writing two values at once which might be more easily solved in a borrow semantics world.

Yes, Rust suppresses the niche optimization for values wrapped in an `UnsafeCell` (which is how you signal to the compiler that “atomically writing two values at once” might happen). https://github.com/rust-lang/rust/pull/68491

Georgelemental commented on Show HN: I built a Rust crate for running unsafe code safely   github.com/brannondorsey/... · Posted by u/braxxox
dmitrygr · 5 months ago
You can skip all this nonsense with

    -fsanitize=undefined

Georgelemental · 5 months ago
Not foolproof, doesn’t catch everything.

u/Georgelemental

KarmaCake day3360January 2, 2021View Original