Skip to content

Instantly share code, notes, and snippets.

// first go to https://www.facebook.com/groups/XXXX/members/
// then paste this in the javascript console
deleteAll = [];
deleteAll.elms = [];
deleteAll.canClick = function (el) {
return (typeof el != 'undefined') && (typeof el.click != 'undefined');
}
deleteAll.load = function() {
#!/bin/bash
# install homebrew's official php tap
brew tap josegonzalez/homebrew-php
# install homebrew-dupes (required to install zlib, php54's dependency)
brew tap homebrew/dupes
# install nginx + mysql + php 5.4 + php-fpm + apc + xdebug
brew install nginx mysql
@fharbe
fharbe / Bitly.js
Last active December 7, 2021 06:34
JavaScript Bookmarklets (Rewritten)
// Names are ⊶ ✚
javascript:(function(d) {
var b = d.body, l = d.location;
if(!b) {
alert('Please wait until the page has loaded.');
} else {
var z = d.createElement('script');
z.src = l.protocol + '//bitly.com/a/bitmarklet.js';
b.appendChild(z);