FILCO : http://www.filco.com.tw/第一次看到機械鍵盤是大二時,
機械鍵盤 : http://ppt.cc/GHvK
當時是看學長用比較稀有的白軸,
就被它的段落感與聲音所吸引,
但由於價格有點高...所以拖到了研一時才買了第一把機械鍵盤。
而基於喜愛打字有聲音的我,
就選擇聲音清脆的青軸來吵人(誤)。
FILCO : http://www.filco.com.tw/第一次看到機械鍵盤是大二時,
機械鍵盤 : http://ppt.cc/GHvK
phpMyAdmin : http://www.phpmyadmin.net/home_page/index.phpInstalling phpMyAdmin
$ wget http://nchc.dl.sourceforge.net/project/phpmyadmin/phpMyAdmin/
3.5.1/phpMyAdmin-3.5.1-all-languages.tar.gz
$ tar xzvf phpMyAdmin-3.5.1-all-languages.tar.gz
$ cd phpMyAdmin-3.5.1-all-languages
$ vim config.sample.inc.php
cfg['Servers'][$i]['auth_type'] = 'http';
$ cp config.sample.inc.php config.inc.php
$ mv ../phpMyAdmin-3.5.1-all-languages your_web_site
$ rails new addressbook -d mysql
$ cd addressbook
$ vim Gemfile
gem 'therubyracer'
gem 'thin'
$ bundle install
$ rails generate scaffold address name:string address:string
$ vim config/database.yml
$ password: your_password
$ rails s
Ruby : http://www.ruby-lang.org/en/Installing libyaml
RubyForge : http://rubyforge.org/
$ wget http://pyyaml.org/download/libyaml/yaml-0.1.4.tar.gz$ tar xzvf yaml-0.1.4.tar.gz$ cd yaml-0.1.4$ ./configure --prefix=/usr$ make$ make install