class: center, middle
http://gistdeck.github.io/hiraiva/a608eaeb25f47ce499257500a0fde4ad#1
@hiraiva
class: center, middle
http://gistdeck.github.io/hiraiva/a608eaeb25f47ce499257500a0fde4ad#1
@hiraiva
| def lotteryForGeekNight = { | |
| val random = new scala.util.Random(new java.security.SecureRandom()) | |
| val entries = Seq( | |
| "【大名】Fringe81様「型で仕様を表現する際に最低限知っておきたいこと」", | |
| "【大名】TIS様「Akkaを使ったスケーラブルなLINE Bot」", | |
| "【大名】VOYAGE GROUP様「頑張らないScala」", | |
| "【大名】CyberZ様「社内のScala戦士を増やせ!(仮)」", | |
| "【大名】NYLE様「十人十色のScalaの始め方」", | |
| "【大名】ドワンゴ様「株式会社ドワンゴにおけるScala教育の現状」", | |
| "【大名】TECH TO VALUE様「ロジックを型で表現する」", |
class: center, middle
http://gistdeck.github.io/hiraiva/245bca517162e3f99b52344e7c67074b#1
@hiraiva
| export REPO="myrepo" | |
| export SRC="my_src_branch" | |
| export DST="my_dst_branch" | |
| git checkout -b $REPO $REPO/$SRC | |
| git filter-branch -f --tree-filter "mkdir $REPO && git mv -k ./* $REPO/" | |
| git checkout $DST | |
| git merge $REPO |
| #!/bin/sh | |
| USERNAME=$1 | |
| OPTIONS=$2 | |
| PASSWORD=$3 | |
| if [ -n $PASSWORD ] | |
| then | |
| PASSWORD=`mkpasswd -l 10 -s 0` | |
| fi |
| @echo off | |
| rem ########################################################################## | |
| rem # Copyright 2002-2011, LAMP/EPFL | |
| rem # | |
| rem # This is free software; see the distribution for copying conditions. | |
| rem # There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A | |
| rem # PARTICULAR PURPOSE. | |
| rem ########################################################################## |