Skip to content

Instantly share code, notes, and snippets.

@jeffmcneill
jeffmcneill / soma.sh
Last active July 26, 2025 07:28 — forked from miguelmota/soma.sh
Play soma fm radio from command line
# using cvlc (command-line vlc player)
# currently works. The lines below are for archival and hint purposes
curl -s https://somafm.com/groovesalad.pls | cvlc -
# using mpg321 player
curl -s http://ice1.somafm.com/defcon-128-mp3 2>&1 | mpg321 -
# using mpv player
curl -s http://ice1.somafm.com/defcon-128-mp3 2>&1 | mpv -
@jeffmcneill
jeffmcneill / 00-Snikket-Shell-Oneliners.md
Created April 7, 2025 06:55 — forked from horazont/00-Snikket-Shell-Oneliners.md
Handy shell commands for Snikket

DANGER

Using any of this may void your warranty!

@jeffmcneill
jeffmcneill / delete-likes-from-twitter.md
Last active September 8, 2022 15:20 — forked from aymericbeaumet/delete-likes-from-twitter.md
[Recipe] Delete all your likes/favorites from Twitter

Ever wanted to delete all your likes/favorites from Twitter but only found broken/expensive tools? You are in the right place.

  1. Go to: https://twitter.com/{username}/likes
  2. Open the console and run the following JavaScript code:
setInterval(() => {
for (const d of document.querySelectorAll('div[data-testid="unlike"]')) {
d.click()
}