• 1 Post
  • 129 Comments
Joined 11 months ago
cake
Cake day: July 22nd, 2023

help-circle

  • Idk man conservatives in recent history have a pretty consistent track record of assassinations and assassination attemps on liberal and leftist politicians in the US based on their politics. Tommy Burks was outright killed by his Republican opponent less than a month before the election (Burks was one of the most conservative Democrats at the time, but he was certainly killed by a lot more conservative Republican), Clementa Pinckney (targetted in a white supremacist shooting at a primarily black church that he was the pastor of), Gabby Giffords (shot in the head by an anti-government right-wing conspiracy theory consumer).

    When Republican politicians are killed now, it’s pretty much only by personal enemies/drama that is unrelated to liberal or leftist politics, or by schizophrenic/criminally insane people who also weren’t doing it over politics. Like Linda Collins (her friend killed her after being confronted for stealing money), Mike McLelland (he was killed by a former lawyer who’s theft case he prosecuted). Hell, even Ronald Reagan was shot over an actress, not over the guy’s personal political views. Ironically, Republican John Roll was killed by the right-wing terrorist targetting Gabby Giffords, he was caught in the cross-fire. I don’t think there’s even an in-office conservative Republican politician that was assassinated by a Democratic rival this century, or even a single instance of a conservative Republican being assassinated by a liberal over politics recently.

    I want you to think of how frequently you hear of terrorist attacks which were committed in the name of white supremacy, christian nationalism, dicrimination against LGBT, or some other far-right bullshit, and then think of how frequently you hear of terrorist attacks committed in the name of progressive beliefs like, oh idk universal healthcare and better public transport. it’s gotta be at least like a 20 to 1 ratio, and that’s me being conservative with the amount of conservative attacks.


  • force@lemmy.worldto4chan@lemmy.worldFurry Futa Horsecock
    link
    fedilink
    arrow-up
    5
    arrow-down
    18
    ·
    edit-2
    2 months ago

    To be fair it’s always morally righteous to barge into right-wing spaces to step on their sandcastles and point and laugh at them. Other than that though I agree

    Although from what I know, the neoliberal community here isn’t exactly conservative, they’re fine


  • A lot of the time it’s about being lucky enough be able to have or form connections with rich stupid people. Those kinds are a lot more willing to throw insane amounts of money at someone/some company they vaguely know to do things they know nothing of but hear a lot about.

    Or just working at a company that’s well-known in the area and deals with clients very intimately while the product is being created.

    Sometimes charging more for the same service makes them want it more, to them it means it’s premium programming (as opposed to the off-brand wish dot com programming). But sometimes they demand disgracefully cheap yet world-class service and throw a tantrum when they can’t pay you $5 an hour for a full rebranded recreation of the Amazon web service.









  • “First world” doesn’t refer to the division between western bloc and eastern bloc anymore. The Three Worlds Model isn’t used for modern international relations. Now the term “first world” refers to highly developed industrialized countries, i.e. basically a capitalist country with a stable economy and a high standard of living. Many US allies (including some NATO members) aren’t first world, although developed countries tend to be NATO-aligned (except Hong Kong/Macau, if you count those, and Singapore). “Third world” also certainly doesn’t refer to unaligned countries anymore.






  • I don’t work on any widely-used languages (I’ve made my own but not anything important) but I do think the designers of Zig and Rust have very good reasons for using semicolons – I read some reasons from the Rust devs themselves somewhere but I can’t remember them other than it vaguely being about how Rust is expression-based and intended to be lightweight and how whitespace significance can create confusion around how to read and write certain things and bla bla bla…

    but my personal opinion, what I generally I would imagine it’s for other than readability, is because the code can look a lot cleaner when an expression returned from a block is just the expression, and not expression plus some token like return. It’s especially nice in long closures or extremely short and simple blocks. I would rather consistently have to write expressions broadly like let a = { b + c }; rather than let a = { return b + c }. The semicolon has significance as a “result discarder” so expressions can be the default, so it’s on the surface a lot more functional-friendly.

    Also this is more specific but I hate the way WS languages generally handle quotes


  • That said, with how few expressions are return values, I do wonder why semicolons are the default rather than adding a special character to indicate return values.

    you mean like return/break/etc.?

    because Rust was designed to remind you of functional programming despite not being very functional, and because semicolons allow way better syntax rules in Rust and are generally pretty vital for good, readable lowish-level code. it also allows Rust programmers to use newlines/indents and stuff to pretty up their code a lot without littering it with random \ and |> and begin end and such everywhere, which, given how dense Rust code can be and how much it uses iterators and weird trait magic, is a big plus for readability