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
md5 -s banana | md5 | pbcopy |
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
// Load this file for the english version | |
var i18n_strings = { | |
"{0} is a great friend of mine": "{0} is a great friend of mine" | |
"some_key": "A string of text" | |
}; |
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
var i18n_strings = { | |
"{0} is a great friend of mine": "{0} is a great friend of mine" | |
"some_key": "A string of text" | |
}; |
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
$a: #f00; | |
$b: #00F; | |
@if $a == a {} | |
@else{ | |
@if $a == b {} | |
@else{ | |
@if $a == c {} | |
@else{ | |
@if $a == d {} |
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
@import 'compass'; | |
$include-default: true !default; | |
$include-default-uis: true !default; | |
@import 'ext4/default/functions'; | |
@import 'ext4/default/variables'; | |
@mixin background-gradient($bg-color, $type: $base-gradient, $direction: top) { | |
background-image: none; |
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
@import 'compass'; | |
$include-default: true !default; | |
$include-default-uis: true !default; | |
@import 'ext4/default/functions'; | |
@import 'ext4/default/variables'; | |
@mixin background-gradient($bg-color, $type: $base-gradient, $direction: top) { | |
background-image: none; |
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
remove .sass-cache/ | |
remove ../css/custom.css | |
remove ../css/ext-all-access.css | |
remove ../css/ext-all-gray.css | |
remove ../css/ext-all-scoped.css | |
remove ../css/ext-all.css | |
remove ../css/ext-ie-scoped.css | |
remove ../css/ext-ie.css | |
remove ../css/ext-sandbox.css | |
remove ../css/ext-standard-scoped.css |
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
/* | |
$.ajax Bitchslap! | |
================= | |
$.ajax Bitchslap! $.ajax is a bein' a bitch and I promise I'll slap it! | |
Sometimes you need to code and move on until the world fixes itself or declares it wont fix itself. | |
This is one example of temporarily working around that. | |
It says in the jquery documentation that $.ajax returns a promise, but that appears to not |
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
require.extensions[".json"] = function (module, filename) { | |
module.exports = JSON.parse(require("fs").readFileSync(filename, "utf8")) | |
} |
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
/* | |
Require necessary modules | |
*/ | |
var FS,RootServer,VHOSTS,VHOSTS_DIRECTORY,connect; | |
FS = require('fs'); | |
connect = require('connect'); | |
/* | |
Declare some "constants" |