6.0.10 • Published 2 months ago

@ig3/srf v6.0.10

Weekly downloads
-
License
ISC
Repository
github
Last release
2 months ago

srf

srf is a web server providing Spaced Repetition Flashcards, based loosely on Anki.

It runs on node with a local sqlite database. All resources being local, it can run while offline.

Installation

$ npm install -g @ig3/srf

This provides the command srf.

Operation

  1. Get an Anki deck (e.g. from AnkiWeb, or wherever)
  2. Import the Anki deck into srf: srf import anki_deck.apkg
  3. Run the srf server: srf
  4. Browse srf: http://localhost:8000
  5. Click the Study button (shortcut: space bar)
  6. Review the card then click Flip (shortcut: space bar)
  7. Rate the card: Click Fail, Hard, Good or Easy (shortcuts: j, k, l, ;)
  8. Repeat: review, flip then rate each card

You study cards. Each card has a front and a back. First you view the front and try to remember what is on the back. Then you flip the card over to see the back: to see if you remembered correctly. Finally, you rate how well you remembered the card: 'Fail', 'Hard', 'Good' or 'Easy'.

The scheduler presents a few new cards each day. The number of new cards is adjusted automatically, to keep total study time between 30 and 60 minutes.

When you have studied all the cards due for review and reached the limit on new cards, you will return to the Home page, until there are more cards to study.

The scheduler is configurable: all the limits and parameters can be adjusted to your preferences and ability. Do you want to study more or less each day? Change targetStudytime. Want a different limit on new cards? Change maxNewCardsPerDay. And many more. There are very few hard coded parameters, and even those are easy to change: just checkout the repository and change them. It's all JavaScript, HTML, CSS and a few handlebars templates. And if you want something more fundamentally different, you can replace the scheduler. It was ease of tinkering with the scheduler that motivated me to write this.

Get an Anki Deck

There are many places to download shared Anki decks and many tools for generating them. AnkiWeb is one source. Search for 'shared Anki decks' or 'generate Anki decks'

Home page

The home page shows statistics of your study:

  • cards reviewed and minutes studied in the past 24 hours
  • cards due and predicted minutes to study in the next 24 hours
  • average study time per day (short term and long term average)
  • average number of new cards per day
  • percent of cards that you got correct (i.e. not rated Fail)
  • number of cards due and overdue for review
  • chart of study time per hour: past 24 hours and next 24 hours

The status at the top right includes:

  • Traffic lights for new cards:
    • Green: present new cards if there are no due cards
    • Yellow: present new cards between due cards
    • Red: do not present new cards
  • Cards due
  • New cards in the past 24 hours
  • Minutes studied in the past 24 hours
  • Predicted minutes to study in the next 24 hours

To study a card, click the Study button or press the space bar.

The study button will always present a card for study, ignoring the limits of the scheduler.

The space bar will present a card for study or reload the home page, according to the determination of the scheduler.

The buttons at the bottom of the page are:

  • Admin: to access the admin page
  • Stats: to review various statistics of your study history
  • Help: to review the help file - mostly a link to this README

Card Front

The content of the card front is variable.

Status at top right is the same as the home page.

At the bottom of the page are a set of buttons:

  • Flip: to flip the card over to the back (shortcut: space bar)
  • Help: to review the help file
  • Edit: to edit the card content
  • Play: to replay audio, if the card has audio
  • Stop: to stop studying and return to the home page

Card Back

The content of the card back is also variable.

Status at top right is the same as the home page.

At the bottom of the page are a set of buttons:

  • Fail: if you couldn't remember the card (shorcut: j)
  • Hard: if you could remember the card but it was hard (shortcut: k)
  • Good: if you could remember the card reasonably well (shortcut: l)
  • Easy: if you could remember the card very easily (shortcut: ;)
  • Help: to view the help file
  • Edit: to edit the card content
  • Play: to replay audio, if the card has audio
  • Stop: to stop studying and return to the home page

After you rate the card (Fail, Hard, Good or Easy) the front of the next card will be presented, you you will be returned to the home page if there are no more cards to study.

Creating Cards

There are several ways to create cards:

  • Import Anki .apkg or .colpkg file
  • Import CSV files
  • Add them one at a time via the browser
  • Direct database update

Cards are the basic elements of study. They are produced from fieldsets, transformed by templates.

A fieldset is a set of name/value pairs that you want to remember in relationship to each other, stored as JSON.

For example:

{
  "Country": "Canada',
  "Capital": "Ottawa",
  "Continent": "North America"
  "Area': "over 9.98 million square kilometres",
  "Population": "38 million"
}

A template is a pair of Mustache templates for the front and back of a card that include some of the fields in the fieldset, and some css for styling the card.

For example:

Front: The <span class="keyword">capital</span> of {{Country}} is?
Back: {{Capital}}
css: .keyword { font-style: italic; }

A single template can be used to produce cards from many fieldsets.

Templates are grouped into sets identified by templateset name.

Each fieldset is related to a templateset and one card is produced for each template in the templateset.

You study the cards. The cards are produced automatically when you add or edit fieldsets or templates.

The order that cards are presented as new cards is determined by their ordinal (ord), which is copied from the fieldset.

Create Cards by importing an Anki .apkg or .colpkg file

The easiest way to create cards is to import an Anki Packaged Deck. This will import the Anki cards, notes and note types into srf. However, srf does not support all the features of Anki so not all Anki decks will work in srf. For example, srf does not support cloze deletion so any deck that includes cloze deletion notes will not work.

If you have been using Anki, you can export your own decks. Be sure ti include media when you export your decks. If you include scheduling information, it will be preserved.

Anki collection packages and shared decks can include review logs. These will be imported and merged with existing logs. Daily stats will be cleared and recalculated to including the new revlog entries.

You can download a shared Anki deck from AnkiWeb or use various tools to produce Anki Packaged Deck files from other sources.

Srf doesn't distinguish decks. If you import multiple decks or a deck collection, all the cards will appear in a single pool of cards in srf. If you want to keep decks separate, you can import each deck into a separate srf database.

Note that srf only supports simple cards. In particular, Cloze notes are not supported. See below for what is/isn't supported. Start with something basic.

To import an Anki packaged deck:

$ srf import <shared_deck.apkg>

To import an Anki deck collection:

$ srf import <deck_collection.colpkg>

Create Cards by importing CSV files

Create two CSV files:

  • templates.csv
  • fieldsets.csv

Import each file with:

$ srf import templates.csv
$ srf import fieldsets.csv
templates.csv

The templates determine which cards are produced and how the are presented. One card is produced for each template with matching templateset value.

