Skip to content

Instantly share code, notes, and snippets.

View aelphias's full-sized avatar
:shipit:

Igor Mitchell aelphias

:shipit:
  • active soft ltd
  • Russia, Sochi
View GitHub Profile
@aelphias
aelphias / x_dot_com_mass_unfollow.md
Last active July 1, 2025 11:22
This **JavaScript snippet** runs in your browser and safely unfollows users one by one from your **Following** list, imitating natural scrolling and clicking behavior to avoid detection.

🔁 X.com (Twitter) "Unfollow All" Script for Google Chrome

X (formerly Twitter) removed the "Unfollow All" button — this script brings it back.

This JavaScript snippet runs in your browser and safely unfollows users one by one from your Following list, imitating natural scrolling and clicking behavior to avoid detection.


⚙️ Requirements

@aelphias
aelphias / instagram-unfollow-users.md
Last active August 9, 2025 22:17 — forked from berstend/instagram-unfollow-users.md
Mass unfollow users on Instagram (no app needed)
  • Go to your profile on instagram.com (sign in if not already)
  • Click on XXX following for the popup with the users you're following to appear
  • Open Chrome Devtools and Paste the following into the Console and hit return:
(async function () {
  const MAX_PER_DAY = 400;                  // Maximum number of unfollows allowed per day
  const PAUSE_AFTER_BATCH = 10;             // Pause after every 10 unfollows
  const PAUSE_DURATION = 10 * 60 * 1000;    // Pause duration: 10 minutes (in ms)
  const delay = (ms) => new Promise(r => setTimeout(r, ms));
@aelphias
aelphias / index.html
Created February 7, 2024 21:34
snake javascript game
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Snake Game</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="game-container">