Using prelink with KDE

LinuxQuestions.org – How to use prelink? Add also into /etc/profile [code lang=”perl”] KDE_IS_PRELINKED=1 export KDE_IS_PRELINKED [/code] Trick may or may-not work. Depends from the luck and positions of the stars… to turn off ”kdeinit”…

Read more

JUnit 3.8

Juni 3.8 appears to be current version: JUnit 3.8 Made the string argument TestCase constructor optional. You can now delete constructors of the form ”FooTestCase(String name) { super(name); }”. I was right, constructor FooTestCase(String) is obsolete nowadays…

Read more

Setting up MySQL DB

Just for reminder… [code lang=”perl”] mysql -h localhost -p -u root [/code] [code lang=”sql”] CREATE DATABASE cookbook; GRANT ALL ON cookbook.* TO ’cbuser’@’localhost’ IDENTIFIED BY ’cbpass’; USE cookbook; [/code]

Read more