How to change a remote repository URI using Git?
git remote set-url origin git://new.url.here
(see git help remote) or you can just edit .git/config and change the URLs there. You're not in any danger of losing history unless you do something very silly (and if you're worried, just make a copy of your repo, since your repo is your history.)
Installing Ralink RT5390 wireless card drivers on Debian or Ubuntu
Ubuntu Wifi Driver Commands
su
sudo apt-get install --reinstall linux-headers-$(uname -r) build-essential dkms patch fakeroot unzip
wget http://ubuntuone.com/4OstD6VI9dLGPAc9YwHCYR
unzip 4OstD6VI9dLGPAc9YwHCYR
cd angepasster-2011_0406_RT5390_RT5392_Linux_STA_V2.5.0.3_DPO/
sudo make
sudo make install
sudo modprobe -v rt5390sta
sudo depmod -a
sudo update-initramfs -u
Installed jshint on Sublime Text 2