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

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

help-circle



  • demesisx@infosec.pubtoMemes@sopuli.xyzDisappointed. Immeasurably.
    link
    fedilink
    English
    arrow-up
    29
    arrow-down
    1
    ·
    edit-2
    1 month ago

    I worked on a few movies with him.

    Here’s the exact exchange I overheard between him and a PA on the set of Finestkind:

    PA: “Can I get you anything, Mr. Jones?”

    Tommy Lee Jones: “I’ll have some hot tea please.”

    PA: “We have Oolong tea, Earl Grey, Green Tea, or would you like something else?”

    Tommy Lee Jones: “I’d like a hot cup of too many fucking questions!”

    So yeah. This is EXACTLY what he’s like. He does NOT put up with bullshit.




  • Neither of those seem like complete dealbreakers if there were some form of verification using DID’s and homomorphic encryption for example.

    Marketing, to me, is a non-issue if the technology has evolved enough. We can start with nerds only and iterate upon it until the normies can’t deny the superiority of the platform and move over in droves. We are not there yet on the fediverse, IMO. Here’s Hoskinson doing a thought experiment about what would need to be done to truly achieve a decentralized Twitter.

    For one, NOSTR’s tech would make this fairly easy for someone just a tad smarter than myself to implement. Of course it wouldn’t be foolproof but it would be FAR better than say Yelp or Google or GlassDoor reviews are on their own.

    I’m under no impression that my idea is rock solid and infallible. In fact, I don’t imagine it would work in the current server client relationship. Full stop.


    I’m hoping that our acute sensitivity to enshittification will eventually drive us to innovate around these (admittedly major) issues. One truth I can’t find a way to refute, though: A decentralized web is coming whether we like it or not;

    There’s all kinds of interesting discussions to be had here:

    1. The EU’s right to be forgotten, for example, seems to be an attempt to reverse the laws of nature, IMO. Information is a Pandora’s box. Once it is out, it is cached EVERYWHERE. Especially with AI scrapers in full effect, boiling our oceans.

    2. Perhaps (probably?), the traditional server-client model of the web will someday give way to a decentralized model that is (IMO inevitably) censorship resistant.




  • demesisx@infosec.pubtoMemes@sopuli.xyzVoters
    link
    fedilink
    English
    arrow-up
    13
    ·
    2 months 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
    13
    arrow-down
    2
    ·
    3 months 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
    3 months 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?




  • That’s interesting and you make a great point.

    From my perspective, I showed how a simple change to US and UK election laws can topple the two party system overnight.

    Literally, if there are only two private parties run by private organizations of rich people, they merely have to divide us and conquer us. We are being puppeteered by a bunch of corporations that use identity politics to keep the poor fighting amongst themselves and people SLURP THAT SHIT UP BECAUSE THE TWO PARTY SYSTEM CODIFIES IT INTO EVERY DECISION.

    Feudalism with a few more steps.

    Interesting point, though and I can see what you mean.

    Truly, if my comment were to make sense, I’d have to say they have “combined” and conquered.






  • 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
          '';
        };
      });
    }