Skip to content

Instantly share code, notes, and snippets.

@axhuwastaken
axhuwastaken / lavalink.md
Last active May 28, 2022 06:34
Free Lavalinks Servers
@axhuwastaken
axhuwastaken / script.js
Created January 24, 2024 13:24
JavaScript code to perform mass/auto unfollow on Instagram
let i = 0;
let count = 181;
const unfollowInterval = setInterval(() => {
if (i >= count) {
clearInterval(unfollowInterval);
return;
}
let list = document.querySelectorAll('button');
if (list[i].innerText === "Following") {
list[i].click()