Skip to content

Instantly share code, notes, and snippets.

@bademux
bademux / delet_tweets.md
Last active August 14, 2025 21:19 — forked from trepmal/delet_tweets.md
Delete your old tweets with this disgusting bash script

100% free. Runs completely locally on your machine. Bypasses the 3200 tweet limit. May require some eye bleach for the script. Here's how to use it:

  1. Go to settings -> account -> your Twitter data and request a download. This may take a few hours. You'll get an email with a link to download a zip file. Extract the zip file and navigate to the data directory.

  2. Go to Twitter in a web browser and find any Tweet you want to delete. We're going to use it to extract your authentication credentials for the next step. Open developer tools, delete the tweet, and find the request

@bademux
bademux / ws2812.fs
Created May 3, 2020 12:57 — forked from TG9541/ws2812.fs
STM8 eForth WS2812 demo with tested timing
\ A STM8 eForth WS2812 demo with tested timing
\ 8 x WS2812B on PCB with 470µF capacitor at 5V supply
\ 3.3V MINDEV: PB4 with 1K pull-up to 5V works well
\res MCU: STM8S103
\res export PB_DDR PB_ODR PB_CR1
#require ]B!
#require ]CB
@bademux
bademux / latest-widevine.sh
Created February 9, 2018 21:22 — forked from ruario/intro-latest-widevine.md
Fetches the latest Linux Widevine binary so that it can be used by Vivaldi.
#!/usr/bin/env bash
available () {
command -v $1 >/dev/null 2>&1
}
# Make sure we have wget or curl
if available wget; then
SILENT_DL="wget -qO-"
LOUD_DL="wget"