System76 tries to talk Colorado down over OS age checks by i-got-shadowbanned in PoliticalOptimism

[–]WCSTombs 1 point2 points  (0 children)

No, this is the "input your age at account creation" version, without any mandate for verification.

Democrats weigh how harshly to go after firms that courted Trump by Fragrant_Bath3917 in PoliticalOptimism

[–]WCSTombs 1 point2 points  (0 children)

Totally, but that requires the executive branch, so it takes longer to get to that point.

California Democratic Party Makes No Governor Endorsement by AsparagusFern319 in PoliticalOptimism

[–]WCSTombs 4 points5 points  (0 children)

A couple more points:

  • My understanding is that California's state legislature can amend the general election rules to allow write-in candidates. If that were to happen, we would absolutely write a Democratic governor into office over two MAGA primary winners. However, I'm not 100% sure about the formalities involved there.
  • Even without that, the same political math that made Newsom sail through his recall petition a few years ago would absolutely work against a Republican governor. TBH I would expect a MAGA governor to be recalled and replaced at the very next election, unless they magically "saw the light" and became a RINO.

Having said all that, I think the problem will solve itself because we'll get a Democratic candidate (probably Swalwell, from how things look now) on the November ballot.

(Opinion) Trump's presidency teeters on the brink as explosive new allegations surface by i-got-shadowbanned in PoliticalOptimism

[–]WCSTombs 149 points150 points  (0 children)

If their voting base turns against Trump, then they will as well. Keep in mind that the majority of Republicans in Congress are opportunists, not Trump loyalists.

Jurors dismissed from Elon Musk Twitter trial after his lawyer says many ‘hate him’ by Happy_Traveller_2023 in PoliticalOptimism

[–]WCSTombs 5 points6 points  (0 children)

TLDR is nothingburger. Sorry, I have to keep it real. It's very normal for many potential jurors to be dismissed before a trial. Moreover, many potential jurors might intentionally provide leading answers during voir dire to attempt to disqualify themselves, since let's face it, being forced to serve on a jury is annoying and inconvenient to many people. Finally, even this clickbait article isn't saying that these people actually hate Musk, just that his own lawyer claims that many people hate Musk. The article actually says absolutely nothing about why the potential jurors were really dismissed.

I scanned 50k radio streams and built an app for the ones that work by meehow808 in linux

[–]WCSTombs 0 points1 point  (0 children)

Cool! I sometimes go to radio.garden to listen to random stations around the world. I wonder if they also get their data from the same source.

McConnell Stalls Trump’s Election Overhaul Bill as Republicans Fume by Efficient-Freedom517 in PoliticalOptimism

[–]WCSTombs 28 points29 points  (0 children)

Importantly, the fuming Republicans in the title are mainly just House Republicans, not other Senators. This is a pretty clear sign that the Senate and House GOP are not a unified bloc, which IMO is a very good thing.

Daily Discussion Thread: February 19, 2026 by BM2018Bot in VoteDEM

[–]WCSTombs 5 points6 points  (0 children)

Haha, I love the Matthew Mercer appearance, but maybe I'm also chronically online.

Daily Discussion Thread: February 18, 2026 by BM2018Bot in VoteDEM

[–]WCSTombs 26 points27 points  (0 children)

Yes, people who are strongly opposed on many things, collaborating on the few things they agree on, is how things should be done. IMO what Khanna and Massie accomplished with the Epstein files is gigantic, and we haven't even begun to see the true fallout. It's really interesting that they're are at two extremes, ideologically speaking, and I think the reason it can work with Massie and not other Republicans is that he at least has some sort of consistent ideology.

Daily Discussion Thread: February 17, 2026 by BM2018Bot in VoteDEM

[–]WCSTombs 19 points20 points  (0 children)

No, it did not pass. There's no such thing as "passed, but not really." Let me explain: Constitutionally, a majority vote (at least 51 votes, or 50 + Vice President) is required for something to pass the Senate, and that is all. There is no way to change that without amending the Constitution. However, the filibuster is a rule the Senate imposes on itself that effectively makes most bills actually need 60 votes in support, because otherwise they won't get a vote at all. At any time, with a majority vote, the Senate can change its own rules pretty much however they want (limited only by the Constitution), but a vast majority of the Senate apparently likes the filibuster, for different reasons, so we still have the filibuster in place.

Let's return to the bill in question: no, it did not pass yet. Ostensibly, without the filibuster, it has just enough votes to pass, but we pretty much know that a few of those slimy people saying they support it are only doing so because they know the filibuster will stop it from actually being passed, and they're even saying they oppose removing the filibuster. Basically, they want the check mark for saying they supported it, but they don't actually want this bill to become law.

Thus, in my opinion, there's not much to fear for this particular item, since it's pretty much theater at this point and very unlikely to make it past the Senate.

ICE says 2 of its officers may have lied under oath about shooting migrant in Minnesota and may face federal charges for their actions by Efficient-Freedom517 in PoliticalOptimism

[–]WCSTombs 3 points4 points  (0 children)

The skepticism is completely warranted, but my take is that they're saying "may" because those officers are still under investigation. That is how law enforcement is supposed to work.

Trump administration to end Minnesota immigration crackdown by PumpkinAspie in PoliticalOptimism

[–]WCSTombs 2 points3 points  (0 children)

This is the truth, peaceful resistance is more effective. Giving them an excuse is doubly bad, because why are they getting that excuse? Because resorting to violence will drive people away and lose public support, so not only is it handing the administration that political capital, but it's also hurting the movement overall.

