473,767 Members | 2,131 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

10 Tips to Avoid Information Overload at Work

Niheel
2,456 Recognized Expert Moderator Top Contributor

Paul Graham wrote an interesting article a few months back about how the internet is leading to information overload for information workers of today.

He is not alone in his thinking. Similarly, In July of 2008 IBM, Intel, Microsoft and Xerox announced that they were joining forces with Information Overload Research Group(http://www.iorgforum.org/) to combat one of the greatest productivity challenges of our time, information overload.

In a study done by the group's research arm, Basex:
  • Less than 37% of an average office workers time is spent doing productive work.
  • 15% is spent on information searching
  • 20% is spent in meetings
  • 28% is spent in unnecessary distractions from phone calls, e-mails and instant messages

Another study done by Seattle-based RescueTime concluded that a typical office worker:
  • Accesses their e-mail program more than 50 times a day
  • Uses instant messaging 77 times a day.

According to Basex, these interruptions result in 28 billion hours of lost productivity every year. With an average wage of $21 per hour for knowledge workers, it could end up costing the U.S economy over $588 billion dollars a year.

While it's not possible to avoid all our workplace distractions. There are things we can do to have a more meaningful and productive workday.

Ten Tips to Help Manage Information Overload

1) Define a workspace
Choose a workspace and only do work in that area. Avoid communicating, browsing or searching in that space. Paul Graham uses this method, by using a separate computer workstation for browsing and communication.

2) Centralize communications
Use one means of communication instead of subscribing to multiple communication channels such as IM, Email, Phone, Facebook or twitter. It's easy to manage your distractions from communication when it comes from one place.

3) Avoid Immediate responses
Get rid of instant notifications and avoid responding to IM's and e-mails immediately. Set aside specific time to address these messages during the day and limit the number of times you address them. People will eventually figure out when you are most likely to respond.

4) Spend time with people
Go to lunch with your colleagues that you are working with. Spend 10-15 minutes at the end or beginning of the day to talk to your team. If you set aside some time everyday to catch up with people, you will less likely be interrupted during your work time.

5) Take a break
Your mind needs a break ever once in a while to unwind and realign your focus. Get up, stretch, go for a walk. Though remember not to distract your other workers by interrupting their work.

6) Try disconnecting
Silence the blackberry, turn of the IM and e-mail and kill the internet connection. Some of your work will make it impossible to completely disconnect. If you can't, limit the applications and sites you connect to.

7) Cut the news
While you can't cut off keeping up to date on recent activity related to your life or work, it wouldn't be a bad idea limiting it. Limit the amount of time you spend browsing news and also limit the number of times you do it. Start out by spending only 1hr every 3-4 days and adjust according to your needs. It's more important to get the work done than it is to know about everything around you.

8) Most important tasks first, everyday
Most of us have lots of tasks every day, it's not easy to narrow it down. Though we should prioritize and a good method is to pick 3 important tasks at the begining and get started on them. If you get through them move on to other less important tasks. This way you are finishing the most important stuff first.

9) Why am I doing this?
With all the work we have to do sometimes we forget why we are doing it. Every once in a while step back and ask yourself why are you doing what you're doing? Having a good reason will keep you motivated and inspired. This only works if you spend some time to come up with some good meaningful reasons.

10) Keep a consistent schedule
Keeping a daily schedule that is consistent will help you break some of your distractions. Take a break at a 10am and 2pm. Talk to your coworkers at a 9am and 4pm. Check your emails at 8:30, 11:30 and 3:30. Come in at 8:15am and leave at 5pm. Once you have a set daily schedule those events turn into markers for your day and you can quickly view if you are spending your day effectively.

