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.

Show HN: Simple tool for creating and organizing daily notes on the command line

74 pointsby dankcoover 4 years ago

6 comments

m-chrzanover 4 years ago
Looks like a nice tool, but it seems to be built around a very specific workflow that you&#x27;ve found works for you.<p>Personally I have been managing most of my plaintext notes with the minimal tools required to do so: a text editor and a file system. For technical notes about software I add git into the mix[1], mostly as a means of synchronization between machines.<p>[1]: <a href="https:&#x2F;&#x2F;m-chrzan.xyz&#x2F;blog&#x2F;cheatsheets.html" rel="nofollow">https:&#x2F;&#x2F;m-chrzan.xyz&#x2F;blog&#x2F;cheatsheets.html</a>
评论 #26142641 未加载
dankcoover 4 years ago
Hey Everyone,<p>I wanted to share a tool I built out of a desire to easily create and organize plain-text notes on the command line. textnote is a CLI for quickly creating, opening and managing daily plain-text notes. I built it to encourage myself to practice daily note taking by making it dead simple to open a prebuilt, templated, dated note file in Vim. I thought it would be good to share here with the HN community because it is intentionally lightweight and meant to be paired with other commandline tools (grep, fzf, etc) for additional functionality.<p>The key feature built into textnote that I couldn&#x27;t find elsewhere is archiving. Running its archive command will consolidate notes into monthly archive summary files and (optionally) remove the original daily files to declutter and turn your notes organized records over time.<p>I hope you might find it useful and I&#x27;d love to take any feedback or suggestions that might come to mind!
评论 #26139677 未加载
评论 #26139326 未加载
评论 #26139703 未加载
评论 #26138527 未加载
nickjjover 4 years ago
As someone who has been creating plain text notes since 2001 I found in practice daily notes tend to be a bit too scattered. Usually if you&#x27;re working on something and you want to reference your notes the next day it&#x27;s a nicer experience to have that in the same notes file as today instead of yesterday. Over the decades I&#x27;ve settled on a YYYY-MM.txt file, or 1 file per month.<p>Last year I open sourced <a href="https:&#x2F;&#x2F;github.com&#x2F;nickjj&#x2F;notes" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;nickjj&#x2F;notes</a> which is similar&#x27;ish to this tool. It supports opening your notes in any editor (using $EDITOR), launches this month&#x27;s notes with `notes` but also lets you create notes with `notes hey just writing a note` or sending notes in from stdin with `echo &quot;cool&quot; | notes` (useful for pasting a note).<p>Also, if you really wanted daily notes you could easily change the date format to include -%d. After doing notes by hand for so long I initially wrote the script with daily notes thinking it would be better but very quickly reverted back to monthly notes.<p>The whole thing is a 25 line bash script so it&#x27;s super easy to edit if you don&#x27;t like what it does by default.
评论 #26142424 未加载
mawekiover 4 years ago
I think any new plain-text based tool needs a comprehensive section (and support the workflow) on how to synchronize across devices using git or syncthing.<p>I tried noteKit and zettlr and so many more and I am willing to give this one a try, but I am always hesitant to reverse-engineer the file-structure and create autocommit&#x2F;push&#x2F;pull&#x2F;etc. scripts to handle all the syncing across my work devices.<p>As a proof of concept I once created a &quot;personal log&quot; (where you could just put a few lines of what you&#x27;re currently doing and why and for whome) and it was basically a git-wrapper where empty commits were created and all the data was in the commit message. A simple sync-command then pull-rebased and pushed everything. Of course, the append-only nature of this model made synchronization incredibly easy.<p>I just wish that distributed workflow was more of a consideration for authors of personal organization tooling.<p>Edit: of course, also plain-text accounting, for example. The plain-text nature brings a lot of possibilities that are rarely used to the fullest.
bityardover 4 years ago
I see this has rolled off the front page already but I just wanted to chime in and say this is pretty neat. I recently cobbled together almost the exact same thing in Python, the main differences in mine are:<p>* the notes are filed into dirs by year and then month, so I don&#x27;t need an archive command * the &quot;todo&quot; section serves as my backlog and is automatically carried over from one day to the next * I have a command to take all of last week&#x27;s &quot;done&quot; items and email them to my manager<p>The source code for mine is not public because it was lashed together out of duct tape and optimism.
评论 #26144520 未加载
controlledchaosover 4 years ago
Anybody still use good ol’ sticky notes? I have always struggled with keeping notes digitally; something always falls through the cracks.
评论 #26142538 未加载
评论 #26139817 未加载
评论 #26140382 未加载
评论 #26141908 未加载