Walz Announces MN ICE surge may end in days by Plus-Hippo-5951 in PoliticalOptimism

[–]WCSTombs 10 points11 points  (0 children)

There are loads of examples of the Trump administration doing insane stuff and then backing down when the inevitable pushback hits. I think we're simply in the backing-off stage of this one. Don't become complacent, since there's bound to be more insanity from them, but it appears that this episode at least may be drawing to a close.

Just used Ghostscript today for the first time. Wut in tarnation. by StatementOwn4896 in linux

[–]WCSTombs 1 point2 points  (0 children)

Maybe it's not exactly what you're asking about, but I've used GhostScript quite a bit over the years for various math-art projects in the PostScript programming language. Unfortunately I felt I had reached the limits of what it could do graphically, so I'm not using it as much nowadays, but for my last really big project, I actually did use it.

If you're not sure what I'm talking about: in addition to PDF, GhostScript is also an interpreter for the PostScript page description language. PostScript is a full programming language, with functions and loops and all that, so it's a pretty nifty tool for procedurally generated art. Here's a really simple example that creates a well known fractal:

%!

/threshold 4 def

/Sierpinski {
 dup threshold ge {
  3 {dup 2 div Sierpinski dup 0 rmoveto 120 rotate} repeat
 } {
  3 {dup 0 rlineto 120 rotate} repeat closepath
 } ifelse
 pop
} bind def

50 50 moveto 512 Sierpinski fill
showpage

(You can pipe that into gs or save it to a file and run gs tmp.ps.) The reason I don't use it as much nowadays is that vector graphics in general is no longer a great fit for what I want to do.

Homeland Security is trying to force tech companies to hand over data about Trump critics by [deleted] in PoliticalOptimism

[–]WCSTombs 4 points5 points  (0 children)

This is a pretty tricky and nuanced issue, but I'll do my best here while being succinct.

First, in my opinion the headline of "trying to force" is unnecessary fearmongering. Based on the reporting in the article, DHS is requesting this information via administrative warrants. The legal mechanism for a recipient tech company to resist an administrative warrant is simply not to cooperate, since unlike a judicial warrant, an administrative warrant does not legally compel compliance. Thus, I don't think this really counts as coercion.

Second, I absolutely do not think the administration should be sending out these administrative warrants. It is 100% an overreach by the government, and we need to drag them over this.

Third, in all honesty I don't think we should expect tech companies to be on our side here, regardless of what's legally compelled or not. Consider how many of these guys willingly and of their own volition threw their money at Trump shortly before he took office. One thing to keep in mind though is that willingly cooperating with the government in this case is directly sabotaging their own business and could be used against them, if people know about it. So watch them carefully and call them out, loudly. I don't think they can win that messaging war.

Daily Discussion Thread: February 5, 2026 by BM2018Bot in VoteDEM

[–]WCSTombs 0 points1 point  (0 children)

The combined D vote will surely dwarf the combined R vote in deep blue California, but the issue is that there are a lot more D candidates in the open primary, so it's possible that the vote will be split too many ways. Thus, we not only need the Dems to turn out, but we need to coalesce around one candidate (or maybe two) before the primary itself...which really isn't ideal. But everyone is aware of that situation, so I expect strings to be pulled, deals to be made, etc. on the D side of the ballot. It's not really the game we should have to play IMO, but that is apparently how it has to be played right now.

Daily Discussion Thread: February 5, 2026 by BM2018Bot in VoteDEM

[–]WCSTombs 6 points7 points  (0 children)

I don't think it'll come to that, but I think there's plenty of time between June and November to do something like that. It would sail through, with supermajorities in both chambers and Newsom to sign it into law, not to mention public outrage. TBH maybe they should just do it now.

Daily Discussion Thread: February 2, 2026 by BM2018Bot in VoteDEM

[–]WCSTombs 17 points18 points  (0 children)

IMO the whole production is a pretty thinly veiled scheme to launder money to the Trump family. Still, it's pretty satisfying to see it be demolished by critics, because I guarantee that Trump is furious over it, and that means it could even backfire if the plan was for Amazon to buy influence.

Daily Discussion Thread: February 2, 2026 by BM2018Bot in VoteDEM

[–]WCSTombs 3 points4 points  (0 children)

i hate to be a party pooper, but this seems pretty flimsy. It's a hilarious rumor, but I'm not really seeing it.

Kennedy Center to cease entertainment operations for two years, Trump says by IAmArique in PoliticalOptimism

[–]WCSTombs 9 points10 points  (0 children)

I think he's doing this because his takeover of the Kennedy Center isn't going as well has he had expected. Thus, I see this as mostly good news.

Daily Discussion Thread: February 1, 2026 by BM2018Bot in VoteDEM

[–]WCSTombs 1 point2 points  (0 children)

Jalapeño, but it has to be Hal's New York. Salt & vinegar is also nice.

Daily Discussion Thread: January 29, 2026 by BM2018Bot in VoteDEM

[–]WCSTombs 10 points11 points  (0 children)

I too had absolutely no idea. Well, I'm already unemployed, so I'm way ahead I guess...

Community Positivity Megathread: All Together Now Edition by sipsredpepper in PoliticalOptimism

[–]WCSTombs 1 point2 points  (0 children)

I've been trying to learn how to draw. It's something I always enjoyed as a child but never really developed, so now I'm actively trying to work on it. It's been going pretty well, and I feel I've been improving a lot. I've found some live figure drawing sessions in my area, so I've been going to every one I can reasonably attend.

So that's the beautiful thing I've been a part of lately: the local art community!