Hi everyone - strange request, but has anyone implemented a âspace based repetitionâ algorithm in Pharo/Smalltalk? Before going and implementing it for a little flashcard program for my daughter, I thought it might be worth checking as while it will be fun to implement I fear I may end up getting distracted on the wrong thing⦠Iâm after something addressing this: https://en.wikipedia.org/wiki/Spaced_repetition <https://en.wikipedia.org/wiki/Spaced_repetition> (possibly SuperMemo SM-2) Tim
Actually - realised that Github search is better than I realised and found: https://github.com/olekscode/Flashcards <https://github.com/olekscode/Flashcards>
On 29 Sep 2020, at 22:28, Tim Mackinnon <tim@testit.works> wrote:
Hi everyone - strange request, but has anyone implemented a âspace based repetitionâ algorithm in Pharo/Smalltalk? Before going and implementing it for a little flashcard program for my daughter, I thought it might be worth checking as while it will be fun to implement I fear I may end up getting distracted on the wrong thingâ¦
Iâm after something addressing this: https://en.wikipedia.org/wiki/Spaced_repetition <https://en.wikipedia.org/wiki/Spaced_repetition> (possibly SuperMemo SM-2)
Tim
Tim Mackinnon wrote
Hi everyone - strange request, but has anyone implemented a âspace based repetitionâ algorithm in Pharo/Smalltalk?... (possibly SuperMemo SM-2)
This has been on my TODO for ages and I'd be happy to collaborate. I am especially interested in SM-2. I'll check out the repo you mentioned. I had also started something basic, but IIRC didn't get far into the algorithm yet... ----- Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html
Hi Sean - this implementation is Leitner, which would be ok for my needs, although I donât quite know how you choose or specify the probabilities that are needed for this particularly implementation (and Leitner descriptions donât mention this, but I can see the intent is to give you a random flashcard favouring new or unlearned cards and occasionally giving a learned card - but Iâm not quite sure how you decide what to specify for that⦠Iâm enquiring. SM-2 always intrigued me⦠and would be cool to plug that in and compare - but was trying to avoid the inevitable rabbit hole and not get the actual task done (Which it sounds like you thought tooâ¦) Tim
On 30 Sep 2020, at 16:21, Sean P. DeNigris <sean@clipperadams.com> wrote:
Tim Mackinnon wrote
Hi everyone - strange request, but has anyone implemented a âspace based repetitionâ algorithm in Pharo/Smalltalk?... (possibly SuperMemo SM-2)
This has been on my TODO for ages and I'd be happy to collaborate. I am especially interested in SM-2. I'll check out the repo you mentioned. I had also started something basic, but IIRC didn't get far into the algorithm yet...
----- Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html
Tim Mackinnon wrote
I donât quite know how you choose or specify the probabilities⦠Iâm enquiring.
Please report back on your findings! Tim Mackinnon wrote
SM-2 always intrigued me⦠but was trying to avoid the inevitable rabbit hole
Yes, same. Although I'm sure I will eventually get pulled in lol. The beautiful thing about flashcards in a dynamic system like Smalltalk is that one could define an API so that *any* domain object could be turned into a flashcard, like the birthdays of your contacts (silly example but you get the idea). I did extensive reading on the SM-2 creator's website and played with Anki a bit. It's been on my endless TODOs to do something simple like Anki in Pharo... ----- Cheers, Sean -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html
participants (2)
-
Sean P. DeNigris -
Tim Mackinnon