I'm asking because I'm wondering if there's a more efficient way for me to handle my notes at work. Currently I just use a txt file in Notepad++. I use this file to track all of the stuff I have to do, such as tasks for stories I'm working on, next steps for projects, discussions I need to follow up on, questions and ideas I want to bring up, etc. The way I organize the document works pretty well for me, but I'm just curious how other people do it.

you are viewing a single comment's thread
view the rest of the comments
[–] 9 points 3 years ago* (last edited 3 years ago)

I use todo.txt format, created my own cli https://github.com/jecxjo/todo.hs

I set up tasks with priorities:

  • A: tasks i am doing now/today
  • B: tasks i am planning on soing this week
  • C: tasks that need to be done but aren't high priority
  • D: tasks I delete if not done by the end of the month

I make sure all my tasks have a +ProjectName and if i have to deal with a @SpecificService or @EmployeeName i note that. I will also add in things like jira:StoryNumber or other data.

Due dates are rare, only when there is a hard stop. End of a sprint is not a hard stop. If i need to remind someone I'll use due date and @Reminder

100% of the time all tasks go in my list. Nothing is left for me to remember. It goes into my list before it ends up in a Jira ticket or Conflience page. Remind me first, everyone else second.

First thing in the morning i process my list. Move tasks to A. End of the week at the end of the month I delete all the D tasks.

As for notes, i use vimwiki with automation to compile into html when files are written. I've also setup coworkers with an automated process using pandoc to go from markdown to html. Then i have a little a bookmark on my browser to pull it all up nice and pretty. I'll post the scripts later, not at my computer.

Daily diary entry made every morning when i do my todo list prep, entry for each meeting. Add notes during meetings and links or other details when looking for solutions to problems.

  • source