- 有休…
- 病休…
- 育休…
- 年収(月給、賞与など)…
- 残業代…
- 早朝/深夜手当…
- 休出手当…
- 住宅補助…
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
spawn = require("child_process").spawn | |
async = require "async" | |
targetPath = process.argv?[2] or './' | |
list = '' | |
files = [] | |
listStream = spawn 'git', ['ls-files', targetPath] | |
listStream.stdout.setEncoding 'utf8' | |
listStream.stdout.on 'data', (chunk)-> | |
list += chunk if chunk |
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 ERROR_MESSAGE = 'Permission Error.'; | |
var SHOW_ERROR = function() { | |
print(ERROR_MESSAGE); | |
}; | |
var NG_DB_COMMANDS = [ | |
'addUser', | |
'auth', | |
'cloneDatabase', | |
'copyDatabase', | |
'createCollection', |
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 url = window.location.href; | |
FB.api({ | |
method: 'fql.query', | |
query: 'select url, share_count, like_count, comment_count, total_count, click_count from link_stat where url = "' + url + '"' | |
}, function(data) { | |
console.log(data); | |
}); |