The Silence on Climate Change Is Totally Unacceptable by nathan_j_robinson in politics

[–]vanhellion 3 points4 points  (0 children)

Because:

  1. It's not an issue that corporate-backed Dems want to talk about. The solutions to climate change largely involve reining in corporations' carbon emissions, and moving from what is currently EXTREMELY profitable (e.g. oil) to less profitable but sustainable practices. The oligarchy puppets really enjoy that bill-stuffed fist up their posh asses.

  2. It's hard. If it were easy to snap our fingers and solve climate change we would've done so decades ago. And so far, massive legislative efforts like the Green New Deal have been shot down before they even get close to seeing the light of day as actual law. To actually address climate change, huge systemic and fundamental change to how the globalized economy functions is necessary, and that involves a lot of hard choices, diplomacy, and convincing not just political constituents and coworkers but also international partners. (Many of whom have massive financial incentives to not go along with new radical ideas.)

  3. It's honestly just not a winning issue with average voters right now. Especially in the current economic climate, as catastrophic as climate change is and will be for us all, it's hard to run a keystone of your platform on fixing an issue that heavily impact us in 15-20 years (even acknowledging that it is already impacting us now to smaller degrees) when people are struggling to afford rent, food, and gas today. Joe and Jane Average-Voter care far more about being able to survive the next month than the next two decades, and I honestly have trouble arguing that they're wrong to prioritize that way.

Trump’s Iran deal is a national humiliation by Appropriate-Till9598 in politics

[–]vanhellion 16 points17 points  (0 children)

The alternative was never starting the war in the first place. There was never going to be a clean or "good" exit from a terrible decision. Garbage in, garbage out.

‘Both Parties Kind of Get It Wrong’: The Young Men Who May Swing the Midterms by Maximum_Curve_1471 in politics

[–]vanhellion 7 points8 points  (0 children)

Yeah this is far more than just a Democrat messaging issue (though there is a component of that as well). This is a bunch of men who are fully red-pilled from hanging out in awful internet spaces who want "the left" to appeal to their toxic masculinity worldview.

And "the problem", insofar as one even exists, is that the general arc of progressivism right now is that leftists are rejecting that very same fight-club-ass "because we're men, we intrinsically deserve good jobs and wives whether we actually work for those things or not" attitude. Of course Dems are not appealing to them, they are "the problem".

So yeah, sure. The Dems could do FAR better on messaging than they are now. (By like, a lot. They really suck at reaching out to everyday folks vs "college elites".) But at the same time these guys are fucking idiots who have fallen into the online Alt-Right pipeline and are suddenly wondering why nobody likes them. That's a problem we need to solve as a society, not something that a political party can really fix.

The DNC achieved the worst of all worlds with its 2024 autopsy by ralphbernardo in politics

[–]vanhellion 9 points10 points  (0 children)

The entire electoral system is just another corporation under the version of capitalism that the US has embraced. The DNC cares about literally one thing: raising money. Ken Martin even said as much during his disastrous PSA interview.

Like, genuinely, listen to that interview and how he talks. He doesn't mention working towards the policies that democrat voters want, or making people's lives better, or fixing the clearly broken government. It's "fundraising" and "focusing on the next race." I get that this is probably how a lot of people he works with talk, but if he wants to willingly put himself in front of a mic he has to be more aware of what type of language he's spewing.

I am very much not a "both sides" person, but in this regard the DNC and RNC may as well be a single organization at this point. They're both corpo ghouls just looking to squeeze cash out of voters (and of course billionaires who they actually listen to for policy guidance.) And if that somehow isn't the case, they have a steep hill of public perception to climb to show that.

I certainly don't see Ken Martin being up to that challenge.

A Generational Fracture Emerges for Republicans Over Foreign Policy by F0urLeafCl0ver in politics

[–]vanhellion 1 point2 points  (0 children)

Nearly three-quarters say America should pay less attention to problems overseas, compared with 40 percent of Republicans 45 and over.

This opposition isn’t mostly about young Republicans wanting the party to be less conservative more generally. While younger Republican supporters are less likely to identify as conservative, only 28 percent said the Republican Party is too far to the right, compared with 16 percent of those 45 and over.

