Using any of this may void your warranty!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 - |
Ever wanted to delete all your likes/favorites from Twitter but only found broken/expensive tools? You are in the right place.
- Go to: https://twitter.com/{username}/likes
- Open the console and run the following JavaScript code:
setInterval(() => {
for (const d of document.querySelectorAll('div[data-testid="unlike"]')) {
d.click()
}