create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
| #!/bin/sh | |
| exec scala -savecompiled "$0" $@ | |
| !# | |
| // | |
| // Copyright (C) 2009-2013 Typesafe Inc. <http://www.typesafe.com> | |
| // Modified 2014 AI2 <http://www.allenai.org> | |
| // | |
| // This script will check that the commit is correctly formatted. It only checks files that are to be committed. | |
| // To be run this file should be at `.git/hooks/pre-commit`. |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
| // https://developer.mozilla.org/ja/New_in_JavaScript_1.7#Array_comprehensions | |
| function range (begin, end) { | |
| for (let i = begin; i < end; ++i) { | |
| yield i; | |
| } | |
| }; | |
| // http://code.activestate.com/recipes/347689-ruby-arrayeach_cons-each_slice-overlapping-and-non/ | |
| function each_cons (l, n) { | |
| return [l.slice(i, i + n) for (i in (range(0, l.length - n + 1)))] |
| #!/bin/bash | |
| cows[1]=beavis.zen | |
| cows[2]=bong | |
| cows[3]=bud-frogs | |
| cows[4]=bunny | |
| cows[5]=cheese | |
| cows[6]=cower | |
| cows[7]=daemon | |
| cows[8]=default |