Skip to content

Instantly share code, notes, and snippets.

@shraiwi
shraiwi / readme.md
Last active April 7, 2026 00:17
Nuke Insta Slop

Nuke Insta Slop

Tired of slop? This is a uBlock Origin filter list that nukes the Reels tab, non-follower posts, and ALL video content from the platform. I'm trying to make Instagram be what my parents said Facebook was.

If you scroll past your friend's posts, this is what you get:

"""
The most atomic way to train and run inference for a GPT in pure, dependency-free Python.
This file is the complete algorithm.
Everything else is just efficiency.
@karpathy
"""
import os # os.path.exists
import math # math.log, math.exp
@MuTLY
MuTLY / keys.txt
Last active April 9, 2026 01:41
Cemu keys
# this file contains keys needed for decryption of disc file system data (WUD/WUX)
# 1 key per line, any text after a '#' character is considered a comment
# the emulator will automatically pick the right key
541b9889519b27d363cd21604b97c67a # example key (can be deleted)
219FCB908520E9912D57444DFC136C23 # The Legend of Zelda: Breath of the Wild
566FCA3A88AA9255456635EDE688FD0B # The Legend of Zelda: Breath of the Wild EU
082fa2981e004defac03524cc685f693 # The Legend of Zelda: Breath of the Wild JPN
@manero6
manero6 / README.md
Last active June 22, 2024 11:20
testing links to headers and headers id
@manero6
manero6 / sideload-magisk.md
Created September 21, 2023 13:29
Step-by-step guide on how I install Magisk using adb
@manero6
manero6 / yt-dlp-mkdir.sh
Last active September 28, 2023 15:42
download with yt-dlp in a new directory that gets its name from the last part of the given URL
#!/bin/bash
ROOT_DIRECTORY=`basename "$(pwd)"`
ARGUMENTS_NR=$#
ARGUMENTS=$@
yt-dlp-mkdir () {
for i in $ARGUMENTS
do
declare -a DIRECTORY="(`basename $i | tr "-" " "`)"
@manero6
manero6 / clip-cleaner.sh
Last active October 19, 2023 09:17
simple script based on xclip to filter out stuff from the clipboard
#!/bin/bash
# put current clipboard in a variable
XCLIP_CLIPBOARD="$(xclip -o -selection clipboard)"
XCLIP_SELECTION=$XCLIP_CLIPBOARD
if [ $# -ge 1 ]
then
# print the initial string aka the current clipboard
echo "=> 1st string: $XCLIP_CLIPBOARD"
@manero6
manero6 / speedtest-loop.sh
Last active September 21, 2023 09:41
Speedtest-cli loop printing only download and upload rates
#!/bin/bash
for ((COUNTER=1; COUNTER>0; COUNTER++))
do
echo "$(date +%c) => Test nr: $COUNTER" && \
speedtest-cli 2>/dev/null | grep -E "^Download|^Upload"
done
@manero6
manero6 / zip2m3u
Last active October 18, 2022 07:09
Create .m3u playlist for multi-disc games (unzip .bin/.cue, create .chd files, create .m3u playlist)
#!/bin/bash
IFS=$'\n'
ARGUMENTS=$#
GAME_ZIP="$1"
GAME_NOZIP="${GAME_ZIP%.zip}"
GAME_NODISC="${GAME_NOZIP% *isc*}"
GAME_DIR=$GAME_NODISC
DISC=1
@manero6
manero6 / hours2seconds
Last active October 19, 2023 09:19
Simple bash script to calculate total seconds from hours, minutes and seconds
#!/bin/bash
HOU=0
MIN=0
SEC=0
if [[ $# -ge 4 ]]
then
echo "Please provide from 0 to a maximum of 3 arguments"
exit 1