drop all tables and sequences in oracle

by Michał Kuklis on 18/05/2009

tables:

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

sequences:

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

Google engine support for java

by Michał Kuklis on 7/04/2009

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

No Comments

going back to ruby again…

by Michał Kuklis on 4/04/2009

Here are few links which helped me understand few ruby concepts:

No Comments

learning git

by Michał Kuklis on 15/03/2009

GIT is becoming more popular so I’ve decided to start using it. I found few good resources:

No Comments

GNU Screen

by Michał Kuklis on 15/03/2009

A Friend of mine introduced me to GNU screen a great tool which can be used in different ways. One of them is a session sharing which is awesome when 2 or more people are working together in Linux env.

No Comments

stage deployment with capistrano and passenger

by Michał Kuklis on 14/03/2009

I’m still looking around for a stage deployment setup with Capistrano.
Here are few ideas/links I found useful.

Update:
It turned out this is pretty simple with the capistrano-ext gem:

http://weblog.jamisbuck.org/2007/7/23/capistrano-multistage

set :default_stage, "development"
set :stages, %w(production testing development)
require 'capistrano/ext/multistage'
No Comments

apache2 utils

by Michał Kuklis on 13/03/2009

deactivate site:

a2dissite site_name

activate site:

a2ensite site_name
No Comments

JQuery 1.3

by Michał Kuklis on 15/01/2009

New release contains new selector engine called Sizzle (the fastest css selector out there) and live events (which work similar to the live query plugin).

More details can be found here

No Comments

windows 7

by Michał Kuklis on 10/01/2009


No Comments

SCJA and SCJP

by Michał Kuklis on 6/11/2008

I’m planning to pass SCJA and SCJP at the end of this year. I will post  all the mocks and materials which I find helpful. Here is the first list:

SCJA

Tutorials/Books

Mocks:

UML

SCJP

Tutorials/Books

No Comments