[tw] Re: Work on Spaced Repetition System

2018-04-06 Thread JD
Oh, right, only the Question and Answer fields (plus the tags) are really 
needed. 

I imagine something like the sample custom NewJournalButton on the main 
TiddlyWiki site could make card creation fast and simple. Although it would 
be great if we could quickly create by deck too, not just by card... like 
in Quizlet.com 

Something like a "New Deck" tiddler that will ask for a Deck Name, then 
have a table with rows for cards, and within each row: input area for card 
Question and Answer, something like that? 



On Friday, April 6, 2018 at 1:50:29 AM UTC+9, Diego Mesa wrote:
>
> Forgot to actually answer - All you have to do is make a new tiddler, tag 
> it with the name of the "Deck" it belongs to (it can belong to multiple 
> decks), tag it with "Flash Card", and give it a question and answer field. 
>
> When I finish up some stuff at work, you guys have inspired me to come 
> back and work on this again! 
>
> Best,
> Diego
>
> On Thursday, April 5, 2018 at 11:17:58 AM UTC-5, Diego Mesa wrote:
>>
>> Hey thanks JD,
>>
>> You bring up a great missing feature right now. Cards are just tiddlers 
>> that are tagged "flash card", with a question and answer field. 
>>
>> The other fields are (should be) automatically created, and in the final 
>> plugin version would be hidden from the view template. 
>>
>> On Thursday, April 5, 2018 at 9:23:03 AM UTC-5, JD wrote:
>>>
>>> Hey man, this is amazing work. Is there documentation for creating a new 
>>> card (besides cloning existing ones)? 
>>>
>>> This is really helpful to my Nihongo studies!
>>>
>>> On Friday, February 2, 2018 at 6:58:04 AM UTC+9, Diego Mesa wrote:

 Hey all,

 I mentioned in other places that I would be working on something like 
 this. Instead of polluting other threads, Ill post updates and misc in 
 here 
 (though specific questions related to other things will still leak outside 
 of this thread!).

 So far, I've been reading 

 https://apps.ankiweb.net/docs/manual.html

 and

 https://www.supermemo.com/english/ol/sm2.htm

 And have come up with a *basic* design for now which will evolve. 
 Right now, I have questions as cards tagged with "Flash Card", and when 
 you 
 input a new one, they begin with the following fields:

 question: 3+1
 answer: 4
 repetition: 1

 We then have two major parts:

- Quizzer
   - Shows a question
   - Lets you rate its difficulty
   - Calculate the next minimum time this question should be shown
   - Selector
- When you're ready to begin quizzing, get all questions whos time 
   is up and are ready to be shown
   

 So far I've worked on the quizzer (question/answering), and have a 
 template with the following content:

 \define againQuality() 0
 \define hardQuality() 1
 \define goodQuality() 2
 \define easyQuality() 3
 \define updateActions()
 
 <$formula-vars eq="$(quality)$ + 1">
 <$action-setfield $field="eq" $value=<>/>
 <$formula-vars repetition="{{!!repetition}} + 1">
 <$action-setfield $field="repetition" $value=<>/>
 <$formula-vars due="<> + 20">
 <$action-setfield $field="due" $value=<>/>
  
 
 

 
 <$action-sendmessage $message="tm-remove-field" $param="state"/>

 
 <$action-sendmessage $message="tm-close-tiddler"/>
 \end

 
 <$list filter="[all[current]tag[Flash Card]]">
 <$fieldmangler>
 Question: {{!!question}}
 
 

 
 <$list filter="[all[current]!has:field[state]]">
 <$button>
 Show Answer
 
 <$action-sendmessage $message="tm-add-field" $param="state"
 />
 
 

 
 <$list filter="[all[current]has:field[state]]">
 Answer: {{!!answer}}
 
 
 
 

 <$button>
 Again
 
 <$action-setfield $field="quality" $value=<>
 />
 <>
 
 
 <$button>
 Hard
 
 <$action-setfield $field="quality" $value=<>/>
 <>
 
 
 <$button>
 Good
 
 <$action-setfield $field="quality" $value=<>/>
 <>
 
 
 <$button>
 Easy
 
 <$action-setfield $field="quality" $value=<>/>
 <>
 
 

 
 

 This will at least let you answer a question, and mark how hard/easy it 
 was for you, and calculate the relevant fields for the next time it should 
 be shown. 

 I 

