Initialize mysql.
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/bash | |
export [email protected] | |
export GIT_AUTHOR_NAME=sowasowa | |
cd /tmp | |
mkdir hoge | |
cd hoge | |
git init | |
touch README | |
git add . | |
git commit -m 'hogehoge' |
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/bash | |
cd | |
wget http://www.scala-lang.org/downloads/distrib/files/scala-2.9.1-1.tgz | |
tar xzf scala-2.9.1-1.tgz | |
export SCALA_HOME=/home/rackhuber/scala-2.9.1-1 | |
export PATH=$PATH:$SCALA_HOME/bin | |
# invoke | |
scala |
Hello from Scalatra
cd
wget http://www.scala-lang.org/downloads/distrib/files/scala-2.9.1-1.tgz
tar xzf scala-2.9.1-1.tgz
export SCALA_HOME=/home/rackhuber/scala-2.9.1-1
export PATH=$PATH:$SCALA_HOME/bin
curl https://raw.github.com/n8han/conscript/master/setup.sh | sh
./bin/cs n8han/giter8
building authorized_keys gem.
git clone https://[email protected]/sowawa/authorized_keys.git
cd authorized_keys
gem install bundler
bundle install
rspec spec
gem build authorized_keys.gemspec
gem install authorized_keys-1.1.1.gem
http://d.hatena.ne.jp/gnarl/20120319/1332153697
cd
git clone git://gist.github.com/2169750.git try_okura
cd try_okura
gem install okura
wget "http://sourceforge.jp/frs/redir.php?m=jaist&f=%2Fnaist-jdic%2F53500%2Fmecab-naist-jdic-0.6.3b-20111013.tar.gz" -O mecab-naist-jdic-0.6.3b-20111013.tar.gz
okura compile mecab-naist-jdic-0.6.3b-20111013/ okura-dic
ruby play_okura.rb
bundle install --without production staging
Lokka installer.
bash -s stable < <(curl -s https://raw.github.com/gist/2193002/install.sh)
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
erver { | |
listen 80; | |
server_name localhost; | |
#charset koi8-r; | |
#access_log logs/host.access.log main; | |
location / { | |
root html; |
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
# Example MySQL config file for small systems. | |
# | |
# This is for a system with little memory (<= 64M) where MySQL is only used | |
# from time to time and it's important that the mysqld daemon | |
# doesn't use much resources. | |
# | |
# MySQL programs look for option files in a set of | |
# locations which depend on the deployment platform. | |
# You can copy this option file to one of those | |
# locations. For information about these locations, see: |