Skip to content

Instantly share code, notes, and snippets.

@jcguu95
jcguu95 / remove-facebook-feeds.js
Last active April 21, 2025 07:17
Remove Facebook Feeds
// ==UserScript==
// @name Remove Facebook Feeds
// @version 2024-03-02
// @author Jin-Cheng Guu
// @match https://www.facebook.com/*
// @description Remove feeds from the Facebook main page.
// ==/UserScript==
(function() {
@jcguu95
jcguu95 / remove-facebook-unfollowed-content.js
Last active April 21, 2025 08:14
Remove Facebook Unfollowed Content
// ==UserScript==
// @name Remove Facebook Unfollowed Content
// @version 2024-03-02
// @author Jin-Cheng Guu
// @match https://www.facebook.com/*
// @description Remove unfollowed content from the Facebook main page.
// ==/UserScript==
(function() {
@rubinovitz
rubinovitz / instagram_mine.py
Created August 27, 2013 00:00
A python script for downloading all of the instagram photos of a certain hashtag I wrote for a friend in 20 minutes (forgive sloppiness). Warning: you're only allowed 30 API requests an hour. Requires your own access token set as environment variable "access_token".
from datetime import datetime
import urllib2
import urllib
import json
import os
def ajaxRequest(url=None):
"""
Makes an ajax get request.
url - endpoint(string)