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 () { | |
| 'use strict'; | |
| var cluster = require('cluster'), | |
| http = require('http'), | |
| os = require('os'), | |
| ClusterServer, |
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 () { | |
| 'use strict'; | |
| var cluster = require('cluster'), | |
| http = require('http'), | |
| os = require('os'), | |
| /* | |
| * ClusterServer object |
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
| # Aliases to common git methods | |
| function gs; git status --short $argv; end; | |
| function gd; git diff --color $argv; end; | |
| function gf; git fetch -p; end; | |
| function gpl; git pull $argv; end; | |
| function gps; git push $argv; end; | |
| function gch; git checkout $argv; end; | |
| function gb; git branch $argv; end; | |
| function ga; git add $argv; end; | |
| function gco; git commit -m $argv; end; |
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 ($, window, undefined) { | |
| $.fn.extend({ | |
| check2: function(option){ | |
| option = option || 'create'; | |
| var conf = { | |
| check2Class: 'check2', | |
| offscreenClass: 'offscreen', | |
| fontSize: '1.2em' | |
| }; |
NewerOlder