[tw] Re: Work on Spaced Repetition System

2018-04-06 Thread BurningTreeC

>
>
> I agree with you! I would love to work on this with you! Im still very new 
> to TW plugin development. All of Anwiki right now is just a set of simple 
> macros. If you're interested, let me know and we can coordinate in private 
> emails to continue working on this!
>
>  
Yes, I'd like to do that!
I'd like to get your macros and build a little prototyping-interface around 
them to make the direction clear where the content and results should go,
Do you already have ideas on that, which I could use to build on? If else, 
I'd prototype something that can be changed anytime we have something better


Simon

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/17bf289e-3c8f-49b7-9a63-27136f1242d4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Work on Spaced Repetition System

2018-04-06 Thread Diego Mesa
Hey Simon,

I agree with you! I would love to work on this with you! Im still very new 
to TW plugin development. All of Anwiki right now is just a set of simple 
macros. If you're interested, let me know and we can coordinate in private 
emails to continue working on this!

Diego


On Friday, April 6, 2018 at 8:18:30 AM UTC-5, BurningTreeC wrote:
>
> Hi Diego, I think AnWiki is a crucial plugin for tiddlywiki
> I was very interested in following your development, because I think it 
> can be done better in tiddlywiki than in the native anki program itself
> especially the handling of media and re-using of text chunks is a real 
> plus for tw
>
> I would try picking up your work if at one point you loose interest. I 
> think it's a feature that should make it to a plugin library, if not the tw 
> library...
>
> all the best,
> Simon
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/888a8957-10cf-4c87-9fd7-69b9b60931ed%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Work on Spaced Repetition System

2018-04-06 Thread BurningTreeC
Hi Diego, I think AnWiki is a crucial plugin for tiddlywiki
I was very interested in following your development, because I think it can 
be done better in tiddlywiki than in the native anki program itself
especially the handling of media and re-using of text chunks is a real plus 
for tw

I would try picking up your work if at one point you loose interest. I 
think it's a feature that should make it to a plugin library, if not the tw 
library...

all the best,
Simon

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/41238dce-efbd-4828-8786-6928f31e9fc1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Work on Spaced Repetition System

2018-04-05 Thread Diego Mesa
Forgot to actually answer - All you have to do is make a new tiddler, tag 
it with the name of the "Deck" it belongs to (it can belong to multiple 
decks), tag it with "Flash Card", and give it a question and answer field. 

When I finish up some stuff at work, you guys have inspired me to come back 
and work on this again! 

Best,
Diego

