This file contains 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
// 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 |
This file contains 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
// 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"]'); |
This file contains 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
""" | |
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 |