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
// Example for handling git through gulp. Useful receipt for sometimes ;) | |
// hive.ir - made by Ehsaan <[email protected]> | |
// gulpfile.js | |
var gulp = require( 'gulp' ); | |
var git = require( 'gulp-git' ); | |
var minifyCss = require( 'gulp-minify-css' ); | |
var uglify = require( 'gulp-uglify' ); | |
var concat = require( 'gulp-concat' ); | |
var fs = require( 'fs' ); |
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.4.4) | |
// Compass (v1.0.1) | |
// ---- | |
// Sass: Resolving component dependencies | |
// An improved version of https://gist.github.com/whizark/51ccdfbf57dbcb73953f | |
// Other ideas: https://github.com/whizark/xass#ideas |
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: Resolving component dependencies | |
// Other ideas: https://github.com/whizark/xass#ideas | |
// The storage for dependency management | |
$container: ( | |
-components: (), | |
-frozen: () | |
); |
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 <Cocoa/Cocoa.h> | |
@interface NSColor (isLight) | |
- (BOOL)isLight; | |
@end |