On Thursday, April 5, 2018 at 11:17:58 AM UTC-5, Diego Mesa wrote:
>
> Hey thanks JD,
>
> You bring up a great missing feature right now. Cards are just tiddlers 
> that are tagged "flash card", with a question and answer field. 
>
> The other fields are (should be) automatically created, and in the final 
> plugin version would be hidden from the view template. 
>
> On Thursday, April 5, 2018 at 9:23:03 AM UTC-5, JD wrote:
>>
>> Hey man, this is amazing work. Is there documentation for creating a new 
>> card (besides cloning existing ones)? 
>>
>> This is really helpful to my Nihongo studies!
>>
>> On Friday, February 2, 2018 at 6:58:04 AM UTC+9, Diego Mesa wrote:
>>>
>>> Hey all,
>>>
>>> I mentioned in other places that I would be working on something like 
>>> this. Instead of polluting other threads, Ill post updates and misc in here 
>>> (though specific questions related to other things will still leak outside 
>>> of this thread!).
>>>
>>> So far, I've been reading 
>>>
>>> https://apps.ankiweb.net/docs/manual.html
>>>
>>> and
>>>
>>> https://www.supermemo.com/english/ol/sm2.htm
>>>
>>> And have come up with a *basic* design for now which will evolve. Right 
>>> now, I have questions as cards tagged with "Flash Card", and when you input 
>>> a new one, they begin with the following fields:
>>>
>>> question: 3+1
>>> answer: 4
>>> repetition: 1
>>>
>>> We then have two major parts:
>>>
>>>- Quizzer
>>>   - Shows a question
>>>   - Lets you rate its difficulty
>>>   - Calculate the next minimum time this question should be shown
>>>   - Selector
>>>- When you're ready to begin quizzing, get all questions whos time 
>>>   is up and are ready to be shown
>>>   
>>>
>>> So far I've worked on the quizzer (question/answering), and have a 
>>> template with the following content:
>>>
>>> \define againQuality() 0
>>> \define hardQuality() 1
>>> \define goodQuality() 2
>>> \define easyQuality() 3
>>> \define updateActions()
>>> 
>>> <$formula-vars eq="$(quality)$ + 1">
>>> <$action-setfield $field="eq" $value=<>/>
>>> <$formula-vars repetition="{{!!repetition}} + 1">
>>> <$action-setfield $field="repetition" $value=<>/>
>>> <$formula-vars due="<> + 20">
>>> <$action-setfield $field="due" $value=<>/>
>>>  
>>> 
>>> 
>>>
>>> 
>>> <$action-sendmessage $message="tm-remove-field" $param="state"/>
>>>
>>> 
>>> <$action-sendmessage $message="tm-close-tiddler"/>
>>> \end
>>>
>>> 
>>> <$list filter="[all[current]tag[Flash Card]]">
>>> <$fieldmangler>
>>> Question: {{!!question}}
>>> 
>>> 
>>>
>>> 
>>> <$list filter="[all[current]!has:field[state]]">
>>> <$button>
>>> Show Answer
>>> 
>>> <$action-sendmessage $message="tm-add-field" $param="state"
>>> />
>>> 
>>> 
>>>
>>> 
>>> <$list filter="[all[current]has:field[state]]">
>>> Answer: {{!!answer}}
>>> 
>>> 
>>> 
>>> 
>>>
>>> <$button>
>>> Again
>>> 
>>> <$action-setfield $field="quality" $value=<>/>
>>> <>
>>> 
>>> 
>>> <$button>
>>> Hard
>>> 
>>> <$action-setfield $field="quality" $value=<>/>
>>> <>
>>> 
>>> 
>>> <$button>
>>> Good
>>> 
>>> <$action-setfield $field="quality" $value=<>/>
>>> <>
>>> 
>>> 
>>> <$button>
>>> Easy
>>> 
>>> <$action-setfield $field="quality" $value=<>/>
>>> <>
>>> 
>>> 
>>>
>>> 
>>> 
>>>
>>> This will at least let you answer a question, and mark how hard/easy it 
>>> was for you, and calculate the relevant fields for the next time it should 
>>> be shown. 
>>>
>>> I still have to actually implement the correct calculations for due, eq, 
>>> etc. These are just place holders for right now. 
>>>
>>> The next piece is the selector, which will be responsible for going 
>>> through all questions "due" field and selecting the ones that are ready to 
>>> be shown - this should very straight forward. 
>>>
>>> Any comments/feedback is very welcome!
>>>
>>> Diego
>>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view 

[tw] Re: Work on Spaced Repetition System

2018-04-05 Thread Diego Mesa
Hey thanks JD,

You bring up a great missing feature right now. Cards are just tiddlers 
that are tagged "flash card", with a question and answer field. 

The other fields are (should be) automatically created, and in the final 
plugin version would be hidden from the view template. 

