- Enter mysql command line with 'mysql -u root -p'
- mysql> mysql status
Notes to self
Monday, September 15, 2008
Thursday, September 11, 2008
Thursday, August 28, 2008
GIT - Ignore uncommitted changes in already tracked files
in order to ignore uncommitted changes in already tracked files, please refer to the git update-index --assume-unchanged documentation
http://www.kernel.org/pub/software/scm/git/docs/git-update-index.html
Thursday, July 31, 2008
Thursday, July 17, 2008
Getting the text from a drop down select box
var e = $('element_id');
var idx = e.selectedIndex;
e.options[idx].text;Links
http://www.webdevelopersnotes.com/tips/html/getting_the_text_from_an_html_drop_down_selection_list.php3
Wednesday, June 18, 2008
Migrating in a production environment
rake db:migrate RAILS_ENV=productionor
rake db:migrate RAILS_ENV="production"
Sunday, June 8, 2008
Add localhost.localdomain to local DNS (or hosts file)
- Goto Start > Run
- Type in "system32" (without the quotations)
- Goto the folder called "drivers"
- Goto the folder called "etc"
The hosts file should be in there. Just open it up with notepad or something and add in 127.0.0.1 localhost.localdomain
Links:
Subscribe to:
Comments (Atom)