

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
Look into one Mr. Frank Grillo for all of the things you seek.
He’s truly not very nice! In fact, he’s (IMO) the polar opposite of someone classy like the late Christopher Plummer (RIP) whom I got to work with on a feature years back.
Edit: or Anthony Hopkins who introduced himself to my friend as “Tony”.
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.
You joke but Björk is super approachable and friendly. She DJed my friend’s birthday party in Reykjavik one time.
I met Bill in Boston on a trip to the Science museum in the 90’s. Perhaps we were annoying kids but I will never forget how much of a dickhead he was to everyone in my group including the teacher.
It’s not that hard to be nice to actual fans. We were all excited to get to meet him. Even the teacher agreed that Bill was at best unfriendly.
Fuck you, Bill Nye.
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:
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.
Perhaps (probably?), the traditional server-client model of the web will someday give way to a decentralized model that is (IMO inevitably) censorship resistant.
Not as badly as I seem. It’s just insanity. Doing the same thing over and over again and expecting different results that gets me heated.
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. 🕊️
If you think voting between two utterly corrupt parties that collaborate on fucking you over behind closed doors matters, get fucked.
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?
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:
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?
Hard NOT to upvote such a based comment history. ✊🏼
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.
It’s by design. Divide and conquer Combine and conquer has been the playbook since they (anti-labor think tanks like the Progressive Policy Institute and others that seek to keep labor infighting) started studying group psychology.
Hopefully this sticks. IMO, movie studios need to keep attracting customers or the whole film industry will stay dead.
It feels like magic. I think of it as the glue that makes almost all of my software work together seamlessly. I can’t wait to use it for one-click deployments of my software on a server or high-availability cluster.
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
'';
};
});
}