On Thursday, April 5, 2018 at 9:23:03 AM UTC-5, JD wrote:
>
> Hey man, this is amazing work. Is there documentation for creating a new 
> card (besides cloning existing ones)? 
>
> This is really helpful to my Nihongo studies!
>
> On Friday, February 2, 2018 at 6:58:04 AM UTC+9, Diego Mesa wrote:
>>
>> Hey all,
>>
>> I mentioned in other places that I would be working on something like 
>> this. Instead of polluting other threads, Ill post updates and misc in here 
>> (though specific questions related to other things will still leak outside 
>> of this thread!).
>>
>> So far, I've been reading 
>>
>> https://apps.ankiweb.net/docs/manual.html
>>
>> and
>>
>> https://www.supermemo.com/english/ol/sm2.htm
>>
>> And have come up with a *basic* design for now which will evolve. Right 
>> now, I have questions as cards tagged with "Flash Card", and when you input 
>> a new one, they begin with the following fields:
>>
>> question: 3+1
>> answer: 4
>> repetition: 1
>>
>> We then have two major parts:
>>
>>- Quizzer
>>   - Shows a question
>>   - Lets you rate its difficulty
>>   - Calculate the next minimum time this question should be shown
>>   - Selector
>>- When you're ready to begin quizzing, get all questions whos time is 
>>   up and are ready to be shown
>>   
>>
>> So far I've worked on the quizzer (question/answering), and have a 
>> template with the following content:
>>
>> \define againQuality() 0
>> \define hardQuality() 1
>> \define goodQuality() 2
>> \define easyQuality() 3
>> \define updateActions()
>> 
>> <$formula-vars eq="$(quality)$ + 1">
>> <$action-setfield $field="eq" $value=<>/>
>> <$formula-vars repetition="{{!!repetition}} + 1">
>> <$action-setfield $field="repetition" $value=<>/>
>> <$formula-vars due="<> + 20">
>> <$action-setfield $field="due" $value=<>/>
>>  
>> 
>> 
>>
>> 
>> <$action-sendmessage $message="tm-remove-field" $param="state"/>
>>
>> 
>> <$action-sendmessage $message="tm-close-tiddler"/>
>> \end
>>
>> 
>> <$list filter="[all[current]tag[Flash Card]]">
>> <$fieldmangler>
>> Question: {{!!question}}
>> 
>> 
>>
>> 
>> <$list filter="[all[current]!has:field[state]]">
>> <$button>
>> Show Answer
>> 
>> <$action-sendmessage $message="tm-add-field" $param="state"/>
>> 
>> 
>>
>> 
>> <$list filter="[all[current]has:field[state]]">
>> Answer: {{!!answer}}
>> 
>> 
>> 
>> 
>>
>> <$button>
>> Again
>> 
>> <$action-setfield $field="quality" $value=<>/>
>> <>
>> 
>> 
>> <$button>
>> Hard
>> 
>> <$action-setfield $field="quality" $value=<>/>
>> <>
>> 
>> 
>> <$button>
>> Good
>> 
>> <$action-setfield $field="quality" $value=<>/>
>> <>
>> 
>> 
>> <$button>
>> Easy
>> 
>> <$action-setfield $field="quality" $value=<>/>
>> <>
>> 
>> 
>>
>> 
>> 
>>
>> This will at least let you answer a question, and mark how hard/easy it 
>> was for you, and calculate the relevant fields for the next time it should 
>> be shown. 
>>
>> I still have to actually implement the correct calculations for due, eq, 
>> etc. These are just place holders for right now. 
>>
>> The next piece is the selector, which will be responsible for going 
>> through all questions "due" field and selecting the ones that are ready to 
>> be shown - this should very straight forward. 
>>
>> Any comments/feedback is very welcome!
>>
>> Diego
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/9be22420-a73e-43ab-a98b-87356432e75c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Work on Spaced Repetition System

