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.

Keeping a plaintext “did” file

507 pointsby theptrkalmost 7 years ago

62 comments

Tade0almost 7 years ago
I used to keep a so-called shitlist for a long term project I was involved in.<p>The idea was to document all the worst places in the codebase(150k LOC) that frequently caused weird behaviours.<p>Each record contained a short description, the reason why this piece is bad, hash of the commit that introduced it and of course the perpetrator.<p>Of course the main purpose it served was to relieve stress, nevertheless it helped me with my work a few times.<p>One could ask why didn&#x27;t I just refactor these pieces right away? Two things often stopped me from doing this: first, some of those lines were over eight years old and a huge part of the system depended on their sometimes buggy behaviour. Second, the company review policy was &quot;stability, stability, stability&quot;, so any change beyond the scope of the thing I was working on was automatically rejected.
评论 #17540604 未加载
评论 #17540833 未加载
评论 #17540583 未加载
henrik_walmost 7 years ago
I keep a bugs.txt text file (complete with alias for opening it), in which I record particularly difficult or tricky bugs. It&#x27;s a really good way to learn from hard bugs. At the top of the file I have a template that I copy each time I add an entry. It has the following fields:<p>Date:<p>Symptom:<p>Cause:<p>How found:<p>Fix:<p>Fixed in file(s):<p>Caused by me:<p>Time taken to resolve bug:<p>Lessons:<p>I&#x27;ve used this system for 15 years now (210 entries), and it&#x27;s been very helpful, especially for lessons learned.<p>More here: <a href="https:&#x2F;&#x2F;henrikwarne.com&#x2F;2016&#x2F;04&#x2F;28&#x2F;learning-from-your-bugs&#x2F;" rel="nofollow">https:&#x2F;&#x2F;henrikwarne.com&#x2F;2016&#x2F;04&#x2F;28&#x2F;learning-from-your-bugs&#x2F;</a><p><a href="https:&#x2F;&#x2F;henrikwarne.com&#x2F;2016&#x2F;06&#x2F;16&#x2F;18-lessons-from-13-years-of-tricky-bugs&#x2F;" rel="nofollow">https:&#x2F;&#x2F;henrikwarne.com&#x2F;2016&#x2F;06&#x2F;16&#x2F;18-lessons-from-13-years-...</a>
评论 #17541517 未加载
评论 #17540467 未加载
评论 #17540797 未加载
评论 #17540590 未加载
ajucalmost 7 years ago
Similar 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&#x27;t go to git, and you have to keep somewhere while you&#x27;re working on it:<p>- nonobvious terminal commands or small scripts I had to write<p>- fixes for enviromental&#x2F;configuration problems<p>- fragments of stacktraces<p>- fragments of log files<p>- packages that needed to be installed<p>- short todo lists I created while doing sth<p>- links to webpages I found that had a solution to my problem<p>- profiling results for solutions I compared<p>- parts of emails I copied to focus on the important fragments with stuff to check&#x2F;fix<p>- names of temporary branches created when working on the problem<p>- xml fragments from some requests I copypasted to kate to prettify it<p>There&#x27;s no structure and no plain English descriptions in these files, just bunch of copypasted stuff separated by a few empty lines in a text file.<p>I have to keep these things somewhere anyway while I work on them, and pasting them in one file that I later save in one directory preserves them for future. I call the file yyyymmdd_some_keywords.txt.<p>I don&#x27;t bother to describe the task in plain English, the stuff that&#x27;s copypasted there is enough for context, I can also check git from same date if something&#x27;s not clear. The most important thing is - there&#x27;s no overhead, just open the file when starting a new task, keep it opened while you work on sth and save it when you finish. So I have hundreds of these files after a while, and when I encounter some problem I can quickly grep to check if I seen similar stacktrace before and what it was about.<p>Before I started doing this I had several instances of déjà vu - I could swear I&#x27;ve seen this problem before but can&#x27;t remember what it was about and how it was solved.
评论 #17539754 未加载
评论 #17539742 未加载
评论 #17543043 未加载
评论 #17539736 未加载
评论 #17540020 未加载
评论 #17542006 未加载
评论 #17539494 未加载
评论 #17539690 未加载
superkuhalmost 7 years ago
Back 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&#x27;ve used exclusively a single plain text file with embedded filepaths if media references were required.<p>This has worked far better and now offers a remarkable resource for both nostalgia and getting stuff done. It&#x27;s huge and search is pretty much the only way through it but I still add every day.<p>Plain text is best. I feel that even using vim to automate time stamps is too complex. I just write it once by hand. It&#x27;s easy and literally takes half a second.
评论 #17542967 未加载
chucksmashalmost 7 years ago
I&#x27;ve settled on a couple of helper functions in bash to accomplish a similar thing (daily journaling):<p><pre><code> ####################################### # Normalizes date arguments # Globals: # None # Arguments: # date (defaults to today) # Returns: # string of format &#x27;YYYY-MM-DD&#x27; ####################################### function getDate { local DATE=${1:-$(date -I)}; if [[ &quot;${DATE}&quot; =~ [+]+ ]]; then DATE=$(date -I -d&quot; ${DATE} days&quot;); elif [[ &quot;${DATE}&quot; =~ ^- ]]; then DATE=$(date -I -d&quot; ${DATE} days&quot;); elif [[ &quot;${DATE}&quot; == &quot;tomorrow&quot; ]]; then DATE=$(date -I -d&quot; +1 days&quot;); elif [[ &quot;${DATE}&quot; == &quot;yesterday&quot; ]]; then DATE=$(date -I -d&quot; -1 days&quot;); fi echo &quot;${DATE}&quot;; } ####################################### # Load a journal file # Globals: # None # Arguments: # date (defaults to today) # Returns: # None ####################################### function journal { local DATE=$(getDate &quot;$1&quot;); emacs ~&#x2F;notes&#x2F;journal&#x2F;${DATE}.md; }</code></pre>
评论 #17539912 未加载
geraldbaueralmost 7 years ago
Great idea. Welcome to the .txt family. A while ago I published Journal.TXT - a single-text file format for journals and the human multi-document format for writers. See <a href="https:&#x2F;&#x2F;journaltxt.github.io" rel="nofollow">https:&#x2F;&#x2F;journaltxt.github.io</a><p>PS: I also started Awesome .TXT - A collection of awesome .TXT tools, formats, services, tips &amp; tricks and more. See <a href="https:&#x2F;&#x2F;github.com&#x2F;officetxt&#x2F;awesome-txt" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;officetxt&#x2F;awesome-txt</a>
评论 #17543830 未加载
sciurusalmost 7 years ago
For a decade or so, I&#x27;ve been using `vim -o ~&#x2F;{todo,progress,done}`<p>That 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&#x27;ll keep their entries in the middle split up to data with what i&#x27;ve done, next steps, etc. When I finish something, I move it from the middle split to the bottom split.<p>You can see a sample at <a href="https:&#x2F;&#x2F;imgur.com&#x2F;a&#x2F;jNa5Qp3" rel="nofollow">https:&#x2F;&#x2F;imgur.com&#x2F;a&#x2F;jNa5Qp3</a><p>This helps me<p>* plan how much I can accomplish in a day<p>* limit the number of things I&#x27;m doing at once<p>* remember context when i do have to multitask<p>* explain to others (e.g. my manager) what i&#x27;ve been working on
评论 #17544006 未加载
评论 #17547278 未加载
ocharlesalmost 7 years ago
For those who use Emacs, org-capture is probably the way to go: <a href="https:&#x2F;&#x2F;orgmode.org&#x2F;manual&#x2F;Capture.html#Capture" rel="nofollow">https:&#x2F;&#x2F;orgmode.org&#x2F;manual&#x2F;Capture.html#Capture</a>
评论 #17539631 未加载
评论 #17539628 未加载
评论 #17540802 未加载
评论 #17544385 未加载
评论 #17551396 未加载
sorbitsalmost 7 years ago
I use the following to maintain a journal: <a href="http:&#x2F;&#x2F;jrnl.sh&#x2F;" rel="nofollow">http:&#x2F;&#x2F;jrnl.sh&#x2F;</a>
评论 #17539305 未加载
keylealmost 7 years ago
This reminds me of the `plan` files used by John Carmack and and ID software. It&#x27;s a good way to look back at things and remember how far you&#x27;ve gone and give some perspective on how some big problems at the time were not so big today...
评论 #17539343 未加载
评论 #17541110 未加载
csmattryderalmost 7 years ago
I&#x27;ve got a small A6 notebook for this, computers are great, but there&#x27;s still work to be done in translating the abstract diagram&#x2F;flowchart&#x2F;sketch amalgamation that&#x27;s in my brain to a digital representation.<p>A picture tells a a thousand words, there&#x27;s pages where I tried redesigning a scene graph implementation, it&#x27;d take hours to transcribe the knowledge that I gleaned from those (roughly drawn) images into words.
评论 #17540472 未加载
评论 #17539714 未加载
divanalmost 7 years ago
&gt; Its super important to take a second every once in a while to simple write down what you did during the past mental sprint. Writing down what you learned solidifies the knowledge.<p>Sorry, I didn&#x27;t get why it&#x27;s super important. Isn&#x27;t it a context switch? How does it really help to solidify the knowledge? How often do you review those did files? How exactly reviewing what you did helps? (I&#x27;m thinking of myself reading some &quot;did&quot; from the past and fail to see any benefit). How this solution is better than using Notes or Google Keep or whatever online tool? How to manage it across multiple machines and backup it?<p>If the goal is to solidify knowledge, I can&#x27;t help but suggest using Anki: there was an article about in HN not so long ago: <a href="http:&#x2F;&#x2F;augmentingcognition.com&#x2F;ltm.html" rel="nofollow">http:&#x2F;&#x2F;augmentingcognition.com&#x2F;ltm.html</a>
navanealmost 7 years ago
I have a windows notepad file for the same reason. F5 prints the date&#x2F;time stamp.
评论 #17539225 未加载
评论 #17539201 未加载
marcuskazalmost 7 years ago
Sharing my utility Jot: <a href="https:&#x2F;&#x2F;github.com&#x2F;mkaz&#x2F;jot" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;mkaz&#x2F;jot</a><p>Jot stores notes in text files organized by date, includes simple searching, templates, and a few other niceties; plus you can add notes via command-line, pipe, or open in your EDITOR (vim)
评论 #17541359 未加载
peterwwillisalmost 7 years ago
I like it. Of course I created my own note&#x2F;task-taking app years ago, which I can&#x27;t even find anymore. It was in Perl. The purpose was to have a user-friendly command-line interface. If I was going to grep for something, I wanted to display the results in a nice way. To list notes or tasks done, priorities, etc I wanted to sort and display in a nice way. And eventually I added a merge function if I forgot I had more than one editor open at a time. I think I abandoned it for the same reason I abandon every note-taking app I try: it&#x27;s just not easy enough to use everywhere.<p>The note-taking app I use most often now is e-mail drafts. I write an e-mail to no one and save it as a draft. It&#x27;s synced everywhere, sorted by date, has a subject (which can be edited to include tags such as &quot;(!) &quot;, &quot;(plan)&quot;, &quot;(done)&quot;), can contain any text format (even attachments), and it works on every e-mail client and server. Maybe I should write an interface to it...
dmortinalmost 7 years ago
For quick notes the most important for me is as little friction as possible.<p>Having to switch to a terminal and using an alias is too much friction.<p>So I have a global hotkey which I can press anywhere on my desktop, regardless of the current application and if I press it it opens an editor window with the current timestamp already added, so all I have to do is type and press a key to finish the entry.<p>This way I don&#x27;t have to switch apps to make a note, I stay in the current context and it&#x27;s so quick and convenient to make notes that I don&#x27;t even have to think about doing it.
评论 #17540141 未加载
评论 #17547371 未加载
manifestsilencealmost 7 years ago
In case it&#x27;s useful to anyone (or they want to pick at my code), here&#x27;s a quick and dirty python thing I use to automate timestamps on journal entries. It just accepts strings of text and saves them in a file named with today&#x27;s date and a time above each entry.<p><pre><code> import time user_input = &quot;&quot; date_string = &#x27;-&#x27;.join([str(n).zfill(2) for n in time.localtime(time.time())[0:3]]) while user_input != &quot;q&quot;: user_input = raw_input(&quot;Log entry (q to quit): &quot;) with open(&quot;time_log_&quot;+date_string+&quot;.txt&quot;,&quot;a&quot;) as timelog: #timelog.write(time.asctime(time.localtime(time.time()))+&#x27;\n&#x27;) timelog.write( &#x27;-&#x27;.join([str(n).zfill(2) for n in time.localtime(time.time())[0:3]]) + &#x27; &#x27; + &#x27;:&#x27;.join([str(n).zfill(2) for n in time.localtime(time.time())[3:5]]) + &#x27; | &#x27; + user_input + &#x27;\n&#x27;)</code></pre>
评论 #17544398 未加载
DanielleMolloyalmost 7 years ago
<a href="http:&#x2F;&#x2F;todotxt.org" rel="nofollow">http:&#x2F;&#x2F;todotxt.org</a> has a format for a done.txt list, too. Useful before project meetings to get an overview over what you did in the last days.<p>TodoTxtMac creates this for me: <a href="https:&#x2F;&#x2F;mjdescy.github.io&#x2F;TodoTxtMac&#x2F;" rel="nofollow">https:&#x2F;&#x2F;mjdescy.github.io&#x2F;TodoTxtMac&#x2F;</a><p>I&#x27;ve been using it together with Dropbox (for access from my phone) for 3 years now.
评论 #17541279 未加载
JdeBPalmost 7 years ago
No need for &quot;normal Go&quot;. ex commands like r take addresses.<p><pre><code> vim +&#x27;$r!date&#x27; did.txt</code></pre>
评论 #17541758 未加载
评论 #17561192 未加载
评论 #17563648 未加载
评论 #17551456 未加载
评论 #17541388 未加载
staredalmost 7 years ago
Tool as a tool (I work daily with a &quot;nth-priority-ideas.md&quot;, and appreciate that plaintext files clutter-free, portable, customizable, etc).<p>But what I found inspiring is to maintain a list of <i>accomplished</i> tasks, not only a daunting one of todos. My PhD co-advisor run one, maybe I should have copied this approach.
letientai299almost 7 years ago
For the same reason, I use vimwiki[0] with its diary features, which is much better regards syntax highlighting linking.<p>[0] <a href="https:&#x2F;&#x2F;github.com&#x2F;vimwiki&#x2F;vimwiki" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;vimwiki&#x2F;vimwiki</a> [1] <a href="https:&#x2F;&#x2F;github.com&#x2F;vimwiki&#x2F;vimwiki&#x2F;blob&#x2F;master&#x2F;doc&#x2F;vimwiki.txt#L1735" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;vimwiki&#x2F;vimwiki&#x2F;blob&#x2F;master&#x2F;doc&#x2F;vimwiki.t...</a>
stevenschmatzalmost 7 years ago
EDIT: I made a [Github project](<a href="https:&#x2F;&#x2F;github.com&#x2F;stevenschmatz&#x2F;did" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;stevenschmatz&#x2F;did</a>) which adds a few niceties to this blog post, like better dates, no date duplication, and syntax highlighting in Markdown.<p>---<p>If you want syntax highlighting and better dates, you can use a Markdown file with the following command:<p>``` vim +&#x27;normal Go&#x27; +&#x27;r!date +&quot;\# \%B \%d, \%Y (\%A)&quot;&#x27; ~&#x2F;did.md ```<p>Make sure to turn `syntax: on` in your `.vimrc`.
allenualmost 7 years ago
What I do for all of my side projects now is keep a TODOs.md file in the project root. I no longer keep track of to-dos for programming projects external to the project. I find it makes it much easier to pick up a project I&#x27;ve left for a while.<p>What I do is every time I think of a new work item or discover a bug, I add an item to the list. Once I finish an item, I check it off. Since it&#x27;s checked in with everything else, it&#x27;s a good history of what work was &quot;discovered&quot; along the way and what work has been done.<p>For the last few years, I&#x27;ve worked on a bunch of little side projects projects here and there and this system has kept me sane.<p>For an example, see <a href="https:&#x2F;&#x2F;raw.githubusercontent.com&#x2F;allenu&#x2F;YokosukaJS&#x2F;master&#x2F;TODOs.md" rel="nofollow">https:&#x2F;&#x2F;raw.githubusercontent.com&#x2F;allenu&#x2F;YokosukaJS&#x2F;master&#x2F;T...</a>
dajohnson89almost 7 years ago
Keeping a &quot;did&quot; file is also immensely valuable to demonstrating your performance and achievements to your employer. Think about all the positive things you&#x27;ve done for work over the past year. It&#x27;s hard to account for them all mentally, and even harder for your boss to remember.
评论 #17542462 未加载
tmalyalmost 7 years ago
I keep an info.txt file about useful commands and information. Years ago I remember an HN comment on someone that stored everything as Prolog facts that could be consulted.<p>I still like paper and can remember this post on this slick way to index a paper based notepad. I will have to dig it up.
mitul_45almost 7 years ago
I was using Vimwiki for this stuff for long, but this idea seems promising for a daily journal.<p>I mostly divide my tasks by day so I don&#x27;t want timestamp to be added everytime I add an entry. Here&#x27;s my aliases if it helps:<p><pre><code> alias ndid=&quot;nvim +&#x27;normal Go&#x27; +&#x27;r!date&#x27; +&#x27;normal o&#x27; +&#x27;:exe \&quot;normal i=============================\&lt;Esc&gt;\&quot;&#x27; ~&#x2F;Dropbox&#x2F;did.txt&quot; alias did=&quot;nvim +&#x27;normal G&#x27; +startinsert ~&#x2F;Dropbox&#x2F;did.txt&quot; </code></pre> So use `n(ew)did` at the start of the day and for every subsequent entries, use `did`. Also using Dropbox as storage for portability.
评论 #17540555 未加载
评论 #17563654 未加载
bakulalmost 7 years ago
In my .zshrc I have<p><pre><code> todo() {vi &#x27;+$&#x27; ~&#x2F;todo&#x2F;$(date +Y&#x2F;%m)} +() {echo + $* &gt;&gt; ~&#x2F;todo&#x2F;$(date +Y&#x2F;%m)} -() {echo - - $* &gt;&gt; ~&#x2F;todo&#x2F;$(date +Y&#x2F;%m)} </code></pre> Each month&#x27;s entries are in a separate ~&#x2F;todo&#x2F;YYYY&#x2F;MM file. The + command is to record something done. The - command is to enter a new task. The todo command is for editing this month&#x27;s file -- add month-days, update entries, cleanup etc.<p>Separately I have current and last 2 month files open in the leftmost column of acme (about half as wide as other columns). This is for moving entries between months etc. I have to remember to do a Get before editing and Put when done editing to sync with any updates done from command line.<p>In the same column I have a per year &quot;projects&quot; file (multiple indented lines per project) and a per year &quot;future&quot; file (things I may want to do someday).<p>This is far from perfect but has endured. A simple grep can tell me what was done or what needs to be done in a given month or year.<p>For taking notes in a meeting I have now switched over to using an ipad + apple pencil as I can scribble notes, draw pictures, doodle etc. without having a laptop screen between me and others or clicking keys annoying people.
评论 #17563667 未加载
darekkayalmost 7 years ago
For Notepad++, I&#x27;m using a custom &quot;TODO&quot; syntax highlighting [0]. I like this for &quot;temporary&quot; TODOs (mostly work-related stuff to be done today) and as an overview for my scrum dailies.<p>[0] <a href="https:&#x2F;&#x2F;github.com&#x2F;darekkay&#x2F;config-files&#x2F;tree&#x2F;master&#x2F;notepad%2B%2B#todo" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;darekkay&#x2F;config-files&#x2F;tree&#x2F;master&#x2F;notepad...</a>
justjashalmost 7 years ago
Not sure I understand the reason for needing to keep track of things like the examples shown...<p>On the other hand, if I am in the middle of some large changes I will make notes at the end of the day before I leave the office. I usually write down what I accomplished and what remains to be done as well as anything I need to come back to. I don&#x27;t get too fancy with it, usually just use Sticky Notes on my Windows PC at work.
评论 #17542034 未加载
alexthehurstalmost 7 years ago
Here&#x27;s what I use for this same purpose: my fork of someone else&#x27;s old and unmaintained pet project. I think it&#x27;s pretty good. It creates a new entry each day, or appends to this day&#x27;s diary entry.<p>It has a few subcommands, which are date-aware.<p><a href="https:&#x2F;&#x2F;github.com&#x2F;alexthehurst&#x2F;Diary.py" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;alexthehurst&#x2F;Diary.py</a>
caio1982almost 7 years ago
I sort of had a did.txt for 3 years, updated quite often during my working hours (at least once a day, if I were super busy, to dump all my daily activities and notes). It was quite useful for standup meetings and such. It is a pretty gigantic did.txt now, and in 3 years can you guess how many times I needed the info sitting there? Zero... go figure :-(
评论 #17541546 未加载
gemmaalmost 7 years ago
I love how many ways there are to do this. My version uses empty Git commits: <a href="https:&#x2F;&#x2F;github.com&#x2F;ellotheth&#x2F;dotfiles&#x2F;blob&#x2F;master&#x2F;bash_funcs#L1-L8" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;ellotheth&#x2F;dotfiles&#x2F;blob&#x2F;master&#x2F;bash_funcs...</a>
评论 #17551470 未加载
satranalmost 7 years ago
I log everything worth remembering and some. Whether it is something I did, a link I want to read, or something I bought. I use a file called log.txt. It is synced across all my devices. I have a very minimal format that goes like this:<p><pre><code> # 16&#x2F;07&#x2F;2018 - read about did.txt on HN - [ ] write about log.txt on HN - cost: 2.9€ coffee at 93 </code></pre> I grep for - [ ] to see my incomplete tasks, and add an x like - [x] when the task is complete. When the file grows large I move months to separate files.<p>I tried Evernote, onenote, physical notebooks and a hundred other tools. This is one that I settled on. All I need is a text editor on any platform.<p>Back to the log, there are several times I have visited it to find out what happened during the day. I use it at times as a review of how well the week went and what I could improve on.
pasbesoinalmost 7 years ago
Back (some time ago) when work, etc., had me spending a lot of time on Windows, I found and used this generous free and open-source project.<p><a href="https:&#x2F;&#x2F;www.codeproject.com&#x2F;articles&#x2F;5371&#x2F;todolist" rel="nofollow">https:&#x2F;&#x2F;www.codeproject.com&#x2F;articles&#x2F;5371&#x2F;todolist</a><p>Looking now at the revision history, it looks as if something may have happened to Dan after last summer.<p>It wasn&#x27;t plaintext, but it and its format are open. And I found it a pretty good combination of features in a compact presentation.<p>There&#x27;ve been a couple of recent &quot;to do&quot; threads, that made me think of this. This thread finally got me to look it up.<p>I never tried this:<p><a href="http:&#x2F;&#x2F;abstractspoon.com&#x2F;wiki&#x2F;doku.php?id=linux" rel="nofollow">http:&#x2F;&#x2F;abstractspoon.com&#x2F;wiki&#x2F;doku.php?id=linux</a>
dbalanalmost 7 years ago
Self plug: I wrote <a href="https:&#x2F;&#x2F;github.com&#x2F;dbalan&#x2F;idid" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;dbalan&#x2F;idid</a> to do more or less the same thing when my did file needed a bit more structure (also an excuse to write some haskell).
cjhanksalmost 7 years ago
Yeah, it&#x27;s easy to forget. CHANGELOG is the historical equivalent, but that seems to be dead.
chadlavialmost 7 years ago
I made one of these, too. Here&#x27;s a gist: <a href="https:&#x2F;&#x2F;gist.github.com&#x2F;chadlavi&#x2F;15fd674162ccbd2f4765bd76f3321f13" rel="nofollow">https:&#x2F;&#x2F;gist.github.com&#x2F;chadlavi&#x2F;15fd674162ccbd2f4765bd76f33...</a>
hboonalmost 7 years ago
I wrote about something similar in a comment <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=16322942" rel="nofollow">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=16322942</a><p>It&#x27;s served me well. I have records from as far back as 2009.
fimdomeioalmost 7 years ago
I have done something similar some years ago. Reminds me it&#x27;s probably time to update. <a href="https:&#x2F;&#x2F;fimdomeio.com&#x2F;thingsIhaveDone.txt" rel="nofollow">https:&#x2F;&#x2F;fimdomeio.com&#x2F;thingsIhaveDone.txt</a>
评论 #17543421 未加载
supremeApyalmost 7 years ago
I would recommend, <a href="http:&#x2F;&#x2F;jrnl.sh" rel="nofollow">http:&#x2F;&#x2F;jrnl.sh</a> it&#x27;s made for the purpose described but in a much better and simpler way (also allows tagging and searching in a simple way).
评论 #17541541 未加载
bayindirhalmost 7 years ago
These small log files really help to keep things in perspective. However for longer plans I use Trello. It works as an issue tracker &#x2F; planner for me so I can put the bits I find on the issue to the cards, or to my dropbox and link them.<p>When I finish a task, I put all relevant information to a folder in my &quot;Old documents&quot; folder, and put the card to the &quot;Done&quot; column. If the task is a project, everything is already become documented and archived on git at the end.
anderspitmanalmost 7 years ago
Does anyone know of a good open source text-based journaling system that lets you easily inline images&#x2F;audio&#x2F;video&#x2F;etc, with render-to-html functionality? My goal is to document what&#x27;s going on in my life, and that&#x27;s not really possible with only text. This is where Evernote really shines in my opinion. I&#x27;ve been missing that functionality ever since I got off Evernote. Been wanting to create a basic system for myself for a while now.
评论 #17546057 未加载
cornyalmost 7 years ago
Since the start of this year I&#x27;ve been keeping a similar journal. Instead of opening an editor to write a single line to a text file, I just print the arguments of a command to the end of a file and prefixed with a timestamp. Since there&#x27;s no need to review or save the file, there&#x27;s no interruption in what I&#x27;m doing. Logging things to the file feels like shooting things into the ether and I end up doing it constantly throughout the day.
ninjakeyboardalmost 7 years ago
I use gtd with org mode and I can move my finished tasks to a done file when they&#x27;re complete (if I care to.) Helps with standup etc.
评论 #17541238 未加载
sharkjacobsalmost 7 years ago
This is the one that I use<p>&gt; doing is a basic CLI for adding and listing “what was I doing” reminders in a TaskPaper-formatted text file. It allows for multiple sections&#x2F;categories and flexible output formatting.<p><a href="http:&#x2F;&#x2F;brettterpstra.com&#x2F;projects&#x2F;doing&#x2F;" rel="nofollow">http:&#x2F;&#x2F;brettterpstra.com&#x2F;projects&#x2F;doing&#x2F;</a>
ameliusalmost 7 years ago
I just store all of my shell command-lines in a big file, including the date and current working directory. That way, I can always grep and see what I did. For stuff that doesn&#x27;t happen on the commandline, I just type &quot;echo&quot; followed by a description of what I did, and it ends up in the history file just the same.
评论 #17563689 未加载
jmcphersalmost 7 years ago
If you&#x27;re using vim already for journaling, you should try Vimwiki. Out of the box, it has a diary, and typing Leader-W-Leader-W opens a buffer with today&#x27;s diary file, ready to record things you&#x27;ve done or serve as a scratchpad for the day that you can search and refer to later.
foobarchualmost 7 years ago
I found that using this snippet leaves the cursor at the start of the date string, so I have to shift+A then enter to get to the next line to start typing. Adding +&#x27;put _&#x27; to the command inserts a newline so that you can immediately switch to insert mode and start typing.
评论 #17551890 未加载
评论 #17551865 未加载
maxtacoalmost 7 years ago
Cool! I would store this file on keybase’s KBFS so it’s available on all of your machines.
评论 #17542275 未加载
pippyalmost 7 years ago
I wish all linux servers had something like this, out of the box, for all users.<p>the first thing I do after sshing into a box is spend an hour trying to figure out the basics. Where are the web folders? what daemons is running? what hacks does have in place?
评论 #17547285 未加载
chrisallenlanealmost 7 years ago
I&#x27;ll throw mine into the pile of other solutions posted here. I hope someone finds it useful:<p><a href="https:&#x2F;&#x2F;github.com&#x2F;chrisallenlane&#x2F;node-did" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;chrisallenlane&#x2F;node-did</a>
评论 #17563693 未加载
TekMolalmost 7 years ago
I hope one day I can run linux on my phone so that I can use these tools everywhere.
评论 #17539883 未加载
geberlalmost 7 years ago
I put the author&#x27;s terminal command into an Alfred Workflow: <a href="https:&#x2F;&#x2F;github.com&#x2F;geberl&#x2F;alfred-did-txt" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;geberl&#x2F;alfred-did-txt</a>
craftyguyalmost 7 years ago
join the (very recent) crowd: <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=17532094" rel="nofollow">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=17532094</a>
评论 #17539220 未加载
xurukefialmost 7 years ago
If the file does not exist, then<p><pre><code> vim +&#x27;normal Go&#x27; +&#x27;r!date&#x27; ~&#x2F;did.txt </code></pre> creates a file with the first two lines being blank.
评论 #17539082 未加载
johnramsdenalmost 7 years ago
Isn&#x27;t this effectively what code commits are for? If you&#x27;ve done something worth noting, it should probably be in a commit anyway.
评论 #17539152 未加载
评论 #17540888 未加载
评论 #17539235 未加载
extralegoalmost 7 years ago
I have done this since I began learning but I make a folder for every new topic so it’s easy to go back and do a refresher.
rvanlaaralmost 7 years ago
What benefit are you getting out of journaling?
plgalmost 7 years ago
isn&#x27;t this a classic use-case for emacs org-mode?<p>having said that I do appreciate that plaintext is lower friction&#x2F;inertia for sure
ameliusalmost 7 years ago
Title should contain &quot;with Vim&quot;.
评论 #17539868 未加载
shanavasmalmost 7 years ago
Emacs provides calendar and diary out of box M-x calendar then `i d` to create entry for selected date
RickJWagneralmost 7 years ago
Hacker News paydirt!<p>Short and sweet. Nice.