Repository is archived
No commit activity in last 3 years
No release in over 3 years
A minimal command-line implementation of the SuperMemo 2 algorithm.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

= 1.4, >= 0
 Project Readme

forgetful¶ ↑

A minimal command-line app implementing the SuperMemo 2 algorithm.

The SuperMemo algorithm is designed to refresh your memory at intervals based on how well you remembered something.

Put question-answer pairs in a file. Everyday, feed the file to forgetful and it will quiz you on what you need to remember today. Based on your self-evaluation, forgetful will reschedule at an appropriate time in the future.

Install¶ ↑

gem install forgetful

Usage¶ ↑

forgetful filename.csv [more filenames]

The CSV files are formatted very simply:

question,answer

The interaction goes as follow:

forgetful: shows question
you:       press enter
forgetful: shows answer
forgetful: asks for self-evaluation
you:       type a number, press enter

You will be asked all of today’s questions. After you will be asked, again, the questions for which you scored less than 4.

Self-evaluation values:

5 - perfect response
4 - correct response after a hesitation
3 - correct response recalled with serious difficulty
2 - incorrect response; where the correct one seemed easy to recall
1 - incorrect response; the correct one remembered
0 - complete blackout.

WARNING: Statistics are written back to the input file. This is a feature. Put your CSV files under source control to keep a history.

Enjoy!

Copyright © 2011 Jonathan Palardy. See LICENSE for details.