The fields for a template are:

  • templateset - the name of the templateset, must match same on fieldset
  • name - the name of the template
  • front - the mustache template code for the front of the card
  • back - the mustache template code for the back of the card
  • css - the CSS for rendering the card, common to front and back

Make a CSV file with these headings and appropriate data.

For example:

templateset,name,front,back,css
Basic,Card 1,{{Front}},{{Back}},".card { Background-color: red; }"
Basic,Card 2,{{Back}},{{Front}},".card { Background-color: red; }"

You can create many templatesets and each templateset can have as many templates as you like. One card will be produced for each template with templateset matching that of a fieldset.

fieldsets.csv

The fields for a fieldset are:

  • guid - optional guid that uniquely identifies the fieldset
  • templateset - the templateset for rendering the fieldset
  • fields - the fields data as a JSON string
  • ord - an ordinal number for sorting the fieldsets

guid will default to md5 checksum of the concatenation of the templateset and fields values.

ord will default to the row number * 10.

For example:

templateset,fields
Test1,"{""Front"": ""Who you gonna call?"", ""Back"": ""Ghost Busters!""}"
Test1,"{""Front"": ""Where's Waldo?"", ""Back"": ""Hold on a sec... I'm still looking.""}"

You can have as many fields as you want in your templates and fieldsets.

Read below for details of all the options for the templates. They are Mustache templates with all the field values available.

Add media files

If the fieldsets refer to media files (images, audio, video, etc.), you will have to copy these to the media directory: ~/.local/share/srf/media by default.

For example, a field might include an image with something like: <img src=\"my-image.png\" />, or an audio file with something like: [sound:my-audio.mp3].

Create Cards Manually

You can create templates and fieldsets manually in the browser. The interface is crude, but it's an option.

On the home page, click Admin to view the admin page.

On the admin page, click Templates, Template Sets or Field sets to see a list of the corresponding items.

Click on an item in the list to edit it, or click the New button to add a new item to the list.

When you edit a fieldset, the fields you can set are determined from the templates in the selected templateset: every field included in any template in the templateset. You can't set fields that are not included in any template. If you want to set another field, include it in at least one of the templates.

Create Cards by direct database update

The database structure is simple. You can write your own application to add cards to the srf database.

The database is sqlite3.

By default, the database is at ~/.local/share/srf/srf.db and media files are in ~/.local/share/srf/media.

Add templates by adding records to the template table.

Add fieldsets by adding records to the fieldset table.

See the database description for a description of the database and details of these tables.

After modifying template or fieldset tables, generate missing cards and delete orphaned cards by running fix:

$ srf fix

Run the server

$ srf
Listening on http://:::8000

Alternatively, create a systemd service file (e.g. ~/.config/systemd/user/srf.service) similar to:

[Unit]
Description=Spaced Repetition Flashcards

[Service]
Type=simple
Restart=on-failure
WorkingDirectory=/tmp
StandardOutput=syslog
StandardError=syslog
SyslogIdentifier=srf
ExecStart=bash -l -c srf

[Install]
WantedBy=default.target

Then enable and run the service:

$ systemctl --user enable srf
$ ssytemctl --user start srf

With this done, your srf server will run whenever you login.

Study!

Browse to http://localhost:8000/

Click the Study button or press the space bar to study a card.

Front

When you study a card, the front of the card is displayed. The content of the front of the card depends on the template and the fieldset.

When you are ready, you flip the card to see the back of the card. See below for details of the back of the card.

Flip

Keyboard shortcut: space-bar

Flip the card over, to show the back of the card. This is the usual action when reviewing a card: view the front, then flip it to review the back and rate the card.

Help

Show the help file.

edit

Edit the card. This opens a new window with fields to edit the fieldset from which the card is derived. It is a bit crude but allows simple edits.

Play

keyboard shortcut: p

If the card has audio, play it again.

Stop

Return to the home page without completing review of the card.

Back

After you view the front of the card and flip it over, the back is displayed. The content of the back is determined by the template and the fieldset.

The back of the card has buttons for rating how well you remember the card: Fail, Hard, Good and Easy.

The button you click determines when the card will be scheduled for review. Each button displays the new interval: the time until the card will be due for review.

Fail

keyboard shortcut: j

If you didn't remember the card and want to review it again soon, click Fail. This reduces the interval for reviewing the card. The new interval (the time until the card is due for review) is half the previous interval with a maximum interval of 1 day.

Hard

keyboard shortcut: k

If you did remember the card but it was difficult to remember, click Hard. This reduces the interval for rewviewing the card but not as much as Fail. The new interval is 80% of the previous inerval with a maximum interval of 1 week.

Good

keyboard shortcut: l

If you remembered the card well, click Good. This will, hopefully, be the button you click most often. This increases the interval for reviewing the card.

Calculation of the new interval is more complicated for Good. The minimum new interval is 5 minutes and the maximum new interval is 1 year. Between these limits, the new interval depends on the ease factor of the card. The ease factor is the exponentially weighted moving average of your previous ratings. The weights are 0, 1, 1.5 and 2 for Fail, Hard, Good and Easy respectively. Thus the factor ranges from 0 to 2 and it will change a bit each time you review the card.

If you rate the card Good several times, the ease factor will tend towards 1.5 and the new interval will tend towards 150% of the previous interval.

On the other hand, if you have rated the card Fail many times, the ease factor might be quite low and even if you rate the card Good, the new interval might be less than the previous interval. However, even in this case, the ease factor will increase so that after a few Good reviews the interval will be increasing.

Easy

keyboard shortcut: ;

If it was too easy to remember the card and you don't want to waste your time reviewing again too soon, click Easy. The new interval will be 150% of what it would be for Good.

Help

Show the help file.

Edit

Edit the templateset the card is generated from.

Play

Replay any audio for the back of the card.

Stop

Stop studying without completing review of the card: return to the home page.

Background

I used Anki for a couple of years but wanted to change the scheduler. An Anki addon to add a new scheduler was impossible because Anki addons are Python code but the scheduler implementation is partially in Python and partially in Rust back-end code. Even limited modifications to the existing schedulers (e.g. Anki - limit new) were difficult and time consuming to maintain due to frequent changes to the Anki internals. It was easier to write this and get the scheduler I wanted than to maintain the Anki addon that provided only part of what I wanted.

The srf scheduler:

  • prioritizes cards with shorter intervals over those with longer intervals
  • regulates the introduction of new cards automatically
  • is written entirely in JavaScript and is easy to modify

srf is able to import Anki decks that use only basic features of Anki. Not all field and media types are supported, but enough for many decks / cards to work.

Spaced Repetition for Efficient Learning provides an overview and links to research on spaced repetition.

Comparison to Anki

