Skip to content

Instantly share code, notes, and snippets.

View georgenaranjo96's full-sized avatar
🕶️

George Naranjo georgenaranjo96

🕶️
View GitHub Profile
let likes = 0;
setInterval(() => {
const heart = document.querySelector('svg[aria-label="Like"]').parentNode;
const arrow = document.querySelector('a.coreSpriteRightPaginationArrow');
if (heart) {
heart.click()
likes++;
console.log(`You've liked ${likes} post(s)`);
}
arrow.click();
@georgenaranjo96
georgenaranjo96 / tweet_dumper.py
Created March 31, 2020 23:30 — forked from yanofsky/LICENSE
A script to download all of a user's tweets into a csv
#!/usr/bin/env python
# encoding: utf-8
import tweepy #https://github.com/tweepy/tweepy
import csv
#Twitter API credentials
consumer_key = ""
consumer_secret = ""
access_key = ""