This file contains hidden or 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
| // ---- | |
| // Sass (v3.3.7) | |
| // Compass (v1.0.0.alpha.18) | |
| // ---- | |
| @mixin testing($properties) { | |
| @if(type-of(nth($properties, 1)) == list) { | |
| @each $property, $value in $properties { | |
| #{$property}: $value; |
This file contains hidden or 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
| { | |
| "_id" : ObjectId("536bdca6a33a39845cfe04e2"), | |
| "_wysihtml5_mode" : "1", | |
| "about" : "", | |
| "branderatiPointPerson" : "52012822257e679e1e000035", | |
| "cpHost" : "cp.branderati.com", | |
| "email" : "[email protected]", | |
| "emailTester" : "", | |
| "email_template" : "", | |
| "emails" : { |
This file contains hidden or 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
| // ---- | |
| // Sass (v3.3.9) | |
| // Compass (v1.0.0.alpha.20) | |
| // ---- | |
| $elements: project-covers, user-tooltip, sorting-bar, modals, navigation; | |
| $modal-elements: modal__header, modal__content, modal__footer; | |
| @mixin make-z( $class, $value) { | |
| .#{$class} { |
This file contains hidden or 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
| // ---- | |
| // libsass (v2.0.0) | |
| // ---- | |
| // libsass version not seperating properties in each loop | |
| @mixin sh--animate($properties, $transition, $initialize: true) { | |
| @if ($initialize == true) { | |
| & { |
This file contains hidden or 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
| // node executable file phantom_sample.js | |
| var spawn = require('child_process').spawn; | |
| var phantom = require('phantomjs'); | |
| var excPath = phantom.path; | |
| var path = require('path'); | |
| var args = [ | |
| path.resolve( __dirname, 'phantom_exc.js') | |
| ]; |
This file contains hidden or 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
| function readImg(path) { | |
| var deferred = Q.defer(); | |
| fs.readFile(path, function(err, original_data){ | |
| if(!err) { | |
| deferred.resolve(original_data.toString('base64')); | |
| } else { | |
| deferred.reject(err); | |
| } | |
| }); | |
| return deferred.promise; |
This file contains hidden or 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
| /* | |
| Author: David Fox-Powell | |
| Company: Optimizely | |
| Last updated date: 20 July 2014 | |
| URL: https://github.com/dtothefp/phantomcss-gitdiff | |
| */ | |
| var fs = require('fs'); | |
| var _src = '.'+fs.separator+'screenshots'; |
This file contains hidden or 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
| // ---- | |
| // libsass (v2.0.0) | |
| // ---- | |
| @-webkit-keyframes FadeIn { | |
| 0% { opacity:0;} | |
| 100% {opacity:0; } | |
| } | |
| $list: button-1 button-2 button-3; |
This file contains hidden or 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
| window.optly = window.optly || {}; | |
| window.optly.mrkt = window.optly.mrkt || {}; | |
| window.optly.mrkt.modal = {}; | |
| var History = window.History || {}, | |
| Modernizr = window.Modernizr || {}, | |
| $modalElms = $('[data-optly-modal]'), | |
| $elms = {}, | |
| baseUrl = document.URL, | |
| initialTime = Date.now(), | |
| lastPop, |
This file contains hidden or 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
| set nocompatible " Must be first line | |
| " The next three lines ensure that the ~/.vim/bundle/ system works | |
| filetype on | |
| filetype off | |
| set rtp+=~/.vim/bundle/Vundle.vim | |
| call vundle#rc() | |
| " Load bundles | |
| " DEPS |