MyFunnyDev

web, coding and beyond

Archive for the ‘Uncategorized’ Category

The Rails Initialization Process

without comments

I found really nice description of rails initialization process here.

Written by Michał Kuklis

July 22nd, 2009 at 1:08 am

Posted in Uncategorized

Tagged with

capistrano recipes for ubuntu

without comments

Few nice capistrano recipes which may help you automate Ubuntu Server setup:

Written by Michał Kuklis

July 19th, 2009 at 8:25 pm

Posted in Uncategorized

Tagged with , ,

Decoration in Ruby

without comments

Interesting discussion about object decoration in ruby.

Written by Michał Kuklis

June 30th, 2009 at 9:59 pm

Posted in Uncategorized

Tagged with

drop all tables and sequences in oracle

without comments

tables:

SELECT 'DROP TABLE ' || table_name || ' CASCADE CONSTRAINTS;' FROM user_tables;

sequences:

SELECT 'DROP SEQUENCE ' || sequence_name || ';' FROM user_sequences;

Written by Michał Kuklis

May 18th, 2009 at 11:07 am

Posted in Uncategorized

Tagged with

Google engine support for java

without comments

Looks like google engine will support java. Pretty exciting :)

Written by Michał Kuklis

April 7th, 2009 at 8:26 pm

Posted in Uncategorized

Tagged with ,

apache2 utils

without comments

deactivate site:

a2dissite site_name

activate site:

a2ensite site_name

Written by Michał Kuklis

March 13th, 2009 at 8:17 pm

Posted in Uncategorized

Tagged with , ,

windows 7

without comments

Written by Michał Kuklis

January 10th, 2009 at 10:44 pm

Posted in Uncategorized

Properties pattern

without comments

Really nice ‘introduction’ to properties pattern by Steve Yegge

Written by Michał Kuklis

October 23rd, 2008 at 12:41 pm

Posted in Uncategorized

Tagged with

how to remove .svn from all folders – command line

without comments

find . -name ".svn" -exec rm -rf '{}' \;

Written by Michał Kuklis

October 15th, 2008 at 8:20 pm

Posted in PHP, Uncategorized

Tagged with

flex 3 component explorer

without comments

Written by Michał Kuklis

March 27th, 2008 at 9:13 am

Posted in Uncategorized

Tagged with