This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const oldJQueryEventTrigger = jQuery.event.trigger; | |
jQuery.event.trigger = ( event, data, elem, onlyHandlers ) => { | |
console.log( event, data, elem, onlyHandlers ); | |
oldJQueryEventTrigger( event, data, elem, onlyHandlers ); | |
}; | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
iframe[name='google_conversion_frame'] { | |
height: 0 !important; | |
width: 0 !important; | |
line-height: 0 !important; | |
font-size: 0 !important; | |
margin-top: -13px; | |
float: left; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Fool-proof @font-face */ | |
/* Based on http://coding.smashingmagazine.com/2013/02/14/setting-weights-and-styles-at-font-face-declaration/ */ | |
@mixin font-face($font-family, $file-path, $font-weight:'normal', $font-style:'normal') { | |
@font-face { | |
font-family: $font-family; | |
src: url('#{$file-path}.eot'); | |
src: url('#{$file-path}.eot?#iefix') format('embedded-opentype'), | |
url('#{$file-path}.woff') format('woff'), | |
url('#{$file-path}.ttf') format('truetype'), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am builtbylane on github. | |
* I am lane (https://keybase.io/lane) on keybase. | |
* I have a public key whose fingerprint is 87D5 28FE E476 A4D8 B685 B622 6B8B D109 5F67 07A3 | |
To claim this, I am signing this object: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd /usr/local/Library/Formula | |
brew remove node --force | |
brew versions node | |
git checkout 83988e4 /usr/local/Library/Formula/node.rb | |
brew install node |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp'); | |
var filter = require('gulp-filter'); | |
var source = require('vinyl-source-stream'); | |
var gutil = require('gulp-util'); | |
var path = require('path'); | |
var colors = require('colors'); | |
var createBundle = function(file) { | |
var method = (env.prebuild || env.stage || env.production) ? 'browserify' : 'watchify'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
_.mixin({ | |
serialize: function (obj) { | |
var urlParams = _.map(obj, function (val, key) { | |
var value = (_.isObject(val)) ? JSON.stringify(val) : String(val); | |
return String(key) + '=' + value; | |
}); | |
return urlParams.join('&'); | |
} | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Converts an image to | |
* a base64 string. | |
* | |
* If you want to use the | |
* outputFormat or quality param | |
* I strongly recommend you read the docs | |
* @ mozilla for `canvas.toDataURL()` | |
* | |
* @param {String} url |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// cover e-v-e-r-y-t-i-n-g | |
@mixin coverer { | |
position: absolute; | |
top: 0; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
} | |
// center |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
NewerOlder