srf provides only a small subset of the features of Anki: enough for my purposes: studying language on a single device, but without support for synchronizing multiple devices or distinguishing decks / multiple topics of study.

The srf scheduler does not suffer from Ease Hell.

The srf scheduler has an equivalent to Anki ease factor for each card but it is simpler: it is the exponentially weighted moving average of the weighted answers. The default answer weights are 0, 1, 1.5 and 2 for Fail, Hard, Good and Easy and the default decay factor is 0.95, but these are all configurable. By default, the range of the ease factor is 0.0 through 4.0: somewhat equivalent to Anki ease factors 0% to 200%. With srf the ease factor never gets 'stuck' at an unreasonably low setting. It always adapts to the recent ease of the card.

The srf scheduler does not suffer from Backlog Hell.

The srf scheduler has two ways of sorting cards:

  • by ascending interval
  • by ascending due time

The sort is determined randomly each time a due card is selected with the probability of sorting by due time being config.probabilityOldestDue, which defaults to 0.2.

This strategy balances studying cards in they order they become due with focusing on the cards with minimum interval. It makes a difference only when clearing a backlog. It allows the cards with the shortest intervals to be studied on time, despite the backlog. At the same time, it allows the most overdue cards to be studied, gradually clearing the backlog.

New cards are presented before due cards if total study time the past 24 hours is less than config.minStudyTime.

New cards are presented at intervals, interleaved with due cards, if total study time the past 24 hours is less than config.targetStudytime.

Getting Started

$ git clone https://github.com/ig3/srf.git
$ cd srf
$ npm install
$ node bin/cmd.js import <export file>
$ node bin/cmd.js

The import supports Anki exports and shared decks (.apkg files). When I migrated from Anki, I exported all decks as an Anki deck package (*.apkg), including media, then imported this into srf.

Browse to http://localhost:8000/.

Home Page

The home page presents some basic study statistics:

  • The number of cards reviewed and minutes studied in the past 24 hours
  • The number of cards due and estimated minutes to study in the next 24 hours
  • Average study time per day
  • Average new cards per day, averaged over the past week
  • New cards during the past 24 hours
  • The percentage of correct (not 'Fail') responses to mature cards in the past 14 days
  • The number of cards due and overdue (due more than 24 hours ago)
  • The time until the next card is due
  • A histogram of study time per hour through past and next 24 hours

If there is a card available for study, the 'Study' button will appear. Click it to study a card. After studying a card, the next card will be presented, until there are no more cards to be studied and the home page is displayed again. Alternatively, click the space bar: shortcut for Study.

The scheduler determines when a card is due to be studied. Each time a card is reviewed, the scheduler sets a new time when it is due to be studied again. The cards to be studied are all those which are past their due time. If it is more than 24 hours past their due date and time, they are considered overdue.

It's like an assembly line: you will sometimes be waiting for the next card to study, and you will sometimes have a backlog of cards to catch up. While you don't want to get too far behind, it is OK to accumulate cards to review. Studying to clear the backlog once per day will work well. While there is nothing wrong with studying in multiple sessions each day, don't obsess about reviewing every card that comes due each day. It is OK to leave them until the next day, or even longer.

The data is in ~/.local/share/srf by default, including database (srf.db) and media files. The database is ~/.local/share/srf/srf.db. Media files are in ~/.local/share/srf/media.

At the top right of the home page and front and back pages, there is a status indicator. Green, yellow or red depending on new card mode: Green if new cards will be presented if there are no cards due; Yellow if new cards will be presented interleaved with due cards; and Red if no new cards will be presented. Below this are counts of cards due, minutes of study the past 24 hours and minutes of study the next 24 hours (estimated).

Buttons

Study

Study a card. This will select a card according to the scheduling algorithm if there is a card due to be studied. If no card is due to be selected, a new card will be presented. If there are no more unseen cards, then the card with the earliest due date will be presented, even if that is in the future. This button will always yield a card to study.

Reload

Reload the home page.

Admin

View the admin page, with links to administer templates, template sets and field sets, and view configuration.

Stats

View the statistics page.

Help

This will be documentation, if I ever write it.

Admin

Links to the administration pages:

Templates

View a list of all templates in the system. Click on a template to edit it.

Each template is linked to a template set and should have a unique name among the templates linked to that template set. There are three attributes:

Front: handlebars template code for the front of the card.

Back: handlebars template code for the back of the card.

CSS: CSS that will be loaded to the front and back.

All the fields of the template/fieldset are available. For example, if the fieldset includes a field English then include this in the template with {{English}}.

The set of fields are defined in the template set definition.

Template Sets

View a list of all template sets in the system.

The view is read-only. To change them, add or edit the templates.

The fields of a templateset are all the fields of all the templates in the templateset. If you add a field to one of the templates, it will be added to the templateset.

Field Sets

View a list of all field sets in the system. Click on a field set to edit it. Click the New button to add a field set.

A field set is a collection of field values that populate cards. The set of fields is defined in the linked template set.

Each fieldset must be linked to a Template set. The set of fields is defined in the template set. If you change the template set after setting field data, the field data will be lost.

To attach media files, put the cursor into the field value input where the media file is to be attached, then click the Attach button and select the file containing the media data.

At the moment, the only supported media types are image/jpeg and audio/mpeg. These are inserted as img tags and audio respectively.

Config

A read-only view of the loaded configuration.

Stats Page

The Stats Page is available from the Home Page by clicking the Stats button. It shows some basic statistics about study performance.

New cards per day

This is the average number of new cards per day since the start of study.

Cards seen

This is the total number of distinct cards that have been seen at least once since the start of study.

Cards by Stage

The stage is determined by card interval. The stages are: unseen, new, learning, mature and mastered.

Percent Correct

This is the percentage of 'correct' responses (a.k.a. not Fail) for cards with intervals between config.matureThreshold and config.maxInterval, reviewed in the window config.percentCorrectWindow.

Cards with maximum interval are excluded on the premise that they are mastered and it is not performance on these cards that should be regulated, but rather performance on mature cards (Unconcious Competence).

Maybe this should also include the learning cards, but these are excluded on the premise that while learning the error rate will be relativley high and the regulation effectively regulates how quickly cards progress through learning to mastered, even though the learning cards are not included in the calculation of percent correct.

Card intervals are adjusted according to the difference between the average percent correct and config.percentCorrectTarget. If average percent correct is less than the target then intervals are shortened, making cards due sooner. If it is more than the target then intervals are lengthened, making cards due later.

Average time per review

This is the average time for each review of a card. It includes small gaps between reviews. It is the total study time for the day divided by the number of reviews.

Cards reviewed today

This is the total number of distinct cards viewed today. This is a count of cards not reviews. A card might be reviewed multiple times in a day but this counts the cards, not the reviews.

