Skip to content

Instantly share code, notes, and snippets.

View amirofski's full-sized avatar
:octocat:
Full Stack Developer

Amir amirofski

:octocat:
Full Stack Developer
View GitHub Profile
@amirofski
amirofski / Instagram_Autolike.js
Last active May 17, 2023 11:03
When you are on the web version of Instagram, you can run this code in the console to automatically like posts and scroll down and like and like and like and like until your account is banned. :)))
// Replace 'tags' with the desired hashtag
var hashtag = 'tags';
// Replace 'count' with the number of posts you want to like.so be careful . Do not increase these numbers. It was from us to say
var count = 10;
// Set the interval (in milliseconds) to scroll down the page
var scrollInterval = 10; // Adjust as needed
// Function to scroll down the page
@amirofski
amirofski / Twitter_Autolike.js
Last active May 17, 2023 11:03
JavaScript code to automatically like Twitter posts, Just Run in Browser console when explorering any twitter pages you want to like posts
// Replace 'tags' with the desired hashtag
var hashtag = 'tags';
// Replace 'count' with the number of tweets you want to like.Be careful of being limited. Max 10
var count = 10;
// Function to start liking tweets
function startLikingTweets() {
// Get the list of tweets
var tweets = document.querySelectorAll('[data-testid="like"]');
"""
Get addresses (and corresponding private keys) from a remote resource
(directory.io) and check if they have a non-zero balance using remote resources
(blockr.io, blockonomics.co etc.). If a non-zero balance address is found,
it is printed on screen, saved to a file, and a pushbullet notification is
sent.
"""
import sys
import time
import traceback