How To : Turn off Email Notifications in Outlook

by Mandar Vaze on November 24, 2009
in Productivity, tips

When I moved from manager’s role to that of Technical contributor, I realized that for Individual contributor, getting a continuous span of undisturbed time is very important to get something worth while done. At times like this, email notifications can be distraction that needs to be turned off.

Most of us are conditioned to respond to (or at least read) every email sent you immediately. But over a period of time, you realize the not every email needs immediate attention. While communication is important, the method need not always be email. If something is really time critical, (I have observed that) people you reach you by other means as well (apart from the email they sent you) Other emails are important by not time critical.

Default settings in outlook are to notify you (in multiple ways) of new email in your inbox. But do not need to know about each and every single email the instance it reaches your inbox. You can turn off these distractions by turning off the email notifications completely. But it is hidden very well by Microsoft :)

To turn off these notifications, navigate to the following location:

Tools->Options->Preferences->Email Options->Advanced Email Options

Now you will see screen similar to the one below. Uncheck all these check boxes.

Turn Off Email Notifications

Turn Off Email Notifications

While the above screen shot (and the location to reach this option) is taken from Outlook 2007, Options for other versions of outlook shouldn’t be very different.

Reblog this post [with Zemanta]

Google Mail and Calendar with Thunderbird

In my last post on topic ended by showing you how you can install Lightning plugin as well as Provider for Google Calendar plugin.
It seems Lightning plugin is broken with Thunderbird 3.0 Beta 1. Read about it here. In this post, I show you a way around, and more about Accessing Google Calendar right from your Thunderbird.

Read more..

Debugging Python Scripts

by Mandar Vaze on December 24, 2008
in Code, Python, Tutorials

Found a great way to debug python scripts interactively using pdb aka Python Debugger. It is similar to gdb used on *nix.
Essentially you import pdb in the beginning of the script, and wherever you need to start debugging, add following statement :
pdb.set_trace()
Now you execute the script from command line, and execution will stop where you have added set_trace() call. You are presented with pdb prompt. There after it is similar to gdb commands.

Read more..

Next Page »