### Website Language Configuration Examples Source: https://github.com/ncase/remember/blob/gh-pages/translations.txt Examples of language configuration entries, demonstrating the structure for defining language codes, native names, page URLs, language switch prompts, and casual responses for 'yes' and 'no'. Each entry also includes optional translator credits and a reference to the original English version. ```Plain Text en English ./ Would you like to switch to English? Sure! Nah ex Example Language ./ex.html Would you like to switch to Example Language? Sure! Nah translated by Your Name original in english zh 简体中文 ./zh.html 想要切换成简体中文吗? 好的! 算了 由Shaoliang Nie翻译 Chih-Yu Chin校对 原文为英语 fr Français ./fr.html Voulez-vous voir la version française ? Ouais ! Nan traduit par azarz et relu par arnaudgregoire original en anglais ru Русский ./ru.html Хочешь переключиться на Русский язык? Конечно! нет перевод toby3d original in English es Español ./es.html ¿Querrías cambiar a la versión en español? ¡Vale! Nanai traducido por SantiagoGnzlz y Enrique Mendoza original in English it Italiano ./it.html Vuoi passare alla versione in Italiano? Ovvio! Nah tradotto da Lele originale in Inglese ca Català ./ca.html Voldries canviar a la versió en catalan? Val! No traduit per saimonmoore original in English pt Português ./pt.html Gostaria de mudar para o idioma português? Óbvio! Nah Traduzido por Ramon Mendes original in English de Deutsch ./de.html Möchten Sie zu Deutsch wechseln? Ja! Nein Übersetzt von herrhundt original in English tr Türkçe ./tr.html Türkçe'sini okumak ister misin? Tabii! Yok çeviri Oğul Can Yurdakul aslı İngilizce ar العربية ./ar.html هل تودّ القراءة باللغة العربية؟ نعم لا ترجمة: عبدالرحمن التميمي النسخة الأصلية باللغة الإنجليزية cs Čeština ./cs.html Chcete přepnout na češtinu? Jasně! Ne přeložila Karin Neumannová original in English hu Magyar ./hu.html Lenne kedved magyarul olvasni? Naná! Dehogyis fordította czondi original in English fa فارسی ./fa.html آیا می‌خواهید به زبان فارسی تغییر دهید؟ حتما! نه ترجمه توسط امیرمحمد محمدی نسخه اصلی به زبان انگلیسی ka ქართული ./ka.html გინდა გადართო ქართულ ენაზე? კი! არა მთარგმნელი რაზმიკ ბადალიანი original in English ``` -------------------------------- ### Example Flashcards for Leitner Box System Source: https://github.com/ncase/remember/blob/gh-pages/words/Draft 2.md Provides examples of flashcards that can be used with the Leitner Box system, demonstrating typical question and answer formats for knowledge retention. ```APIDOC FlashcardExamples: - Question: "What does the \"Forgetting Curve\" look like?" Answer: "" - Question: "Leitner Box study schedule" Answer: "" - Question: "The most popular Spaced Repetition System app (as of Sep 2018) is..." Answer: "Anki (free, open source)" ``` -------------------------------- ### Leitner Box Physical Setup Instructions Source: https://github.com/ncase/remember/blob/gh-pages/words/Draft 2.md Describes the physical steps required to construct a Leitner Box for spaced repetition learning, including acquiring materials and creating internal divisions. ```APIDOC LeitnerBox: setup(): 1. Acquire a physical box. 2. Create internal dividers to separate the box into multiple levels (e.g., 7 levels). ``` -------------------------------- ### Leitner Box Card Management and Review Logic Source: https://github.com/ncase/remember/blob/gh-pages/words/Draft 2.md Explains the rules for placing new flashcards into the system, how to conduct reviews, and the logic for moving cards between levels based on correctness. ```APIDOC LeitnerBox: addCard(card: Flashcard): - New flashcards are always placed into Level 1. reviewLevel(level: int): - For each card in the current level: - If the card is answered correctly: Move the card to the next higher level (level + 1). - If the card is answered incorrectly: Move the card back to Level 1. - Special rule for Level 1: If reviewing Level 1, continue reviewing incorrect cards until they are answered correctly and can move to Level 2. ``` -------------------------------- ### Leitner Box Spaced Repetition Schedule Principles Source: https://github.com/ncase/remember/blob/gh-pages/words/Draft 2.md Outlines the core principle behind the study schedule for each level within the Leitner Box system, emphasizing the doubling duration for higher levels to optimize active recall. ```APIDOC LeitnerBox: studySchedule: - Principle: The duration between reviews for each successive level approximately doubles. - Goal: Ensure cards are reviewed just as they are about to be forgotten, strengthening weakest points. ``` -------------------------------- ### Define Spaced Repetition and Core Principles Source: https://github.com/ncase/remember/blob/gh-pages/index.html This section outlines the fundamental concepts and definitions related to Spaced Repetition, including its components, common pitfalls in learning, historical figures, and the behavior of the Forgetting Curve. It also details rules for the Leitner Box method and qualities of effective flashcards. ```APIDOC SpacedRepetition: definition: "testing + time" ineffective_practices: - "lectures" - "cramming" - "re-reading" mythology_reference: goddess_of: "Memory" mother_of: "Inspiration" recall_spacing: "increasing gaps" pioneer: "Hermann Ebbinghaus" forgetting_curve: without_recalls: "decays quickly, then slowly (exponential decay)" with_well_spaced_recalls: "gaps between recalls increase in length" leitner_box_rules: gap_doubling: "double the gap (# of days between reviews) for each Level" card_right: "move up one Level" card_wrong: "move back to Level 1" flashcard_qualities: - "small" - "connected" - "meaningful" ``` -------------------------------- ### CSS Styling for Patreon Supporters Display Source: https://github.com/ncase/remember/blob/gh-pages/supporters/index.html This CSS defines the visual layout and appearance for a page listing Patreon supporters. It includes global body styles, specific rules for two main supporter sections (#ppn and #pn), and a multi-column layout for a third section (#n). Styles cover element dimensions, positioning, text properties, and image display. ```CSS body{ background: #fff; width: 450px; margin: 25px auto; font-family: Helvetica, Arial, sans-serif; font-weight: 100; font-size: 21px; color: #333; overflow-x: hidden; } #ppn{ overflow: hidden; padding-bottom: 20px; text-align: center; } #ppn > div{ position: relative; width: 150px; height: 210px; text-align: center; display: inline-block; margin-right: -6px; } #ppn > div > img:nth-child(1){ position: absolute; left: 0; width: 150px; bottom: 30px; } #ppn > div > img:nth-child(2){ position: absolute; width: 50px; right: 5px; bottom: 30px; } #ppn > div > span{ display: block; position: absolute; bottom:0; width: 150px; height: 20px; /*text-transform: lowercase;*/ } #pn{ margin-top: 15px; overflow: hidden; font-size: 18px; padding-bottom: 20px; text-align: center; } #pn > div{ display: inline-block; } #pn > div > img{ width: 40px; position: relative; top:10px; } #pn > div > span{ /*text-transform: lowercase;*/ } #n{ margin-top: 30px; overflow: hidden; font-size: 16px; padding-bottom: 20px; text-align: center; -webkit-columns: 100px 3; -moz-columns: 100px 3; columns: 100px 3; } ``` -------------------------------- ### Define Mitochondria and Endosymbiotic Theory Source: https://github.com/ncase/remember/blob/gh-pages/index.html This section provides definitions and key facts about mitochondria, including its function, location, and the widely accepted Endosymbiotic Theory explaining its origin. It clarifies terms like eukaryotic and prokaryotic cells. ```APIDOC Mitochondria: description: "organelle, powerhouse of the cell" found_in: "almost all eukaryotic organisms" eukaryotes: definition: "cells that have a nucleus" note: "'eu'=good, 'karyon'=kernel" prokaryotes: definition: "cells that DON'T have a nucleus" note: "'pro'=before, 'karyon'=kernel" origin_hypothesis: "Endosymbiotic Theory" endosymbiotic_theory_details: note: "'endo'=inner, 'sym'=together, 'bio'=living" arose_around: "~1.5 billion years ago" event: "when a prokaryote was eaten by another cell, survived, and lived inside" ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.