TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Show HN: Minimalist offline journal app with a chat interface

126 点作者 randomor超过 3 年前

27 条评论

randomor超过 3 年前
Maker here. I’ve went against the grain[1] and maintained this journaling app for the third year now. This is V3 that I just pushed few months ago that added photo logs (iOS only for now unlike V2). It may help people reflect now we are entering the holidays with a new start soon.<p>Why make another journaling app when there are so many other Day One look-alikes? Because it’s unique in the following ways:<p>- Offline only, no cloud, no tracking<p>- Easy to export to JSON (you own your data)<p>- Minimalism design taken to it’s logical conclusion<p>- Open and type, no step 2<p>- Type “?” to search, no step 2<p>- Type “#” to use hashtag to organize<p>- Double-tap timeline to hide and keep logging in discreet<p>- Pull up the timeline to see a 100 day GitHub like heatmap<p>Also it tries to avoid the following anti-features:<p>- journal titles (my pet peeves, way too much info up front)<p>- Sparse timeline with main&#x2F;detail layout that forces you to drill down to see your full journal entry<p>- Notifications&#x2F;reminders<p>I try to expand the answer in this post too: <a href="https:&#x2F;&#x2F;thezenjournal.com&#x2F;why" rel="nofollow">https:&#x2F;&#x2F;thezenjournal.com&#x2F;why</a><p>Feedback and suggestions welcomed. Thank you!<p>[1]: <a href="https:&#x2F;&#x2F;twitter.com&#x2F;levelsio&#x2F;status&#x2F;1303812935773556736" rel="nofollow">https:&#x2F;&#x2F;twitter.com&#x2F;levelsio&#x2F;status&#x2F;1303812935773556736</a>
progman32超过 3 年前
Love the design. Lowest possible friction is important.<p>I personally a) dislike writing _anything_ on touch screens b) live in the terminal anyway. So I wrote a script called &quot;n&quot; that appends a timestamp to a text file, then: If there are command line arguments, it appends them to the file verbatim and exits. Else it opens vim, in edit mode just under the timestamp. For example:<p><pre><code> # n &#x27;Hello, world!&#x27; # Writes a quick timestamped note and exits. # n # Adds timestamp, opens vim. For bigger notes. </code></pre> Since the text file is on my NAS I can view it from all the devices I care about. Yes, I know it&#x27;s not a system everyone would want (curlftpfs anyone?), but it works for me, and is guaranteed to remain readable for decades. It&#x27;s just a text file on disk. I search it using the text editor.<p>Here&#x27;s my scripts. I think I got the idea on HN somewhere, if it was you, feel free to set the record straight. Also I&#x27;m bad at shell scripts, so any suggestions welcome.<p>~&#x2F;bin&#x2F;n (add note):<p><pre><code> #! &#x2F;usr&#x2F;bin&#x2F;env bash cd ~ echo &gt;&gt; notes.txt echo -n &#x27;# &#x27; &gt;&gt; notes.txt date &#x27;+%a %d %b %Y %T %Z&#x27; | tr -d &quot;\n&quot; &gt;&gt; notes.txt echo &#x27; #&#x27; &gt;&gt; notes.txt if [[ $# -ne 0 ]]; then echo $@ &gt;&gt; notes.txt tail notes.txt else vim &quot;+normal Go&quot; +startinsert notes.txt fi </code></pre> ~&#x2F;bin&#x2F;nt (review notes):<p><pre><code> #! &#x2F;usr&#x2F;bin&#x2F;env bash less +G ~&#x2F;notes.txt </code></pre> ~&#x2F;bin&#x2F;ne (open vim at the last line for revisions):<p><pre><code> #! &#x2F;usr&#x2F;bin&#x2F;env bash vim &quot;+normal G&quot; ~&#x2F;notes.txt </code></pre> I plan on setting up an old laptop with a proper full travel keyboard on my nightstand that boots straight to this, no graphical environment, nothing else.
评论 #29506677 未加载
评论 #29506114 未加载
occamschainsaw超过 3 年前
Love the idea! I am installing it right now and will get the pro to support you. I have a question about backup&#x2F;restore. What is the backup format? A markdown&#x2F;plain text would be best for archival purposes, especially for a journal that might be read far into the future. I get that it is offline, but having a journal on one device only without is a double edged sword. If I lose my phone, I lose my journal. Would it be possible to sync it to iCloud? Then it would be easier to have it on multiple devices as well. Thanks for making this!<p>Edit: After playing around with the app, I see that the backup is a zip with a json file and images. That is great for archival.
评论 #29501394 未加载
junseok超过 3 年前
This is excellent! I&#x27;ve discovered that I value very similar features as I have tried other journaling apps.<p>I found that my personal favorite solution so far is actually a chatroom with just myself in KakaoTalk. It also has the extremely simple input, which is critical to make sure capture and journaling actually happens, and fast search using substrings and tags, which make recall simple.<p>EDIT: Also, automatically timestamped input! Which puts both your app and my solution a step above a plaintext file<p>It&#x27;s not without its warts, which your app does away with. However, I personally find the ability to post photos, videos, and audio recordings very useful, and for that reason will likely stick to my existing solution for now. Regardless, it&#x27;s really great to find others share similar values in journaling, and I&#x27;ll be following closely! Thank you!
评论 #29501120 未加载
评论 #29506554 未加载
ChrisArchitect超过 3 年前
whoa, the design of this web page threw me off at first. Interesting apple vibe but it&#x27;s all over I don&#x27;t know where to look, it&#x27;s just all over&#x2F;in my face. (on desktop)
评论 #29503439 未加载
评论 #29506605 未加载
jwong_超过 3 年前
At first I thought it was broken in Firefox 94.0.2 for me.<p>Then I realised that form in the middle of the page was just an image. I also thought the light&#x2F;dark mode toggle in the middle was real as well.
评论 #29501132 未加载
评论 #29502573 未加载
felipeqq2超过 3 年前
The best journaling app is anything that opens a markdown file. You can always build the workflow that suits you best.
评论 #29501208 未加载
评论 #29506648 未加载
Otek超过 3 年前
if i could have a suggestion, rethink the home page design again. I was stunned because I couldn&#x27;t focus on anything, I didn&#x27;t understand what I was looking at for a good 5 seconds. My main complaint: the images are too big and the text too small. The information that you can lock using your fingerprint is unreasonably more prominent than the information about what the product is and where you can get it.<p>Good luck, we need privacy oriented tools!
评论 #29503849 未加载
评论 #29505710 未加载
clon超过 3 年前
Thank you. This will replace my notes app.<p>One small thing that got me confused. Typing ? in my SO&#x27;s Android (MS SwiftKey) automatically adds a space after it: &quot;? &quot;. No idea why it does that, but it stops search from working. Maybe skip leading whitespace?
评论 #29502613 未加载
dang超过 3 年前
One previous thread:<p><i>Show HN: ZenJournal – Fast journal app with chat interface</i> - <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=21876939" rel="nofollow">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=21876939</a> - Dec 2019 (25 comments)<p>(Reposts are ok after a year or so: <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;newsfaq.html" rel="nofollow">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;newsfaq.html</a>. Links like this are just for readers who may be curious for more.)
评论 #29501519 未加载
deegles超过 3 年前
I think it would be fun to have Whatsapp integration, and I can easily send pictures, notes, voice notes etc to the journal. The other part could be to have a simple chat bot that provides prompts throughout the day, like &quot;what are you doing right now?&quot; or &quot;take a selfie with whoever you&#x27;re with.&quot;
评论 #29501467 未加载
balaji1超过 3 年前
App looks great. The autocomplete suggestions for hashtag is nice. Would you add functionality to edit notes?<p>Also I want to keep a few different &quot;threads&quot;. I guess the workaround is the hashtags.
评论 #29505058 未加载
eitland超过 3 年前
I found I installed this a long time ago and didn&#x27;t use it.<p>Today however it <i>seems</i> like something I can definitely use.<p>I&#x27;ve been thinking in the same direction a few times (I.e. a personal Twitter) but never came around to it and always fell back to saved messages on Telegram.<p>Now however this seems to have become what I want.<p>We&#x27;ll see, I might still fall back to Telegram but I have at least signed up for the trial without immediately unsubscribing like I usually do; the service is that promising and the price is that good.
评论 #29504196 未加载
busymom0超过 3 年前
Feedback: your website on desktop seems way too complex for me to figure out. Kinda goes against the &quot;minimalist&quot; app. I would suggest re-designing the site.
评论 #29506937 未加载
mongol超过 3 年前
What do people use journal apps for? One thing I want to do is to log nature observations when I am out and about in nature. Preferably through voice recording (not neccessarily transcribed) and geotagged. Bonus points if the phone can stay in my pocket and I can do it through a PTT microphone.<p>Are there apps for this?
评论 #29508232 未加载
Aaronstotle超过 3 年前
This is great! Do you know if this can run an M1 mac? I would like to journal on a laptop versus my phone.
评论 #29501075 未加载
fattybob超过 3 年前
Nice app, shame about the monthly fee for images, a one off fee may get you a large user base!
评论 #29510781 未加载
handrous超过 3 年前
Hm. Now I want a journaling&#x2F;note-taking app that just listens on every chat service I use.
kinos超过 3 年前
Any chance you have plans on making this usable by groups instead of individuals? I&#x27;ve been looking to find, adapt, or make something like this for collaborative fiction.
评论 #29509726 未加载
skurtcastle超过 3 年前
That&#x27;s an epic journal. I like the simplicity of it and minimalistic to it as well. Keep up the great work.
piazz超过 3 年前
Love this idea and execution! Will try this out for a while. +1 for iCloud sync :)
syngrog66超过 3 年前
vim and the Android&#x2F;iOS Notes apps gives me 99% of what I need, 99% of the time<p>general note-taking and text editing has been well-solved for decades now<p>though I do respect the attraction of trying to reinvent and monetize the wheel
ei8ths超过 3 年前
downloaded, i like it. the rolling chat feel is just awesome for journaling. im craving this on my computer now and love the #hashtags, could do like #todo thoughts.
linpined超过 3 年前
It looks minimalist and at the same time futuristic.
carterschonwald超过 3 年前
Def interesting take!signed up to try it out :)
ximeng超过 3 年前
Testimonial not Testmonial
评论 #29505033 未加载
TheRealNGenius超过 3 年前
really cluttered start page