Archive for the ‘Uncategorized’ Category
The Rails Initialization Process
I found really nice description of rails initialization process here.
capistrano recipes for ubuntu
Few nice capistrano recipes which may help you automate Ubuntu Server setup:
Decoration in Ruby
Interesting discussion about object decoration in ruby.
drop all tables and sequences in oracle
tables:
SELECT 'DROP TABLE ' || table_name || ' CASCADE CONSTRAINTS;' FROM user_tables;
sequences:
SELECT 'DROP SEQUENCE ' || sequence_name || ';' FROM user_sequences;
Google engine support for java
Looks like google engine will support java. Pretty exciting
apache2 utils
deactivate site:
a2dissite site_name
activate site:
a2ensite site_name
windows 7
Properties pattern
Really nice ‘introduction’ to properties pattern by Steve Yegge
how to remove .svn from all folders – command line
find . -name ".svn" -exec rm -rf '{}' \;
