Yodiz | Axosoft | |
---|---|---|
code formatting | yes | no |
github integration | sucks, no links, only commits | great, links, works on commits, PRs, etc... |
issue linking | yes | no |
detailed work logs | no | yes |
configurability | no | yes |
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 async_hooks = require('async_hooks'), | |
fs = require('fs'), | |
http = require('http'); | |
const hook = async_hooks.createHook({ | |
init(asyncId, type, triggerAsyncId, resource) { | |
fs.writeSync(1, `[init] (${asyncId}:${triggerAsyncId}) ${type} - ${resource}\n`); | |
}, | |
before(asyncId) { | |
fs.writeSync(1, `[before] (${asyncId})\n`); |
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 async_hooks = require('async_hooks'), | |
fs = require('fs'), | |
http = require('http'); | |
const hook = async_hooks.createHook({ | |
init(asyncId, type, triggerAsyncId, resource) { | |
fs.writeSync(1, `[init] (${asyncId}:${triggerAsyncId}) ${type} - ${resource}\n`); | |
}, | |
before(asyncId) { | |
fs.writeSync(1, `[before] (${asyncId})\n`); |
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
Vagrant.configure("2") do |config| | |
config.vm.box = "precise64" | |
config.vm.box_url = "http://files.vagrantup.com/precise64.box" | |
end |
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
{ | |
"browser": true, | |
"camelcase": false, | |
"curly": true, | |
"eqeqeq": true, | |
"eqnull": true, | |
"expr": true, | |
"immed": true, | |
"indent": 4, | |
"latedef": false, |
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 format = require('util').format, | |
fs = require('fs'), | |
path = require('path'); | |
var code = '', testCode = '', | |
test = fs.readFileSync(path.join(__dirname, 'test', 'app_src.js'), 'utf8'), | |
template = 'exports.%s = function %s%s {\n' + | |
'\tthrow new Error(\'%s not yet implemented\');\n' + | |
'};\n\n', | |
testTemplate = '\tit(\'#%s\', function() {\n' + |
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
if (val === 'sdfdsfsdf' || | |
val === 'sdfsdfsfsf' || | |
val > 23423423 || | |
val < 123) | |
{ | |
// I like the open brace on a new line _only_ in this situation | |
// so that there's a clear distinction between the end of the | |
// multi-line conditional and the beginning of the code | |
} |
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
grunt.initConfig({ | |
titanium: { | |
create: { | |
options: { | |
command: 'create', | |
name: 'tmp', | |
workspaceDir: '.' | |
} | |
}, | |
build: { |
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
Show hidden characters
{ | |
"browser": true, | |
"camelcase": true, | |
"curly": true, | |
"eqeqeq": true, | |
"expr": true, | |
"immed": true, | |
"indent": 4, | |
"latedef": "nofunc", | |
"newcap": true, |
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 util = require('util'); | |
function maybeCallback(cb) { | |
return util.isFunction(cb) ? cb : function(err) { if (err) throw err; }; | |
} | |
function iShouldHaveACallback(opts, callback) { | |
callback = maybeCallback(arguments[arguments.length-1]); | |
if (!opts || util.isFunction(opts)) { | |
opts = {}; |
NewerOlder