Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am ginoclement on github.
  • I am ginoclement (https://keybase.io/ginoclement) on keybase.
  • I have a public key ASAAPELt4kHEwm9bkGZ55M57VvTtL5ZOu1PscpmrjJN54go

To claim this, I am signing this object:

@ginoclement
ginoclement / install-spotify.sh
Last active June 3, 2016 01:00 — forked from franklinjavier/install-spotify.sh
Install spotify on Arch Linux
wget https://aur.archlinux.org/cgit/aur.git/snapshot/spotify.tar.gz && tar -zxvf spotify.tar.gz && cd spotify && makepkg -s
pacman -U spotify<TAB><ENTER>
@ginoclement
ginoclement / FacebookLikeBomb
Created March 16, 2015 05:37
Facebook Like Bomb
/*
The old Facebook like bomb doesn't work anymore
http://feross.org/like-everything-on-facebook/
I wrote this a while back, I believe it still works but I'm not going to run this again.
It needs an interval, otherwise Facebook will block you very quickly.
I chose 1250 milliseconds because I thought it seemed like a reasonable wait.
*/
var links = document.getElementsByClassName('UFILikeLink');
var i = 0;
@ginoclement
ginoclement / FacebookDeleteHashtag
Last active August 29, 2015 14:17
Remove any Facebook posts with a hashtag
/*
Remove any Facebook posts that contain hashtags.
Only reason for this was to see how easy it would be.
Facebook does not use jQuery so it would have to be loaded.
*/
//Pure Javascript
function removeHashtags(){
temp = document.getElementsByClassName("_58cl");
for(var i = 0; i < temp.length; i++){