Skip to content

Instantly share code, notes, and snippets.

View MaxistheSpy's full-sized avatar

MaxistheSpy MaxistheSpy

  • SF Bay Area
View GitHub Profile
@MaxistheSpy
MaxistheSpy / fix.nix
Last active May 8, 2026 00:58
fix for copyfail and dirty frag on nixos and potentially others
boot.extraModprobeConfig = lib.concatMapStringsSep "\n" (x: "install ${x} /bin/false") [
# Copy Fail — currently loaded, block future loads + block siblings
"af_alg" # af_alg itself
"algif_aead"
# Dirty Frag
"esp4"
"esp6"
"rxrpc"
];
@MaxistheSpy
MaxistheSpy / Distraction free Ublock tube.md
Last active June 14, 2026 17:46
Distraction free youtube Ublock filters

This is a youtube filter set intended to make the youtube experience better by hiding excess elements It is great for removing distractions but can also be used to expand videos on pages by hiding reccomendations on videos To tune simply comment and uncomment lines. if you are unaware any lines that start with ! are "commented" this means they will be ignored by ublock

@MaxistheSpy
MaxistheSpy / pythondoneright.md
Created April 8, 2023 01:42 — forked from MuhsinFatih/fix-macos-python.md
How to recover from messed up python installation on mac, and never have to mess with apple's shitty python confusion factory

I am assuming you are here because like me, you installed a bazillion different python interpreters on mac and the whole thing is a spagetti. Today, I finally fixed my python installation. Whatever I install for python2 or python3 using pip JUST.WORKS.. My god! finally.

What the hell?

Here is what I had messed up, which you also probably did:

  • I had too many different python interpreters
  • Too many different symlinks which I lost track of
  • almost no package I installed with pip worked without a headache
  • any attempt to fix using online resources made it worse.