Skip to main content

Outlook Rules + Blackberry == SUCKS

I just got a Blackberry for work and am having a hard time dealing with it.  I didn’t ask for it but if I have to use it I will. 


The real problem I am having is the clash of Outlook rules and my use of folders to organize email's.  Because the email's I get are moved into a folder (me being the anal organizational type) they do not get forwarded to the Blackberry.  This sucks because I don’t get all my email's which defeats the purpose of having the thing.


I have a plan to solve the problem.  A guy I work with says that he does not use folders to organize his email's, just sorts them in the Inbox.  On Hanselminutes Carl Franklin said that he leaves everything in the Inbox and uses a Desktop search tool.  I am thinking that a combination of these two practices and using the Favorite Folders in Outlook would work as well.  That way I can remove all my rules, have everything stay in the Inbox and at some later date I can organize as I see fit.


Its going to really hurt getting ride of the rules though.  I like my rules.

Comments

Popular posts from this blog

C# Spirograph Point Generators

Spirograph's  are cool.  See here and here . I put together three ways to generate points for a Spirograph, first using a Brute Force straight generate the points, second using a Parallel.For and third using LINQ.

FileSystemWatcher With the BlockingCollection

While working with the FileSystemWatcher I found that if too many files were created the built in buffer will overflowed and files will be skipped.  After much research I found out about the Producer-Consumer Problem .  Then I found that .Net 4 has the BlockingCollection which helps solve the issue.  But how to use it with the FileSystemWatcher? On StackOverflow I found  Making PLINQ and BlockingCollection work together .  I'm not so interested in the PLINQ issue but this is a great example of using The BlockingCollection with FileSystemWatcher. [csharp] using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading; namespace ConsoleApplication4 {     public class Program     {         private const string Folder = "C:\\Temp\\InputData";         static void Main(string[] args) {             var cts = new CancellationTokenSource();             foreach (var obj in Input(cts.Token))            

Remote Controlled RoboTank

This is my version of the ever popular to build RoboTank. It uses an Arduino Mega 2560 with the AdaFruit motor shield and an XBee S1 to communicate to the DFRobot Gamepad. The sketch for the RoboTank makes use of the AFMotor.h to drive the motors and includes a serial parser to read and process the commands coming from the Gamepad. Robotank-Sketch.zip DFRobot Wireless Joystick