- Update all packages
- Install Unity2D
- Install Vim
sudo apt-get install vim
- Change default editor to be Vim
editor-select
- Install Google Chrome http://www.google.com/chrome
- Customize terminal prompt
.bashrc
and.vimrc
- Install LAMP
sudo apt-get install tasksel
- Install PHPMyAdmin
sudo apt-get install phpmyadmin
- Update all packages
- Install Git
sudo apt-get install git
- Install
zsh
https://gist.github.com/tsabat/1498393 - Customize
zsh
prompt https://gist.github.com/armno/4959661 - Solarize your terminal http://www.webupd8.org/2011/04/solarized-must-have-color-paletter-for.html
- Install Unity2D
- Install Vim
sudo apt-get install vim
- Change default editor to be Vim
editor-select
This file contains 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
i386 : iPhone Simulator | |
x86_64 : iPhone Simulator | |
arm64 : iPhone Simulator | |
iPhone1,1 : iPhone | |
iPhone1,2 : iPhone 3G | |
iPhone2,1 : iPhone 3GS | |
iPhone3,1 : iPhone 4 | |
iPhone3,2 : iPhone 4 GSM Rev A | |
iPhone3,3 : iPhone 4 CDMA | |
iPhone4,1 : iPhone 4S |
This file contains 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
CREATE TABLE IF NOT EXISTS `country` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`iso` char(2) NOT NULL, | |
`name` varchar(80) NOT NULL, | |
`nicename` varchar(80) NOT NULL, | |
`iso3` char(3) DEFAULT NULL, | |
`numcode` smallint(6) DEFAULT NULL, | |
`phonecode` int(5) NOT NULL, | |
PRIMARY KEY (`id`) | |
) ENGINE=MyISAM DEFAULT CHARSET=latin1; |