Skip to content

Instantly share code, notes, and snippets.

IAB_CATEGORIES = {
"IAB1":"Arts & Entertainment",
"IAB1-1":"Books & Literature",
"IAB1-2":"Celebrity Fan/Gossip",
"IAB1-3":"Fine Art",
"IAB1-4":"Humor",
"IAB1-5":"Movies",
"IAB1-6":"Music",
"IAB1-7":"Television",
"IAB2":"Automotive",
git branch -r | awk '{print $1}' | egrep -v -f /dev/fd/0 <(git branch -vv | grep origin) | awk '{print $1}' | xargs git branch -d
@sshadmand
sshadmand / bash_profile
Last active August 29, 2015 14:03
Mac Terminal Setup (Alias, ssh, prompt)
alias ll="ls -allh"
alias bb="git branch"
alias bba="git branch -a"
alias master="git checkout master"
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_rsa_git
ssh-add ~/.ssh/id_rsa_sharethis
#custom terminal prompt
@sshadmand
sshadmand / Travel Embeds
Created November 18, 2014 19:17
Travel Maps
<div id='travellerspoint-map722594_701273' style="width:225px;display:inline-block;"><script src='http://www.travellerspoint.com/badges/badge_membermap.cfm?user=sshadmand&tripid=701273&amp;badgeid=travellerspoint-map722594_701273&amp;height=150&amp;width=225'></script><p class='travellerspoint-map-link'><a href='http://www.travellerspoint.com/member_map.cfm?user=sshadmand&tripid=701273'>South East Asia Part 1</a></p></div>
<div id='travellerspoint-map722594_701275' style="width:225px;display:inline-block;"><script src='http://www.travellerspoint.com/badges/badge_membermap.cfm?user=sshadmand&tripid=701275&amp;badgeid=travellerspoint-map722594_701275&amp;height=150&amp;width=225'></script><p class='travellerspoint-map-link'><a href='http://www.travellerspoint.com/member_map.cfm?user=sshadmand&tripid=701275'>Central/South America</a></p></div>
<div id='travellerspoint-map722594_701277' style="width:225px;display:inline-block;"><script src='http://www.travellerspoint.com/badges/badge_membermap.cfm?user=sshadman
@sshadmand
sshadmand / If Greater Than ... Else ...
Last active August 29, 2015 14:11
Handlebars Helpers: If Greater Than ... Else ...
Handlebars.registerHelper('ifgt', function(val1, val2, options) {
console.log(val1, val2)
if (val1 > val2){
return options.fn(this);
}
return options.inverse(this);
});
@sshadmand
sshadmand / Truncate Words
Created December 16, 2014 20:34
Handlebar Helpers: Truncate Words
Handlebars.registerHelper('truncwords', function(text, length) {
words = text.split(" ");
new_text = text;
if (words.length > length){
new_text = "";
for (var i = 0; i <= length; i++) {
new_text += words[i] + " ";
}
new_text = new_text.trim() + "..."
}
@sshadmand
sshadmand / Bubble icons
Created December 23, 2014 07:56
CSS Animation
<style>
.bubbles-cont {
z-index: 0;
right: 300px;
position: absolute;
}
.bubbles-cont-2 {
z-index: 0;
left: 0px;
margin-bottom: -30px;
@sshadmand
sshadmand / build.sh
Created December 25, 2014 20:44
Check git diff before deploying
commit(){
echo "Please enter a commit message..."
read msg
git add . --all
git commit -am $msg
}
check_commit(){
echo ========== CHECKING FOR CHANGES ========
changes=$(git diff)
@sshadmand
sshadmand / FB JS Auth
Last active August 19, 2021 07:23
Facebook JS Auth for Chrome iOS workaround
var ABSOLUTE_URI = "http://yourpage.com/openerhandler.html";
var FB_ID = "123456778";
function openFBLoginDialogManually(){
// Open your auth window containing FB auth page
// with forward URL to your Opened Window handler page (below)
var redirect_uri = "&redirect_uri=" + ABSOLUTE_URI + "fbjscomplete";
var scope = "&scope=public_profile,email,user_friends";
var url = "https://www.facebook.com/dialog/oauth?client_id=" + FB_ID + redirect_uri + scope;
@sshadmand
sshadmand / Jquery Handlebars Extension
Last active August 29, 2015 14:25
Jquery Handlebars Rendering Extension
/*
* Requires Jquery and Handlebars
* Render a template by passing in data and prepend or replace a container in your DOM.
* return DOM object so you can chain subsequent actions.
* Example:
* $("#main-stage").renderTemplate("template-id", dataDict);
* OR
* $("#main-stage").renderTemplate("template-id", dataDict).fadeIn("fast");
*/
jQuery.fn.extend({