• 30 Posts
  • 65 Comments
Joined 16 days ago
cake
Cake day: August 10th, 2025

help-circle
  • So I disagreed with this:

    Because the opinion pieces were all winging about how Harris lost because … she hadn’t been mean enough to trans people.

    Now that we’ve solidly established that I was 100% in the right to disagree with this, you’ve done a few rhetorical backflips around to where you’re accusing me of a bunch of things I never said. You’ve also actually managed to backflip your way around to where because I posted a negative story about Gavin Newsom, I must not care about negative things about Gavin Newsom and I must think he’s our next president.

    I changed my mind: You might be the galaxy brain propaganda. It’s honestly pretty impressive. Well done! If you want to engage with anything I actually said, you’re welcome to.





  • No, he made it into the news because he’s doing all this attention grabbing shit. And then some geniuses sprung the gotcha of “Aha! He is a high-profile Democrat, therefore nothing he does counts, because he’s just doing it because he wants to be president!” And then they sat back with a satisfied smile.

    The article isn’t talking him up as a candidate. I’m not talking him up as a candidate. He’s not in the news because he’s a candidate for the election that’s going to happen in three and a half years. Are you now shifting your stance from “now that he’s being talked up as a candidate” to something different? Or still claiming he’s being talked up as a candidate for the election and that’s why we have to “respond” with this sort of disclaimer? I mean, it’s fine, I actually was as you noted the person who posted this article which is slapping a disclaimer on what he is doing. But IDK where you got the idea that all of a sudden now he’s being talked up as a candidate.





  • Because the opinion pieces were all winging about how Harris lost because she didn’t go on enough podcasts

    I mean that part is definitely true. The Democratic campaign machine is a big collection of boomer shit, of which this was one example. I thought that was generally agreed upon on Lemmy?

    , and/or because she hadn’t been mean enough to trans people.

    Fuckin’ what? Who said that? What are some of these opinion pieces?

    at best his milk toast careerism will knee cap the congressional battles that happen at the same time

    Sounds like it’s doing literally 100% the exact opposite, because he unlike almost all of the Democratic party is actually trying to fight for proper representation in congress. Right? Or did we read different articles or something?








  • “Oh, this is dangerous. If this goes wrong my spine is going to crush like a tinkertoy. … … Well… shit. There’s no other way to do it really. Okay, I hope it goes okay.”

    Turned out fine. In retrospect, I was young and dumb. I worked with some guys who’d gotten fucked up, just a couple, usually they gave them work in the office if they wanted it since their bodies didn’t work right anymore. OSHA’s a good thing.





  • Anyways, these edgelords would get laughed out of any real leftist communities once they started regurgitating agit prop.

    Honestly, man, if they did the Hexbear type of behavior they might get punched. It’s one thing that they advocate for genocide and excuse war crimes, that I think would get them laughed at or just removed yes. But the sheer level of obnoxiousness I think they would have trouble getting away with in person without some kind of physical reaction, at least someone getting in their face about it.




  • One of the most important parts of a propaganda framework is the introduction of code-words, little phrasings that automatically call to mind a particular narrative you’re trying to construct. “People are fleeing California to move to red states” may be true, it may not be, it may be because of property values more than anything else. Doesn’t matter. By incorporating that same phrasing and framing into as many different contexts as possible, it does two things:

    1. It gives people security. It’s like a little affirmation that gives them assurance they’re on the right side. They can slip it into conversation on their YouTube channel, in their press conference, at their dinner table. It reminds them that everyone on the “enemy” side is stupid, and losing, and they’re on the right side. It gives them camaraderie, it strengthens the bond.
    2. It creates an artificial external reality. If you just walk up to people a few times a week and say, “Democratic policies are a failure,” they’ll think you’re super weird, and they might even disagree with you. But if you just use the code-word, if you allude to it, even in contexts like this that have nothing to do with anything, it’ll smuggle its way into their worldview without them even noticing. Eventually, it’s reach a point where if someone tries to tell them it’s not that way, they’ll scoff and decide the person is stupid, because everyone thinks that, they hear it everywhere.

    It’s very effective.





  • You define it in exactly the same way you just did. Completely fine, you have to do it for lots of things. It’s nice that Python can do that too.

    Now, I’ll grab a random snippet of code from some random file from my source dir:

            existing_bookmarks = db.session.execute(
                text('SELECT post_reply_id FROM "post_reply_bookmark" WHERE user_id = :user_id'),
                {"user_id": user_id}).scalars()
            reply = PostReply.query.filter(PostReply.id.in_(existing_bookmarks), PostReply.deleted == False).first()
            if reply:
                data = {"comment_id": reply.id, "save": True}
                with pytest.raises(Exception) as ex:
                    put_reply_save(auth, data)
                assert str(ex.value) == 'This comment has already been bookmarked.'
    

    You can see some classes in use, which again is fine. But you also see inline instantiation of some reply JSON, a database returning a list of post_reply_id values without needing a special interface definition for returning multiple values, lots and lots of cognitive and computational load per line of code that’s being saved because the language features are saving people the heavy lifting of depending on user-defined classes for everything. It means you don’t have as many adventures through the code where you’re trying to modify a user-defined interface class, you don’t need as much strong typing, that kind of thing.

    I would bet heavily that a lot of the things that are happening in that short little space of code, would need specific classes to get them done if the same project were getting implemented in some C+±derived language. Maybe not, I just grabbed a random segment of code instead of trying especially hard to find my perfect example to prove my point.

    It is fine, there are significant weaknesses to Python too, I’m not trying to say “yay python it’s better for everything,” anything like that. I’m just saying that if you don’t get familiar with at least some language that does things more that way, and instead get solely accustomed to just user-defined classes or templates for every information exchange or functional definition, then you’ll be missing out on a good paradigm for thinking about programming. That’s all.


  • Complex data structures are not “more of a C++ type of program structure”.

    Oh, they are not at all. Equating complex data structures with user-defined data structures (in the form of classes and fields and whatnot), and using the latter as the primary method of storing and working with data (so that you’re constantly having to bring into your mental scope a bunch of different classes and how they need to interact), is 100% a C++ type of program structure. It’s pretty unusual in my experience in Python. Or, I mean, it’s perfectly common, but it’s not primary in the same universal way that it is in C++ and derivatives. It gets to exist as its own useful thing without being the only way. That’s what I am trying to say.