Cards due later today

This is the number of cards due to be reviewed in the remainder of the day.

New cards today

The number of new cards seen in the past 24 hours.

Study time today

This is the total time spent studying today.

Average time per day

This is average daily study time, averaged over the past week (actual study time) and coming week (estimated based on cards due and recent performance).

Time to earliest due card

The time until the earliest due card is due. This will be negative if there is a card due in the past: if there is currently one or more cards due for study.

Charts

Card Views per day

This is the total number of card views each day since the start of study.

Minutes Studied per day

This is the total study time per day since the start of study.

Cards Due per day

This is the number of cards due for review each day, looking forward from today.

Cards per interval

This is the number of cards with the given interval in days. There are two lines: Adjusted Interval and Unadjusted Interval. The Adjusted Interval is the interval after adjustment for percent correct. The Unadjusted Interval is the interval as set when the card was last viewed. The adjusted interval is the interval that will be the basis for calculation of the interval after the next review.

New Cards per day

This is the number of new cards presented each day since the start of study

Matured & Lapsed

This is the number of cards matured, lapsed, net change and cumulative per day since the start of study.

Command Synopsis

usage:
  srf --help
  srf [options...] [run]
  srf [options...] import <filename>
  srf [options...] backup
  srf [options...] fix

run

Run the server. This is the default.

import

Import an Anki apkg or colpkg file, or a csv file containing template or fieldset data.

backup

Create a backup of the srf database.

The server makes a backup of the database each time it starts and then once every 24 hours if it runs that long.

The backups are in the same directory as the database, with timestamp appended to their name.

fix

This performs several 'fixes':

  • create any missing cards from fieldsets and templates and delete any cards for which there is no longer a fieldset and template.
  • fix revlog entries:
    • make revlog IDs unique
    • set 'lastinterval' to 'interval' of the previous revlog entry for the card
    • set 'interval' of the last revlog entry for a card to the 'lastinterval' of the card

options

--help|-h

Display usage and exit.

--port|-p

Set the port that the srf server listens on.

Default is 8000.

--directory|--dir

Set the root directory, in which the database and media files are located.

Default is ~/.local/share/srf

If the given directory is absolute (i.e. begins with '/') it is used as given. If it is relative (i.e. does not begin with '/') it is relative to ~/.local/share.

For example: /tmp/testing would use that directory but testing would use ~/.local/share/testing and testing/a would use ~/.local/share/testing/a.

Media files are located in the media subdirectory of this directory.

The srf database is, by default, srf.db in this directory, but see option --database below.

--config|-c

Set the configuration filename.

Default is config.json

If the given path is absolute (i.e. begins with '/') it is used as given. If it is relative (i.e. does not begin with '/') it is relative to the path of the --directory option.

--database|--db

Set the sqlite3 database name.

Default is ~/.local/share/srf/srf.db or, if --directory is specified then srf.db in that directory.

If the given path is absolute (i.e. begins with '/') it is used as given - the database file can be outside the data directory. If it is relative, then it is relative to the path of the --directory option.

The directory to contain the database is created if it doesn't exist.

--media

Set the path of the media directory.

Default is media

If the given path is absolute (i.e. begins with '/') it is used as given. If it is relative (i.e. does not begin with '/') it is relative to the path of the --directory option.

The directory is created if it doesn't exist.

--htdocs

Set the path of the htdocs directory.

Default is htdocs

If the given path is absolute (i.e. it begins with '/') it is used as given. If it is relative (i.e. does not begin with '/') it is relative to the path of the --directory option.

This directory contains overrides for the static content of the srf server.

  • css/dark.css
  • img/dark-go.png
  • img/dark-slow.png
  • img/dark-stop.png
  • img/favicon.png
  • img/logo.png
  • js/plotly-latest.min.js
  • js/sorttable.js

--views

Set the path of the views directory.

Default is views

If the given path is absolute (i.e. it begins with '/') it is used as given. If it is relative (i.e. does not begin with '/') it is relative to the path of the --directory option.

This directory contains overrides for the handlebars templates of the srf server. Templates in this folder will override the default templates.

  • back.handlebars
  • fieldset.handlebars
  • front.handlebars
  • help.handlebars
  • home.handlebars
  • stats.handlebars
  • template.handlebars
  • templates.handlebars

Config

Configuration files may be put in several places:

  • /etc/srf
  • /etc/srf.ini
  • /etc/srf.json
  • /etc/srf/config
  • /etc/srf/config.ini
  • /etc/srf/config.json
  • ~/.config/srf
  • ~/.config/srf.ini
  • ~/.config/srf.json
  • ~/.config/srf/config
  • ~/.config/srf/config.ini
  • ~/.config/srf/config.json
  • ~/.srf
  • ~/.srf.ini
  • ~/.srf.json
  • ~/.srf/config
  • ~/.srf/config.ini
  • ~/.srf/config.json
  • .srf
  • .srf.ini
  • .srf.json

And, finally, config.json in the directory containing the data (~/.local/share/srf by default but may be set by option --directory).

Files with extension .json and files without extension are parsed as JSON after stripping comments from them.

Files with extension .ini are parsed as ini files.

Parameters which are durations may be specified as integer seconds or a string with units: seconds, minutes, hours, days, weeks or years, or any prefix of one of these. The units may be separated from the number by spaces.

For example:

  • 10 // 10 seconds
  • "10 seconds"
  • "5 days"
  • "1 day"
  • "1 d"
  • "1d"

Other parameters are integers.

For example, a json file might be:

