Visit this site to upgrade SVN client in Linux for different Distros. http://svn-ref.assembla.com/download-clients.html#Ubuntu
Author Archives: Kusum
Eclipse selection background color fix in ubuntu
This is a article about how to change the highlight color in autocomplete box in Eclipse Please check out this stackoverflow problem. There is really cool solution given for this annoying problem. http://stackoverflow.com/questions/8012176/how-to-change-the-highlight-color-in-autocomplete-box-in-eclipse
Recover GRUB2 after reinstalling winxp/Vista/win7
After reinstalling Windows in the computer dual boot with both Windows and Ubuntu Linux,you need restore grub because mbr has been rewritten.This tutorial shows how to restore grub 2. Update:Today I ghost my XP system,but after restore grub,I cannot boot into XP by clicking the old windows option in grub menu.So you’d better to run […]
Tooltip fix in ubuntu
In unbuntu system, we often encounter that the tooltip background is black in color. In eclipse, we see that all the documentation appear in black background which is unpleasant for eye. Through googling I find that there are many ways to tackle this problem. But for our convenience, someone has made a shell script which […]
Install deb package with unsatisfied dependencies Ubuntu
While installing software package from *.deb file, it is often that we encounter with the problem with unsatisfied dependencies. Basically, dpkg doesn’t resolves dependencies automatically. But here is a trick to fix this issue. first install package with this command. sudo dpkg –force-depends -i package-name.deb sudo apt-get install -f and you are done.
Fail to load jni library
“Failed to load JavaHL Library …” : a popup error message which, whenever I see makes me say “che”. Not really annoying but just enough to make you glare at computer screen. Earlier, whenever I had this popup message, all I did was click ok and continued. ‘Ahh.. solved the problem for this session’. How […]
Disable Services on boot – Ubuntu 12.04
To disable services on startup on ubuntu sudo update-rc.d -f apache2 disable To enable simple do sudo update-rc.d -f apache2 disable There is also a GUI Option for managing services Just install bum sudo apt-get install bum
Creating Custom annotations
This article is about to create using own custom annotations on java. The example illustrate how to create custom annotation to support validation on java object.