2018-04-05 Thread JD
Hey man, this is amazing work. Is there documentation for creating a new 
card (besides cloning existing ones)? 

This is really helpful to my Nihongo studies!

On Friday, February 2, 2018 at 6:58:04 AM UTC+9, Diego Mesa wrote:
>
> Hey all,
>
> I mentioned in other places that I would be working on something like 
> this. Instead of polluting other threads, Ill post updates and misc in here 
> (though specific questions related to other things will still leak outside 
> of this thread!).
>
> So far, I've been reading 
>
> https://apps.ankiweb.net/docs/manual.html
>
> and
>
> https://www.supermemo.com/english/ol/sm2.htm
>
> And have come up with a *basic* design for now which will evolve. Right 
> now, I have questions as cards tagged with "Flash Card", and when you input 
> a new one, they begin with the following fields:
>
> question: 3+1
> answer: 4
> repetition: 1
>
> We then have two major parts:
>
>- Quizzer
>   - Shows a question
>   - Lets you rate its difficulty
>   - Calculate the next minimum time this question should be shown
>   - Selector
>- When you're ready to begin quizzing, get all questions whos time is 
>   up and are ready to be shown
>   
>
> So far I've worked on the quizzer (question/answering), and have a 
> template with the following content:
>
> \define againQuality() 0
> \define hardQuality() 1
> \define goodQuality() 2
> \define easyQuality() 3
> \define updateActions()
> 
> <$formula-vars eq="$(quality)$ + 1">
> <$action-setfield $field="eq" $value=<>/>
> <$formula-vars repetition="{{!!repetition}} + 1">
> <$action-setfield $field="repetition" $value=<>/>
> <$formula-vars due="<> + 20">
> <$action-setfield $field="due" $value=<>/>
>  
> 
> 
>
> 
> <$action-sendmessage $message="tm-remove-field" $param="state"/>
>
> 
> <$action-sendmessage $message="tm-close-tiddler"/>
> \end
>
> 
> <$list filter="[all[current]tag[Flash Card]]">
> <$fieldmangler>
> Question: {{!!question}}
> 
> 
>
> 
> <$list filter="[all[current]!has:field[state]]">
> <$button>
> Show Answer
> 
> <$action-sendmessage $message="tm-add-field" $param="state"/>
> 
> 
>
> 
> <$list filter="[all[current]has:field[state]]">
> Answer: {{!!answer}}
> 
> 
> 
> 
>
> <$button>
> Again
> 
> <$action-setfield $field="quality" $value=<>/>
> <>
> 
> 
> <$button>
> Hard
> 
> <$action-setfield $field="quality" $value=<>/>
> <>
> 
> 
> <$button>
> Good
> 
> <$action-setfield $field="quality" $value=<>/>
> <>
> 
> 
> <$button>
> Easy
> 
> <$action-setfield $field="quality" $value=<>/>
> <>
> 
> 
>
> 
> 
>
> This will at least let you answer a question, and mark how hard/easy it 
> was for you, and calculate the relevant fields for the next time it should 
> be shown. 
>
> I still have to actually implement the correct calculations for due, eq, 
> etc. These are just place holders for right now. 
>
> The next piece is the selector, which will be responsible for going 
> through all questions "due" field and selecting the ones that are ready to 
> be shown - this should very straight forward. 
>
> Any comments/feedback is very welcome!
>
> Diego
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/dd155c24-56f1-4cbd-a6d7-ece3b91bd6f7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Work on Spaced Repetition System

2018-04-03 Thread Diego Mesa
Thanks Alex!

I had kind of given up. I'll continue after I get some more time at work.

Best,
Diego