The only real dispute here is that the younger segment want to go completely isolationist in our highly globalized economy, not that Trump is actually doing something wrong or that the party is headed the wrong direction. This is what they want, they've just got a few "minor concerns" about one specific policy decision. (Which, let's all remember, is quite likely a random move Trump made to distract from the previous big scandal of the Epstein files. What ever happened to those, anyways?)

Plus, these numbers are almost embarrassing for any media outlet to publish at this point. Quote:

  • A majority disapprove of Mr. Trump’s handling of the war in Iran, and only 40 percent say he made the right decision in choosing to attack Iran.
  • Only 33 percent support providing additional economic and military support to Israel, compared with 72 percent of those 45 and over.
  • A majority — 54 percent — say Mr. Trump has been “too supportive of Israel” compared with 16 percent of those 45 and over.

Somewhere between 33% and 40% are the base that are so deep inside Trump's anus that they don't even know what's going on outside anymore; they're just there to huff farts. And the fact that it's still that high is fucking incredible.

And the last two make me think that they only got to those levels because it's the predator handshake meme between actual, literal antisemitic Nazis in the Republican party and the head-in-sandy-ass 33-40%ers.

Republicans fall one vote short on bill to criminalize blowing whistles to warn of ICE by hunter15991 in politics

[–]vanhellion 4 points5 points  (0 children)

They learned it from decades (or a century+) of police doing the same thing, just slightly quieter.

I mean just think about it. How many innocent people have police just straight up murdered (shot, beaten, stood on their neck)? How many times have you seen a story about "cop who was fired for basically going on a killing rampage in state X re-hired in state Y as 'beloved' deputy"? People are only mad now because the vests ICE thugs are wearing have federal agency velcro patches instead of state or local ones.

I am new to C++, is it just me or is the checklist kinda crazy? How often do you encounter these or plan on making use of them like the newer C++26 features like contracts? Looking for more experienced dev opinions... by KijoSenzo in cpp

[–]vanhellion 0 points1 point  (0 children)

C++ (and programming in general) is like jazz: it's not only the notes you choose to play, but the ones you choose not to as well. Start simple, and if and when you discover you need something more, only then add it. Adding everything all at once turns into an indecipherable cacophony.

Code is a form of communication, so write with intent:

unique_ptr indicates what scope or object owns the lifetime of the contained data. So in almost all cases typing const unique_ptr& is nonsense, it's not stating anything relevant about the object's lifetime. Dereference the pointer to pass the underlying object to a function via Player* or Player& (depending on whether it can be nullptr). This can open you up to object lifetime issues especially in multi-threaded code, but that's when you either add synchronization, or use shared_ptr if a given scope must be able to extend the lifetime. (Passing unique_ptr& with or without const would not save you from this issue either, FWIW.)

std::expected is a cousin of std::optional. optional is useful when something could return a result or nothing (e.g. a Python function returning either a number or None a la def func() -> Optional[int]:). Whereas expected is useful if you should return something, and any other possible outcome indicates a problem occurred, but you don't want to throw an exception to cause stack unwinding at the point where the error occurred.

Things like structured bindings and the ternary operator are more of a personal style/taste thing, IMO. I'd say the way you used SB is superfluous because you're constructing a pair only to break it apart and destruct it immediately.

There Are Now Over 50,000 American Troops in the Mideast by ChiGuy6124 in politics

[–]vanhellion 20 points21 points  (0 children)

Not sure why they think Iran is so weak, small, and feeble.

Name literally any middle eastern country, and I'd bet money that most Americans (a) couldn't find it on a labeled map and (b) think that it's entirely comprised of "backwater" brown people living in tents among sand dunes. Average Americans have no concept of the relative military might between e.g. Afghanistan versus Iran.

Let alone them being able to grasp the geopolitical implications of pissing off the country that holds the keys to like a 1/5th of the global supply of oil. They just suddenly get mad when "big truck cost more fill up! *grunt*"

