• 3 Posts
  • 260 Comments
Joined 1 year ago
cake
Cake day: June 13th, 2023

help-circle


  • I don’t think you understand their point. Republicans always turn out to vote for their candidate. Then they win (at least a good portion of the time) and they vote in primaries and move the party further right. For any evidence just look at the past 2 decades.

    Whereas the left just decides to sit out and therefore Dems lose (or only win at odd times.) They can’t count on leftist/apathetic voters, so they go towards where they think they can get votes (ie. people who always vote and if they do convert enough they are profiting by gaining one vote for them and removing one from Republicans.)

    Now everyone here is saying it’s soooo obvious that it’s a poor strategy but is there any introspection on behalf of the left/apathetic? How has withholding your vote or not voting in primaries gone? It’s been done for years and society has moved so, so far away from leftist goals no?

    So their point is that it probably is a mix- surely the Dems need to actually run on popular policy and leftists/apathetic need to suck it up, vote in all elections, and vote for the best candidate. Pick your preferred candidate in the primary and then vote for the Democratic candidate in the general, no matter what (well- barring something egregious like…being anything like Trump.) Once Dems actually have power, you can keep pushing left. But if people just sit out, you’re not gonna be counted. Decades of that is proof.

    Edit- maybe you mean you can’t win the center over with conservatism-lite. Maybe that’s true, maybe not. But someone mentioned Bernie finished behind Harris in Vermont so I don’t know that it’s a maxim.







  • Why would they learn? They’ll be fine.

    This is what people don’t seem to understand. This is not some mythical “huge force.” Democrats elect their people through primaries and they rise. Same as ever.

    But all the people who don’t participate? YOU are the ones that have to suffer. Harris was a fine candidate. Sure she wasn’t Santa Claus on Christmas but she was fine and a million ways better than Trump. But people said “eh, I’m ok with Trump then” and didn’t vote for her.

    She isn’t gonna suffer. The DNC isn’t going to suffer. YOU and I are. This is what we call an “own goal.” And all the people wanting more left policy? Well good fucking luck when they stack the SCOTUS with 40 year old right wing fucks, stack the rest of the courts, and move everything back another 20 years progress-wise. Think you’re getting better healthcare soon? Think again. It got a ton harder now. Worried about the climate? Great! Because it was fucked before and it’ll be fucked a fuck more now. What little we were doing is going up in smoke.

    Besides that- two things can be right. The Dems need to refocus AND shithead lazy ass nonvoters need to get off the fucking couch and vote no matter what. Well, if they can still vote in a free and fair election in 2/4 years.





  • I distinctly remember yum/dnf should be using a loop. Forget why but it’s recommended. Here’s a snippet from my playbook. Simply make the vars as you need and run.

      - name: Install flathub as remote
        ansible.builtin.shell:
          cmd: flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo
        tags:
          - apps
    
      - name: Install flatpak apps
        community.general.flatpak:
          name: "{{ item }}"
          state: present
        loop: "{{ flatpaks }}"
        tags:
          - apps
    
      - name: Remove some default unused packages
        ansible.builtin.dnf:
          name: "{{ item }}"
          state: absent
          update_cache: no
        loop: "{{ remove }}"
        ignore_errors: true
        tags:
          - apps
    
      - name: Install our packages
        ansible.builtin.dnf:
          name: "{{ item }}"
          state: present
          update_cache: yes
        loop: "{{ rpms }}"
        ignore_errors: true
        tags:
          - apps```
    
    On mobile. Apologies if formatting is off.