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
# Download and install Sublime Text 2 (Ubuntu 12.10) | |
# Credit: hugorodgerbrown | |
sudo add-apt-repository ppa:webupd8team/sublime-text-2; | |
sudo apt-get update; | |
sudo apt-get install sublime-text; | |
sudo ln -s /usr/lib/sublime-text-2/sublime_text /usr/local/bin/sublime |
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
# Download and install XAMPP (Ubuntu 12.10) | |
# Depends on python-gtk2:i386 and python-glade2:i386 for the Control Panel | |
# If all else fails, XAMPP has step by step instructions at: http://www.apachefriends.org/en/xampp-linux.html | |
sudo add-apt-repository ppa:upubuntu-com/xampp; | |
sudo apt-get update; | |
sudo apt-get install xampp; | |
# Append the following if you're on a 64-bit system (~250MB) | |
sudo apt-get install ia32-libs |
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
# If you can't stand Unity, download the default Gnome Shell. | |
# If you can't stand the new Gnome 3 interface, start a Gnome | |
# classic session at login :). | |
sudo apt-get install gnome-shell |
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
/// <summary> | |
/// State (U.S.). | |
/// </summary> | |
public class State | |
{ | |
public static string Alabama { get { return "AL"; } } | |
public static string Alaska { get { return "AK"; } } | |
public static string Arizona { get { return "AZ"; } } | |
public static string Arkansas { get { return "AR"; } } | |
public static string California { get { return "CA"; } } |