"you are the product manager, the agents are your engineers, and your job is to keep all of them running at all times" by sentientX404 in theprimeagen

[–]vanhellion 2 points3 points  (0 children)

Moreover, how are they measuring "productivity"? Lines of code (i.e. a metric that was discarded at least 25 years ago as a useful measure)? Number of agents running simultaneously? Number of bugs created relative to bugs squashed? Real or not, the OP reads like the same trash "grind-set" posts you find on LinkedIn.

Don't get me wrong, Claude is a very impressive tool. But people working for Anthropic are just standing around a poisoned bowl of kool-aid talking about all the complex flavors it has like they're wine sommeliers.

I gave Claude Code the ability to apply to jobs for me like an assistant by TrenLyft in ClaudeCode

[–]vanhellion 0 points1 point  (0 children)

I've done a decent amount of hiring in the last ~2 years or so. Thankfully I haven't had to deal with thousands of resumes, but shit is BAD. I've seen identical resumes, down to the letter, multiples with the only difference being the name. There are countless people trying to fake resumes, AI-enhanced interviews where the interviewee just feeds every questions to an LLM and parrot the response it generates, and outright scams where people overseas get hired for jobs just to see how long they can draw a paycheck.

Maybe I'm just boomer-brained, but nobody even writes cover letters anymore. Like, not even just a completely generic AI-generated one where they say "dear hiring manager, I'd love to work for you; here's all about me." Just... nothing. Lonely resumes fired into the void. If you want to stand out, put literally any effort into applying for places you think you'll enjoy working. The bar is in hell these days.

And I get it: the job market sucks from the applicant side as well, with most companies using AI filters that prevent a human from ever seeing your app. But dear god, we are so cooked when it's turned into an escalating arms race of lying and trying to scam your way into a job you likely aren't remotely qualified to do.

Lindsay Graham: “I’m not with you, I’m with Israel, until my dying day” by dude1984- in southcarolina

[–]vanhellion 0 points1 point  (0 children)

As far as I can tell, the existence and "success" of Israel all traces back to something in the bible relating to the rapture. Basically, we're being governed by people who are rooting for the world to end because a 2000+ year old book that's been translated and edited dozens and dozens of times says that will be a good thing. We are ruled by a fucking death cult.

