Skip to content

Instantly share code, notes, and snippets.

View elizabethqiu's full-sized avatar
:octocat:

Elizabeth Qiu elizabethqiu

:octocat:
View GitHub Profile
@abir-taheer
abir-taheer / instagram-follower-following.js
Last active May 28, 2024 12:38
"This is our community, this is our family, these are our friends." https://www.youtube.com/watch?v=gk7iWgCk14U&t=425s
if (window.location.origin !== "https://www.instagram.com") {
window.alert(
"Hey! You need to be on the instagram site before you run the code. I'm taking you there now but you're going to have to run the code into the console again.",
);
window.location.href = "https://www.instagram.com";
console.clear();
}
const fetchOptions = {
credentials: "include",
@ih2502mk
ih2502mk / list.md
Last active May 28, 2024 15:05
Quantopian Lectures Saved
@Evan-Nishi
Evan-Nishi / main.js
Last active May 29, 2020 03:18
A small chrome extension that enables unlimited free national geographic articles on a free account.
const config = { attributes: true, childList: true, subtree: true};
let overlay;
let adBox;
let payWall;
let emailBox;
let executed = false;
let html = document.getElementsByTagName("html")[0];
let body = document.getElementsByTagName("body")[0];;
/**
* This Google Sheets script keeps data in the specified column sorted any time
* the data changes.
*
* After much research, there wasn't an easy way to automatically keep a column
* sorted in Google Sheets, and creating a second sheet to act as a "view" to
* my primary one in order to achieve that was not an option. Instead, I
* created a script that watches for when a cell is edited and triggers
* an auto sort.
*