Archive for July, 2007

How to find time to read ?

Wanna need find time to read ? find out how.

No Comments

Completely remove programs with Revo Uninstaller

Freeware application Revo Uninstaller makes removing programs from your computer—not just uninstalling, but removing all traces—a quick and painless process. So why would your use Revo Uninstaller rather than the default Add/Remove Programs dialog?
Well, for one, the default Add/Remove is notoriously slow at loading all of your installed apps; it also only runs the installer, [...]

No Comments

Efficient String Permutation Program.

The following piece of a code is a very efficient use of recursion to find the possible permutation of a string.

public class Permutations {

public static void perm1(String s) { perm1(”", s); }

private static void perm1(String prefix, String s) {
int N [...]

1 Comment

How would you reverse a singly linked list in Java ?

Sometimes the solutions are not quite obvious. Search for an algorithm to reverse a singly linked list using Java and you wont find any good hits except for this code.

   public void reverse()   {       Node ln1, ln2, ln3, ln4;       if(first==null)          return;
       ln1=first;       ln2= first.next;       ln3=null;       while(ln2 != null)       {
            ln4 = ln2.next;            ln1.next = ln3;            [...]

No Comments

Add tabs to Windows desktop with Stick

Freeware app Stick adds tabs for RSS, calendar, explorer, notes, and the calculator to the Windows desktop. Stick tabs are highly customizable and can be relocated to any part of the screen. Stick leaves a light (10MB) memory footprint and opens Explorer, Calculator, and the calendar much faster than Windows on its own. By [...]

No Comments

Love Food ? Top 5 Recipe Websites

Looking for simple and tasty or exotic and quick or haute cuisine but aren’t sure which are the best places to search for them? Here is a list of the top (well maybe not the ultimate collection but definitely one of the better ones) places on the web for food-connoisseurs, family cooking and hunger-driven lazy [...]

2 Comments

Miro – a free, open source Swiss Army Knife of Video Players

Miro – free, open source internet tv and video player (formerly Democracy player) has rolled out offering the ability to play any video file, free internet tv, download YouTube videos and has BitTorrent abilities.
Website Simplehelp has a great “introduction to Miro” that’s definitely worth a read as well.
Technorati Tags: Software, Freware, Video Players

1 Comment

100 Open Source Downloads

100 Open Source Downloads – links up to 100 Open Source programs that can be downloaded. All the downloads are categorized by type as well, making it easy to find what you might be looking for.
Worth a browse to check out the latest and greatest in Open Source.
Technorati Tags: Download, Freeware, Open Source

No Comments

Post to Twitter using GTalk

Techreceipes posted an article today on how to use Gtalk as a Twitter client.  Its pretty easy to setup Gtalk to start twittering…here is how :
1. Go to Twitter and login to your account. 2. On the home page, go to the side bar and click the Activate your IM! link. 3. Under Instant Messenger, [...]

6 Comments

Firefox 3 is almost here.

Mozilla moves Firefox towards its 3.0 release slated for the fall of this year with Gran Paradiso Alpha 6, now available for testers. [via CNET]
Technorati Tags: Firefox

No Comments