On Tuesday, April 3, 2018 at 5:58:56 PM UTC-5, Alex May wrote:
>
> Hi Diego, 
>
> Just wanted to lend an encouraging word, as I would find such a plug-in 
> super useful! Good luck!
>
> Cheers, 
> Alex
>
>
> On Monday, February 12, 2018 at 9:57:25 AM UTC-8, Diego Mesa wrote:
>>
>> Hey all,
>>
>> With Evan's fix of the formula plugin today, I released an updated 
>> version of Anwiki:
>>
>> http://anwiki.tiddlyspot.com/
>>
>> You can now quiz in 1 of 2 ways:
>>
>>- Quiz by due date, regardless of deck
>>- Quiz by deck, regardless of due date
>>
>> Any feedback is welcome.
>>
>> Diego
>>
>> On Friday, February 9, 2018 at 3:24:26 PM UTC-6, Diego Mesa wrote:
>>>
>>> Thanks Kirshaan,
>>>
>>> Thats the plan! For right now Im sitll testing it, but I hope to release 
>>> it as a plugin soon. 
>>>
>>> Best,
>>> Diego
>>>
>>> On Friday, February 9, 2018 at 2:33:31 PM UTC-6, Krishaan Khubchand 
>>> wrote:

 It looks really cool man, is there any way to use the spaced repetition 
 system as a plugin? 

 On Tuesday, February 6, 2018 at 12:00:56 AM UTC+1, Diego Mesa wrote:
>
> Hey all,
>
> I've put together a small demo of my current progress here:
>
> http://anwiki.tiddlyspot.com/
>
> As always, any and all feedback is welcome. And I mean on *everything*, 
> from the way I coded it up, to the way its structured, styled, etc. 
> Anything!
>
> Best,
> Diego
>
>
> On Friday, February 2, 2018 at 3:35:15 PM UTC-6, TonyM wrote:
>>
>> Diego,
>>
>> Does sound a useful tool to put in tiddlywiki. I was interested in 
>> building something similar for review and study times rather than at the 
>> question level. Its more about scheduling study.
>>
>> Once such a question answer solution exists it seems to me the next 
>> opportunity is how to populate it with questions. Imagin if you could 
>> dump 
>> a translation dictionary on it. Alternativly manual question creation 
>> needs 
>> to be quick and easy. Could questions even be created from marking up 
>> your 
>> study notes?
>>
>> Regards
>> Tony
>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/7b9deb8d-e46b-4d2b-a091-6551558a0756%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Work on Spaced Repetition System

2018-04-03 Thread Alex May
Hi Diego, 

Just wanted to lend an encouraging word, as I would find such a plug-in 
super useful! Good luck!

Cheers, 
Alex


On Monday, February 12, 2018 at 9:57:25 AM UTC-8, Diego Mesa wrote:
>
> Hey all,
>
> With Evan's fix of the formula plugin today, I released an updated version 
> of Anwiki:
>
> http://anwiki.tiddlyspot.com/
>
> You can now quiz in 1 of 2 ways:
>
>- Quiz by due date, regardless of deck
>- Quiz by deck, regardless of due date
>
> Any feedback is welcome.
>
> Diego
>
> On Friday, February 9, 2018 at 3:24:26 PM UTC-6, Diego Mesa wrote:
>>
>> Thanks Kirshaan,
>>
>> Thats the plan! For right now Im sitll testing it, but I hope to release 
>> it as a plugin soon. 
>>
>> Best,
>> Diego
>>
>> On Friday, February 9, 2018 at 2:33:31 PM UTC-6, Krishaan Khubchand wrote:
>>>
>>> It looks really cool man, is there any way to use the spaced repetition 
>>> system as a plugin? 
>>>
>>> On Tuesday, February 6, 2018 at 12:00:56 AM UTC+1, Diego Mesa wrote:

 Hey all,

 I've put together a small demo of my current progress here:

 http://anwiki.tiddlyspot.com/

 As always, any and all feedback is welcome. And I mean on *everything*, 
 from the way I coded it up, to the way its structured, styled, etc. 
 Anything!

 Best,
 Diego


 On Friday, February 2, 2018 at 3:35:15 PM UTC-6, TonyM wrote:
