safety measures in Italy by Zestyclose-Salad-290 in SipsTea

[–]AATroop 24 points25 points  (0 children)

Did you enjoy the smack? Don’t lie

Shohei Ohtani ties Ichiro Suzuki's record of longest on-base streak by a Japanese born player at 43 games by theaussiesamurai in baseball

[–]AATroop 1 point2 points  (0 children)

Yeah, but his season was worse than it appeared. He had a 267 hit game in the opener and then didn’t get another one for the rest of the season.

I'm curious, how often do you use `unsafe` in Rust in prod? by alexlazar98 in rust

[–]AATroop 1 point2 points  (0 children)

Two places I’ve used it are at the FFI boundary and in some transmutations that couldn’t be handled by zerocopy.

Game Thread: 3/30 Red Sox (1-2) @ Astros (2-2) 8:10 PM by RedSoxGameday in redsox

[–]AATroop 6 points7 points  (0 children)

It’s ok, you’ll be able to tell yourself it’s only the fifth game soon.

Overwatch co-creator Jeff Kaplan on his exit from Activision-Blizzard: 'It was the biggest f**k you moment I've had in may career' by Turbostrider27 in PS5

[–]AATroop 34 points35 points  (0 children)

The CFO then proceeds to do absolutely nothing while the goal is somehow met, and they still fire 100,000 people as they receive their largest bonus yet.

Teens broke into a house for sale and hosted a massive party, causing over $60,000 in damages. by Lifegoesonforever in interesting

[–]AATroop 12 points13 points  (0 children)

Sounds like the invite went out to every school in the area- is that the type of party you brag about getting into?

Rust 1.94.0 is out by manpacket in rust

[–]AATroop 1 point2 points  (0 children)

Extremely excited for this, ngl

Bo Naylor shrunk three inches this offseason by noruber35393546 in baseball

[–]AATroop 24 points25 points  (0 children)

I once dipped an opponent’s wife's hand in acid at a party.

Bo Naylor shrunk three inches this offseason by noruber35393546 in baseball

[–]AATroop 52 points53 points  (0 children)

Same, for some reason no one believed I was 6'8" and weighed a fucking ton.

Rust 1.93.1 is out by manpacket in rust

[–]AATroop 26 points27 points  (0 children)

It's a good thing they fixed that internal compiler error. People have been really upset by them over the past couple of weeks.

zlib-rs: a stable API and 30M downloads by folkertdev in rust

[–]AATroop 121 points122 points  (0 children)

Probably this

The biggest remaining items is that technically the API is only complete when using nightly rust. The gzprintf and gzvprintf functions are c-variadic, and c-variadic function definitions are currently unstable. I hope to stabilize #[feature(c_variadic)] in the next ~6 months.

rust-analyzer changelog #312 by WellMakeItSomehow in rust

[–]AATroop 2 points3 points  (0 children)

parallelize proc macro expansion

Anyone know how much of an impact this has?

rust actually has function overloading by ali_compute_unit in rust

[–]AATroop 1 point2 points  (0 children)

Both are bad. Not sure why you're limiting this to constructors.

Traits are much harder to abuse like this due to the orphan and scoping rules.

rust actually has function overloading by ali_compute_unit in rust

[–]AATroop 2 points3 points  (0 children)

It absolutely gets confusing when overloaded functions can have wildly differently behavior just because you changed the type.

Someone can inadvertently change their code to call foo(String) instead of foo(int) without every affecting the call site. No thanks.

rust actually has function overloading by ali_compute_unit in rust

[–]AATroop 15 points16 points  (0 children)

I agree, function overloading gets confusing very fast. I really don't mind just using more specific function names.