TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

My productivity app is a never-ending .txt file (2022)

499 pointsby yarapavanover 1 year ago

108 comments

tasty_freezeover 1 year ago
At my first job out of college in 1985 I worked for a unknown, unsuccessful mainframe company. I started a TODO.TXT file when I arrived; when I left a year later I put my TODO.TXT (along with ADDRESS.TXT, DATES.TXT) on a 5.25&quot; floppy and took it with me to the next company, and the next, and the next. I didn&#x27;t buy my own computer until 1997, and those files finally made it to a machine I own and control. Those files have been in continuous use for 39 years. TODO.TXT&#x27;s icon is the upper left icon on my desktop and I view and edit it multiple times a day.<p>I now have 46 .txt files for managing things, where each one pertains to some particular topic: food, music, travel, a website, etc. All are listed in my main TODO.TXT and since I use vim, I can just move the cursor on top of any of the files and type &quot;gf&quot; to jump to that other file. When I&#x27;m done, I hit Ctrl-O to jump back to the original file. It is hypertext without the html.
评论 #39438648 未加载
评论 #39438052 未加载
评论 #39440359 未加载
评论 #39438519 未加载
ravishiover 1 year ago
I use a similar system, but I duplicate and rename the file at the start of each day. Then I remove stuff that got done the previous day. Or stuff that is old and not relevant anymore.<p>The system has evolved over the years. The greatest thing about it is how flexible it is. When faced with new requirements (new projects, job change, etc) I can just start taking notes in a different way and see if it sticks.<p>I also commit it to git every 30 minutes using a cron script. Its awesome.
评论 #39434554 未加载
评论 #39434500 未加载
评论 #39434915 未加载
评论 #39445572 未加载
评论 #39434460 未加载
评论 #39436816 未加载
BasilPHover 1 year ago
I&#x27;m doing something similar with Obsidian daily notes[^1]. I also have a weekly note that I use to plan the next week.<p>Similar to how the author talks about scheduling their next day the evening before, I&#x27;ve started planning the big tasks for next on Friday afternoon, as this gives me momentum on Monday morning.<p>Related: I&#x27;ve found the 3&#x2F;3&#x2F;3 technique from Oliver Burkeman[^2] and the concept of open and closed lists to be a great complement for this type of organization. It hits the sweet-spot of flexibility and consistency for me.<p>[^1]: <a href="https:&#x2F;&#x2F;help.obsidian.md&#x2F;Plugins&#x2F;Daily+notes" rel="nofollow">https:&#x2F;&#x2F;help.obsidian.md&#x2F;Plugins&#x2F;Daily+notes</a><p>[^2]: <a href="https:&#x2F;&#x2F;ckarchive.com&#x2F;b&#x2F;e5uph7hx43mn" rel="nofollow">https:&#x2F;&#x2F;ckarchive.com&#x2F;b&#x2F;e5uph7hx43mn</a>
评论 #39433919 未加载
评论 #39434643 未加载
评论 #39434458 未加载
评论 #39433738 未加载
评论 #39439131 未加载
gumbyover 1 year ago
&gt; Every night before I go to bed, I take all the items on my calendar for the next day and append it to the end of the text file as a daily todo list, so I know exactly what I&#x27;m doing when I wake up. T<p>This is a key win. Most of the rest he describes is support (also cruicial). But setting up your day the night before is amazingly powerful. Many of the things I plan for the day I actually schedule into my calendar (12:30-13:00 read and respond to those three unanswered messages from Jane).
评论 #39433509 未加载
danielrkover 1 year ago
I used to use a .txt file like this for over 10 years that I edited with Vim and could also edit on my phone using Dropbox. And then I used the Mac Notes app and realized the search, sync, autosave experience, and other properties made Notes way more useful for me.<p>Similarly, for over 10 years I used to compile my CV with LaTeX using a fancy template I designed, until I realized the time it took to edit it was just not worth it. So I pasted it into a Google Docs file with Arial font and just text bullet points and no rich text features. My life became way easier and my CV looks way less annoying.<p>(This may be irrelevant to the original post but) I found that a lot of the optimizations I thought were good for me were stemming from an unnecessary attachment to a minimalist technical aesthetic.
评论 #39438665 未加载
评论 #39438194 未加载
评论 #39438326 未加载
twodaveover 1 year ago
I tend to format my plaintext notes as markdown to add a <i>small</i> amount of organization. I also have some light folder&#x2F;file organization to break things into categories&#x2F;topics&#x2F;days, depending on what it is. That gives me a nice clean slate to work from each day, but lets me pick up where I left off on more long-term stuff. Finally, I push it all to a private Github repo so I can get to my notes easily from wherever I am.<p>Overall this system works for me for several reasons. First, I hate pretty much every note taking app out there. Second, I like having control over my files. Most importantly, though, I don&#x27;t actually <i>need</i> to write notes all that often, and this way of doing things is convenient. When my brain is so crowded I need to overflow some thoughts or tasks for the day&#x2F;week somewhere, this system is there. When I&#x27;m managing it all in my head just fine, I don&#x27;t have to worry about keeping notes up to date, and I can count on my own system not to send me a push notification bugging me about it.
评论 #39435077 未加载
评论 #39435526 未加载
ramses0over 1 year ago
I&#x27;ve had pretty decent luck with `todo.txt` style tracking, but also tend to run into issues with tasks or notes &quot;going stale&quot; so came up with this system. `today` basically opens `~&#x2F;Desktop&#x2F;$YYYY_MM_DD-todo.txt`, but it&#x27;ll start you off with a copy of the most recent (previous) file.<p>This lets me have &quot;durable&quot; files (I can grep for pretty much anything and get a date-specific hit for it, similar to doing a `git log -S`), and also lets me declare &quot;task-bankruptcy&quot; without any worry (I can always &quot;rewind&quot; to any particular point in time).<p>The addition of `report` (aka: `diff $YESTERDAY $TODAY`) is helpful to see what I&#x27;ve added&#x2F;removed. Yeah, there&#x27;s better ways to do things, but the degenerate simplicity of `open ~&#x2F;Desktop&#x2F;todo.txt` is fantastic. Having the equivalent of `open ~&#x2F;Desktop&#x2F;$TODAY.txt` (with no ceremony) has been very valuable to me!<p><pre><code> $ cat ~&#x2F;bin&#x2F;today #!&#x2F;bin&#x2F;bash TODO_HOME=&quot;$HOME&#x2F;Desktop&quot; TODAY=&quot;$( date &quot;+%Y-%m-%d&quot; )&quot; TODAY_FILE=&quot;$TODO_HOME&#x2F;todo-$TODAY-todo.txt&quot; PREVIOUS_FILE=&quot;$( ~&#x2F;bin&#x2F;previous )&quot; if [[ ! -f &quot;$TODAY_FILE&quot; ]]; then cp &quot;$PREVIOUS_FILE&quot; &quot;$TODAY_FILE&quot; fi report &quot;$TODAY_FILE&quot; printf &quot;Press Enter to Continue, Ctrl-C to exit.&quot; &amp;&amp; read -r PROMPT open &quot;$TODAY_FILE&quot; echo &quot;$TODAY&quot; $ cat ~&#x2F;bin&#x2F;previous #!&#x2F;bin&#x2F;bash TODO_HOME=&quot;$HOME&#x2F;Desktop&#x2F;&quot; TODAYS_DATE=&quot;$( date &quot;+%Y-%m-%d&quot; )&quot; MOST_RECENT=&quot;$( ls &quot;$TODO_HOME&quot;&#x2F;todo-*-todo.txt | sed &#x27;s&#x2F;^.*todo-&#x2F;&#x2F;g&#x27; | sed &#x27;s&#x2F;-todo.txt&#x2F;&#x2F;g&#x27; ; echo &quot;$TODAYS_DATE&quot; | sort )&quot; PREVIOUS=&quot;$( echo &quot;$MOST_RECENT&quot; | awk -- &quot;BEGIN { YET=0 } &#x2F;^$TODAYS_DATE&#x2F; { YET=1 } { if ( !YET ) PREV=\$0 } END { print( PREV ) }&quot; )&quot; PREVIOUS_FILE=&quot;$( echo &quot;$TODO_HOME&#x2F;todo-$PREVIOUS-todo.txt&quot; )&quot; echo &quot;$( realpath &quot;$PREVIOUS_FILE&quot; )&quot; $ cat ~&#x2F;bin&#x2F;report #!&#x2F;bin&#x2F;bash TODO_HOME=&quot;$HOME&#x2F;Desktop&quot; TODAY_FILE=&quot;$TODO_HOME&#x2F;todo-$( date &quot;+%Y-%m-%d&quot; )-todo.txt&quot; PREVIOUS_FILE=&quot;$( ~&#x2F;bin&#x2F;previous )&quot; echo &quot;${PREVIOUS_FILE}...${TODAY_FILE}&quot; diff -U0 &quot;$PREVIOUS_FILE&quot; &quot;$TODAY_FILE&quot; | grep -v ^@@</code></pre>
评论 #39434179 未加载
评论 #39444938 未加载
评论 #39434099 未加载
Gbox4over 1 year ago
I&#x27;ve been using what is essentially a single sticky note (Raycast floating notes feature) for a year now and it works great. I put todos, meeting notes, ideas, and everything else in there with zero organization. When I want to remember stuff I read it. When I finish stuff I delete it. Has worked for me better than Notion, Obsidian, Reminders, Tick Tick, etc.<p>I&#x27;ve found that for productivity tools, there is an inverse correlation between time it takes to setup and how effective it is.
评论 #39435243 未加载
评论 #39439245 未加载
评论 #39434703 未加载
aeturnumover 1 year ago
Personally, I feel that Todoist[1] has revolutionized how well I can track things. You can use it exactly like a text file, where each line &#x2F; task is tracked individually. I&#x27;ll often add tasks for my current day (that will fail over to tomorrow if I don&#x27;t get to them). However it&#x27;s real strength (compared to a text file) is in its features for repeating periodic tasks. Other products I&#x27;ve used struggle with irregular timing structures, but todoist simply understood (for example) &quot;the first monday of every month&quot; for street sweeping.<p>I still keep daily notes at times and track what I&#x27;m doing in other spots, but getting used to using Todoist to help me do periodic tasks at the proper rate has been one of the only productivity tools that felt like they &quot;really worked.&quot; I pay for the app because not doing so would feel ungrateful, but I don&#x27;t really use any of their premium features. The base app is more than good enough in my view.<p>[1] <a href="https:&#x2F;&#x2F;todoist.com&#x2F;features" rel="nofollow">https:&#x2F;&#x2F;todoist.com&#x2F;features</a>
评论 #39436067 未加载
评论 #39473172 未加载
评论 #39444348 未加载
abulmanover 1 year ago
I&#x27;m also using Obsidian daily notes, with all un-actioned items shown on a page with a dataview API[^1]:<p><pre><code> ```dataview TASK FROM &quot;VaultName&#x2F;Journal&quot; WHERE !completed ``` </code></pre> Since at least 2012 I&#x27;ve also been using a text file format from <a href="http:&#x2F;&#x2F;todotxt.org&#x2F;" rel="nofollow">http:&#x2F;&#x2F;todotxt.org&#x2F;</a> and more recently I wrote a program that takes a crontab-like list[^2] to pre-generate entries on a daily, by-day-name (every Sunday for example), and I also pull in a list of holidays from gov.uk, so they are also populated.<p>[^1]: <a href="https:&#x2F;&#x2F;github.com&#x2F;blacksmithgu&#x2F;obsidian-dataview">https:&#x2F;&#x2F;github.com&#x2F;blacksmithgu&#x2F;obsidian-dataview</a><p>[^2]: <a href="https:&#x2F;&#x2F;github.com&#x2F;alister&#x2F;alister-tools&#x2F;blob&#x2F;main&#x2F;.todo.crontab.sample">https:&#x2F;&#x2F;github.com&#x2F;alister&#x2F;alister-tools&#x2F;blob&#x2F;main&#x2F;.todo.cro...</a>
martin82over 1 year ago
Planning the next day on the evening before has to be the single most important productivity hack in the world.
dopuover 1 year ago
I&#x27;ve arrived at something similar after going through a lot of different solutions: Evernote, Quiver notes, Apple Notes, Logseq, Tana: now I just keep everything in one big Journal.md file in Obsidian. I added a datestamp shortcut that inserts the date as a title in &quot;2024 February 19 (Mon)&quot; format, and get to writing. I use subheadings sometimes if I&#x27;m writing a lot on a particular day and it gets messy, but most days it&#x27;s just a hodge podge of everything, and that&#x27;s fine.<p>It works. A big issue with computer notetaking software, I&#x27;ve realized, is that I was spending too much time trying to figure out where to put things: what note should this be connected to, which folder should this be in, etc. Dumping everything into a single document, under today&#x27;s date, gets rid of that. The other issue this solved was that I never looked back at what I&#x27;d written previously: opening a bunch of files was too tedious to ever do unless I was explicitly looking for something. With this, I can just scroll down and see what I was doing last week, immediately.
评论 #39450453 未加载
评论 #39448205 未加载
web3-is-a-scamover 1 year ago
My productivity app is just todo.txt in one drive using <i>specificaly</i> notepad.exe.<p>You put .LOG at the top of the new file with a return. Save and close the file.<p>Every time you reopen the file, the timestamp is append to the file. Add your notes, save, exit notepad. Open it again when you need to update, rinse and repeat.<p>Nothing I’ve ever tried has been more effective than just keeping this endless file.
评论 #39434240 未加载
评论 #39434317 未加载
js2over 1 year ago
Everything old is new again:<p>John Carmack&#x27;s .plan¹:<p><a href="https:&#x2F;&#x2F;garbagecollected.org&#x2F;2017&#x2F;10&#x2F;24&#x2F;the-carmack-plan&#x2F;" rel="nofollow">https:&#x2F;&#x2F;garbagecollected.org&#x2F;2017&#x2F;10&#x2F;24&#x2F;the-carmack-plan&#x2F;</a><p>Archive:<p><a href="https:&#x2F;&#x2F;github.com&#x2F;ESWAT&#x2F;john-carmack-plan-archive">https:&#x2F;&#x2F;github.com&#x2F;ESWAT&#x2F;john-carmack-plan-archive</a><p>¹ <a href="https:&#x2F;&#x2F;www.rfc-editor.org&#x2F;rfc&#x2F;rfc742" rel="nofollow">https:&#x2F;&#x2F;www.rfc-editor.org&#x2F;rfc&#x2F;rfc742</a>
nonethewiserover 1 year ago
This matches my experience. Its all about ingestion speed. Ingestion of the thoughts in my head, that is. Most note taking systems require you to structure it. That’s basically the whole point. I find that this just gets in the way. I just need a sort of working-memory dump.<p>I have a note directory with a root level markdown file which I use for general stuff which i dont use much. I also have folders for each task # with a similar sort of markdown file. And sometimes (rarely) other useful assets.
dankcoover 1 year ago
I love the idea of using plain text files for note taking and task tracking. As others have commented on specific tools and workflows that make this easy for them to stick with, I thought I&#x27;d add mine. I use textnote [0], which is a tool I built for exactly this workflow but is hopefully flexible enough to accommodate many of the similar processes mentioned here. It simply opens a plain text file in your terminal and provides lightweight tooling for tracking by date and rolling up previous notes into archives if desired.<p>Thanks for opening another great discussion of plain text note taking as a productivity tool!<p>[0] <a href="https:&#x2F;&#x2F;github.com&#x2F;dkaslovsky&#x2F;textnote">https:&#x2F;&#x2F;github.com&#x2F;dkaslovsky&#x2F;textnote</a>
d--bover 1 year ago
I don&#x27;t know how to articulate it, but I could never do anything like this.<p>The ability to organize one&#x27;s life like this is so foreign to me, it&#x27;s almost like he&#x27;s describing what it&#x27;s like to be an octopus.<p>I think it may be my emotional state that I can&#x27;t manage. There is absolutely no way, I could decide what I&#x27;d be doing the next day every night. The thing is my state of mind would prevent me from doing half the tasks in the list. So shit would just pile up in that text file, making me every day more nervous about things.<p>For what it&#x27;s worth, I think I am more &quot;normal&quot; than the person who wrote that piece. So that&#x27;s a consolation...
评论 #39434644 未加载
评论 #39434732 未加载
评论 #39434774 未加载
评论 #39434720 未加载
评论 #39434769 未加载
评论 #39434624 未加载
评论 #39434781 未加载
评论 #39435725 未加载
评论 #39439293 未加载
评论 #39434689 未加载
评论 #39437953 未加载
tarr11over 1 year ago
OP uses their calendar as a supplement for their the todo file. There is a lot of functionality implied in that decision:<p>- calendars have mobile apps which enable quick and precise entry<p>- calendars understand time spans<p>- calendars have many options to display events<p>- calendars have cloud syncing<p>- calendars are backed by a queryable data store<p>Not saying using a text file is good or bad, but I think a more accurate title would be “my productivity app is a never ending txt file and a calendar app”
评论 #39435796 未加载
评论 #39438167 未加载
ristonover 1 year ago
I am using a similar structure a single text file usually split by each day, which also gives a good start to writing my standup notes.<p>I tried to avoid bringing in some strange formatting rules etc, quite free form. With a single file, it&#x27;s effortless to go back and find out maybe why something was done in that way or why it wasn&#x27;t done at all.<p>Looks kind of like a work diary to me, I have seen people trying to do a similar thing by bringing too much structure&#x2F;org modes etc and making it so complicated that they forgot at first why they are doing it.<p>KISS
nickthegreekover 1 year ago
Previous: My productivity app for the past 12 years has been a single .txt file (2020) (December 23, 2021 — 523 points, 202 comments)<p><a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=29661167">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=29661167</a>
twothreeoneover 1 year ago
I&#x27;ve been using chat apps &quot;send to self&quot; for this exact same workflow.. at work I just use Slack as it supports threads and basic formatting (e.g. render code blocks separately and clickable links). So every day has a few threads on different things I&#x27;m working on and I can just add notes on them as I go throughout the day. For my own projects I use a messenger app, which is not as nice because most messengers do not support threads. I was actually considering switching to an external text file for versioning purposes.. and being able to render code blocks would be nice, org mode looks like overkill though.
评论 #39438157 未加载
plgover 1 year ago
I have been using Apple Notes which is great because I can read&#x2F;write in the moment on a Mac, on iPad, on iPhone, and everything is (almost always) synced and stored in the cloud. I have been doing one note per day.<p>On the other hand, PTF (Pity The Fool) who tries to export these notes. I know some people have written exporters but of course, whenever Apple decides to change format, PTF.<p>I would like to change to a more portable format, e.g. markdown, but I am looking for a solution that syncs nicely across devices. Maybe iaWriter. Maybe just sublime text or even emacs and just put everything in a dropbox folder.
评论 #39438138 未加载
评论 #39435660 未加载
评论 #39435579 未加载
anonacct37over 1 year ago
Going on 5+ years using a single giant org file. It&#x27;s the only system I&#x27;ve ever been able to stick with for more than a couple days.<p>I think of it as my labbook.
评论 #39435131 未加载
intrasightover 1 year ago
I&#x27;ve been doing this long enough now (decades) that some of my .txt files (I have one per client&#x2F;project) are in the size range of 20mb.
评论 #39434193 未加载
kreddover 1 year ago
I actually sent this to my friend as he always thought I&#x27;m crazy for doing this. Mine one is a bit simpler though, just a big .txt file with TODO and DONE sections. Some of TODOs just have dates next to them if they&#x27;re urgent, otherwise it&#x27;s just it&#x27;s just a simple list.<p>That being said, I do use my calendar-equivalent app on my phone for very time-sensitive stuff, just in case.
mightybyteover 1 year ago
I also use plain text files for a lot of my personal organization. My system isn&#x27;t quite like what OP describes, but it has some things in common. Some of my files are also structured by date as a never-ending journal. This isn&#x27;t for a todo list, it&#x27;s for a journal of things I encounter that I&#x27;d like to be able to find again and that I don&#x27;t want to accumulate as clutter elsewhere...i.e. in browser tabs, etc. Sometimes it&#x27;s a web link, or maybe something I learned somewhere, something someone told me, etc. I include notes whatever words &#x2F; strings I think I might use if I want to find this particular thing later. I use org mode and make each date be a top-level bullet so I can nicely leverage powerful text search tools like ripgrep, regular expressions, etc.<p>I don&#x27;t find it useful to force everything into a single file. Instead, I&#x27;ll organize these text files somewhere inside a directory structure that I can recursively grep. Unlike the OP I do use mutable TODO lists to track high level lists of things that I want to continue to spend mental energy on, but I do like the chronological list of done things and I might think about adding something like that or maybe augmenting the chronological notes file I already have.<p>I do depart from the world of plain text for keeping track of larger amounts of information such as good papers I encounter, complete blog posts that I might want to refer back to, etc. For this I use the fantastic DEVONthink tool. It&#x27;s got a large array of powerful features including automatic OCR and indexing of images and an excellent search feature, but the one that I use the most is its ability to make a &quot;web archive&quot; from a link. This downloads all of a web page&#x27;s resources and stores them in the database locally, making it really easy to refer back to things that I&#x27;ve seen before regardless of whether I have internet access or not, whether the website is still around, etc.
superkuhover 1 year ago
Same. Ever since I had my proprietary rich text note taking application&#x2F;database corrupt and become inaccessible in the early 2000s I&#x27;ve used a single notes.txt file with filepaths for noting images and other rich media. It is super simple to search within; everything is in one place. And it&#x27;ll never become corrupted or inaccessible.
j45over 1 year ago
Lists in text files work great. So unbelievably great.<p>I go back to them often, and some things can outgrow them completely when you want to:<p>- Reduce the work between my list and collaborating with others (a shared list) - First class convenient experience on all my devices is useful - Notes synced automatically can go a long way. - When projects grow, and there&#x27;s more details to manage, along with updates, than not.<p>Has anyone used the text file appoach that can be compatible with LogSeq&#x2F;Obsidian?<p>I&#x27;m not sure why, but this time using mainly LogSeq has clicked. I do run it inside of an Obsidian Vault just in case... but haven&#x27;t used Obsidian much. I really like the feel of per line item like a text file that logseq provides. There are tradeoffs too though.<p>I think I might be enjoying it because it&#x27;s plaintext, with a little bit more metadata, when&#x2F;if I want it.<p>The hashtags I invent that only I know are almost an unfair advantage for pulling up all the meetings with a person, or a topic, etc.
conqrrover 1 year ago
Did the exact same thing, sublime shortcut to add a datetime stamp (Python command) whenever I needed it. Moved to Obsidian recently and the daily note takes care of that. The folder system helps a bit with organizing recurring themes that the daily log journal didn&#x27;t.<p>Edit: Reading the comments. Wow Uncanny so many people doing something similar
denvaarover 1 year ago
I am drawn to the idea of keeping todo lists, but it seems like whenever I start to do it, I begin to feel stressed out or overwhelmed. Not so much by the contents of the list, but by maintaining a list in and of itself. Kind of like an obsessive type of problem. Does anyone else feel this way?
评论 #39435063 未加载
评论 #39439341 未加载
评论 #39435192 未加载
wimover 1 year ago
It&#x27;s something I also tried to do for a while, just by using VSCode and a bunch of text files. I really like the lightweight-ness of just being able to edit as if it&#x27;s text, but wanted to have for tasks what VSCode has for code: command palettes, &quot;syntax highlighting&quot;, jump to &quot;references&quot; (like dates) and an editor which understands structure (like an outliner, but without all the awkward text selection issues).<p>Anyway all of that led us to try and build a dedicated &quot;IDE&quot;, but for tasks&#x2F;notes and multiplayer support [1]. Hopefully it&#x27;s going to be useful for others working from their todo.txt&#x2F;thoughts.txt!<p>[1] <a href="https:&#x2F;&#x2F;thymer.com" rel="nofollow">https:&#x2F;&#x2F;thymer.com</a>
Ecosteover 1 year ago
Now do an article on how to get the discipline to keep this going.
评论 #39434104 未加载
评论 #39441469 未加载
jameschensmithover 1 year ago
&gt; So my daily routine looks like<p>&gt; [...]<p>&gt; 5. copy the next day&#x27;s calendar items to the bottom of the text file<p>Interesting. For a file with 51,690 lines at the time this post was created, I&#x27;m curious why the file is not ordered with the most recent day at the top of the file.
评论 #39434444 未加载
evncover 1 year ago
Reminds me of Heynote, posted to HN recently[0].<p>In general I think this approach of &quot;super easy capture into an append-only log&quot; is great, especially if it can be paired with features to enable editing&#x2F;re-discovery&#x2F;search&#x2F;synthesizing old ideas together, which exist in a <i>separate</i> view&#x2F;mode from the &quot;just get something down as fast as possible&quot; mode. Working on something like this, but just in nights&#x2F;weekends free time with other obligations, so it&#x27;s been slow going.<p>[0] <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=38733968">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=38733968</a>
pchmover 1 year ago
I have a TODO.txt and it’s the only productivity system that I’ve ever been able to stick with. Just a list of stuff I need to do, what’s done gets moved down or deleted. Maybe there’s value in having an archive (a DONE.txt?) but I’ve found that after a while most notes&#x2F;items lose the context and often it’s hard to decipher what they were about.<p>One thing I haven’t figured out yet: I’d love to be able to keep this file open at all time, have it pop up with a hotkey. Currently it’s just a TextMate window that I often close by accident.
hk__2over 1 year ago
I mostly do this, but with a physical notebook. I wouldn’t be able to work with a .txt file because it’s too limiting: you can’t draw anything, you can’t easily make arrows between stuff, you don’t have the nice mental reward when you strike some item off your list.<p>This is for the day-to-day organization. For the rest, I dump all my knowledge in a wiki (MediaWiki), and I use iOS&#x2F;macOS’ Reminders app to remember things to do far in the future (like &quot;cancel XYZ subscription&quot; in 6 months) or at very specific times.
评论 #39434852 未加载
akira2501over 1 year ago
Old man checking in. I use the TOPS Steno Pad and PaperMate Gel Ink pens. Light weight, damage resistant, and no power required.<p>Still works a treat. There&#x27;s something about writing information down on paper that makes it store in my memory differently. I read volumes of digital text on my monitor every day, but I write very little into the steno book, so almost everything I write gets stored very deeply in my memory and is very easy to recall even when I don&#x27;t have the original.
评论 #39434398 未加载
pwillia7over 1 year ago
I ended up at the same point after a lot of trying and failing but wanted a _few_ extra features than notepad offers. It&#x27;s also important to me to be able to take notes in a browser.<p>I do use logseq&#x2F;obsidian in my better moments, but having another faster system is so helpful for a number of reasons.<p>I have been building my own text bookmarklet[0] that I use for this.<p>[0]: <a href="https:&#x2F;&#x2F;github.com&#x2F;pwillia7&#x2F;Text_Bookmarklet">https:&#x2F;&#x2F;github.com&#x2F;pwillia7&#x2F;Text_Bookmarklet</a>
评论 #39435025 未加载
wouldbecouldbeover 1 year ago
To be honest, that&#x27;s why apple notes really is great. I have the same, but apple notes manages to save my mess on all my devices without ever overwriting my own changes.
zwiebackover 1 year ago
Takeaway: if you&#x27;re already highly organized and disciplined a simple tool is all you need
评论 #39434710 未加载
评论 #39434443 未加载
评论 #39434122 未加载
walteweissover 1 year ago
Make it .org file and you’re in a different league instantly.
评论 #39434358 未加载
crtifiedover 1 year ago
My todo.txt is more of a digital whiteboard, a temporary summary. Once the day or task is done, the text is wiped. (That&#x27;s not to say I don&#x27;t document things - only that I don&#x27;t use my todo.txt as long-term record-keeping)<p>The concept (along with sentiments such as <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=39434558">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=39434558</a>, where the mundane inefficiency of having to access the todo.txt window every time is the annoyance) makes me think that a wall-mounted screen dedicated to displaying the list may be an improvement for some people. Alternatively a multi-monitor setup where one (perhaps smaller) screen is permanently dedicated to the list.<p>After all, back in the old days when people did literally do all this with physical black&#x2F;whiteboards and similar, you didn&#x27;t have to &quot;pull up the whiteboard&quot; every time you wanted to look at it - you just turned your head a little, or shifted your gaze. In that particular sense, having to open or pull up a file every time is a regression, an added inefficiency.
dandy23over 1 year ago
I used to track every project in its own text file. Every task and a description was in this file. It was great, but got a bit messy. So now I use EasyOrg [1] where I also track each project&#x27;s todos in its own text file, but now with time scheduling, search by time, links to other tasks in the file etc.<p>[1] <a href="https:&#x2F;&#x2F;easyorgmode.com" rel="nofollow">https:&#x2F;&#x2F;easyorgmode.com</a>
Full_Clarkover 1 year ago
I use the notes app on my phone and I&#x27;m also split between two calendar apps and three email accounts, none of which integrate well with each other.<p>It&#x27;s a real dog&#x27;s breakfast of a system and while I forget few things, I procrastinate many of them because the act of even trying to track what&#x27;s done vs outstanding is very taxing.<p>ahh well, c&#x27;est la vie
jculover 1 year ago
I&#x27;ve tried various note taking &#x2F; organising strategies in the past and nothing compares to pen and paper for me.<p>I used to go through a lot of notepads as &quot;scratch&quot; work and would also lose things that I would like to look back on. So for the past few months I&#x27;ve been using a rocketbook. I have a special format for weekly todo &#x2F; done tasks, a kind of daily log format, pages for meeting notes, and then scratch pages for rough notes etc.<p>I usually upload the weekly &#x2F; daily &#x2F; meeting stuff or research stuff I may want to keep. Rocketbook ocrs the page and uses anything with ##s as a title so I can find stuff quickly. I have set up different Dropbox folders for different categories of notes.<p>It&#x27;s been working quite well for me.<p>Some things like documention, or draft documentation etc. I do store in markdown text files, and sync between my devices with syncthing. On my phone I used termux and vim for editing them, which works surprisingly well.
kochover 1 year ago
Looks like markwhen[0]. When making it, which initially started out as a strictly timeline-making tool, I realized it is essentially a log or journal language - write a date, any date, and add some stuff to it. Good for notes, blogging, a calendar, etc etc.<p>[0] <a href="https:&#x2F;&#x2F;markwhen.com" rel="nofollow">https:&#x2F;&#x2F;markwhen.com</a>
rabbitofdeathover 1 year ago
I also use a simple text file, but for sake of context switching - I have one file for one topic - account x has a file, account y has a file, topic z has a file and everything related to it goes in. This is all now curated in my Obsidian vault that is synced via the fantastic Git plugin.
Kaibeezyover 1 year ago
Jarring that the author doesn’t use 24:00 time notation.<p><pre><code> 3:45pm meet with Oprah 4pm Rihanna talk 15:45 meet with Oprah 16:00 Rihanna talk </code></pre> Monospace typeface keeps it tidy and the timestamps pop in a visual scan. Zero AM&#x2F;PM ambiguity.
peso4ekabout 1 year ago
I use the same system but with highlighting&#x2F;formatting of <a href="https:&#x2F;&#x2F;xit.jotaen.net" rel="nofollow">https:&#x2F;&#x2F;xit.jotaen.net</a><p>I even learned how to create a plugin for the IntelliJ IDEA and created one for highlighting this format (love idea hotkeys and workflow).
wernseyover 1 year ago
I didn&#x27;t see anyone mention Markdeep [0] yet.<p>I started with a notes.txt file for the system I maintain. I found myself gradually adopting Markdown syntax because I need bulleted lists and headings to separate different sections. I also needed hyperlinks to documentation or StackOverflow answers.<p>So one day I just added the Markdeep tags to the bottom of the file and renamed it to notes.md.html<p>I still keep it open in a text editor for day to day use, but it looks really nice when you open it in a browser.<p>[0]: <a href="https:&#x2F;&#x2F;casual-effects.com&#x2F;markdeep&#x2F;" rel="nofollow">https:&#x2F;&#x2F;casual-effects.com&#x2F;markdeep&#x2F;</a>
jaystrawabout 1 year ago
the checkout fallacy:<p>waiting in line compresses your perception of time. when your items are being rung up, and it&#x27;s time to pay, your perception of time dilates.<p>i pay cash mostly. if i don&#x27;t organize my change at the register, i have to do it later, which i&#x27;m less likely to do since others behind me are waiting, causing my next transaction to take longer.<p>i don&#x27;t want to hold up the line, but i&#x27;m largely unaware of the time it took those ahead of me to accomplish the same task i&#x27;m sweating through and doing poorly.<p>what i&#x27;m attempting to propose via analogy, is that systems are only as effective as the amount of time you put in. if social pressure causes me to toss everything back into my pocket haphazardly, it takes me more time in the future to use those things.<p>i used a straight text file with my own format while i had my own business. it worked. i&#x27;m not a dev anymore, i&#x27;m a musician and booker. if i don&#x27;t amend my calendar or text file or handwritten notebook in the moment? i&#x27;m toast.<p>the fallacy is thinking one system is better when any system that&#x27;s not updated fails
bloopernovaover 1 year ago
Mine is: Orgzly Reloaded syncing to a webdav share, which is mounted at ~&#x2F;Org so it can be opened by Emacs.<p>For shared shopping lists, my wife and I use the OurGroceries Android app and website. It&#x27;s simple and just works.
renewiltordover 1 year ago
Same. I saw a very productive friend just build a list like this:<p><pre><code> - Thing to do - Subtask before that can be done - Another level deeper - Another task </code></pre> And he just deleted things from the list when done. I adopted it and quite like it. I&#x27;ve tried keeping it in git, using some tool, etc. but in the end the Notes app on Mac with the same format helped because I dislike the strike-through stuff. It just occupies cognitive space. Just deleting feels better.<p>Notes.app is nice as well because if I have it on a hot corner I can access it easily.
评论 #39436359 未加载
ivalmover 1 year ago
This is how I run all my one-on-ones, just an append only list where every meeting just gets appended on top of another with a date. If there are kaban tasks&#x2F;external documents&#x2F;etc that are relevant they still get linked into this page. It very amazing to see what we&#x27;re working on now, a week ago, a month ago, etc. And as a collaborative free-form document it gives both the manager and their report the ability to craft a story of what&#x27;s happening (and check in on progress in a way that dashboards fail to represent correctly!).
dcchambersover 1 year ago
This little nugget at the end is the key of all of this, to me:<p>&gt; It does mean sometimes I miss some questions or don&#x27;t pursue an interesting research question, but helps me maintain a manageable workload.<p>It&#x27;s easy to get hyped up by modern productivity software, sort, categorize, and prioritize everything, only to end up creating way more work than you will ever be able to do.<p>Keeping things simple (eg using a TODO.txt file) is one easy way to help prevent putting too much on your plate.
hu3over 1 year ago
I use <a href="https:&#x2F;&#x2F;joplinapp.org" rel="nofollow">https:&#x2F;&#x2F;joplinapp.org</a> because it allows for pasting images and files.<p>Supports markdown.<p>Has easy sync and also mobile and desktop apps.<p>Free and open source.
评论 #39435674 未加载
komodusover 1 year ago
I do the same grouped by week with some personal markup like:<p><pre><code> FEB 18 - todo x done ! important ? optional FEB 11 - todo x done ! important ? optional</code></pre>
Herodotus38over 1 year ago
I started doing this for work after reading this here 2 years ago. It’s been helpful, but I haven’t made it a consistent habit to check the night before. I don’t access the todo list from home (partially due to barriers inherent in my work’s IT dept and also of my own making). I also keep it pretty limited to my work and don’t let my other hobbies&#x2F;projects&#x2F;family onto it too much. It’s been a good record and reference for things!
iawover 1 year ago
VSCode and Markdown go a long way for me because it allows for index linking and some other nifty tricks. The main challenge is making sure the md files are organized.
评论 #39434806 未加载
mark336over 1 year ago
I use my own messageboard: <a href="https:&#x2F;&#x2F;willashani.com&#x2F;gigabots&#x2F;threads" rel="nofollow">https:&#x2F;&#x2F;willashani.com&#x2F;gigabots&#x2F;threads</a> Feel free to post! And I use Apple Notes. I like the messageboard because you can see the relationships in a tree-based structure. I store techy things in the messageboard above. I store non-techy things in Notes or when I am in a hurry and its not high priority.
c-smileover 1 year ago
Original EverNote (v 2.0, first public version) was built on that idea - endless tape of notes : <a href="https:&#x2F;&#x2F;notes.sciter.com&#x2F;wp-content&#x2F;uploads&#x2F;2017&#x2F;09&#x2F;evernote2.png" rel="nofollow">https:&#x2F;&#x2F;notes.sciter.com&#x2F;wp-content&#x2F;uploads&#x2F;2017&#x2F;09&#x2F;evernote...</a><p>Plain text is OK, or Markdown as poor man WYSIWYG for that matter, but at least images should be there too.
arjover 1 year ago
I have a similar system, I have the latest 3 + active in one org buffer and the rest in separate files. Mostly use org mode for expanding headers. Super fast search for anything is the killer feature.<p><a href="https:&#x2F;&#x2F;people.iola.dk&#x2F;arj&#x2F;2024&#x2F;01&#x2F;02&#x2F;a-work-diary&#x2F;" rel="nofollow">https:&#x2F;&#x2F;people.iola.dk&#x2F;arj&#x2F;2024&#x2F;01&#x2F;02&#x2F;a-work-diary&#x2F;</a>
disillusionedover 1 year ago
There&#x27;s a virtue in being able to take this and plug it into a large-enough-context-windowed ChatGPT to be able to search&#x2F;converse with.<p>Makes me think that the real play is to use ChatGPT for, say, an ongoing todo list&#x2F;dialog&#x2F;personal notes system for that purpose. Or wire up a custom GPT to reference notes stored elsewhere.<p>Either way, the idea that you can interrogate, intelligently, a list of your own ramblings, is pretty damn cool.
swahover 1 year ago
Nothing really works for me long run - my todo files get a bunch of random notes with the actual tasks, and I don&#x27;t want to go back to them..
评论 #39439750 未加载
danjcover 1 year ago
This illustrates well that you don&#x27;t need another productivity app - you just need a basic tool and discipline.<p>This also generalizes to other domains.
评论 #39439049 未加载
Glenchover 1 year ago
About a month ago I made a chrome extension that adds a &quot;sometime this week&quot; todo list at the bottom of google calendar (a feature I copied from Hey calendar). Any items that don&#x27;t get done roll over to the next week and I can go back to previous weeks to see what I got done. Super helpful to help plan out my week that way and integrated directly into my calendar.
jcolettiover 1 year ago
Interesting. I&#x27;ve been using Things (similar to Apple Reminders) for 10+ years, which I thought was really minimal, but a .txt is about as barebones as you can get. Makes me want to give it a whirl. Curious about the use of Remote Desktop with a mobile device. Being an iPhone user, I&#x27;d prefer putting it in iCloud Drive or something more easily accessible natively.
ansonhoytover 1 year ago
I just read two posts, same topic, same day, same first name. Fun!<p>Yesterday, Jeff Geerling explained his .txt file TODO list: <a href="https:&#x2F;&#x2F;www.jeffgeerling.com&#x2F;blog&#x2F;2024&#x2F;my-todo-list-txt-file-on-desktop" rel="nofollow">https:&#x2F;&#x2F;www.jeffgeerling.com&#x2F;blog&#x2F;2024&#x2F;my-todo-list-txt-file...</a>
AceJohnny2over 1 year ago
Obligatory reference to Emacs Org-Mode [1].<p>Author&#x27;s approach is basically Org-Mode with fewer helpers.<p>Org-mode&#x27;s power is that, at core, it&#x27;s just a text file, with gradual augmentation.<p>Then again, Org-Mode is a tool you must install, accessible through a limited list of clients (Emacs originally, but also VSCode), and the power of OP&#x27;s approach is that <i>it requires no external tools</i>.<p>[1] <a href="https:&#x2F;&#x2F;orgmode.org" rel="nofollow">https:&#x2F;&#x2F;orgmode.org</a>
评论 #39434593 未加载
评论 #39435064 未加载
paulcapewellover 1 year ago
I feel like this post gets posted to HN every few months.<p>Not as frequently as that, but a bit:<p><a href="https:&#x2F;&#x2F;hn.algolia.com&#x2F;?dateRange=all&amp;page=0&amp;prefix=true&amp;query=productivity%20.txt&amp;sort=byPopularity&amp;type=story" rel="nofollow">https:&#x2F;&#x2F;hn.algolia.com&#x2F;?dateRange=all&amp;page=0&amp;prefix=true&amp;que...</a>
fmaover 1 year ago
This is basically this auto focus system I was introduced to. I use Google Sheets so I can have a few columns. I can print it out if needed, and easily accessible on my phone and desktop.<p><a href="http:&#x2F;&#x2F;markforster.squarespace.com&#x2F;autofocus-system" rel="nofollow">http:&#x2F;&#x2F;markforster.squarespace.com&#x2F;autofocus-system</a>
ivanjermakovover 1 year ago
I ended up using plain text files because it&#x27;s the most efficient editing experience with my editor.<p>Although I have multiple files for different things: work reminders, abstract ideas, bookmarks, etc.<p>For time sensitive events I use stock calendar app on my phone because it&#x27;s the only thing I need notifications for (except email).
eschneiderover 1 year ago
Yeah, I use a similar text file journaling system to this and have for years. Let&#x27;s me know what I need to work on every day, let&#x27;s me know exactly where I left of debugging, etc, makes status reports a snap, and makes figuring out what I did all year at review time simple.<p>Would recommend.
ErikAugustover 1 year ago
I made a Node CLI that captures everything in a flat JSON file:<p><a href="https:&#x2F;&#x2F;github.com&#x2F;ErikAugust&#x2F;todo&#x2F;blob&#x2F;main&#x2F;applications&#x2F;cli&#x2F;README.md">https:&#x2F;&#x2F;github.com&#x2F;ErikAugust&#x2F;todo&#x2F;blob&#x2F;main&#x2F;applications&#x2F;cl...</a>
ProxCoquesabout 1 year ago
Archy had everything in one file too, for similar reasons to the ones expressed in FTA:<p><a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Archy_(software)" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Archy_(software)</a>
nstricevicover 1 year ago
I also use a single text file, but it&#x27;s Markdown. And I wrote a CLI application to help me maintain it -<a href="https:&#x2F;&#x2F;www.hackberry.dev&#x2F;alas&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.hackberry.dev&#x2F;alas&#x2F;</a>.
inferenseover 1 year ago
there&#x27;s a much better way providing simplicity with full data ownership and real tasks out of the box in daily documents <a href="https:&#x2F;&#x2F;acreom.com" rel="nofollow">https:&#x2F;&#x2F;acreom.com</a>
评论 #39438029 未加载
bitsodaover 1 year ago
Glad to know I&#x27;m not the only madman using a slew of text files to dump their thoughts into. My kids will surely think I was a crazy person if they ever stumble on them after I pass.
dudulover 1 year ago
&gt; My daily workload is completely under my control the night before<p>This being the key for such a system to work.<p>Preparing a todo list the day before would be mostly pointless for people who have to deal with interrupts and such.
HermanMartinusover 1 year ago
Considering the size of LLM token contexts now, this has become easily parseable. It would be trivial to set up a GPT that has all historic notes ever, making them easily queryable.<p>Neat.
system2over 1 year ago
My obsidian already got out of hand. I switched to asana for business todo but it also got out of hand. I still create txt files occasionally. I think it is inevitable.
jckahnover 1 year ago
This really is the way. Just one long append-only dump of all pertinent information. It’s the perfect complement to what’s in my head because I know where everything is!
bachmeierover 1 year ago
I tried doing it this way. While it sounds nice, and apparently works for some people, my biggest problem was stuff getting buried hundreds of lines into the file. I couldn&#x27;t trust it to remind me of anything beyond the few items at the top of the file. Another problem was having everything as a big blob of text mixed together, unless you take on some overhead when entering things (put them in the right place) or during the day (moving things around).<p>If this appeals to you, I&#x27;d recommend using a big html file with Javascript to query the things you want to see, using class names as tags. A good text editor will have snippet support, and you can just dump any new items at the top of the file as they come in. If you want to get fancy, you can write in markdown and convert to html on the fly.
评论 #39437371 未加载
devmorover 1 year ago
I just use a weekly planner. I have a nice one without pre-printed dates made by Moleskein.<p>I find the act of writing things down with a pen helps me remember them better as well.
akhoover 1 year ago
This looks like a bullet journal (with the transfers to next day &amp; from calendar), but without the journal. I, too, find the approach very natural.
hanezzover 1 year ago
Simple txt file is the best indeed. For easily creating a new file (from a template) everyday in VSCode, can recommend the vscode-journal extension.
nnxover 1 year ago
Anyone using Freeform (the recently added iOS&#x2F;macOS app) similarly?<p>It feels to me like it can be a powerful yet simple productivity helper.
评论 #39438234 未加载
xandriusover 1 year ago
Joplin + Dropbox + Markdown = free form, full control over data, checkboxes (if needed), mobile&#x2F;desktop support - top
nunezover 1 year ago
same, except I use MacOS Stickies. Way faster and much more persistent than Trello (where they end up, eventually)
评论 #39438219 未加载
due-rrover 1 year ago
I love the idea. Do you think he uses Remote Desktop from his phone? Or does he only use a desktop or a laptop.
rocky1138over 1 year ago
I do this as well, except I tend to stick to markdown for formatting. This file is routinely committed to git.
snarfyover 1 year ago
I noticed your format is pretty close to markdown, which is itself just ascii. Might as well go all the way.
swahover 1 year ago
I use all the systems mixed together, a bit of text files, a bit of Obsidian, apple notes, notion..
TOGoSover 1 year ago
I use a format[1] that&#x27;s _slightly_ more structured, in that files are divided into explicit entries with headers to indicate whatever metadata I want, and I also use this same format for storing other information (metadata about my music[2], workshop projects, orders, whatever).<p>Other than that, same, bro.<p>[1] <a href="https:&#x2F;&#x2F;github.com&#x2F;TOGoS&#x2F;TEF">https:&#x2F;&#x2F;github.com&#x2F;TOGoS&#x2F;TEF</a><p>[2] <a href="https:&#x2F;&#x2F;www.nuke24.net&#x2F;music&#x2F;music.txt" rel="nofollow">https:&#x2F;&#x2F;www.nuke24.net&#x2F;music&#x2F;music.txt</a>
yard2010over 1 year ago
&gt; 4pm Rihanna talk (368 CIT) 5pm 1:1 with Beyonce #phdadvisee<p>Sounds like a nice day.
namegulfover 1 year ago
Same here but it&#x27;s a spreadsheet<p>Previously standalone (libre) now google sheet
cptajover 1 year ago
I use notepad++ with 2 columns of files and around 40 tabs open.
yieldcrvover 1 year ago
same, I use TextEdit specifically because its seemingly the only gui text editor left on MacOS that isnt online<p>sometimes I use notes, for the syncing, but then I regret it
mrshuover 1 year ago
Probably needs a &quot;(2022)&quot; in the title.
gtziabout 1 year ago
Yes – and I’m using Writeroom.
chrswover 1 year ago
I thought I was the only one that did this
LeicaLatteover 1 year ago
Good choice for non visual users maybe
porridgeraisinover 1 year ago
I use heynote.com just like this
ukuinaover 1 year ago
[2022]
dbacarover 1 year ago
Overkill. Just use Obsidian and never look back.
评论 #39434655 未加载
goodburbover 1 year ago
[duplicate]
评论 #39435920 未加载
seoulbigchrisover 1 year ago
How did the meeting with Madonna go?
yorman2251over 1 year ago
Flffmff