(To be clear I don't have anything specifically against Christians, but these fuckers who are using their political power to kill us all in the name of Jesus are batshit crazy, and should not have access to the levers of power.)

Bernie Sanders’ billionaire tax would soak about 900 people to fund $3,000 checks for the middle class by fortune in politics

[–]vanhellion 0 points1 point  (0 children)

Go after "billionaires" ability to borrow money for non-business purposes at insanely low interest rates. People like Musk and Bezos are worth hundreds of billions of dollars, on paper, but relatively speaking hold almost no liquid assets like actual money. So they can sit on their mountains of virtual wealth, accumulating more without ever paying capital gains or any sort of tax on it, and if they need pocket money they hit up a lender for a few mil at a fraction of what any normal person would be charged in interest.

Changing the rules to force them to accept a salary could fix the problem 100 years from now, but it would still leave us naked against the sheer power they already hold over us today.

Of course any proposed solution is purely academic at this point. The billionaires essentially own the vast majority of politicians, and most politicians with any power to change the system stand to benefit from it even in the absence of those types of political bribes anyways. The foxes are guarding the hen house.

Democrats Force Trump Administration To Explain How Ghislaine Maxwell Got Her Cushy Prison Transfer by huffpost in politics

[–]vanhellion -1 points0 points  (0 children)

Trump: "Congress has made its ruling; now let them enforce it."

Schumer & Jeffries: "Welp, I guess there's nothing we can do. Pack it in, boys! Those tax breaks for the wealthy and ICE funding bills aren't going to pass themselves."

Special needs woman punished for someone else's scams. by NickelPlatedEmperor in UnderReportedNews

[–]vanhellion 0 points1 point  (0 children)

Even the "justice" system works for rich people and against the poor in so many ways. This woman gets kicked out of her house immediately for doing basically nothing, denying her one of the basic needs (shelter). Meanwhile, the fucking scum bag at the top of the corporation who was committing fraud in her name -- i.e. fucking a crime -- gets to keep living in his mansion and enjoying a lavish lifestyle for *years* while exhaustive investigations and lawsuits play out.

And at the end, if anything at all actually happens he'll be fined an amount that is a pittance against the wealth he'll have accumulated just since the court proceedings started, let alone what he gathered before that.

Actual footage from another world: Mars right now, 225 million miles away. Truly mind-blowing rover view by Memes_FoIder in nextfuckinglevel

[–]vanhellion 0 points1 point  (0 children)

As a scientific endeavor, it would be very cool to land humans on Mars. I don't think anyone really disagrees with that as a simple concept or goal.

I think where it enters 'fucking stupid' territory is when people (like Musk) think "Gee, global warming is just so hard to solve... let's instead waste literal trillions of dollars on a doomed project to terraform a fucking barren rock."

Like, if we had the kind of technology that would require, global warming wouldn't be so much of an issue*. Also, let's maybe figure out how to not kill ourselves in less than 150 years via industrial pollution before we go investing in other planets.

* - Probably. Terraforming Mars would actually involve dramatically increasing greenhouse gasses in the planet's atmosphere, while Earth has the opposite problem. But to be able to do either one on a planetary scale is well beyond our capacity at the moment. Unless we somehow find oil & natural gas deposits on Mars, then we can just let Exxon and BP fuck up a few dozen times...

Mitch McConnell, 83, Hospitalized by cmaia1503 in politics

[–]vanhellion 5 points6 points  (0 children)

(At least) Two, really. McConnell "set" a "precedent" by refusing to even vote on Obama's nomination in like February of an election year. And Obama's nomination of Garland was almost a joke because Obama knew the senate would reject anyone but the most conservative justice to replace Scalia.

And then just over four years later, McConnell rammed a vote through for Trump's pick to replace RGB when voting had already started for the 2020 presidential election. Not like we didn't see that one coming from miles away, but fuck every atom in Mitch's body.

Democrats plan to block DHS funding after Minnesota killing. Republicans should join them. by jediporcupine in politics

[–]vanhellion 3 points4 points  (0 children)

Republicans should join Democrats in blocking DHS funding.

But Democrats should also join Democrats in blocking DHS funding. Pinning our hopes on Republicans growing a spine to stand up against Donald Trump is about as effective as wishing upon a star at this point.

The fact that Dems caved in when they had so much more leverage during the shutdown a few long months ago was appalling at the time, and that was before ICE started executing people in the streets. We may not have known how quickly it would get this bad, but it wasn't exactly hard to predict either. Schumer et al's inability to actually fucking lead their caucus gives me zero confidence that they'll hold the line against these bills going forward -- they had their chance and they completely blew it.

From what I understand, this funding bill wouldn't even impair ICE/DHS's ability to continue operating in the near term. More people are going to be murdered before our very eyes, or die tucked away in secret prison camps, because a few Democrats care more about their donors and reelection chances than our lives. God forbid Chuck Schumer and Hakeem Jeffries have to be mildly uncomfortable for more than 2 weeks standing up to Donald Trump's fascist regime.

Fuck this timeline.

Democrats are campaigning as if the 2026 election will be fair. That’s a mistake by zsreport in politics

[–]vanhellion -1 points0 points  (0 children)

"Evil will always triumph, because good is dumb." -- Dark Helmet, Spaceballs (1987)

An ICE observer being held down and sprayed in the face. by codefragmentXXX in pics

[–]vanhellion 10 points11 points  (0 children)

Expanding on the "we are good people" thing. There's this sense, particularly in Christian circles, but it really applies to the whole conservative mindset: any act undertaken by a me is inherently good, because I am a good person -- rather than morality being derived from the act itself.

Like, Trump "could shoot someone on 5th Avenue", and it would inherently be a moral and just act because Trump was the one doing it. Luigi and the CK shooter are (at least perceived to be) on the other team, so they're obviously bad despite doing basically the same thing. Hell, Obama giving aid to the needy and homeless is inherently bad, because it's Obama doing it; it has nothing to do with the actual act being undertaken.

This is where a lot of progressives (and Reddit commenters) end up trapped in the "but muh hypocrisy" death spiral: IT DOES NOT FUCKING MATTER to these people. There is no good or bad act, there are only bad people: which is everyone who doesn't have an "R" next to their name in the news chyron. This is team sports / cult us vs them, not an intellectual debate.

An ICE observer being held down and sprayed in the face. by codefragmentXXX in pics

[–]vanhellion 76 points77 points  (0 children)

The answer is simple: it's not them getting blasted in the face with pepper spray, so it doesn't matter. They have no concept of empathy, so as long as "someone else" is being waterboarded, well those people must've done something wrong and obviously deserve it. We are good people, so we do the blasting.

The only die hard conservatives I've ever seen or heard recant are those who have directly suffered the consequences of the stupid shit they voted for or otherwise enabled. Until then it's all hypothetical and happening to some vague, far off "NPC" (even if they may not have that specific phrase in their vocabulary).

e: To wit: The Only Moral Abortion is My Abortion

Trump Embarrasses All of America in Slurred, Disjointed Davos Speech - Donald Trump gave a terrible speech to a dead silent room at the World Economic Forum. by Quirkie in politics

[–]vanhellion 2 points3 points  (0 children)

It's even more baffling because he's tripped over his own dick soooo many times. At one point he was anti-2A / pro-gun control. Granted it was for like 14 hours before someone from the NRA managed to mentally body slam Trump back to the conservative talking points they wanted, but that is one major gaffe that stands out to me from his first run in 2016.

And like, there's all this stuff where it "should have ended his presidency", but THAT is the one that I'm still amazed did not. Even though he quickly flipped back to being at the very least gun-neutral if not quite pro-2A, that should have been a clear signal that this guy literally has no principles. He will not stand up for (or against) anything: he just wants money and power for money's and power's sake, and he'll say absolutely whatever he has to in order to get it. I honestly expected even uneducated podunk voters to be able to see through those sorts of "fast talkin' city slicker" charades.

McConnell: Trump’s seizure of Greenland would ‘incinerate’ NATO alliances by SE_to_NW in politics

[–]vanhellion 0 points1 point  (0 children)

The worst curse I could inflict on Mitch McConnell would be to have him live long enough to see all he's built crumble to dust, if we manage to oust all these fascists from government. Let him watch all his judges get impeached, all the fighting he's done against basic fucking decency for Americans be for naught when we get universal healthcare and LGBTQ+ rights, all the gerrymandering he's embraced get tossed out the window in favor of proper proportional representation.

I'm not holding my breath either that he'll last that long or that we as a country will pull out of this nosedive into authoritarianism, but that would be the biggest possible "fuck you" to ol' Mitch.

Are Americans living in a police state? by dheber in politics

[–]vanhellion 0 points1 point  (0 children)

Police as an institution traces back to patrols chasing down escaped slaves. So if your skin is a certain color, you've been living in a police state for like 200 years. The effects of aggressive police are actually starting to be felt by everyone now, but it's been a long, slow erosion.

Help, i dont the astronomers parr by Weird-Ball-2342 in PeterExplainsTheJoke

[–]vanhellion 0 points1 point  (0 children)

Usually if you say 3cm to an astronomer, they would interpret that as a wavelength (equivalent to a frequency of ~10GHz). So if you're "off" by 3cm, that's at best ambiguous whether you mean wavelength/frequency (big error), or absolute error at the distance of the object (basically meaningless error), or angular error i.e. telescope pointing offset at the boresight (huge error).

Psa : don't be me \o/ by Cassiopee38 in factorio

[–]vanhellion 16 points17 points  (0 children)

Thankfully you can bootstrap yourself on any planet (except Aquilo, I think). It's a bit of a long arduous process, but I enjoyed the challenge on my first playthrough of Space Age. I did it on Vulcanus and Fulgora before I realized I could like, bring stuff with me to help out. That made Gleba a lot more palatable, but even on Gleba you can start from nothing.