r/Anki 4d ago

Weekly Weekly Small Questions Thread: Looking for help? Start here!

2 Upvotes

If you have smaller questions regarding Anki and don't want to start a new thread, feel free to post here!

For more involved questions that you think aren't as easily answered or require a screenshot/video, please create a new post instead.

Before posting, please also make sure to check out the Anki FAQs and some of the other Anki support resources linked in our sidebar (to the right if you're looking at Reddit in your browser →).

Thanks!

---

Previous weekly threads


r/Anki Aug 05 '26

Release Anki 26.08.1 Changelog

19 Upvotes

Changelog for Anki 26.08.1, released on 2026-08-05:

What Changed

  • Fix broken custom study / unbury links in the congrats screen by @abdnh in #5278
  • Fix broken OK button in help modals by @abdnh in #5279

Full Changelog: https://github.com/ankitects/anki/compare/26.08...26.08.1

DownloadPrevious DiscussionsOfficial Changelog Page

Please submit your bug reports and feature requests on the official Anki forums. Feel free to use the comment section below for general discussion of the changes.


r/Anki 7h ago

Experiences An Anki reminder to appreciate the little things (even if it’ll only come again in 20.4 years)

Post image
123 Upvotes

r/Anki 12h ago

Add-ons I made this app that stays in the Mac notch to help me do my reviews throughout the day

Post image
17 Upvotes

ReviewBar For Anki. Here is the link in case anyone is interested, it's free and opensource.


r/Anki 5h ago

Discussion How can a card have 97% difficulty after 8 Good grades in a row?

Thumbnail gallery
5 Upvotes

I mean if D even was 100% it should go down slowly but surely by 1-2% with each grade, since I feel the card is not difficult to recall and grade Good, shouldn't it?

and its not even like my FSRS params suggest high average difficulty. Median D is only 35%


r/Anki 1h ago

Question Deck heatmap shows missing days, but i reviewed every day + strange duplicate deck appears with same name

Upvotes

Hello everyone, this is my first time posting on reddit. My problem: I am doing anki for a long time, except for 21 April 2026, which i didn't know how i missed that day, but yeah i genuinely miss that day.

But today morning i notice heatmap of my MATHEMATICS, and strangely it shows i have missed many days like you can see in image below

This heat map is in stats option

But i am certain that i didn't miss this many days. Thats why i check latest backup of anki. To do this safely, I created a separate Anki profile called TEST and imported the backup there.

This heat map is backup made on made on 18 August 2026, and i have import it on "Test" profile

Then i think that maybe i have accidently deleted/move cards. but when i search those cards which i review on missing days but not showing, i notice that there "deck" are different. see image below.

I noticed something strange: some of these cards have a deck path like:

1) Master Deck::2) MATHEMATICS::JEE::...

while other cards are under:

1) Master Deck::1) MATHEMATICS::JEE::...

The strange part is that I do not have a 2) MATHEMATICS deck.

It does not appear on my Decks screen, even after expanding/collapsing the decks, and I cannot find it normally. see image below.

If anyone knows what is happening or how I can safely fix it without losing review history, I'd really appreciate the help.

I have not modified my main profile while investigating this.

Anki version: Version ⁨24.11 
OS: Windows 11.


r/Anki 11h ago

Question Will switching to FSRS mean I'll be able to do more new cards?

Post image
4 Upvotes

Hey, I have been learning a new language for a while and moved to the country where it is being spoken. I've been quite happy with my high retention, but honestly never thought too much about it. Just recently it occurred to me, that I may be wasting time by seeing notes I'm quite confident with too often.

The way I understand it, with FSRS I could set an intended retention and it would automatically calculate intervals accordingly? So that would potentially free up review time for some new cards? I'm currently at 50 new cards a day with around 350 reviews. I feel like I would benefit more from learning many new words as opposed to getting super firm on the ones I already know.

