Skip to content

Instantly share code, notes, and snippets.

View dogukanatakul's full-sized avatar

Doğukan Atakul dogukanatakul

View GitHub Profile
@darraghoriordan
darraghoriordan / unfollow.js
Last active January 17, 2026 20:02 — forked from JamieMason/unfollow.js.md
Unfollow everyone on twitter.com who doesn't follow you
// Unfollow everyone on twitter who doesn't follow you.
// based on:
// Unfollow everyone on twitter.com, by Jamie Mason (https://twitter.com/fold_left)
// https://gist.github.com/JamieMason/7580315
//
// 1. Go to https://twitter.com/YOUR_USER_NAME/following
// 2. Open the Developer Console. (COMMAND+ALT+I on Mac)
// 3. Paste this into the Developer Console and run it
//
@aymericbeaumet
aymericbeaumet / delete-likes-from-twitter.md
Last active January 27, 2026 15:54
[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()
 }
@lucasferreira
lucasferreira / find_wordpress_suspect_files.sh
Created July 13, 2017 19:30
Procura por arquivos estranhos em instalações de Wordpress
find . -type f -name '*.php' | xargs grep -i "x29" --color
find . -type f -name '*.php' | xargs grep -i "str_root13 *(" --color
find . -type f -name '*.php' | xargs grep -i "eval *(str_rot13 *(base64_decode *(" --color
find . -type f -name '*.php' | xargs grep -i "gzinflate *(" --color
find . -type f -name '*.php' | xargs grep -i "str_rot13 *(" --color
find . -type f -name '*.php' | xargs grep -i "base64_decode *(" --color
find . -type f -name '*.php' | xargs grep -i "eval *(" --color
@JamieMason
JamieMason / unfollow.js.md
Last active January 15, 2026 01:20
Unfollow everyone on twitter.com

Unfollow everyone on twitter.com

By @foldleft.bsky.social, see also Unfollow everyone on bsky.app.

  1. Go to https://twitter.com/YOUR_USER_NAME/following
  2. Open the Developer Console. (COMMAND+ALT+I on Mac)
  3. Paste this into the Developer Console and run it
// Unfollow everyone on twitter.com, by Jamie Mason (https://twitter.com/fold_left)