Skip to content

Instantly share code, notes, and snippets.

View fatimaburke's full-sized avatar

Fatima Burke fatimaburke

View GitHub Profile
{"v":"5.6.5","fr":60,"ip":0,"op":360,"w":1920,"h":1920,"nm":"Comp 1","ddd":0,"assets":[],"fonts":{"list":[{"fName":"Raleway-Bold","fFamily":"Raleway","fStyle":"Bold","ascent":72.9995727539062}]},"layers":[{"ddd":0,"ind":1,"ty":5,"nm":"Germs exit your body spreading infection","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[2004,1778,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"t":{"d":{"k":[{"s":{"sz":[756,268],"ps":[-760,-134],"s":78,"f":"Raleway-Bold","t":"Germs exit your body spreading infection","j":2,"tr":0,"lh":93.6000061035156,"ls":0,"fc":[0.024,0.314,0.494]},"t":0}]},"p":{},"m":{"g":1,"a":{"a":0,"k":[0,0]}},"a":[]},"ip":-6,"op":365,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":5,"nm":"Germs enter your body that cause infection","sr":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[952,142,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"t":{"d":{"k":[{"s":{"sz":[672,268],"ps":[-960,-134],"s":78,"f":"Raleway-Bold","t":"Germs enter your body
@fatimaburke
fatimaburke / vote.js
Last active December 20, 2019 19:02
Auto Voting for Balloteer
var voteData;
var votes;
// grab all category tables
var allCats = document.querySelectorAll('.bposcandidates')
//loop through all categories, grab the Rows
var allTableRowsNew = [];
for (var i=0; i < 28; i++) {
var allTableRows = Array.from(allCats[i].children[0].children)
@fatimaburke
fatimaburke / mass-remove-facebook-group-members-in-bulk.js
Last active January 15, 2018 19:07
Mass Removes Members from your Facebook Group. *Working as of Jan 2018*. In order to delete a group, Facebook requires that the group have no members. So for larger groups, this is definitely needed!
// Tweaked version of @michaelv's gist
// 1 - Go in the group members page and scroll to load 200/300 members
// 2 - Paste this in the console and wait. Be patient between groups of 10 - 30
// 3 - Reload the page and do it again
var FBGMR = (function() {
var FBGroupMembersRemover = {},
_id;