This is a series of MATLAB style relational operators for Handlebars.
- eq - equal to
- ne - not equal to
- lt - less than
- gt - greater than
########################################################### | |
# | |
# CANSECO | |
# a World Series-class .bashrc file | |
# | |
# Canseco draws from a few others' shell profiles, namely: | |
# killfall's ===> https://github.com/killfall/terminal-piperita | |
# and another couple I can't place at the moment | |
# | |
########################################################### |
(function(Backbone){ | |
Backbone.inherit = function(){ | |
var classes = Array.prototype.slice.call(arguments, 0); | |
// prerequisites | |
if( !classes.length ) return; | |
var Class = classes.pop(); | |
// loop through objects | |
for( var i in classes){ |
This is a series of MATLAB style relational operators for Handlebars.
People
![]() :bowtie: |
๐ :smile: |
๐ :laughing: |
---|---|---|
๐ :blush: |
๐ :smiley: |
:relaxed: |
๐ :smirk: |
๐ :heart_eyes: |
๐ :kissing_heart: |
๐ :kissing_closed_eyes: |
๐ณ :flushed: |
๐ :relieved: |
๐ :satisfied: |
๐ :grin: |
๐ :wink: |
๐ :stuck_out_tongue_winking_eye: |
๐ :stuck_out_tongue_closed_eyes: |
๐ :grinning: |
๐ :kissing: |
๐ :kissing_smiling_eyes: |
๐ :stuck_out_tongue: |
Check status:
grep s3fs /etc/mtab
Mount:
/usr/bin/s3fs {{bucket}} /mnt/{{folder}}
/* | |
* Vanilla JS - Touch Gestures | |
* @version 0.1 | |
* @inspired QuoJS - http://quojs.tapquo.com | |
* | |
* Supported Gestures: singleTap, doubleTap, hold, | |
* swipe, swiping, swipeLeft, swipeRight, swipeUp, swipeDown, | |
* rotate, rotating, rotateLeft, rotateRight, pinch, pinching, | |
* pinchIn, pinchOut, | |
* drag, dragLeft, dragRight, dragUp, dragDown |
#!/bin/bash | |
#This script watches your project folder and outputs a HTML5 Manifest to $OUT | |
#You may need to change the location of your depency scripts | |
#Dependencies: confess.js and phantomjs | |
#Usage: sh manigest_generator.sh <url> <dir> | |
#Author Adrian Maurer (https://github.com/adrianmaurer) | |
#Based on http://stackoverflow.com/questions/2972765/linux-script-that-monitors-file-changes-within-folders-like-autospec-does | |
#sh manifest_generator.sh $URL $DIR $OUT |
( function( window, undefined ) { | |
'use strict'; | |
// helper function | |
function capitalize( str ) { | |
return str.charAt(0).toUpperCase() + str.slice(1); | |
} | |
// ========================= getStyleProperty by kangax =============================== |