{
  // Display theme
  "theme": "dark",

  // Minimum time between related cards (seconds)
  "minTimeBetweenRelatedCards": "1 hour"

  // Backup retention time (milliseconds)
  "backupRetention": "30 days",

  // Minimum number of backups to keep
  "minBackups": 2,

  // Maximum number of backups to keep
  "maxBackups": 10,

  // The maximum time for viewing a card (seconds).
  // Beyond this, any answer is converted to 'again'
  "maxViewTime": "2 minutes",

  // The maximum interval to when a card is due.
  "maxInterval": "1 year",
  "maxGoodInterval": "1 year',
  "maxEasyInterval": "1 year",

  // The interval (seconds) beyond which a card is considered 'learning'
  "learningThreshold": '1 week',

  // The interval (seconds) beyond which a card is considered 'mature'
  "matureThreshold": "21 days",

  // The window (seconds) in which to average Percent Correct reviews
  "percentCorrectWindow": "1 month",

  // The window (seconds) in which to average new cards per day
  "newCardsWindow": "2 weeks",

  // The minimum number of mature cards in the percent correct window
  // at which percent correct is calculated.
  "minPercentCorrectCount": 10,

  // The target for percent correct reviews
  "percentCorrectTarget": 90,
  "percentCorrectSensitivity": 0.0001,

  // The interval (seconds) between correct factor adjustments
  "correctFactorAdjustmentInterval": "1 day",

  // The maximum number of new cards in 24 hours.
  "maxNewCardsPerDay": 20,

  // Minimum study time (seconds) per day
  "minStudyTime": "20 minutes",

  // Target study time (seconds) per day
  "targetStudyTime": "30 minutes",

  // The probability of sorting due cards by due instead of inteval
  "probabilityOldestDue": 0.2,

  // minimum intervals according to responses to reviews
  "againMaxInterval": "1 day",
  "hardMinInterval": "1 week",
  "goodMinInterval": "5 minutes",
  "goodMinFactor": 1.1,
  "easyMinInterval": "1 days",

  // Static interval factors
  "againFactor": 0.5,
  "hardFactor": 0.8,
  "goodFactor": 1.0,
  "easyFactor": 1.5,

  // Answer weights
  "weightFail": 0,
  "weightHard": 1,
  "weightGood": 1.5,
  "weightEasy": 2,
  "decayFactor": 0.95
}

theme

default: dark

There is only one theme: dark. But this is only a CSS file. This setting is just the name of the CSS file, less the .css extension.

minTimeBetweenRelatedCards (seconds)

default: 1 hour

A template set typically contains several templates. For each field set, a card will be produced for each template in the template set. Thus there will be several cards for each field set.

The set of cards from a single field set are considered related. If one card from the set is reviewed, this is the minimum time before any other card from the set will be presented for review.

backupRetention

default: 30 days

The time to retain database backups. Backups older than this will be deleted.

minBackups

default: 2

The minimum number of backups to retain, regardless of their age.

maxBackups

default: 10

The maximum number of backups to retain, regardless of their age.

maxViewTime (seconds)

default: 2 minutes

The maximum time for viewing a card. If a card is viewed for longer than this ease will be forced to 'again'.

maxInterval (seconds)

default: 1 year

The maximum interval (time until next review) for a card.

maxGoodInterval (seconds)

default: 1 year

The maximum interval (time until next review) for a card that is Good.

maxEasyInterval (seconds)

default: 1 year

The maximum interval (time until next review) for a card that is Easy.

learningThreshold (seconds)

default: 1 week

The interval beyond which cards are considered to be 'learning' cards rather than 'new' cards. Beyond this threshold, they are scheduled according to the actual interval since they were last reviewed, rather than the scheduled interval.

matureThreshold (seconds)

default: 21 days

The interval beyond which cards are considered 'mature'. This doesn't affect reviews. It only affects some of the statistics.

This affects the calculation of Percent Correct, which is compared against percentCorrectTarget. Only review of cards with an interval greater than matureThreshold are considered in calculating Percent Correct.

A card is considered lapsed if its interval changes from longer than matureThreshold to shorter than matureThreshold.

A card is counted as mature (Unconcious Competence) or mastered if its interval is greater than matureThreshold.

percentCorrectWindow (seconds)

default: 1 month

The percentage of 'correct' responses (not 'Fail') is a factor in determining the intervals of cards. All responses within this window are considered in determining the percentage. Results of reviews longer ago than percentCorrectWindow are ignored.

newCardsWindow (seconds)

default: 2 weeks

The window in which new cards per day are averaged. The average new cards per day is used to calculate the minimum interval between new cards.

minPercentCorrectCount

default: 10

The minimum number of mature cards in the percent correct window at which percent correct is calculated.

percentCorrectTarget (percent)

default: 90

The percentage of 'correct' responses (not 'Fail') is a factor in determining the intervals of cards. The percentCorrectTarget is the target percentage of 'correct' responses.

The interval and due date of cards are adjusted according to the difference between the Percent Correct and this target, multiplied by percentCorrectSensitivity.

Cards actually have two interval values: interval and lastinterval. The interval value is the interval, including any adjustments. The lastinterval value is what the interval was when the card was last reviewed, without any adjustments.

Revlog also has two interval values: interval and lastinterval. But here their values are different. The value of interval is the new interval of the card, after review, based on the ease. The value of lastinterval is the unadjusted interval of the card the last time it was reviewed. It is used to determine if the card has matured or lapsed. It is redundant with the interval value of the previous revlog record for the card but saves a lot of lookup producing the statistics.

percentCorrectSensitivity

default: 0.0001

This determines the sensitivity to the difference between Percent Correct and percentCorrectTarget, when adjusting the interval and due date of learning and mature cards.

maxNewCardsPerDay

default: 20

The maximum number of new cards to be presented within 24 hours.

minStudyTime

default: 20 minutes

Minimum daily study time. New cards will be presented until study time in the past 24 hours is more than this.

targetStudyTime

default: 30 minutes

If total study time for the past 24 hours and predicted study time to study all cards due in the next 24 hours are both less than this, then new cards will be presented, interleaved with due cards. If either exceeds this, then only due cards will be presented.

probabilityOldestDue

default: 0.2

The probability that the next due card presented will be the first one due rather than the one with the shortest interval.

againMaxInterval (seconds)

default: 1 day

The maximum interval for cards after response 'Fail'.

hardMaxInterval (seconds)

default: 1 week

This is the maximum interval after responding 'Hard' to a review.

goodMinInterval (seconds)

default: 5 minutes

This is the minimum interval after responding 'Good' to a review.

goodMinFactor

default: 1.1

This is the minimum interval multiplier after responding 'Good' to a review.

easyMinInterval (seconds)

default: 1 day

This is the minimum interval after responding 'Easy' to a review.

againFactor

default: 0.5

After responding 'Fail' to a review, the new interval is the previous interval multiplied by this factor, but with a maximum of againMaxInterval which, by default, is 1 day.

hardFactor

default: 0.8

After responding 'Hard' to a review, the new interval is the previous interval multiplied by this factor, but with a maximum of hardMaxInterval which, by default, is 1 week.

goodFactor

default: 1.0

After responding 'Good' to a review, the new interval is the previous interval multiplied by this factor, the card factor and the 'correct' factor. See 'scheduler' below for details.

easyFactor

default: 1.5

After responding 'Easy' to a review, the new interval is the actual interval since last review (i.e. time since last review, which may be more than the scheduled interval) multiplied by this factor and the card factor.

weightFail

default: 0

The weight of an answer of Fail when calculating the exponentially weighted moving average of review replies: the card ease factor.

weightHard

default: 1

The weight of an answer of Hard when calculating the exponentially weighted moving average of review replies: the card ease factor.

weightGood

default: 1.5

