How to go green ?

List of how-tos from TreeHugger to get started on the green-revolution.



Technorati Tags:

Go green !

The online version of Time Magazine, named No Impact Man one of the world's top 15 environmental websites.

Check out the other 14 :



  1. Grist
  2. TreeHugger
  3. Dot Earth
  4. Climate Change
  5. RealClimate
  6. Environmental Capital
  7. No Impact Man
  8. EcoGeek
  9. Ecorazzi
  10. Switchboard
  11. Mongabay
  12. Climate Ethics
  13. Climate Progress
  14. World Changing
  15. Planet Ark

Get Sandy on gTalk.

Email-based digital personal assistant Sandy can be a really helpful manager for to-do lists and calendar appointments, but only if you don't mind composing new messages for every change.

Worry no more. Its quite simple to add Sandy to your GTalk via its wonderful Twitter integration.

Step 1. Go to http://twitter.com/devices
Step 2. Add twitter@twitter.com on google talk
Step 3. There's no step three! There's no step three!

How to simulate "No to all" when copying in Windows XP

If you've ever copied a folder's worth of files in Windows, you've come across the Confirm File Replace dialog, which asks you if you want to replace an existing file with a new file. You have the option to answer Yes just for this file, Yes to All—which will just replace all the originals with the new copies—or you can say No; what's missing is a button to say No to All. Rather than clicking No countless times if No to All is what you really want, tech weblog Online Tech Tips points out that Windows simulates the No to All response if you hold the Shift key and then click No.
How to simulate "No to all" when copying in Windows XP [Online Tech Tips]

eM Client - Another Outlook Killer ?


Looking for another alternative to Microsoft Outlook? While Mozilla Thunderbird offers many of the same features as Microsoft's email client, you need to install plugins to add calendar and task management features. eM Client, on the other hand, comes equipped with a full featured email client and contact, task, and calendar managers.

While it's not exactly an Outlook killer yet, eM Client's developers are working on a few killer features:
  • Google Calendar and Contacts Sync
  • ActiveSync support
  • Universal translation tool
  • Facebook integration
  • IM integration
  • Anti-virus integration
eM Client also has a highly customizable interface, which is always nice.

How to reverse a doubly linked list ?

I talked about how to reverse a singly linked list earlier. That was slightly tricky to understand.
Reversing a doubly linked list is relatively easy. The logic is : You need to keep on changing the next and previous pointers as you traverse the entire list. Here is the code snippet in Java :

public void reverse()
{
if (first == null)
return
;

DoubleNode previous = first;
DoubleNode current = first.next;
first.next = null;
while (current != null)
{
DoubleNode next = current.next;
current.next = previous;
previous = current;
current = next;
}
first = previous;
}

Google Calendar going offline ?

It looks like Google is preparing to add offline functionality to Google Calendar. A few days ago the folks at the Digital Streets blog noticed that Google seemed to have added some code to the Google Calendar page that would bring up a prompt to install Google Gears for access to 3 months worth of calendar data while you're offline. But once you install Google Gears, nothing happens.

Googlified noticed a new option in the settings section of Google Calendar. Go ahead and check, odds are you'll see an "Offline" tab in your own calendar settings. When you click the tab, you're told to download Google Gears. Unfortunately, once you install Google Gears, nothing seems to happen. Visiting Google Calendar with Gears installed just brings up the plain old Google Calendar with no option to save your data for offline viewing. But we get the feeling that Google wouldn't be adding features to the Google Calendar settings menu if the company didn't plan to activate those features soon.

Master Firefox Configurations.


Configuration Mania
is a Firefox add-on that organizes and displays many of the options that are normally only available through about:config. Here are just a few o the things you can change using Configuration Mania:

  • Location bar auto-complete behavior
  • Default domain guessing behavior (should Firefox add www or .com when you type a word into the location bar?)
  • Tab behavior (where to display the close button, default tab width, etc)
  • Hide the Go button next to location bar
  • Change your user agent
  • Adjust cache settings
Configuration Mania is available for Firefox 2 and Firefox 3 beta.  [via gHacks]

Hulu is here...finally!


It's been hyped, dissed, and privately tested for five months, but now you can check out Hulu, a streaming video site created by NBC Universal and News Corp.,