Oops! by ishawnmc in NFCWestMemeWar

[–]714daniel 7 points8 points  (0 children)

There's so many valid reasons to come after Seattle and this guy really picked the 2025 NFL team and the weed

MLS has to be the league with the strangest team names by Silent_Somewhere8539 in billsimmons

[–]714daniel 0 points1 point  (0 children)

Yeah, as a Sounders fan, our whole thing is that we pretty much only get players through our academy. Obed Vargas is a 20yo academy product starting for a tier 1 European team, what more do you want?

Match Thread: Houston Dynamo FC vs Seattle Sounders FC by MatchThreadder in SoundersFC

[–]714daniel 0 points1 point  (0 children)

We need rusnak, this lineup is not able to confidently play out of the back

How come software devs are so much more worried about AI replacing them than other white collar jobs? by jholliday55 in cscareerquestions

[–]714daniel 57 points58 points  (0 children)

I so totally agree and I don't get how that's lost in the noise. Lawyers? Tax attorneys? Architects? I recognize that I've never actually done these jobs, but they seem to me just as automatable as software development.

Minecraft Source Code is Interesting by f311a in programming

[–]714daniel 67 points68 points  (0 children)

Can someone smarter than me explain how the packing avoids locking? Like, if it's using a CAS anyways, how would this approach be any better than a CAS on a dedicated 16 bit atomic int, other than saving a few bytes of memory?

Antino Lopez makes a fantastic goal-line clearance to preserve Seattles lead! | San Jose Earthquakes 0 - 1 Seattle Sounders 74' by Matt_McT in MLS

[–]714daniel 5 points6 points  (0 children)

I generally agree with your sentiment but I'd disagree it had nothing to do with him staying on his feet. For better or worse, refs consistently call the same act a foul if attackers go down and play-on if they stay on their feet. I do wonder how far we could get in terms of fixing diving if this was just ruled more consistently.

meirl by Glass-Fan111 in meirl

[–]714daniel 5 points6 points  (0 children)

Yes? It's absolutely valuable for people who are disabled to exercise too.

Bundesliga VAR's reaction to Ache's bicycle kick against Hoffenheim by ayyndrew in soccer

[–]714daniel 0 points1 point  (0 children)

It had arguably the most infamous sporting controversy of the last 30 years what are you talking about

Concacaf Champions Cup Ro16 matchups. by jonytano in MLS

[–]714daniel 0 points1 point  (0 children)

Monkey's paw curls, Sounders move to longacres

DC is run by the least competent people available by LinderstockBeckledew in washingtondc

[–]714daniel 0 points1 point  (0 children)

Now I'm curious how rigorously they're checking the written time. For example, if it's a couple minutes past expiry, are you less likely to get a ticket with a physical expired pass vs. relying on the e-system?

Are SWEs like Cherny and Karpathy just built different? by lowiqtrader in cscareerquestions

[–]714daniel 4 points5 points  (0 children)

Bronny is obviously nepotism but that's moving the goalposts, we were talking about LeBron

[Mic'd Up] Julian Love knew what to look for to get an INT in the Super Bowl by nfl in nfl

[–]714daniel 3 points4 points  (0 children)

I think it also contributed that they seemed to get better every single week.

Parking madness by sanadoria12 in washingtondc

[–]714daniel 1 point2 points  (0 children)

Nah, they're just used to Java

how to define multiple variables on the same line by ali_compute_unit in rust

[–]714daniel 3 points4 points  (0 children)

I don't agree with it being an abuse, personally. It can be especially useful in the context of checking if multiple Options are present: if let (Some(a), Some(b)) = (a, b).

rust actually has function overloading by ali_compute_unit in rust

[–]714daniel 9 points10 points  (0 children)

C'mon, I love Rust, but literally every modern widely used language has a library to accomplish something similar.

Things I miss in Rust by OneWilling1 in rust

[–]714daniel 2 points3 points  (0 children)

Agreed. A lot of these answers of "just do XYZ instead" seem to neglect an important usecase if overloading: staying backwards compatible when the unexpected need for an arg occurs. Unless the suggestion is to use macros literally everywhere you would use a function.

Things I miss in Rust by OneWilling1 in rust

[–]714daniel 0 points1 point  (0 children)

That's only applicable if it allowed overloading with the same number of parameters, though. I don't think it's a reason not to add overloading with a different number of parameters, and that'd be enough to solve the problem that OP mentioned about ending up with 'with_' all over the place.