Raspbmc : http://www.raspbmc.com/
Thursday, November 29, 2012
Raspberry Pi XBMC Install
Sunday, November 18, 2012
Raspberry Pi Building Quake 3
Building Quake 3 in Raspbian : http://www.raspbian.org/RaspbianQuake3Installing Quake 3
Install Quake 3 on Raspberry Pi : http://mitchtech.net/install-quake-3-on-raspberry-pi/
$ cd
$ wget https://dl.dropbox.com/u/14138779/quake3.zip
$ wget https://dl.dropbox.com/u/14138779/Q3_Demo_Paks.zip
$ unzip quake3.zip
$ unzip Q3_Demo_Paks.zip
$ mv baseq3/pak* quake3/baseq3/
$ rm -rf baseq3/
$ cd quake3/
$ ./start.sh
Saturday, November 17, 2012
Raspberry Pi Chrome Browser Install
Installing Chrome Browser
$ sudo apt-get install chromium-browserIf you have any errors running this command, please running :
$ sudo apt-get updateand then return the first command again.
$ /usr/bin/chromium &It will be start.
Raspberry Pi Install
Raspberry Pi : http://www.raspberrypi.org/downloadsRelate commands
$ sudo raspi-config
$ sudo dpkg-reconfigure
Monday, September 24, 2012
Unboxing Filco Ninja Blue Switch 87 Keys (Black)
FILCO : http://www.filco.com.tw/第一次看到機械鍵盤是大二時,
機械鍵盤 : http://ppt.cc/GHvK
當時是看學長用比較稀有的白軸,
就被它的段落感與聲音所吸引,
但由於價格有點高...所以拖到了研一時才買了第一把機械鍵盤。
而基於喜愛打字有聲音的我,
就選擇聲音清脆的青軸來吵人(誤)。
Tuesday, May 22, 2012
phpMyAdmin Install
phpMyAdmin : http://www.phpmyadmin.net/home_page/index.phpInstalling phpMyAdmin
The version requires at least PHP 5.2 and MySQL 5.And then start MySQL.
You must have MySQL user and password.
$ 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
Friday, May 18, 2012
Ruby on Rails use CRUD
CRUD Steps
First, you have create database addressbook_development
First, you have create database addressbook_development
$ 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
Monday, May 14, 2012
Ruby on Rails Install
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
Subscribe to:
Posts (Atom)