Skip to main content

OneNote as a Task Management Tool — My System for task management

OneNote 2013 and OneNote in general is a very useful task management tool. It is really designed for note-taking and organizing your notes. When it comes to task management, its main purpose is not to organize your tasks unless you use it together with Outlook tasks, but I have developed a pretty good system that works well for me by utilizing some beautiful features of OneNote.
How did I end up using OneNote?
Over last 9–10 years I have spent time trying to improve my organization skills and as a result of that, I searched for tools that can simplify my professional and personal life. I liked the simplicity of Tasks application on early Blackberry phones and I was a big user of that app. I also went through the phase of maintaining my to-do list in text files and managing them via some useful editors such as Notepad++, Editpad, and CrimsonEditor. As my role and responsibilities changed and as the need for rich text format notes increased, I needed to find a tool that is Microsoft Word with better organizational features. That tool ended up being OneNote. I call OneNote IDE / Visual Studio for notes and tasks; if you are a tech person, you know what I am talking about.
What exactly do I use OneNote for?
- Taking notes in meeting
- As a knowledge base application (aka my Wiki)
- Reading emails and saving a useful piece of information/email into my Wiki in OneNote
- Keeping track of tasks that are current
- Keeping track of tasks that are in the backlog
- Organizing the tasks and all the details for my projects
- Sharing notes and to-do tasks with the team through a shared notebook in OneNote
- Team collaboration through a shared notebook in OneNote
Why OneNote?
It is a complete solution for note taking and organizing notes. If you use GTD (Getting Things Done) concepts, then you can use it for task management. However, if you expect to be reminded to do a specific task, you will either have to integrate OneNote with Outlook tasks or find some other product that had alerting system. Please watch my YouTube video below to see the system I am talking about.

https://www.youtube.com/watch?v=iiI_AERTCYo



Thank you for reading this article. 

Almir Mustafic


Comments

Popular posts from this blog

Brand New programming language and one solution OR …

Brand New programming language and one solution OR Two existing programming languages, one solution for EACH? I understand that there is no right or wrong. It all depends on your software architecture, team structure, team skills and other factors, but I still want to explain the scenario as it may look familiar to some. Let me explain. Let’s assume that you have microservices and common libraries in two major programming languages. You have some teams who are experts in one and some teams experts in the other programming language. Now you need to come up with a solution for a scenario that all teams will need to leverage. Let’s assume that your cloud platform has an off-the-shelf approach for this but it is supported by a 3rd programming language that your teams do not have much experience in. What is the right thing for your organization and not just from the technical point of view? A) Do you embrace what your cloud platform gives you off the shelf and implement thi...

Architecture Diagram for ...

ARCHITECTURE DIAGRAM representing interactions of your family of microservices is one of many important things to achieve the enterprise-level microservice architecture and microservices. After going through the design and contract definitions of your APIs/microservices, your team needs to put together a single diagram that explains the interaction among microservices (owned by your team) and how these microservices interact with other teams’ microservices. This is basically the blueprint for your team’s work and this picture needs to be constantly updated as you are evolving your services. What does this give you? It gives you the big picture view and it allows you to detect good or bad patterns that you cannot see when you are deep in your code. For example, you may be able to see that you are doing too many direct API calls for something that could be done with pub/sub approach. Almir Mustafic

Programming / Software Engineering  — Think Paper, Paper, then Code

Most of the software engineering problems are solved in what I call the high-level brainstorming sessions. We basically walk into a meeting room and white-board our thoughts and come up with solutions. When things start falling apart, you better believe this happens in the last stretch of projects and it does work.  Now the issue is that we as programmers do NOT do the similar type of exercise before a line of code is written ? I typically see developers get requirements in the form of a document or a user story or in the form of walk-by requirements. The next thing I see on developers’ screens is code editors or IDEs. Is that the right thing to do? You may say that you are advanced enough and that you like to dive into coding right away, but this happens even to the best of us. We fall into this trap and rarely step back and review our habits. We have to go back to fundamentals. What did we do in school?  Professors taught us to write down our thoughts and to show what...