Earlier quoted context omitted.
If you're on Android, you can do this today with Termux. I believe you can also set up shortcuts (so you could have a home screen widget to open your TXT file).
That would hand over full control to the author of Termux. According to the play store it is a guy called Fredrik Fornwall. I never heard of him. So I would not trust him with my digital life.
Keeping a plaintext “did” file
131–140 of 202 posts
Re: Keeping a plaintext “did” file
#132Earlier quoted context omitted.
I've gotten into the habit of defensively tracking every interruption - if somebody stops by my desk or slacks me or asks me to come by and look at something, I keep a text file of exactly when and how long. Then, if anybody ever asks why such-and-such is taking so long, I have a detailed record of _exactly_ why.
What do you do when somebody interupts you on the way back from your interruption? Do you just log it as "interruption"?
Re: Keeping a plaintext “did” file
#133Earlier quoted context omitted.
Actually the fact that I finally had an outlet for my frustrations was very cathartic. It was a lot like writing sad poetry over lost love.
Or the epilogue to my life spent indoors fixing bad code.
Re: Keeping a plaintext “did” file
#134Keeping a "did" file is also immensely valuable to demonstrating your performance and achievements to your employer. Think about all the positive things you've done for work over the past year. It's hard to account for them all mentally, and even harder for your boss to remember.
As a manager I suggested to my reports that this in addition to proving your work, it also helps as a way to understand whether you are stagnating at work, or continuing to learn and evolve.
Re: Keeping a plaintext “did” file
#135Earlier quoted context omitted.
Yep. I'm amazed by how many different hacks, tools, and one-offs get proposed in threads like this when an amazing plain-text note/organization/GTD/life management ecosystem already exists and is supported by endless configurability. Of course, we're talking about org-mode. (Religious org-mode user for approximately four years.)
I'm perpetually saddened because I work in aerospace where the IT policies are quite restrictive due to security clearances and whatnot, so I'm stuck on windows and can't install emacs :( Every few months I toy with the idea of implementing a poor man's org-mode in VBA.
Re: Keeping a plaintext “did” file
#136Earlier quoted context omitted.
Yep. I'm amazed by how many different hacks, tools, and one-offs get proposed in threads like this when an amazing plain-text note/organization/GTD/life management ecosystem already exists and is supported by endless configurability. Of course, we're talking about org-mode. (Religious org-mode user for approximately four years.)
I'm perpetually saddened because I work in aerospace where the IT policies are quite restrictive due to security clearances and whatnot, so I'm stuck on windows and can't install emacs :( Every few months I toy with the idea of implementing a poor man's org-mode in VBA.
Re: Keeping a plaintext “did” file
#137That gives me vim with three splits. Every day I add a new heading with the current date in the bottom split, then in the top one I list the things I plan to do that day. As new urgent work comes in throughout the day, I add it to the top split too. When I start working on something, I move it to the middle split. If I have to shift between tasks, I'll keep their entries in the middle split up to data with what i've done, next steps, etc. When I finish something, I move it from the middle split to the bottom split.
You can see a sample at https://imgur.com/a/jNa5Qp3
This helps me
* plan how much I can accomplish in a day
* limit the number of things I'm doing at once
* remember context when i do have to multitask
* explain to others (e.g. my manager) what i've been working on
Re: Keeping a plaintext “did” file
#138Back in the late 1990s and early 2000s I experimented with a number of complex rich text, database, and proprietary formats for my notes files. It was a disaster in terms of long term accessibility. Since ~2004 or so I've used exclusively a single plain text file with embedded filepaths if media references were required. This has worked far better and now offers a remarkable resource for both nostalgia and getting st…
Re: Keeping a plaintext “did” file
#139Similar but not the same: most days day at work I create one or more txt files in notepad (kate to be exact) where I paste every temporary info while I work on some task. Basically everything that doesn't go to git, and you have to keep somewhere while you're working on it: - nonobvious terminal commands or small scripts I had to write - fixes for enviromental/configuration problems - fragments of stacktraces - fragm…
I have a script that copies them up to my backup drive and Windows full-text indexing is enabled on the folder, so it is easy to search all the content from the start menu. It helps me because my memory is not the best...your point on the deja vu is right on.
The stuff that ends up being really helpful, such as some long bash command, PS for querying AD, complex DB queries, etc. get promoted to helpful_notes.txt.
Re: Keeping a plaintext “did” file
#140Back in the late 1990s and early 2000s I experimented with a number of complex rich text, database, and proprietary formats for my notes files. It was a disaster in terms of long term accessibility. Since ~2004 or so I've used exclusively a single plain text file with embedded filepaths if media references were required. This has worked far better and now offers a remarkable resource for both nostalgia and getting st…
You might be interested in the vimwiki plugin. The diary feature automatically creates pages per day named with a datestamp. Grep to search.
You don't even need grep, as vimwiki has built-in search:
":VWS /pattern/
Search for /pattern/ in all files of current wiki.
To display all matches use |:lopen| command.
To display next match use |:lnext| command.
To display previous match use |:lprevious| command."