Plutus, Haskell, Nix, Purescript, Swift/Kotlin. laser-focused on FP: formality, purity, and totality; repulsed by pragmatic, unsafe, “move fast and break things” approaches


AC24 1DE5 AE92 3B37 E584 02BA AAF9 795E 393B 4DA0

  • 2 Posts
  • 108 Comments
Joined 2 years ago
cake
Cake day: June 17th, 2023

help-circle

  • demesisx@infosec.pubtoMemes@sopuli.xyzVoters
    link
    fedilink
    English
    arrow-up
    5
    ·
    8 days ago

    This is a good retort. I’m disarmed and willing to cede this point to you. IMHO, voting third party is ineffective but I will cede that voter apathy is worse.

    Personally, I voted for Cruz in a solidly dem state.
    If Kamala couldn’t even pretend to pledge to stop a genocide (which I knew she wouldn’t from her enthusiastic speeches for the AIPAC alone) she shouldn’t have anyone’s vote. if there are only two viable parties, at least one of them should be pacifists, right?

    Thanks for the intellectually honest and non-defensive reply. You’re the type of voter shamer that I can at least come to a common ground with. 🕊️



  • demesisx@infosec.pubtoMemes@sopuli.xyzVoters
    link
    fedilink
    English
    arrow-up
    5
    arrow-down
    2
    ·
    8 days ago

    No. But the way to fix this CERTAINLY isn’t to post memes broadcasting your anger at some perceived slight from people that won’t step in line behind a sham system like some stupid sheep to be herded for your silly partisan hackery. The shaming does nothing more than perpetuate the very issue of corruption and austerity in the US.

    Ranked choice voting solves the issues created by FPTP.

    Have you EVER seen evidence that shaming marginalized, unrepresented, utterly voiceless and abused voters works?


  • demesisx@infosec.pubtoMemes@sopuli.xyzVoters
    link
    fedilink
    English
    arrow-up
    22
    arrow-down
    8
    ·
    edit-2
    9 days ago

    How dare you, OP.

    What you’re doing is the equivalent of victim-shaming. The two party system is a fucking sham; and if you’re too comfortable (or ignorant) to realize that, you need to go read up on the US’s fake democracy and stop punching down on your allies.


    Some reading:

    vote...

    1.) First past the post makes only two parties possible.

    2.) Voting is a fucking sham when you only have two private parties that win court cases where they are accused of election fraud, offering the following as their defense:

    “We could have voluntarily decided that, ‘Look, we’re gonna go into back rooms like they used to and smoke cigars and pick the candidate that way,’”

    furthermore, the DNC’s lawyer said,

    “There’s no right to not have your candidate disadvantaged or have another candidate advantaged. There’s no contractual obligation here…it’s not a situation where a promise has been made that is an enforceable promise,”


    If your two parties are legally allowed to engage in open election fraud in the process of selecting those only two possible candidates, how effective is it IN REALITY to vote?
















  • This is why I decided to learn Nix. I built dev environment flakes that provision the devshell for any language I intend to use. I actually won’t even bother unless I can get something working reliably with Nix. ;)

    For example, here’s a flake that I use for my Python dev environment to provide all needed wiring and setup for an interactive Python web scraper I built:

    
    {
      description = "Interactive Web Scraper";
    
      inputs = {
        nixpkgs.url = "github:NixOS/nixpkgs?ref=nixpkgs-unstable";
        utils.url = "github:numtide/flake-utils";
      };
    
      outputs = { self, nixpkgs, utils }: utils.lib.eachSystem ["x86_64-linux"] (system: let
        pkgs = import nixpkgs { system = system; };
      in rec {
        packages = {
          pyinputplus = pkgs.python3Packages.buildPythonPackage rec {
            pname = "pyinputplus";
            version = "0.2.12";
            src = pkgs.fetchPypi {
              inherit pname version;
              sha256 = "sha256-YOUR_SHA256_HASH_HERE";
            };
          };
    
          pythonEnv =
            pkgs.python3.withPackages (ps: with ps; [ webdriver-manager openpyxl pandas requests beautifulsoup4 websocket-client selenium packages.pyinputplus ]);
        };
    
        devShell = pkgs.mkShell {
          buildInputs = [
            pkgs.chromium
            pkgs.undetected-chromedriver
            packages.pythonEnv
          ];
    
          shellHook = ''
            export PATH=${pkgs.chromium}/bin:${pkgs.undetected-chromedriver}/bin:$PATH
          '';
        };
      });
    }