How to highlight SVN diff

By default Subversion shows diff without highlighting which makes a bit difficult review of big changes. But that situation can be changed extremely simple and fast. I assume you use Fedora 17. For the other distributions you need just use different package manager, choose correct package name and find configs in the proper places. First of all, install utility colordiff: sudo yum install colordiff Now […]

Read Me Leave comment

Add Google Wave into Thunderbird 3

Thanks to Content Tabs now it’s possible to add into Thunderbird 3 some useful for you web tools. Here is a receipt from Quetzalcoatal how to integrate Google Wave in the Thunderbird 3. It’ll help to open Wave cleanly and conveniently inside one of tabs, and even keeps it open after restarting of Thunderbird. [via Lifehacker]

Read Me Leave comment

Log for Mysql console session

To log Mysql console session use option –tee (two dashes!) with full path to the log file: mysql -uroot my_db –tee=/tmp/mysql_console.log As result the file /tmp/mysql_console.log will contains all commands and queries with result of their executions. That might be helpful to keep your queries for using next time or for troubleshooting. The author of the post, where I found that useful info, said that […]

Read Me Leave comment

KDE 4.1 useful tips and tricks

Preface When I tried KDE 4.0 first time a few monthes ago I was very disappointed. The system was absolutely unusable. Mainly it was the reason why I didn’t upgrade my Fedora to version 9. But after 10 was released I decided to make an upgrade. I thought that KDE 4.1 should be better. It’s really better but to setup my accustomed environment I spent […]

Read Me 3 Comments

Four upgrades for the web worker workplace

According to Web Worker Daily there are four important think for the web workers: another monitor, a good desktop scanner, a single-serve coffee maker and noise-cancelling headphones. The two first options are very specific and will be suit for designer mostly. But coffee and noise cancelling are acceptable for all.

Read Me Leave comment

VMWare and kernel 2.6.24.X

Last week I upgrade my Fedora Core 8 to the latest stable kernel 2.6.24.3-12. As result the compilation of VMWare module vmmon gave that error: /tmp/vmware-config1/vmmon-only/./include/compat_wait.h:60: error: conflicting types for ‘poll_initwait’ include/linux/poll.h:65: error: previous declaration of ‘poll_initwait’ was here /tmp/vmware-config1/vmmon-only/linux/driver.c:172: warning: initialization from incompatible pointer type /tmp/vmware-config1/vmmon-only/linux/driver.c:176: warning: initialization from incompatible pointer type make[2]: *** [/tmp/vmware-config1/vmmon-only/linux/driver.o] Error 1 make[1]: *** [_module_/tmp/vmware-config1/vmmon-only] Error 2 make[1]: Leaving […]

Read Me Leave comment

Upgrade Kubuntu from 7.04 to 7.10

Since a coming version of LinuxMCE will be based on Kubuntu 7.10 I started thinking about upgrade my home PC. I found this manual explained how to do an upgrade using a package manager. I played a bit with Kubuntu installed under VMware and couldn’t upgrade successful. Adopt manager crashed every time when the text of agreements should be displayed. GNOM update manager didn’t detect […]

Read Me Leave comment

Proxy definition for APT

Recently when I started to upgrade Kubuntu from 7.04 to 7.10 using Adopt manager I faced with problem. It doesn’t get proxy setting from the system. To solve that a following line should be added into file /etc/apt/apt.conf (you have to create it if it doesn’t exist): Acquire::http::Proxy “http://user:password@proxy_URL:proxy_Port”; User name and password can be omitted if you don’t use them.

Read Me 1 Comment