うちのはぐはぐ(はぐれメタル)が。。。( ;∀;)。。。
ランクアップキタ――(゚∀゚)――!!
2回めのルーレットでランクアップとは。。。
ごうけつ
いっぴきおおかみ
むっつりスケベ
ひっこみじあん
くろうにん
てつじん
なまけもの
がんこもの
タフガイ
セクシーギャル
むっつりスケベ
くろうにん
いっぴきおおかみ
ごうけつ
てつじん
ごうけつ
おとこまさり
らんぼうもの
セクシーギャル
ちからじまん
みえっぱり
おてんば
きれもの
ぬけめがない
あたまでっかち
ずのうめいせき
セクシーギャル
おちょうしもの
ひねくれもの
いっぴきおおかみ
みえっぱり
ロマンティスト
いくじなし
スライムナイト(壁)
リリパッド(対空・火力)
メラゴースト(壁・火力)
ホイミスライム(回復)
大おばけきのこ(壁)
しびれくらげ(麻痺攻撃)
メタルスライム(壁)
ベホイミスライム(万能)
アローインプ(対空・眠り攻撃・火力)
ドラゴンキッズ(仲間になりやすい・下位息持ち)
ともしびこぞう(火力)
くさった死体(仲間になりやすい・甘い息)
メイジももんじゃ(呪文威力高い)
どくやずきん(対空・毒攻撃・火力)
しにがみ貴族(中位息持ち)
ベビーニュート(中位息持ち)
シャドー(中位範囲呪文持ち)
エビルアップル(中位範囲呪文持ち)
あくましんかん(中位全体呪文持ち)
ホークマン(空中・中位範囲呪文持ち)
ベスノザのつかい(中位全体呪文持ち)
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css" rel="stylesheet">
sqlite3 データファイル# 終了
.exit OR .q# データベース表示
.databases OR .da# テーブル表示
.tables OR .ta# テーブル定義表示
.schema TABLE_NAM
#!/bin/bash # rails common project directory RAILS_PROJECT_DIR=~/Documents/projects/ruby # project name echo "input PROJECT_NAME:" read PROJECT_NAME
# shell
MY_SHELL=/bin/zsh mkdir $RAILS_PROJECT_DIR/$PROJECT_NAME && cd $_ # install rails rails new . --skip-bundle # add spring cat << EOF >> Gemfile # Spring is a Rails application preloader group :development, :test do gem 'spring' end EOF bundle install exec MY_SHELL
たまに添字が1から始まっているといいなという場面があるので作ったclass Util_Array{/*** 添字を1から始まる形に整形** @param array $list* @return array*/public static function adjustKeyFirst(array $list) {array_unshift($list, []);unset($list[0]);return $list;}}Util_Array::adjustKeyFirst([1,2,3,4]);
gem install tmuxinator
echo '[[ -s $HOME/.tmuxinator/scripts/tmuxinator ]] && source $HOME/.tmuxinator/scripts/tmuxinator' >> ~/.zshrc
mux new rubyとかでruby用の起動セットを定義していきます。
# ~/.tmuxinator/ruby.yml
# ruby用パネル定義
project_name: ruby
project_root: ~/Documents/projects/ruby/active
tabs:
- dev:
layout: main-vertical
panes:
- #empty
- #empty
- #empty
- pry:
- pry
- server:
layout: main-vertical
panes:
- rails s
curl -kL http://xrl.us/pythonbrewinstall | bash
echo '[[ -s $HOME/.pythonbrew/etc/bashrc ]] && source $HOME/.pythonbrew/etc/bashrc' >> ~/.zshrc
pythonbrew install --force 2.7.2
pythonbrew switch 2.7.2
curl https://raw.github.com/CHH/phpenv/master/bin/phpenv-install.sh | sh
echo 'export PATH="/root/.phpenv/bin:$PATH"' >> ~/.zshrc
echo 'eval "$(phpenv init -)"' >> ~/.zshrc
source ~/.zshrc
export PREFIX=$HOME/local
git clone https://github.com/CHH/php-build.git
cd php-build && ./install.sh
brew install httpd
sed -i '' -e 's/--enable-fpm/--with-apxs2=\/usr\/local\/sbin\/apxs/g' ~/local/share/php-build/default_configure_options
php-build 5.4.16 ~/.phpenv/versions/5.4.16
phpenv global 5.4.16
phpenv rehash
php -v