- 有休…
- 病休…
- 育休…
- 年収(月給、賞与など)…
- 残業代…
- 早朝/深夜手当…
- 休出手当…
- 住宅補助…
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 list of possible usernames to reserve to avoid | |
vanity URL collision with resource paths | |
It is a merged list of the recommendations from this Quora discussion: | |
http://www.quora.com/How-do-sites-prevent-vanity-URLs-from-colliding-with-future-features | |
Country TLDs found here: | |
http://en.wikipedia.org/wiki/List_of_Internet_top-level_domains#Country_code_top-level_domains | |
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
r = (require 'readline').createInterface | |
input: process.stdin | |
output: process.stdout | |
r.question '最高ですか? (y/n)', (res) -> | |
console.log '最高!!' if /^y$/i.test res.trim() | |
r.close() |
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
#!/bin/sh | |
TRY=3 | |
RESIZE=240 | |
DELAY=8 | |
BIN=`which imagesnap` | |
TMP=`mktemp -d` | |
DST=gifsnap.gif |