Skip to content

This document is a WORK IN PROGRESS.
This is just a quick personal cheat sheet: treat its contents with caution!


Anki

Anki is a free and open-source flashcard program that utilizes spaced repetition. Spaced repetition has been shown to increase rate of memorization.

Reference(s)

Table of contents


Install from sources

TODO


Config

TODO


Use

TODO

apy

See:

WIP

Install apy:

$ cd ~/projects
$ git clone https://github.com/lervag/apy.git
$ cd apy
$ pip install . --user
$ ~/.local/bin/apy --help

Tips, Tricks and Troubleshooting

Dark cards

Sometimes, some cards' images will appear dark when night mode is activated (probably due to the use of transparent background for the images of some decks).

In this case, one can invert the images of a deck by inserting the following code into "browse -> cards -> styling":

.night_mode img {

 filter: invert(1); -webkit-filter:invert(1);

}

If this cheat sheet has been useful to you, then please consider leaving a star here.