This repository has been archived by the owner on Dec 31, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
notes_def.py
90 lines (90 loc) · 4.47 KB
/
notes_def.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
NOTES = [
{
'model': 'InteractiveBase',
'guid': 'qmax000001',
'fields': {
'Header': "Basic card",
'Intro': "Anyone who needs to remember things in their daily life need a program to practice remembering.",
'Question': "What is the program which makes remembering things easy?",
'Answer': "Anki",
'Instruction': "Type-in answer.",
'Explanation': "Because there are two simple concepts behind Anki: <em>active recall testing</em> and <em>spaced repetition</em>",
'Reference': "https://apps.ankiweb.net/docs/manual.html"
}
},
{
'model': 'InteractiveChoice',
'guid': 'qmax000002',
'fields': {
'Header': "Choice card",
'Intro': "Anki is a program which makes remembering things easy.",
'Question': "There are two simple concepts behind Anki:",
'Choices': "+ active recall | + spaced repetition | active repetition | spaced recall",
'Instruction': "Select all correct answers.",
}
},
{
'model': 'InteractiveCloze',
'guid': 'qmax000003',
'fields': {
'Header': "Cloze card with input",
'Intro': "Anki is a program which makes remembering things easy.",
'Text': "There are two simple concepts behind Anki: active {{c1::recall::remembering}} and spaced {{c1::repetition::iteration}}",
'Instruction': "Type-in missed words.",
}
},
{
'model': 'InteractiveCloze',
'guid': 'qmax000004',
'fields': {
'Header': "Clozing card with editable words",
'Intro': "Anki is a program which makes remembering things easy.<br>There are two simple concepts behind Anki: <em>active recall testing</em> and <em>spaced repetition</em>.",
'Text': "They are not {{c1::known::~know}} to most learners, despite having been {{c1::written::~write}} about in the scientific literature for many years.",
'Instruction': "Put words into proper form.",
}
},
{
'model': 'InteractiveCloze',
'guid': 'qmax000005',
'fields': {
'Header': "Cloze card with choices",
'Intro': "Anki is a program which makes remembering things easy.",
'Text': "There are two simple concepts behind Anki: {{c1::active}} recall and {{c1::spaced}} repetition.",
'Words': "active|alive|energetic|spaced|separated|isolated",
'Instruction': "Select words to insert.",
}
},
{
'model': 'InteractiveCloze',
'guid': 'qmax000006',
'fields': {
'Header': "Cloze card with editable choices",
'Intro': "Anki is a program which makes remembering things easy. There are two simple concepts behind Anki: <em>active recall testing</em> and <em>spaced repetition</em>.",
'Text': "They are not {{c1::known::~}} to most learners, despite having been {{c1::written::~}} about in the scientific literature for many years.",
'Words': "know|learn|recognize|write|describe|record",
'Instruction': "Select words to insert and put them in proper form.",
}
},
{
'model': 'InteractiveComplete',
'guid': 'qmax000007',
'fields': {
'Header': "Completion card",
'Intro': "Anki is a program which makes remembering things easy. There are two simple concepts behind Anki: <em>active recall testing</em> and <em>spaced repetition</em>.",
'Text': "They are not known to most learners, {{c1::despite having been written about}} in the scientific literature for many years.",
'Choices': "despite having been written about | in spite of being written about | despite being written about",
'Instruction': "Select correct sentence completion.",
}
},
{
'model': 'InteractiveOrder',
'guid': 'qmax000008',
'fields': {
'Header': "Ordering card",
'Intro': "Anki is a program which makes remembering things easy. There are two simple concepts behind Anki: <em>active recall testing</em> and <em>spaced repetition</em>.",
'Text': "They {{c1::are not known}} to most learners, despite {{c1::having been written}} about in the scientific literature for many years.",
'Words': "are|not|known|knowing|have|having|been|being|writing|written",
'Instruction': "Insert words in proper order.",
}
}
]