(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| """ | |
| This is my understanding of the Anki scheduling algorithm, which I mostly | |
| got from watching https://www.youtube.com/watch?v=lz60qTP2Gx0 | |
| and https://www.youtube.com/watch?v=1XaJjbCSXT0 | |
| and from reading | |
| https://faqs.ankiweb.net/what-spaced-repetition-algorithm.html | |
| There is also https://github.com/dae/anki/blob/master/anki/sched.py but I find | |
| it really hard to understand. | |
| Things I don't bother to implement here: the random fudge factor (that Anki |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.