The weight of an answer of Good when calculating the exponentially weighted moving average of review replies: the card ease factor.

weightEasy

default: 2

The weight of an answer of Easy when calculating the exponentially weighted moving average of review replies: the card ease factor.

decayFactor

default: 0.95

The decay factor when calculating the exponentially weighted moving average of review replies: the card ease factor.

ewma(n) = w(n-1) decayFactor + w(n) (1 - decayFactor)

Commands

run

Run the web server. This is the default command (i.e. if srf is run without specifying a command on the command line, it runs the webserver).

import \

Import an Anki export (i.e. a .apkg file). This is the primary way to get cards into srf. To migrate from Anki to srf, export decks from Anki, including media, and then import them to srf. Exporting all decks works.

fix

Fix a few inconsistencies in revlog:

  • duplicate IDs
  • inconsistency between interval and lastinterval
  • inconsistency between interval and card interval

This isn't necessary but it ensures greater consistency between the various srf metrics, particularly related to matured cards.

Study

When you study a card, its front side will be presented.

Review the front side and try to recall the corresponding back side.

When you are ready, click the Flip button or click the space bar (shortcut for Flip).

The back side of the card will be displayed, with buttons to indicate how well you remembered the card:

  • Fail: you didn't remember the card - you need to see it again soon
  • Hard: you remembered the card but it was a bit hard to recall
  • Good: you remembered the card
  • Easy: you remembered the card but it was too easy

What you should remember, when you see the front side, and what constitutes an adequate recollection is up to you. Some cards may be very specific and fact based while others might be more vague or conceptual. It's up to your own judgement.

Keyboard shortcuts for these are 'j', 'k', 'l' and ';' respectively. These are hard coded, but it is easy to edit the templates in the views directory if you want different shortcuts.

The card is then scheduled for review according to which button you clicked.

If there is another card due for study, the front of it is displayed and you continue your study.

If there are no more cards to be studied at this time the home page is displayed. You can review your progress and return to study when additional cards come due for study.

Every card that is not 'new' has a time when it is due. If this is before the current time, you may study the card. If it is in the future, you may not study the card. You must wait until the card is due for review to study it.

New cards are due if total study time over the past 24 hours is less than config.minStudyTime.

Card Lifecycle

Cards progress through the following stages:

  • unseen / unconcious incompetence / UI
  • new / concious incompetence / CI
  • learning / concious competence / CC
  • mature / unconcious competence / UC
  • mastered / mastery / M

Unseen / unconcious incompetence / UI

When you add cards to srf, initially they are unseen. If you add a thousand cards, you probably don't want to study them all on the day you add them. Most of them remain unseen for some time before they are presented as new cards.

If you look at the database. These unseen cards will have an interval of 0. Cards that have been seen have an interval greater than 0. Even if these cards have a due time set, the due time is ignored until they are selected to be presented as new cards.

If the scheduler determines that a new card should be presented, cards with interval = 0 are sorted by ord then id and the first card is presented.

New / concious incompetence / CI

Eventually an unseen card is presented for study for the first time, becoming a 'new' card. It is deemed to be a new card until its interval reaches the learning threshold (config.learningThreshold).

At this stage, your ability to remember the card might be quite volatile. On the one hand, the novelty of it might make it easier to remember. On the other hand, the unfamiliarity of it might make it harder to rememger.

New cards are scheduled according to their scheduled interval, not the actual interval since they were last studied. If a card has a scheduled interval of 30 minutes but you don't study overnight so you don't see it until 10 hours later, it is scheduled on the basis of the scheduled 30 minute interval, not the 10 hour interval.

Learning / concious competence / CC

After familiarizing with a new card, the real work of committing it to long term memory begins. Intervals are still fairly short and your ability to recall the card might be quite sensitive to the actual interval. Reviewing the card a few days late might make the card much more difficult to recall.

During this phase, the card is scheduled according to the actual interval since last review. If you don't review it on time (maybe because of exams or vaction) but when you do you recall it well, it is the actual interval through which you were able to recall it that matters.

Mature / unconcious competence / UC

Eventually the card is well committed to long term memory. When you see the card, you recognize it immediately, without having to think about it. The the exact interval doesn't make much difference.

By default, cards are considered mature when their interval reaches 21 days. The scheduling algorithm is still applied and the interval will still gradually increase, up to the maximum interval (config.maxInterval) which, by default, is one year.

Mastered / mastery / M

Finally, cards reach the interval limit. They are mastered.

By default, the interval limit is 1 year (config.maxInterval).

Scheduler

The scheduler is provided by a separate package: @ig3/srf-scheduler.

There is not yet any provision for loading an alternate scheduler, but it would not be difficult to support this.

@ig3/srf-scheduler

There are two aspects to the scheduler:

  1. Determining when a card is due for review
  2. Determining which card is to be studied next

Determining when a card is due to be studied

Cards that have been viewed at least once have a time that they are due for review. Technically, this is stored in the database as a date and time in UTC timezone.

Cards that have never been viewed are called 'new' cards. They do not have a time that they are due for review. They have not been viewed and therefore cannot be reviewed, until after they have been viewed for the first time. For details of when new cards are first presented, see the next section.

The timing, from one review to the next, is the spacing of spaced repetition. The theory is that there is an optimum interval that minimizes the total number of reviews required until a card can be remembered indefinitely: until it has been learned. If the interval is too long, the card is forgotten before it is reviewed: it is not learned. If the interval is too short, the card is easily remembered but reviewing the card too often wastes time that could be used to learn other cards.

Each time a card is studied, whether it is its initial viewing or a later review, the ease with which it was remembered is rated by clicking one of four buttons: Fail, Hard, Good or Easy. The card is then scheduled for review, sooner or later, according to the ease with which it was remembered.

The interval to the next review is determined based on the ease of the current and past reviews.

(Almost) All the scheduling parameters are configurable. The following sections describe the default configuration.

Fail

This is for cards that you could not remember: that you want to see again sooner rather than later. The card is scheduled to be reviewed in 30% of the time since it was last reviewed, with a maximum of 1 day.

For example, if you last reviewed a card 1 hour ago but couldn't remember it, it will be scheduled for review in 18 minutes. If you can't remember it again after 18 minutes then it will be scheduled for review in about 5 minutes.

But there is a maximum interval. If it is more than 3 weeks since you last reviewed the card, the new interval will be 1 week.

Cards that were easily remembered at a long interval might become difficult. For example, other similar cards may have been introduced, leading to confusion. This might make the old card difficult until it can be reliably distinguished from the new one.

Hard

This is for cards that you could remember but they were too hard: it was too long since the last review and you want to see the card again sooner. The card is scheduled to be reviewed in 50% of the time since it was last reviewed, with a maximum of 1 week.