>
> Diego,
>
> Does sound a useful tool to put in tiddlywiki. I was interested in 
> building something similar for review and study times rather than at the 
> question level. Its more about scheduling study.
>
> Once such a question answer solution exists it seems to me the next 
> opportunity is how to populate it with questions. Imagin if you could 
> dump 
> a translation dictionary on it. Alternativly manual question creation 
> needs 
> to be quick and easy. Could questions even be created from marking up 
> your 
> study notes?
>
> Regards
> Tony
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/89291580-8ca3-4a55-a1c8-90f4125f4b03%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Work on Spaced Repetition System

2018-02-12 Thread Diego Mesa
Hey all,

With Evan's fix of the formula plugin today, I released an updated version 
of Anwiki:

http://anwiki.tiddlyspot.com/

You can now quiz in 1 of 2 ways:

   - Quiz by due date, regardless of deck
   - Quiz by deck, regardless of due date
   
Any feedback is welcome.

Diego

On Friday, February 9, 2018 at 3:24:26 PM UTC-6, Diego Mesa wrote:
>
> Thanks Kirshaan,
>
> Thats the plan! For right now Im sitll testing it, but I hope to release 
> it as a plugin soon. 
>
> Best,
> Diego
>
> On Friday, February 9, 2018 at 2:33:31 PM UTC-6, Krishaan Khubchand wrote:
>>
>> It looks really cool man, is there any way to use the spaced repetition 
>> system as a plugin? 
>>
>> On Tuesday, February 6, 2018 at 12:00:56 AM UTC+1, Diego Mesa wrote:
>>>
>>> Hey all,
>>>
>>> I've put together a small demo of my current progress here:
>>>
>>> http://anwiki.tiddlyspot.com/
>>>
>>> As always, any and all feedback is welcome. And I mean on *everything*, 
>>> from the way I coded it up, to the way its structured, styled, etc. 
>>> Anything!
>>>
>>> Best,
>>> Diego
>>>
>>>
>>> On Friday, February 2, 2018 at 3:35:15 PM UTC-6, TonyM wrote:

 Diego,

 Does sound a useful tool to put in tiddlywiki. I was interested in 
 building something similar for review and study times rather than at the 
 question level. Its more about scheduling study.

 Once such a question answer solution exists it seems to me the next 
 opportunity is how to populate it with questions. Imagin if you could dump 
 a translation dictionary on it. Alternativly manual question creation 
 needs 
 to be quick and easy. Could questions even be created from marking up your 
 study notes?

 Regards
 Tony



-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/66d1c5a2-ec25-47ca-acfc-ca85e61abcf0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Work on Spaced Repetition System

2018-02-09 Thread Diego Mesa
Thanks Kirshaan,

Thats the plan! For right now Im sitll testing it, but I hope to release it 
as a plugin soon. 

Best,
Diego

On Friday, February 9, 2018 at 2:33:31 PM UTC-6, Krishaan Khubchand wrote:
>
> It looks really cool man, is there any way to use the spaced repetition 
> system as a plugin? 
>
> On Tuesday, February 6, 2018 at 12:00:56 AM UTC+1, Diego Mesa wrote:
>>
>> Hey all,
>>
>> I've put together a small demo of my current progress here:
>>
>> http://anwiki.tiddlyspot.com/
>>
>> As always, any and all feedback is welcome. And I mean on *everything*, 
>> from the way I coded it up, to the way its structured, styled, etc. 
>> Anything!
>>
>> Best,
>> Diego
>>
>>
>> On Friday, February 2, 2018 at 3:35:15 PM UTC-6, TonyM wrote:
>>>
>>> Diego,
>>>
>>> Does sound a useful tool to put in tiddlywiki. I was interested in 
>>> building something similar for review and study times rather than at the 
>>> question level. Its more about scheduling study.
>>>
>>> Once such a question answer solution exists it seems to me the next 
>>> opportunity is how to populate it with questions. Imagin if you could dump 
>>> a translation dictionary on it. Alternativly manual question creation needs 
>>> to be quick and easy. Could questions even be created from marking up your 
>>> study notes?
>>>
>>> Regards
>>> Tony
>>>
>>>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/8cc73896-0918-43b5-85b1-55deaf35ca41%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Work on Spaced Repetition System