Being aware of how your time is being spent at work can have great long-term benefits for your career. While these solutions won't work for everyone, using just a few can be a good start towards optimizing your output. The key is to become more aware of what task is beneficial to helping your maximize your output and what tasks take away from that. While you can't avoid doing unncessary tasks, you can minimize their effects by being aware of them.
Sep 9 '08
11 53124
boyslik
3 New Member
I really enjoyed ur tips , but we can all agree that it is impossible to manage ur work time cuz of all the unpredictable things that happens in ur day .
and I agree that as a programmer my day is way more stressfull than a designer or a project manager .
I think the best timing is to work @ the first hours of the day and directly after lunch that way ur not that tired and all the rest of the day can be less tiring and u can afford to waste some time
Jun 30 '09 #11
Jyoti Ballabh
115 New Member
We are human beings not some appliance which can be operated at whims and fancies of the owner. You cab never be prepared for the circumstances life may put you through and you have to respond to them accordingly. We all need to take breaks while on work. Every broker on Wall Street has at least two fantasy football teams.
Jul 23 '10 #12

Sign in to post your reply or Sign up for a free account.

Similar topics

7
4340
by: Piotre Ugrumov | last post by:
I have tried to implement the overload of these 2 operators. ostream & operator<<(ostream &out, Person &p){ out<<p.getName()<<" "<<p.getSurname()<<", "<<p.getDateOfBirth()<<endl; return out; } This overload work but I have a curiosty If I try to approch to the name or to the surname or to the dateofbirth in this way i receive error: ostream & operator<<(ostream &out, Person &p){ out<<p.name<<" "<<p.surname<<", "<<p.dateofbirth<<endl;
1
2066
by: Piotre Ugrumov | last post by:
I'm following your help. I have written the overload of the operator <<. This overload work! :-) But I have some problem with the overload of the operator >>. I have written the overload of this least operator for the class Person, but I don't know how write the overload for a class that derived from the class Person. The overload of << in Person is this: ostream & operator<<(ostream &out, const Persona &p){ out<<p.getNome()<<"...
3
2247
by: Piotre Ugrumov | last post by:
I have done the overload on the operator >> and << in the class Attore. These 2 overload work correctly. I have done the overload of the same overload in the class Film. The class film ha inside an array of pointer to Attore. I have written these overload in these ways. the overload of << work correctly the overload of >> I don't know. I compile the class correctly, when I insert a film through the operator >> I don't receive error, but...
1
1157
by: Christoph Boget | last post by:
Where can I find *comprehensive* information about events? I've been all through Microsofts developer pages, through the VS.NET help but I can't find comprehensive, details information about them. For example, I'm working with a TreeView control. I've set up 2 even handler methods, one for "AfterSelect" and one for "Click". In the "AfterSelect" handler method, I can access the TreeView object to get state information and work with member...
19
1947
by: Dave Raskin | last post by:
public class Base { } public class Derived : Base { } public class Service {
3
1580
by: mr_doles | last post by:
Let me preface this by saying I am not a programmer, I write code to make my like easier. So at the end of the day when I press the button as long as 1 + 1 = 2, I don't care how ugly the code is. Now I am writing some code for someone else and I have a window that takes forever to open. I know that it is performing 3 large tasks in the onLoad event. It works great just takes a while to load, any optimization tips would be appreciated...
0
1375
by: The Eternal Squire | last post by:
To all, About twenty years ago, I was admitted to a Ph.D. program for computer science. It was also around that time that I was diagnosed for chronic depression, which forced me out of that program into the working word. I had done my best since then as a software engineer, until late 2005, when I
1
2087
by: Alexander Wolff | last post by:
When asp.net trace is enabled in web.config, http://mywebserver/myApp/trace.axd list parameter/value pairs for each control in the HTML Form, ok (this is basic asp.net information and work for all asp.net applications independently how the asp.net application is programmed) I would like..to save this information to a file o database (because trace.axd information is not persistente, ..is lost when application pool is recycled)
5
3695
by: jknupp | last post by:
In the following program, if the call to bar does not specify the type as <int>, gcc gives the error "no matching function for call to ‘bar(A&, <unresolved overloaded function type>)’". Since bar explicitly takes a pointer-to-member with no parameters, why is the lookup for the overloaded function not able to use the number of arguments to determine the appropriate function? Is there a relevant portion of the standard that governs the...
0
9841
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8838
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7383
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6655
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5280
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5424
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3930
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3533
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2807
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.