FlashcardsRecall, then flip

Add a deck

All decks

Write one with Claude, paste one, or upload a file. Added decks study and print exactly like the built-in ones, and stay in this browser.

.txt, .md, .csv, .tsv or .rtf

The format

One Q: line, one A: line, a blank line between cards. Answers can run over several lines. Everything above the first card is optional front matter.

# Kubernetes basics
tint: #D6E8F7
blurb: Pods, services, and the scheduler

Q: What is a pod?
A: The smallest deployable unit - one or more
containers sharing a network namespace.

Q: What does a Service do?
A: Gives a stable IP and DNS name in front of
a changing set of pods.

Two other shapes work too

Markdown headings, where the question is the heading and the answer is the text under it:

# Deck title

## What is a pod?
The smallest deployable unit.

## What does a Service do?
A stable IP in front of changing pods.

Or one card per line, split on a tab or a pipe - which is what you get from a spreadsheet export:

What is a pod? | The smallest deployable unit.
What does a Service do? | A stable IP in front of pods.

Rules worth knowing

  • Title comes from the first # line. Without one the deck is called “Untitled deck”.
  • tint takes a six-digit hex colour for the corner triangle. Leave it out and one is assigned from the unused pastels.
  • Card count can be anything, but a multiple of eight fills every printed sheet. Short decks leave blank cells on the last one.
  • Keep answers to one or two sentences - long ones overflow a printed card.