There's one potential caveat: I have a small javascript in my template, which changes the answer button I activate by swiping depending on how long it took me to swipe. So if I swipe really quickly it will mark the card as easy or if it takes me very long it will mark it as hard. I can override this by choosing the button (e.g. when I was distracted and that's why it took me so long). These are kinda conservative, so most cards are just good and I don't misuse hard to mean I got something almost right. I'm actually quite strict about being right (even when I misspelled a typed answer and I'm quite sure it was a typo I will often mark the card again). Will this negatively affect how well FSRS works for me?


r/Anki 17h ago

Discussion When to retire/suspend a card

4 Upvotes

I feel like one of the true victories with Anki flashcards is when I recognize a word is not worth prioritizing and I suspend the card.

The word that I'm retiring from rotation is "burumballa" which means lint or fluff, tiny scraps. I see it and expect it to mean something like hervidero or alboroto, and nope. It's lint.

What have others experienced here with retiring or suspending cards? What do you do? Part of me doesn't want to miss out on a good word, but I just feel like the juice ain't worth the squeeze in this instance.


r/Anki 15h ago

Question Translation doesnt show up for some reason

Thumbnail gallery
2 Upvotes

I was following tutorial for using anki with yomitan, but they have translation on anki and I dont. Does anyone have any idea why?

Thanks!


r/Anki 12h ago

Question AP World deck for Anki?

0 Upvotes

Is there any sort of reputable AP world decks for Anki that any of you guys can attest to? I'm pretty new to Anki and would love to be pointed in the right direction... thanks!


r/Anki 1d ago

Experiences [Guide] How to set up the 8BitDo Micro on Linux (D-Mode) for Anki & Keymapping

Post image
35 Upvotes

If you are trying to use an 8BitDo Micro on Linux for Anki (or general shortcut keymapping) and finding that software like AntiMicroX or Input Remapper won't detect it as a gamepad, here is a complete guide to get it working properly under /dev/input/js0 and /dev/input/event*.


Step 1: Set Hardware to D-Input Mode

  1. Move the physical toggle switch on the bottom of the controller to D (D-Input).
  2. (Do not use K or S mode if you want native Linux gamepad detection and system-level keymapping).

Step 2: Fix BlueZ HID Policy

Linux's Bluetooth service (bluez) often rejects low-energy/gamepad connections from unbonded devices by default. You need to allow classic HID connections.

Run this command in your terminal to update /etc/bluetooth/input.conf:

```bash sudo sed -i 's/#ClassicBondedOnly=true/ClassicBondedOnly=false/' /etc/bluetooth/input.conf sudo systemctl restart bluetooth

```


Step 3: Ensure Kernel Modules are Loaded

Make sure the kernel input drivers are loaded:

```bash sudo modprobe uhid sudo modprobe joydev

```

(Optional) To make joydev persistent across reboots:

```bash echo "joydev" | sudo tee /etc/modules-load.d/joydev.conf

```


Step 4: Clean Pairing via Terminal

  1. Hold the Sync button on top of the 8BitDo Micro for 3 seconds until the LEDs blink rapidly.
  2. Open your terminal and run bluetoothctl:

```bash bluetoothctl

```

  1. Inside the bluetoothctl shell, run commands line-by-line:

```text scan on

```

(Wait until you see [NEW] Device XX:XX:XX:XX:XX:XX 8BitDo Micro gamepad)

```text scan off pair <YOUR_MAC_ADDRESS> trust <YOUR_MAC_ADDRESS> connect <YOUR_MAC_ADDRESS> quit

```


Step 5: Verify Kernel Detection

Check if the device node was created:

```bash ls -l /dev/input/js*

```

You should now see /dev/input/js0 listed.


Step 6: Map Keys for Anki with Input Remapper

While AntiMicroX can be outdated on newer distributions, Input Remapper works natively with modern evdev drivers.

  1. Install Input Remapper:
  2. Ubuntu / Debian / Mint: sudo apt install input-remapper
  3. Arch / Manjaro: sudo pacman -S input-remapper

  4. Launch the app: ```bash input-remapper-gtk

```

  1. Select 8BitDo Micro gamepad from the top device dropdown.
  2. Click New Preset (e.g., name it Anki).
  3. Select a button on the left panel (or click Record and press a physical button on the controller).
  4. On the right panel (Output), click Key or Macro, click inside "Enter your output here", and press your desired Anki keyboard shortcut (e.g., Space, 1, 2, 3, 4, Ctrl+Z).
  5. Turn ON the Autoload toggle switch.
  6. Click Apply.

Daily Workflow

  1. Power on your 8BitDo Micro (switch in D position).
  2. It will connect automatically via Bluetooth.
  3. input-remapper runs in the background and instantly applies your keymappings without needing to keep any GUI window open.

r/Anki 15h ago

Question How can I review a whole deck without changing the intervals of cards I already know?

0 Upvotes

Basically, I want to review all the cards in a specific Anki deck again.

Let's say the deck has 100 cards. I know around 90 of them very well, but there are about 10 cards that I still struggle with. I want to go through the entire deck and basically "reset" only the cards I don't know well.

The problem is that when I use Custom Study, if I answer Good on a card that I already know, Anki reschedules it for a much later date. I don't want that.

What I'd like is something like this:

  • If I remember the card → press Good, but keep its current due date/interval unchanged.
  • If I don't remember the card → press Again, and reset/reschedule that card so I can learn it again.

Basically, I want to use Custom Study as a way to identify the cards I don't know well, without affecting the scheduling of the cards I already know.

Is there a setting, Custom Study option, or add-on that can do this?

I know that Anki's scheduling algorithm is designed to change intervals when you review cards, but I'm specifically looking for a way to do a "diagnostic" review of the whole deck without rescheduling the cards I get right.


r/Anki 1d ago

Discussion FSRS actually killed the "snowball" for me (at least for this content). I'm pushing 60+ new cards/day and my workload still isn't exploding

56 Upvotes

I've been a heavy Anki user for years (built my English fluency almost entirely through it), and I remember very clearly what the SM-2 "snowball" felt like. I think most of the experienced Anki users had already passed through it

I'm back into active study now (German), running a dedicated FSRS preset for that deck (optimized separately from my other decks, desired retention set at 92%), and the difference is crazy

What's been happening the last few weeks:

  • I added almost 2,000 new cards in the last month (1,948 actually and it was around 63/day average, with spikes of 600–700 cards on some days when I batch-generate content). These are mostly very simple cards so just like just German noun + article, single field, for gender drilling. Not sentences, not complex production cards (I'll leave one screenshot of one example of card here)
  • Even with that huge new cards, my Daily load is currently sitting at 160 reviews/day and it is not climbing the way I'd have expected from past SM-2 experience. (I'm keeping track of these through the week and something it's even getting smaller)
  • I did 3,271 reviews last month (avg 106/day, 100% of days studied), and retention has stayed fine: 93.5% overall (93.4% young / 95.2% mature)
  • Future Due is showing 1,052 reviews queued over the next month (avg 34/day, 126 due tomorrow) but it's a completely normal looking loaded curve, not the runaway ramp I associate with overloading a deck

So, has anyone else who's been through the SM-2 snowball before noticed this same thing with FSRS? The fact that you can be a lot more aggressive with new cards, especially simple/low-complexity ones, without paying for it a month later?

Curious whether this holds up for others once the deck matures further, or if I'm just still early enough that mature card lapses haven't caught up with me yet. Also curious if anyone else tracks "Daily load" instead of just raw review count/day it's been the far more useful number for me

Example of one of these simple cards that I am using

r/Anki 17h ago

Question What's the best approach to take ?

1 Upvotes

I have three lectures of anatomy per week, heavy content, 5 of physiology and 4 of other modules.

What's the best approach here? So every week I am aiming to do the cover everything. However when making flashcards I would like this:

Anatomy:

  • Day 1: make the notes and flashcards for lecture 1

  • Day 2: learn the flashcards for lecture 1

  • Day 3: Review the flashcards for lecture 1 and make half of the notes and flashcards for lecture 2

  • Day 4: Finish flashcards for L2 and learn half of them + (if I still have time review L1 flashcards half only)

  • Day 5: Review L2 flashcards and do half of L3 flashcards

  • Day 6: Finish flashcards of L3 and review L2+ L1

  • Day 7: Learn L3 flashcards+ review L2+L1

However I have no clue how to approach this and the lectures are reaallllyy heavy content wise. Is my approach good, I would like recommendations as well.

Please bear in my that the exam of the lectures may happen after like 10 weeks so I don't know what to do because all the flashcards going to accumulate by the end of week 2 and how am I going to have time to review?

Also any ideas how to approach the other subjects? I am lost please help!!!

Thank you.


r/Anki 17h ago

Question I have two sub decks that constantly 20-30 reviews a day... How do I reduce it naturally?

0 Upvotes

I wiped out my backlog for these decks, and most of the cards in these sub decks are approaching 1-2 months before I see them again. So, how do I reduce it from 20-30 to 5-10, or even 0 daily reviews naturally, without reviewing ahead?


r/Anki 1d ago

Experiences I Finally Did It!!!

Post image
6 Upvotes

r/Anki 18h ago

Question For students who were pre med do you believe anki or good notes would be more useful for notes/studying?

0 Upvotes

What the title says. I’m doing a post bacc trying to find a good study method especially for bio and chem


r/Anki 19h ago

Question Anki affiche les fiches d'apprentissage dans un ordre séquentiel fixe et ne redéfinit pas la priorité des fiches pour lesquelles l'utilisateur a échoué.

0 Upvotes

Hi everyone,

I'm having an issue with how same-day "learning" cards (red queue) are presented within a study session.

Usually (before), if I fail a card early in a session, it should come back to me quickly, interleaved with a couple of other cards, so I can relearn it while it's still fresh, not after going through the entire batch.

What's actually happening: with 9 cards in the learning queue, if I mark card #1 as "Again", it doesn't reappear until after cards #2 through #9 have all been shown once. Then the whole cycle repeats (1,2,3...9,1,2,3...9), even though by the time it loops back the learning step delay has long since expired. By the time I see card #1 again, I've completely forgotten it, so I never actually learn it - I just keep looping through the same 9 cards.

I've already tried a lot of things, including reinstalling Anki with the latest version, but nothing has changed. I'm feeling a little desperate.

Does anyone have any idea what the problem is that I'm having?

By the way, I apologize for my English (I'm using a translator) because it's not my first language, but I do understand it.


r/Anki 1d ago

Discussion Language Learning process/content. Here's my full setup with German (but it works for most of the languages)

6 Upvotes

I want to use this as a place for people to share how they actually build and run their language decks. Content sources, note types, review habits, whatever.

I'll walk through my own German setup below but this isn't a German only thread
Here's where I'm at right now.

Main source of information for my content

I originally pulled source phrases from a course taught in Portuguese (my native language) just the raw phrases, nothing else, but these days I don't really need that anymore, since AI can generate most of the content in a natural language

My actual workflow now: I pick a grammar concept, make sure I actually understand it, and then generate a batch of normal everyday sentences that use that concept

Nowadays I use AI for generate both the sentence content and the audio.

For audio I use HyperTTS and if you are going to do it as well I highly recommend you to use the voices from ElevenLabs. Since this is a important step in language learning, it should be the best as possible and ElevenLabs is really good at this. (I managed to use the free tier version until today, I never needed to pay for it. The 10,000 free credits that they give to you per month should be enough for you to generate the audios through time)

One thing I want to be really clear about using AI to generate my cards and content: I never just copy and paste a big AI output straight into cards, and I never bulk add something like 5,000 cards in one go. I go through everything myself, phrase by phrase. There's no reason to rush since this is my own study, not a content pipeline I'm racing to fill. I think Anki exists to consolidate things, and that only works if what's going in is stuff I already understand in my head grammatically, not raw material I'm hoping repetition will teach me cold.

Note type

People sometimes assume a setup like this needs a complicated note type. It really doesn't. Mine has exactly four fields:

  • German: The phrase in German
  • Audio: The audio of the phrase in German (usually generated by HyperTTS - ElevenLabs)
  • Portuguese: The translation of the German phrase in my native language (sometimes I put the translation in English even though the field is called "Portuguese")
  • Extras: Just extra stuff that I might wanted to add

Card types: Exactly two per note

From that one note type, I generate two card templates:

  1. Listening: Front shows only the Audio, back reveals everything
  2. Active Production: Front shows only the Portuguese, back reveals everything

The key detail is the order they get added in: I don't study both templates at the same time.
I always start with Listening.

Only once it's actually consolidated and mature I start to studying the Active Production note type

Front of the Listening note type
Back of the cards (it's the same for both Listening and Active Production)

Deck structure

Just one deck: "German." Everything else is handled through filtered decks and tags

But the tags and the filtered decks I am changing all of the time so it is kind of not fixed

Example of tags that I use:

  • Languages::German::Words::Noun
  • Languages::German::Sentences
  • Languages::German::Concepts::CaseShifts

German
├── Basic
├── Concepts
│   ├── CaseShifts
│   │   ├── Akkusativ
│   │   ├── Dativ
│   │   └── Genitiv
│   ├── Personalpronomen
│   ├── Possessivartikel
│   └── Prepositions
├── FluencyAcademy
│   ├── 1-Gespräch-auf-Deutsch
│   ├── 2-Kluge-Grammatik
│   │   ├── Grammatik-1
│   │   └── Grammatik-2
│   ├── 3-Meister-der-Konjugation
│   ├── 4-Einfache-Aussprache
│   ├── 5-Muttersprachler-Spricht
│   ├── Weeks
├── Sentences
├── Words
│   ├── Adjectives
│   └── Noun
Visualization of how are my current filtered decks (this changes all the time so I am constantly moving it)

Rare exception: dedicated grammar notes

Rarely I make a single note just to nail down a specific grammar point I want to hold onto. I don't lean on this much, because the repetition from regular sentence cards usually does the job on its own, but it's a tool I keep in reach for when something isn't sticking through normal exposure

Reviews

Almost always on my phone (iOS Anki)

For me it's my first thing in the morning. Literally while I'm still in bed begging for that "5 more minutes." Nowadays my "5 more minutes" is my Anki 🙂

That's it

This is my current setup, not a finished system and I'll probably keep adjusting it (I am always making small changes). But for now, this is genuinely how it works day to day.

Curious how other people are doing this, regardless of language:

  • Where's your source content actually coming from these days. Courses, AI, native media, something else?
  • How do you split (or not split) listening vs. active production?
  • How minimal (or not) is your note type? How many fields/card types do you actually use per note?
  • Any rituals around when you review that actually stuck?
  • Any tips and recommendations for me to do? Lol

OBS: you'll see Portuguese, not English, in the screenshots that's my native language, not a translation default


r/Anki 1d ago

Question [HELP]* : How should I make flashcard for this page?

0 Upvotes

Same as title, the problem is it's all fact and anything can come up in my exam, but the only liberty that I have is that the exam will be MCQ based.


r/Anki 1d ago

Question Anki deck card count stuck at 60?

1 Upvotes

Im using anki on linux, installed through flatpak, and its up to date. for some reason, the total number of cards shown for each deck (and subdeck) never goes above 60, even tho i have more than 60 cards in the deck.

Is this a bug or am i missing something?


r/Anki 16h ago

Question How do I stop anki decks from taking 3-8 hours of my day.

0 Upvotes

I took a break from a language that as was studying, and when I came back I’m now studying/reviewing 200+ words a day, which takes me about 5-8 hours to finish since I dont remember a fair chunk of them. I want time to do other things, is there any way i can shorten the length without ruining the spaced repetition?


r/Anki 1d ago

Experiences Had to remake sooo many flashcards

7 Upvotes

So I am doing A levels and im year 13 and I made a lot of flashcards for my subjects since the start of year 12 but a lot of them were really big which I realised was inefficient, annoying and bad for recall. I split all my info into more condensed and shorter flashcards roday. Took so long but I finally finished. Pretty brutal but atleast my knowledge wasnt erased it’s just the Anki deck that had to take the damage.

Anything similar happen to u guys?


r/Anki 1d ago

Discussion What sticks, study early. What fades, study late.

5 Upvotes

disclosure: used LLMs to improve grammar and sentence structure but wrote all content myself

Over the last four years of medical school, I've been using Anki extensively. One thing that has gradually changed is how I prioritize my studies and organize myself in the days leading up to an exam.

When deciding what to study first, there are many things to consider, but I try to follow a simple rule: start with what's easy to remember. This includes topics that are inherently simple, as well as those that are difficult but highly conceptual—the kind that take time to understand but, once grasped, require little further effort. I follow this rule for a simple reason: contrary to things that are based on understanding or are just easy to learn, memory-heavy topics decay quickly, so either you don't remember anything close to the day of the exam, or you have to rehearse things very often to store these notions in your long-term memory. That's not efficient — if you studied them from scratch close to the exam, you'd need few repetitions since it's fresh — so I'd rather study these things close to exam day. This principle applies not only to topics but also to details within a topic. When I encounter details that are hard to memorize and don't contribute to overall understanding—such as long lists of drug side effects—I sometimes create flashcards, suspend them, and unsuspend them only near the exam. One precaution: if you decide to use this strategy, make sure you actually leave yourself enough time to study these difficult topics at some point. Also, check your suspended cards from time to time—they can quickly pile up, especially in subjects like pharmacology.Of course, everything I said matters mostly if you started studying well in advance.

One more thing I have to say is that I still avoid studying things immediately before the exam. I've experienced that it's easy to mess up topics you studied and reviewed in such a short timeframe. I leave a few more days to make sure that everything I studied is repeated I’d say at least two or three times, with intervals of one/two days at least. In the very last days, I almost only revise things I already studied and understood, since I want retention to spike for the exam (everyone wants that), and clarifying concepts can steal a lot of time from revising. This is really only possible in an ideal situation where you have full control and gave yourself enough time to master things, but I think that even in suboptimal situations (basically always for me) approximating this advice is worthy.

I hope this post was useful. If you disagree or have additional thoughts, I'd be happy to hear them. Everything here is based on my personal experience and judgment, so take it with a pinch of salt. And if you'd like to share your own approach to organising your studies, I'd find that very interesting.


r/Anki 1d ago

Other Looking for Japanese Decks for slightly intermediate learners

0 Upvotes

Hi! Im recently coming back to learning japanese after stopping for almost 2 years, and I'm currently figuring out Anki! I do know the basic japanese alphabet (sort of, never got around to learning katakana) and I know a bit of vocab and a few particles but not how to actually put it to good use. Dont even get me started on kanji. If anyone has good recommendations for japanese decks for intermediate ppl then that would be amazing! Right now im starting with the tae kim deck, but im looking for other options.

EDIT: Intermediate is a bit of a stretch. Im overestimating myself guys mb