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: Is there a simple email-based spaced repetition tool?

8 pointsby arikrover 5 years ago
I&#x27;d like to be able to put in a few things and then have it send me emails with the spaced repetition things to remember, so that I don&#x27;t need to build a habit around a separate app (Anki).<p>Does it exist?

5 comments

ColinWrightover 5 years ago
How would you expect to interact with such a system? Part of the way Spaced Repetition works is to adapt its timings based on whether you got things right or wrong. Times to recall prompts can be less than a day, down to minutes, are you expecting to get an email every minute until you respond?<p>I don&#x27;t see how the system can implement the fundamental underlying algorithm and still work via email. I&#x27;ve written Spaced Repetition systems, one that works on the command line, another that works via a web page, and I&#x27;d be interested o now how you envisage something like this working via email.
评论 #21099117 未加载
stockkidover 5 years ago
Yes, it&#x27;s an open source software called Dnote [0]. I wrote it two years ago and have been using it since.<p>The two main features are:<p>* putting in new information without switching environment<p>* getting automated weekly email digests<p>Like you, I wanted to avoid building habit around a separate app because that would require me to switch environment every time I want to write something, thus losing context of my current task. So I made Dnote work as a CLI, browser extension, IDE plug-in.<p>While I&#x27;m not sure exactly why you want an email spaced repetition, for me, the reason was that I never looked back at my past notes. The solution to this negligence was to automate the spaced repetition via weekly email.<p>I suspect we are trying to solve a similar problem. Hope my software can help.<p>[0] - <a href="https:&#x2F;&#x2F;github.com&#x2F;dnote&#x2F;dnote" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;dnote&#x2F;dnote</a>
srijanshettyover 5 years ago
I was wondering about your rationale for not using another app like Anki. I&#x27;m a big fan of email and loved the integration of reminders with email of the like provided by Inbox (and sadly missing from Gmail as of today).<p>But I am also cognizant that there&#x27;s a context associated with different apps. I&#x27;ve been using AnkiDroid for over a decade now and the context the app provides (mental context that I&#x27;m learning something) helps me focus better. Email is usually a stressful context in my mind which reminds me of deadlines and tasks to complete; so I like to keep both of these contexts separate.
wingerlangover 5 years ago
I built a website that (simplifying here) quizzed users once per day, it wouldn&#x27;t be too hard to change this into a spaced repetition tool.<p>Would you (or anyone) pay for it? How much? It is interesting enough that I&#x27;d be willing to work on it.
BjoernKWover 5 years ago
You can send scheduled emails via Google Sheets (Tools -&gt; Macros -&gt; Triggers).<p>I did so for a &quot;Your random word for today.&quot; kind of setup.<p>It&#x27;s not quite spaced repetition because the amount of time in-between repetitions doesn&#x27;t vary but it&#x27;s close enough.