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.

  • Vlyn@lemmy.zip
    link
    fedilink
    English
    arrow-up
    2
    ·
    1 year ago

    Well, there is Jira with the tickets of course, but when I’m working actively on a ticket I do two things:

    1. Text file in Notepad++ (something with custom markup so I have regions) or recently OneNote (just so this crap is backed up), write my hours down before putting them into the system, current ToDo things, notes, etc. till the ticket is through. Anything actually worth keeping gets puts into the Jira ticket as comment on close

    2. While working on the code and I need to do something before committing it I use comments. Like // todo# do x, I’m using todo# because if I text search the code base for just todo I’ll find a hundred entries… adjust to whatever is unique to you so you find your own comments again

    It’s a shit system, but has worked for me. I also write everything down so I don’t forget it, that has saved me several times.

    In the past I even took my text notes and put them into an archive (with the Jira ticket linked) just if an old issue pops up and I still have my thoughts from around that time. But nowadays I do less of that because code changes too fast anyway.

    • BurningnnTree@lemmy.oneOP
      link
      fedilink
      English
      arrow-up
      1
      ·
      1 year ago

      Can you explain what you mean by “something with custom markup so I have regions”? How do I do regions in Notepad++?

      • Vlyn@lemmy.zip
        link
        fedilink
        English
        arrow-up
        2
        ·
        1 year ago

        A little trick I like: You create your own custom language in Notepad++:

        1. Go tab Language → User Defined Language
        2. Create new… button
        3. Name it whatever you want, txtRegions or whatever
        4. In the “Folding in code 1 style” area put your favorite Open and Closing symbols. For example I used {{ and }}
        5. Close the dialog
        6. For your todo file, now go up again to Language → Select your custom language at the bottom
        7. Try it out, you can now make your own regions in your .txt file

        Usually Notepad++ remembers your custom language for your file. If it should ever forget to use it (and falls back to default .txt behavior) just select your language again. Have fun! :)

  • skip0110@lemm.ee
    link
    fedilink
    English
    arrow-up
    2
    ·
    1 year ago

    Wow. Many people have digital methods. I create jira tickets because it’s required but my actual work list I follow is handwritten in a notebook. When it gets more than 50% completed I copy the incomplete items onto a new page.

  • jecxjo@midwest.social
    link
    fedilink
    English
    arrow-up
    2
    ·
    edit-2
    1 year 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.

  • MajorHavoc@lemmy.world
    link
    fedilink
    arrow-up
    1
    ·
    edit-2
    1 year ago

    I used a lot of the tools mentioned here, and there some great recommendations!

    For me, it’s hard to beat a Markdown file for versatility.

    I combine mine with a keyboard shortcut dedicated to opening it my preferred text editor.

  • Raulppelaez@lemmy.ml
    link
    fedilink
    arrow-up
    1
    ·
    edit-2
    1 year ago

    Org-mode FTW! You only need to know emacs for it, which you can master in just a couple of measly decades.

    Jokes aside, org-mode is unironically incredible. I use something called Getting Things Done (GTD). I do not regret spending some weeks truly learning about it.

  • arthurpizza@lemmy.world
    link
    fedilink
    English
    arrow-up
    1
    ·
    1 year ago

    Same but s/Notepad++/nvim/g. I use a markdown-like list system.

    + [X] Task One
    + [ ] Task Two
    + [ ] Task Three
    + [X] Task Four
    + [ ] Task Five
  • NekoKamiGuru@ttrpg.network
    link
    fedilink
    arrow-up
    1
    ·
    edit-2
    1 year ago

    I work off a ticket system , Every morning I pick a ticket that looks like it is something I know how to solve and I work on it , at lunch I talk to coworkers about my task for the day and get their input and in turn I give my input to their tasks , then with luck I have the problem solved by 5pm when I go home for the day. I might continue to work on the ticket the next day or I might update the ticket as solved or unsolved (with my notes appended to help the next person if I am genuinely stumped) as appropriate.

  • max@feddit.nl
    link
    fedilink
    English
    arrow-up
    1
    ·
    1 year ago

    Issues on jira/GitHub/gitlab/whatever is used and their planning boards. Assign them to me, put them in to-do/planned and do them until they’re all closed/to be reviewed. Occasionally I will put a reminder in the reminders app of my phone with a timed alert if I mustn’t forget something rather urgently.

  • glad_cat@lemmy.sdf.org
    link
    fedilink
    arrow-up
    1
    ·
    1 year ago

    There are a billion ways to organize your stuff. I used org-mode a lot in the past but it’s a bit difficult to setup, especially on Windows. Nowadays, I use a mix of GTD, https://johnnydecimal.com/, Markdown (with Sublime Text), and https://taskwarrior.org/. Don’t forget calendars too (like the one on Outlook) because you can freely add meetings or things to do inside this application.

    You have to find something that works for you, there is no perfect solution. You can also ask the same question on !experienced_devs@programming.dev.

  • Cyborganism@lemmy.ca
    link
    fedilink
    arrow-up
    1
    ·
    1 year ago

    Tickets and Microsoft ToDo, which you can install a an “app” via edge browser and have it in its own window.

  • treeofnik@discuss.online
    link
    fedilink
    English
    arrow-up
    1
    arrow-down
    1
    ·
    1 year ago

    I use notion which by default has a task list, kanban style board to manage each task. This way I can keep track of things I need to do eventually, things I’m currently working on, and stuff I’ve finished but might want to keep around for reference later.