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.

Ask HN: Anyone else use a single gigantic .txt file as a notetaking solution?

4 pointsby superconduct1234 days ago
For the last 3 years I&#x27;ve just been using notepad in windows and a single .txt file to keep notes for my programming job.<p>Every day I just open the file and add a new divider for the day at the top of the file like this:<p>May 13, 2025<p>------------------------<p>After 3 years I&#x27;m at 25,000 lines, 700KB in size<p>* Its super fast and lightweight<p>* notepad opens instantly<p>* notepad takes up very little screen space<p>* searching is still instant with CTRL + F<p>* Want to tag something? Just write &quot;tag:something&quot; and search for that later<p>It sounds kind of stupid at first, like how do you quickly get to old notes?<p>But I&#x27;ve realized over time I generally only care about the last week or 2 of notes and rarely reference older ones.<p>I&#x27;m curious if anyone else does this and what your stats are for the file and if you ran into any issues

5 comments

serendipty013 days ago
By Karpathy: <a href="https:&#x2F;&#x2F;karpathy.bearblog.dev&#x2F;the-append-and-review-note&#x2F;" rel="nofollow">https:&#x2F;&#x2F;karpathy.bearblog.dev&#x2F;the-append-and-review-note&#x2F;</a>
sherdil20224 days ago
Aren’t you worried about a single point of failure if you keep everything in 1 file?
OhMeadhbh4 days ago
yes. though i have a bunch of large files, one per project. but grep works on one file as easy as several, so i&#x27;ve started doing a week per file in a per-project directory.
bn-l4 days ago
I use markdown in an IDE (vscode). It’s very nice. You get: some formatting, auto indentation, indentation, identifier search (jump to heading with fuzzy search), code highlighting, etc.
tonetheman4 days ago
I used to do this and it worked pretty well I thought.<p>I eventually broke it into years (YYYY-MM-DD-notes.txt and just grep&#x27;d the directory.<p>Finally I made it to markdown files also stored in the same directory.<p>It was great for searching.