For example, if you last reviewed a card 10 days ago but found it hard, then it will be scheduled for review in 5 days.

Good

This is for cards that you could remember well: the timing since the last review was good - it was not too hard and not too easy. The card will be scheduled for review after a longer interval.

For new cards (scheduled interval is less than config.learningThreshold), the previous schduled interval is used to calculate the new interval. For learning and mature cards, the actual interval since last review is used. This only makes a difference if there is a delay from scheduled review to actual review. The principle is, if you still remembered it well after a longer interval than scheduled, then use that longer interval to calculate the next interval.

The new interval is the greater of:

  • config.goodMinInterval
  • the previous interval multiplied by config.goodMinFactor
  • the previous interval multiplied by the product of config.goodFactor and the card ease factor.

The card ease factor depends on how easy the card is. It accommodates the fact that some cards are easier than others and that the ease of a card varies with time. It is an exponentially weighted moving average of response values.

Card Ease

The card ease factor is an exponentially weighted moving average of the weighted response values for the card. The weights are 0, 1, 2 and 4 for Fail, Hard, Good and Easy respectivley. The decay factor is 0.9.

The card ease factor is dominated by performance on recent reviews. Older reviews quickly become insignificant. But there is some 'history': the factor is larger for cards that have consistently been Good or Easy and smaller for cards that have consistently been Fail or Hard. A mix of replies will result in an intermediate ease factor.

The range of the card ease factor is 0 to 4. It is a simple multiplier for the interval. If you keep choosing Fail, the factor will drop to 0. If you consistently click Good, the factor will rise to 2: the interval will double after each review. A mix of Good and Hard will result in a factor between 1 and 2, resulting in a slower increase in the interval.

The card ease factor begins at 0 for a new card but will quickly climb with a few Good answers. It is expected that it will typically be between 1 and 2 for a card past the initial learning phase.

The card ease factor is specific to the card. Each card has its own history of answers and its own ease factor. This addresses the issue that some cards are harder or easier than others. This will be reflected in their individual histories of answer and resulting ease factors. On the other hand, cards that were hard will generally become easy with practice and familiarity: they don't stay hard forever. On the other hand, a card that was easy may become hard if other, similar new cards are introduced: it may take time to learn the subtle differences and avoid confusing them. Thus the card ease factor is specific to each card and changes as your success recalling the card changes. And the ease factor changes how quickly the interval grows: from quite slowly (card ease factor around 1) to quite quickly (ease factors closer to 2 or more).

Easy

For cards that you remember very well: the time since the last review was too short and you don't want to see the card again so soon.

The new interval is the time since last review multiplied by config.easyFactor (default: 1.5) and the card factor (variable depending on review history), with a minimum interval of 1 day and maximum of 1 year..

For example, if the time since the last review was 1 day and the card factor was 1 then the new interval would be 1.5 days. This would be true even if the previously scheduled interval was less than 1 day.

Determining which card is to be studied next

When you study cards, the scheduler determines which card is to be studied next. There are two possiblities:

  1. a new card: a card that has not been studied previously
  2. a card that has been studied previously and is now due for review

New Cards

Cards that have never been studied are 'unseen' cards. But eventually they are selected to be presented for study: they become a 'new' card.

The scheduler presents new cards to keep daily total study time approximately at config.targetStudyTime.

The new cards are presented at intervals, mixed in with review cards.

New cards are not presented if:

  • total study time in the past 24 hours is more than the target
  • estimated study time to review all cards due in the next 24 hours is more than the target
  • there are overdue cards
  • config.maxNewCardsPerDay new cards have been seen in the past 24 hours

New cards start with a minimal interval. If they remain hard, the interval will continue minimal, until you have reviewed the card enough times to begin to recall it. Once you start clicking Good or Easy, the card's ease factor will increase and the rate of increase of the interval will increase accordingly. If the interval doubles at each review, with a series of Good responses, it will soon be many days between reviews. If the card is easy and the reviews become tedious, an answer of Easy will increase the interval more quickly, with a minimum of at least 1 day, and faster increases going forward.

Review Backlog

It is normal to have a small backlog: a set of cards past due to be studied. The only way to avoid it is to be studying all day: studying each card as soon as it is due. But this is impractical.

If you have one study period each day (a perfectly reasonably schedule) then you will start each day with a small backlog: cards that came due since you finished studying the previous day.

If you take a vaction (lucky you!), are busy with exams, work or other priorities, you might not study for a few days or a few weeks. When you return to study, you might have a large backlog: many cards due to study.

The scheduling algorithm makes it easy to work through the backlog, whether it is small or large.

When selecting a due card, the scheduler selects either cards that were due first or cards with the shortest interval. The probability of getting a card that was due first is config.probabilityOldestDue which defaults to 0.2.

The selection is slightly randomized: one of the next 5 cards due is returned.

If your backlog is too large, you may not be able to review all due cards in a day. It may take you several days to clear the backlog. The scheduler allows you to cope with this, providing a balance between studying the most overdue cards and studying cards with the shortest intervals on time.

While you have a backlog (cards that were due more than 24 hours ago) no new cards will be shown. There is no value in making the backlog larger. You can return to learning new cards after you clear your backlog.

You can override the scheduler and study a new card at any time by clicking the New Card button on the home page.

Overdue cards

If a card is more than 24 hours past its due time, it is deemed to be overdue. When there are overdue cards, no new cards will be presented.

Scheduler API

The scheduler must provide the following methods:

  • getCountCardsDueToday
  • getIntervals
  • getNewCardMode
  • getNextCard
  • getNextDue
  • getNextNew
  • getStatsNext24Hours
  • getTimeNextDue
  • review

getCountCardsDueToday

Returns the number of cards that are due before the end of the day in local timezone.

getIntervals(card)

Takes a card object as argument.

Returns an object with attributes for each ease: fail, hard, good and easy, the values being the new interval for the given card if that ease is selected.

getNewCardMode

Returns the mode: 'go', 'slow' or 'stop', for presenting new cards. Mode go is the most aggressive: new cards are presented if there is no due card, or at intervals if there are due cards. Mode 'slow' presents new cards only at intervals between due cards. Mode 'stop' indicates that new cards will not be presented. See the scheduler documentation for details of when these modes pertain.

getNextCard

Returns a card object or undefined if there is no card that should be presented. The card may be a due card or a new card. See the scheduler documentation for details of when new or due cards are presented.

getNextDue(override)

Takes a boolean which can be set to true to override limits on presenting due cards.

Returns a card object or undefined if there is no due card that should be presented.

See the scheduler documentation of details of when cards are due and how the card to be presented is selected, if there are multiple cards due.