2018-02-09 Thread Krishaan Khubchand
It looks really cool man, is there any way to use the spaced repetition 
system as a plugin? 

On Tuesday, February 6, 2018 at 12:00:56 AM UTC+1, Diego Mesa wrote:
>
> Hey all,
>
> I've put together a small demo of my current progress here:
>
> http://anwiki.tiddlyspot.com/
>
> As always, any and all feedback is welcome. And I mean on *everything*, 
> from the way I coded it up, to the way its structured, styled, etc. 
> Anything!
>
> Best,
> Diego
>
>
> On Friday, February 2, 2018 at 3:35:15 PM UTC-6, TonyM wrote:
>>
>> Diego,
>>
>> Does sound a useful tool to put in tiddlywiki. I was interested in 
>> building something similar for review and study times rather than at the 
>> question level. Its more about scheduling study.
>>
>> Once such a question answer solution exists it seems to me the next 
>> opportunity is how to populate it with questions. Imagin if you could dump 
>> a translation dictionary on it. Alternativly manual question creation needs 
>> to be quick and easy. Could questions even be created from marking up your 
>> study notes?
>>
>> Regards
>> Tony
>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/5fc31983-232c-4b3e-8d3d-bc07db89dc15%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Work on Spaced Repetition System

2018-02-06 Thread BurningTreeC
@Diego Mesa,

this is awesome :)


I cannot say too much about how you coded it, but about the styling - I 
think the most important thing in your Anwiki are the functions, the 
styling for me would already be good as it is

I just like this!

keep going,

all the best, Simon

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/a5210486-6eaf-42fa-8202-a3c08f5f91b9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Work on Spaced Repetition System

2018-02-05 Thread Diego Mesa
Hey all,

I've put together a small demo of my current progress here:

http://anwiki.tiddlyspot.com/

As always, any and all feedback is welcome. And I mean on *everything*, 
from the way I coded it up, to the way its structured, styled, etc. 
Anything!

Best,
Diego


On Friday, February 2, 2018 at 3:35:15 PM UTC-6, TonyM wrote:
>
> Diego,
>
> Does sound a useful tool to put in tiddlywiki. I was interested in 
> building something similar for review and study times rather than at the 
> question level. Its more about scheduling study.
>
> Once such a question answer solution exists it seems to me the next 
> opportunity is how to populate it with questions. Imagin if you could dump 
> a translation dictionary on it. Alternativly manual question creation needs 
> to be quick and easy. Could questions even be created from marking up your 
> study notes?
>
> Regards
> Tony
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/90b09c7e-23bf-48d6-9b96-242beab37897%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Work on Spaced Repetition System

2018-02-02 Thread TonyM
Diego,

Does sound a useful tool to put in tiddlywiki. I was interested in building 
something similar for review and study times rather than at the question level. 
Its more about scheduling study.

Once such a question answer solution exists it seems to me the next opportunity 
is how to populate it with questions. Imagin if you could dump a translation 
dictionary on it. Alternativly manual question creation needs to be quick and 
easy. Could questions even be created from marking up your study notes?

Regards
Tony

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/50d48a5a-9942-40fe-95d5-b3dc474f5443%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Work on Spaced Repetition System

2018-02-02 Thread BurningTreeC
Hi Diego,

I like this, tried it on a wiki and it seems to work very good!
I'm looking forward to this!

Atm I don't have much to comment, I try to keep up to date on this

best wishes,
Simon

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/0992b1d4-d6d7-42f7-88a6-c1c2ae4b873e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.