Skip to content

Instantly share code, notes, and snippets.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@davearel
davearel / keybase.md
Created April 13, 2018 21:17
Keybase Verification

Keybase proof

I hereby claim:

  • I am davearel on github.
  • I am davearel (https://keybase.io/davearel) on keybase.
  • I have a public key whose fingerprint is 9813 EAFD 55F6 D8C4 75C9 24E2 6EC7 4AB1 61D9 7599

To claim this, I am signing this object:

@davearel
davearel / facebook-page-share-friends.js
Last active April 8, 2017 15:40
Facebook Page - Share With Friends
/*
* Facebook Auto Share a Business Page
*
* This script can be run inside the console
* while on a Facebook business page.
* It will open the share with friends dialog and
* automatically begin requesting friends to like
* the given page.
*/

Keybase proof

I hereby claim:

  • I am davearel on github.
  • I am davearel (https://keybase.io/davearel) on keybase.
  • I have a public key whose fingerprint is BCAF 78B6 6618 830C DF94 AB5F 1202 DD77 4543 0AB9

To claim this, I am signing this object:

define([
// jquery core is always required
'jquery/core',
// jquery utilities
'jquery/ajax',
'jquery/data'
], function(jq, ajax, data) {
@davearel
davearel / forEach.js
Last active December 30, 2015 03:59
Convenience function to utilize an Array's forEach method on NodeLists
var forEach = function(list, callback, ctx) {
return Array.prototype.forEach.call(list, callback, ctx);
};