u/Free_Cartographer619

▲ 9 r/MedSchoolAnkiIndia+1 crossposts

How should I handle new Anki cards after learning a topic?

My current approach is to press Again on all 100 new cards once, even if I can recall most of them.

My thinking is: since these are new cards, I want to let Anki's algorithm know that I'm new to this material and make myself recall everything at least once.

For example, I study and understand hernia, then make 100 cards. On the first pass, I might remember 90 easily and forget 10.

Instead of pressing Good on the 90 and Again on the 10, I press Again on all 100, so I have to recall everything once more from scratch.

Is this a good approach, or am I unnecessarily resetting cards that I already know?

What would be the best way to handle new cards in this situation?

reddit.com

Ankidriod - Cyberpunk theme

I have personalized the Ankidroid interface to enhance its aesthetic appeal. Anyone be interested in the CSS styling can copy this code.

To begin, navigate to the AnkiDroid main screen. Select the "three dots" icon, then proceed to "manage note types." Locate your desired note type and click the icon featuring "three lines with a pen symbol." From there, access the "CSS styling" section and copy the provided content.

Code ⬇️

.card { font-family: "Inter", "Segoe UI", Arial, sans-serif; font-size: 26px; line-height: 1.7; text-align: left;

max-width: 94%;
margin: auto;
padding: 24px;

background: linear-gradient(180deg, #151824 0%, #0d1117 100%);
color: #EAFBF7;

border: 2px solid #38BDF8;
border-radius: 18px;

box-shadow:
    0 0 10px rgba(56,189,248,0.30),
    0 0 25px rgba(34,211,238,0.15);

position: relative;
overflow: hidden;

}

/* Default text */ .card, .card * { color: #EAFBF7; }

/* ========================= / / Text Formatting / / ========================= */

/* Bold */ b, strong { color: #FFD54F !important; font-weight: 700; }

/* Italic */ i, em { color: #C084FC !important; font-style: italic; }

/* Underline */ u { color: #4ADE80 !important; text-decoration-color: #4ADE80; }

/* Headings */ h1 { color: #00E5FF !important; font-size: 1.8em; font-weight: 700; }

h2 { color: #38BDF8 !important; font-size: 1.6em; font-weight: 700; }

h3 { color: #A78BFA !important; font-size: 1.4em; font-weight: 700; }

h4 { color: #F472B6 !important; font-size: 1.2em; font-weight: 700; }

h5, h6 { color: #FB7185 !important; font-weight: 700; }

/* Lists */ ul, ol { padding-left: 24px; }

li::marker { color: #38BDF8; }

/* Links */ a { color: #38BDF8; text-decoration: none; }

a:hover { color: #7DD3FC; }

/* Images */ img { width: 108%; max-width: 108%; margin-left: -4%; height: auto;

border-radius: 14px;
border: 2px solid #38BDF8;

box-shadow:
    0 0 12px rgba(56,189,248,.35);

}

/* Horizontal line */ hr { border: none; height: 2px; background: linear-gradient(to right, transparent, #38BDF8, transparent); margin: 24px 0; }

/* Text selection */ ::selection { background: #38BDF8; color: black; }

u/Free_Cartographer619 — 22 days ago