getNextNew()

Returns a card object of undefined if there are no more new cards.

See the scheduler documentation for details of how the unseen cards are sorted to select the next new card to be presented.

getStatsNext24Hours

Returns an objects with properties:

  • count: the number of cards due in the next 24 hours
  • time: extimated time to review these cards, based on recent performance
  • minReviews: minimum reviews between new cards in 'slow' mode
  • reviews: number of reviews since the last new card

getTimeNextDue()

Returns the due time (seconds since the epoch) of the card with the earliest due time.

review(card, viewTime, studyTime, ease)

Updates the given card and produces a revlog record according to viewTime (the time the card was presented to the user), studyTime (the time to be counted towards total study time) and the ease of the card.

This is the functional bit of the scheduler: this is where cards are scheduled for review.

Templates

Card templates are rendered with Mustache.js, with a custom escape function to:

  • render [sound:<media filename>] as an audio tag
  • pass all other text unaltered (i.e. HTML is NOT escaped)

The templates are rendered with the note fields as context.

This is compatible with Anki templates for simple templates but only a small subset of Anki template features are supported.

Note: because field values are rendered without escaping, malicious decks may inject arbitrary content into the browser. Review the content of decks carefully before importing them.

Page templates are rendered with handlebars. I might have used handlebars throughout but I have some templates with spaces in the key names (e.g. {{Some Key}}): mustache supports this but handlebars does not. It isn't obvious that this is an intentional feature of mustache. I don't see an explicit test to ensure it works.

Anki features not supported

Text to Speech

In Anki 2.1.20 or later on Windows, MacOS or iOS, or Linux with an add-on, a field of the from {{tts en_US:Front}} will read the Front field in a U.S. English voice.

A field of the from {{tts-voices:}} will produce a list of all supported voices. And various options can be given to specify the voice, speed, etc.

None of these are supported in srf.

Special Fields

The special fields {{tags}}, {{Type}}, {{Deck}}, {{Subdeck}}, {{Card}} are not supported in srf.

The special field {{FrontSide}} is supported in srf.

Hint Fields

Fields of the form {{hint:MyField}} are not supported in srf.

HTML Stripping

Fields of the form {{text:Expression}} to strip HTML from the value are not supported in srf.

Checking Your Answer

Fields of the form {{type:Foreign Word}} are not supported in srf.

Conditional Replacement

Sections bracketed by {{#FieldName}} and {{/FieldName}} do not work in srf as in Anki.

In srf, the section will not be displayed if the field value is false or an empty list. If the value is a non-empty list, the section will be displayed once for each value in the list, with the list element as context for interpreting the field reference (i.e. the value should be a hash/object with an attribute matching the field reference). If the value is not a list and not false, the block will be rendered once with the value as context.

Cloze Templates

Cloze templates are not supported in srf.

Anki implementation

In Anki, the implementation of template rendering is split between python and rust. While the form of the templates appears to be much like Mustache, and there is at least one comment in the code that refers to the {{ and }} as mustaches, there does not appear to be an implementation of the mustache templates included in the code, so the implementation is all local. The rust code has comments that mention 'handlebars' but appears not to use a handlebars package (crate or whatever the rust incantation is).

Anki Scripting: Automate your flashcards is from 2016. It doesn't mention the version of Anki investigated, but it is quite different from Anki in 2021. Correlating with tags in the Anki git repository, it would have been Anki 2.0.35 or earlier. There was a long break from 2.0.35 (2016) to the next tag 2.1.0 (2018). None the less, there is some good information here, including the comment: 'Anki uses a modified version of Pystache to provide Mustache-like syntax.' Indeed, Anki 2.0.34 included a copy of pystache, with files not modified for 7 to 9 years.

Anki 2.1.0 updated the pystache readme to:

Anki uses a modified version of Pystache to provide Mustache-like syntax.
Behaviour is a little different from standard Mustache:

- {{text}} returns text verbatim with no HTML escaping
- {{{text}}} does the same and exists for backwards compatibility
- partial rendering is disabled for security reasons
- certain keywords like 'cloze' are treated specially

This persisted until Anki 2.0.52 (8 Mar 2020) but was removed from Anki 2.1.21 (9 Mar 2020), which is about when I started using Anki. My oldest archive of the source is 2.1.16, Dec 22, 2019. 2.1 tags before 2.1.21 have been removed, it seems. Anyway, the template folder was still present in 2.1.16 but gone by 2.1.28, my next archive. This was the beginning of the pervasive changes, including the move to rust and fragmentation of the implementations of various features that put me off developing Anki addons or trying to improve the Anki scheduler. Quite an aside to templating, but template rendering is just one more feature that is now fragmented between python and rust code. And it seems no longer using anything like an external implementation of mustache: the current implementation maintains some of the syntax and semantics of mustache but the implementation is all local to Anki, since about Anki version 2.1.28.

srf database

The database is sqlite3.

There are six tables:

  • card
  • config
  • dailystats
  • fieldset
  • revlog
  • template

card

A card is the unit of study.

A card associates a fieldset (a set of field name/value pairs) with a template (mustache templates for the front and back of the card, and associated CSS) and a set of attributes used for scheduling the card.

The tuple (fieldsetid, templateid) should be unique. A unique index ensures this.

Fields:

  • id
  • fieldsetid
  • templateid
6.0.10

2 months ago

6.0.9

2 months ago

6.0.7

3 months ago

6.0.6

3 months ago

5.0.1

7 months ago

6.0.1

7 months ago

6.0.0

7 months ago

6.0.3

7 months ago

6.0.2

7 months ago

6.0.5

6 months ago

6.0.4

7 months ago

4.4.6

9 months ago

4.5.0

7 months ago

4.5.1

7 months ago

4.4.5

10 months ago

4.4.4

11 months ago

4.4.1

12 months ago

4.4.0

12 months ago

4.4.3

11 months ago

4.4.2

11 months ago

4.3.0

12 months ago

3.0.4

1 year ago

3.0.3

1 year ago

3.0.2

1 year ago

3.0.5

1 year ago

4.2.2

1 year ago

4.1.3

1 year ago

4.1.0

1 year ago

4.0.1

1 year ago

4.0.0

1 year ago

4.2.1

1 year ago

4.1.2

1 year ago

4.2.0

1 year ago

4.1.1

1 year ago

4.0.2

1 year ago

3.0.0

1 year ago

2.2.1

1 year ago

2.2.2

1 year ago

2.2.0

2 years ago

2.1.3

2 years ago

2.1.2

2 years ago

2.1.1

2 years ago

2.1.0

2 years ago

2.0.0

2 years ago

1.2.1

2 years ago

1.2.0

2 years ago

1.1.0

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago