diff --git a/css/MengNaYaPiJianTi-1.ttf b/css/MengNaYaPiJianTi-1.ttf new file mode 100644 index 0000000..707f9d2 Binary files /dev/null and b/css/MengNaYaPiJianTi-1.ttf differ diff --git a/css/comic-zh-Hans.css b/css/comic-zh-Hans.css new file mode 100644 index 0000000..042b46e --- /dev/null +++ b/css/comic-zh-Hans.css @@ -0,0 +1,335 @@ +/* FONT FACE */ +@font-face { + font-family: "MengNaYaPiJianTi-1"; + font-style: normal; + font-weight: 400; + src: url(MengNaYaPiJianTi-1.ttf) format('truetype'); +} + +/* HTML & BODY */ +html, body{ + width:100%; + height:100%; + scroll-behavior: smooth; +} +body{ + background: #eeeeee; + margin:0; + font-family: "MengNaYaPiJianTi-1", Helvetica, Arial; + font-size: 22px; + line-height: 1.2em; + overflow-x:hidden; +} +/* fake bold */ +b, strong{ + font-weight: normal; + text-shadow:1px 0 0 currentColor; + letter-spacing: 1px; +} + +a{ + color:#5b8df1; +} +a:hover{ + color:#8aadf5; +} + +/**********/ +/* SPLASH */ +/**********/ + +.divider{ + position: relative; + width: 100%; + color: #fff; + text-align: center; + background: #000; +} +.divider_title{ + height: 280px; +} +.divider_small_height{ + height: 220px; +} +.divider_big_height{ + height: 300px; +} +@media (max-width:1000px) { + .divider_title{ + height: 370px; + } + .divider_small_height{ + height: 290px; + } + .divider_big_height{ + height: 370px; + } +} +@media (max-width:800px) { + .divider_title{ + height: 450px; + } +} +.divider > #divider_container{ + width: 100%; + position: absolute; + margin-top: 50px; + pointer-events: none; +} +.divider > #divider_container > div{ + width: calc(100% - 100px); + min-width: 550px; + max-width: 960px; + margin: 0 auto; +} +.divider > #divider_container > #chapter_name{ + font-size: 100px; + line-height: 0.95em; + text-align: left; + margin-bottom: 10px; +} +.divider > #divider_container > #chapter_links{ + text-align: right; + pointer-events: all; +} +.divider > #divider_container > .small_of{ + font-size:0.75em; line-height:0; +} +.divider > #divider_container > #chapter_subtitle{ + text-align: right; + font-size: 30px; +} +.divider > iframe{ + width:100%; + height:100%; + position: absolute; + border: none; + top:0; left:0; +} + + +/*********/ +/* COMIC */ +/*********/ + +.comic{ + position: relative; + overflow:hidden; + width:610px; + margin: 50px auto; + text-align: center; +} +.comic panel{ + display: inline-block; + width: 400px; + height: 300px; + /*border: 2px solid #ccc;*/ + margin: 5px; + position: relative; + overflow: hidden; + transition: opacity 0.5s ease-in-out; +} +.comic panel[fadeInOn]{ + opacity: 0; +} +.comic panel pic{ + display: block; + position: absolute; + top:0; + left:0; + width: 100%; + height: 100%; + /*background: #bada55;*/ + background: #ccc; +} +.comic panel words{ + display: block; + position: absolute; + top:0; + left:0; + background: #fff; + /*text-align: left;*/ + padding: 15px; +} +.comic panel words[no-bg]{ + background: none; +} +.comic panel sim{ + display: block; + position: absolute; +} +.comic panel sim > iframe{ + border: none; + width: 100%; + height: 100%; + position: absolute; + top:0; left:0; +} +.comic panel sim > label{ + display:none; +} +.small_card{ + transform: scale(0.6, 0.6); +} +.comic_text{ + color: rgba(0,0,0,0.5); + line-height: 1em; +} +.comic_text.smaller{ + color: rgb(48, 49, 51); + font-size: 18px; + line-height: 1em; +} + +.comic_text.white{ + color: rgba(255,255,255, 0.8); + font-size: 20px; + line-height: 1em; +} + +/* from https://stackoverflow.com/a/16410273 */ +.strikeout { + position: relative; +} +.strikeout::after { + border-bottom: 0.2em solid #ff4040; + content: ""; + left: 0; + margin-top: calc(0.0em / 2 * -1); + position: absolute; + right: 0; + top: 50%; +} + +/**********/ +/* LABELS */ +/**********/ + +#labels{ + display: none; +} + +/********/ +/* MISC */ +/********/ + +#wallpaper_image{ + max-width: 400px; + max-height: 250px; +} + + +/**********/ +/* CREDITS */ +/**********/ + +#credits{ + background: #000; + overflow: hidden; +} +#credits > div{ + color:white; + margin: 50px auto 100px auto; + width: 550px; +} +#credits hr{ + border: none; + border-bottom: 10px dashed rgba(255,255,255,0.25); + margin: 1.5em 0; +} +#credits li{ + list-style-type: none; + text-indent: -1.25em; +} +#credits iframe{ + display:block; + background:#fff; + border:none; + width:500px; + height:350px; + margin:0 auto; + border-radius: 25px; +} + +#share_buttons{ + text-align: center; + margin-top: 90px; + padding-bottom: 50px; +} +#share_buttons a{ + position: relative; + transition: top 0.1s ease-in-out; + top:0px; +} +#share_buttons a:hover{ + top:-3px; +} +#share_buttons img{ + width: 40px; + height: 40px; + margin: 0 5px; + border-radius: 23px; + overflow: hidden; +} + + +/*******************/ +/* LANGUAGE PROMPT */ +/*******************/ + +#prompt{ + + width: 100%; + + background:#5b8df1; + color:#fff; + + position: fixed; + top:0; + transition: top 0.5s ease-in-out; + + text-align: center; + font-size: 30px; + padding: 15px 0 20px 0; + line-height: 1.3em; + +} +#prompt[hide=yes]{ + top:-150px; +} +#prompt a{ + + color:#5b8df1; + background: #fff; + display: inline-block; + border-radius: 5px; + + padding: 0 8px; + text-decoration: none; + cursor: pointer; + +} +#prompt a:hover{ + color:#8aadf5; +} +#translation_credits{ + pointer-events: all; +} + +#language_options{ + + position: absolute; + width: 80px; + text-align: left; + top: 8px; + left: 520px; + font-size: 21px; + line-height: 1.4em; + +} +#language_options a{ + color: #a8a8a8; +} +#language_options a:hover{ + color: #ccc; +} diff --git a/translations.txt b/translations.txt index 067417b..5d32db0 100644 --- a/translations.txt +++ b/translations.txt @@ -33,10 +33,10 @@ translated by Your Name original in english zh -中文 +简体中文 ./zh.html -Would you like to switch to Example Language? -Sure! -Nah -translated by Shaoliang Nie -original in english \ No newline at end of file +想要切换成简体中文吗? +好的! +算了 +由Shaoliang Nie翻译 Chih-Yu Chin校对 +原文为英语 \ No newline at end of file diff --git a/zh.html b/zh.html index db9b8d1..ab74d07 100644 --- a/zh.html +++ b/zh.html @@ -28,7 +28,7 @@ Good luck, and many thanks again! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> - + @@ -41,25 +41,25 @@ Good luck, and many thanks again! - + - + - + - + @@ -78,7 +78,7 @@ Good luck, and many thanks again!
- 如何类-永久性地记住任何事情 + 如何永远般地记住任何东西
@@ -125,15 +125,15 @@ If that's not possible, and your text doesn't fit in its box, you can modify att 在希腊神话中,记忆女神摩涅莫辛涅... - ...是灵感女神缪斯的妈。 + ...是灵感女神缪斯的母亲。 - + 音乐 - + 戏剧 - + 奇怪的同人小说 @@ -161,13 +161,13 @@ If that's not possible, and your text doesn't fit in its box, you can modify att - 耶. + 是啊. - 一些常见的做法例如课堂的讲课, - 填鸭式的用功,以及重复阅读, - 不仅无聊 ,还被科学表明 - 其实并不好使 。* + 一些常见的做法例如课堂式讲课, + 填鸭式用功,以及重复阅读, + 不仅无聊 ,科学研究表明 + 其实它们效果并不好 。* @@ -180,12 +180,12 @@ If that's not possible, and your text doesn't fit in its box, you can modify att - 但是,如果我说有一种学习方法, - 它有实证基础而且 好玩? + 但要是我说有一种学习方法, + 它有实证基础而且 好玩会怎么样呢? - 如果我说有一个记忆卡片游戏,你每天只要玩二十分钟, - 就可以把任何想记的 长期记住,甚至永远记住? + 又譬如说有一个记忆卡片游戏,你每天只要玩二十分钟, + 就可以把任何你想记的 长期记住,甚至永远记住? @@ -203,27 +203,23 @@ If that's not possible, and your text doesn't fit in its box, you can modify att - 而且这个游戏超酷的 。 - 我从今年早期开始用间隔重复来学习法语。 + 而且这个游戏超酷的 。我从今年刚刚开始用间隔重复法来学习法语。 - 两个 内,我学会了比高中法语课 - 两 更多的词汇。 + 两个 内,我学会了比高中法语课两 更多的词汇。 - 从此以后,我都在用间隔重复去记忆各种不同的事情... + 从此以后,我都在用间隔重复法去记忆各种不同的东西... - - 乌克丽 - 丽和弦 + + 乌克丽丽和弦 - - 计算机 - 代码 + + 计算机代码 朋友生日 @@ -242,32 +238,31 @@ If that's not possible, and your text doesn't fit in its box, you can modify att 简单来说,间隔重复 = 测试 + 时间。 - 你重复测试自己关于一件事的记忆,把重复用时间间隔开。 - (但是这样不就没有尽头了吗?啊,我们稍后会看到,这里有一个小诀窍...) + 你重复测试自己关于一件事的记忆,用时间隔开复习的次数。(但重测不就无止尽了吗?嗯,稍安勿躁,等会有个小诀窍...) - 间隔重复免费,有实证基础,而且很简单,你都可以用一个鞋盒 去实现。 + 间隔重复既免费又有实证基础,而且很简单,你都可以用一个鞋盒 去实现。 nicky闭嘴 - 那么,有什么隐情呢?为什么并不是每个人 都已经在用间隔重复? + 所以这有什么隐情?为什么不是每个人 在用间隔重复记忆法? - 好,隐情就是养成任何 新习惯都难 - - 特别是像间隔重复这么奇怪的习惯。 + 好吧 所谓的隐情就是养成任何 新习惯很难 + - 尤其是像间隔重复这么奇怪的习惯。 - 老师模式出现了 + 老师过来了 这就是我为何做这个画的很烂的互动连环画。 @@ -277,9 +272,9 @@ If that's not possible, and your text doesn't fit in its box, you can modify att - 在这个关于间隔重复的连 + 在间隔重复记忆法的连 环画中,我会让你看到它 - 为何有效,怎样起作用... + 为何>有效,怎样起作用... ...以及帮助你从今天 开始上手。 @@ -289,11 +284,7 @@ If that's not possible, and your text doesn't fit in its box, you can modify att - 而且,在整个连环画中, - 你可以在分布开来的间隔中, - 测试自己学到的东西。 - 那就是:你将用间隔重复来学习间隔重复。 - + 而且整篇连环画中,你可以在分布开来的间隔中,测试自己学到的东西。那就是:你将用间隔重复来学习间隔重复。

像这样: @@ -307,18 +298,16 @@ If that's not possible, and your text doesn't fit in its box, you can modify att - 然而,“死记硬背”不是不好吗? - 现在的我们不能就谷歌一下吗? - 我们不应该反而去学习创造力 & 批判性思维吗? + 然而,“死记硬背”不是挺好吗?如今我们不能就谷歌一下吗?我们不是应该反而去学习创造力 & 批判性思维吗? 这里没有 “反而”。 认知科学表明 你需要 记忆来支撑创造力 & 批判性思维。 - (假设要写一篇文章,然而你一个字都不认识!) + (假设要写一篇文章,但你却一字不识!) - 记忆 + 记忆 艺术 @@ -335,9 +324,7 @@ If that's not possible, and your text doesn't fit in its box, you can modify att 也不是“生活伎俩”。 - 它是一种方式,让你掌控你的头脑和心力。 - 使得长期记忆成为一个选择 。 - 滋养出你对学习的终身爱恋... + 它是一种方式,让你掌控心智,让记忆长存成为一种可能。滋养出你对学习的终身爱恋... @@ -346,13 +333,11 @@ If that's not possible, and your text doesn't fit in its box, you can modify att ...去哺育你的,内在的缪斯。 - - 当一只被手套裹着的手落在他的脊柱上,托尼斯塔克几乎没有喘气。 - 这稳重的压力是平缓的,几乎让人感到欣慰。 - 奥巴马笑了。“你的意思是,这- + + 托尼斯塔克微微喘气,此时戴着手套的手搭上他的脊背,力道平稳且舒心。奥巴马笑着道“你的意思是,这- - 让我们开始吧。 + 那我们开始吧。
@@ -373,8 +358,7 @@ If that's not possible, and your text doesn't fit in its box, you can modify att
- 间隔重复的 - 科学 + 间隔重复的科学
@@ -389,8 +373,7 @@ If that's not possible, and your text doesn't fit in its box, you can modify att 1885年,赫尔曼·艾宾豪斯进行了一项科学的自虐行为。 - 这个德国心理学家首先背下了几千个 毫无意义的单词, - 然后记录了自己遗忘程度随时间的变化,接着他发现... + 这个德国心理学家首先背下了几千个 毫无意义的单词,然后记录了自己遗忘程度随时间的变化,接着他发现了... @@ -400,8 +383,7 @@ If that's not possible, and your text doesn't fit in its box, you can modify att 遗忘曲线 - 他发现你会在最初的24小时内忘记大部分你学到的东西, - 然后 – 如果你不去回想的话 – 你剩下的记忆会指数型衰减。* + 他发现你会在最初的24小时内忘记大部分你学到的东西,然后 – 如果你不去回想的话 – 你剩下的记忆会指数级地衰减。* @@ -416,11 +398,9 @@ If that's not possible, and your text doesn't fit in its box, you can modify att - 哲学家们对记忆的辩论已经有几千年了, - 但是艾宾豪斯是第一个人去做了真正的实验。 - (实验有被复制) + 哲学家们对记忆的辩论已经有几千年了,但是艾宾豪斯是第一个人去做了真正的实验。(实验有被复制) - + 请... @@ -430,8 +410,7 @@ If that's not possible, and your text doesn't fit in its box, you can modify att 我... - 正因如此,赫尔曼·艾宾浩斯被称为 - 记忆科学的先驱。 + 正因如此,赫尔曼·艾宾浩斯被称为记忆科学的先驱。 @@ -448,8 +427,7 @@ If that's not possible, and your text doesn't fit in its box, you can modify att - 你可以看到,衰退速率越低,曲线越平缓 – - 也就是说,记忆的持续时间会越长。 + 你可以看到,记忆衰退得越慢,曲线就越平缓 ——也就是说,记忆能越持久。 @@ -459,7 +437,7 @@ If that's not possible, and your text doesn't fit in its box, you can modify att 一个人记忆衰减的快慢取决于这个人本身和TA的记忆... - 嗨!不好意思哦,你叫什么来着? + 嗨!抱歉,你叫什么来着? 呵呵。我叫susan。 @@ -470,7 +448,7 @@ If that's not possible, and your text doesn't fit in its box, you can modify att 但是一般来说,每次你去主动回想,记忆的“衰减速率”就会减慢。 - (而不是被动地去重复阅读) + (而不是你被动地去重复阅读) susan. susan. susan. susan. susan. @@ -480,7 +458,7 @@ If that's not possible, and your text doesn't fit in its box, you can modify att - (然而,如果你停止练习,记忆会继续衰减。) + (虽然说回忆练习一停下,你的记忆还是会衰减。) 好的,sarah 拜! @@ -498,11 +476,11 @@ If that's not possible, and your text doesn't fit in its box, you can modify att - 又是之前的那个模拟,在这里它有单个主动回想的时程 + 又是之前的那个模拟,这里加了单次主动回想期
- (灰线:如果没有 回想,记忆会是什么样) + (灰线为没有 回想时的记忆遗忘曲线)
- 改变回想发生的时间点,看它怎么影响这条曲线: + 调节回忆的时间点试试,看它怎么影响这条曲线:
@@ -512,16 +490,14 @@ If that's not possible, and your text doesn't fit in its box, you can modify att - 单个回想时程对记忆有一点促进...但是长期来说, - 因为记忆的指数型衰减,单个时程不能带来什么大变化。 + 单次回想期对记忆有一点促进...但是长期来说,因为记忆的指数型衰减,区区一次回想带不来什么大变化。 - 有更好的学习方法吗? - 有的!记忆的秘诀就是... + 有更好的学习方法吗?有的!记忆的秘诀就是... ...到几乎忘记的时候。 @@ -531,8 +507,7 @@ If that's not possible, and your text doesn't fit in its box, you can modify att - 为了理解,想一想训练你的肌肉。 - 如果训练太容易你的肌肉不会增长... + 为了更好的理解,想想训练你肌肉的时候。如果训练太容易你的肌肉不会增长... @@ -546,8 +521,7 @@ If that's not possible, and your text doesn't fit in its box, you can modify att - 同样的道理适用于你的脑子。 - 你需要的是有益难度:难的恰到好处。 + 此理同样适用于你的大脑。你需要的是理想的难度:难得恰到好处。 舒适 @@ -569,7 +543,7 @@ If that's not possible, and your text doesn't fit in its box, you can modify att - 所以:学习什么事最好的办法,就是选定时机去回想这件事... + 所以:学习什么东西最好的办法,就是选定时机去回想这件事... ...在你就要忘记的时候。 @@ -578,10 +552,8 @@ If that's not possible, and your text doesn't fit in its box, you can modify att - 还是之前的模拟,但是它现在有显示 - 最佳时机带 – - 那就是你正好忘了一点点 的时候。 - 把回想的时间点放到最佳时机带的中间 。怎么样? + 还是之前的模拟,但是它现在显示了 + 最佳时机带 ——那就是你正好忘了一点点 的时候。把回想时机移到最佳时机带的中间 。怎么样? @@ -593,7 +565,7 @@ If that's not possible, and your text doesn't fit in its box, you can modify att 看到了吗?如果你的回想时间点选的刚好, 你可以让衰减速率变慢一点! - 好了,如果有多个 回想时程呢? + 那么要是回想多次呢 ? @@ -602,11 +574,11 @@ If that's not possible, and your text doesn't fit in its box, you can modify att 让我们假设你 很懒 - 效率高,所以你只需要4个回想时程。 + 效率高,所以你只需要回忆4次。 问题: - 分布回想时程最好的方式是什么? + 回想时机的最佳分布方式是什么? susan @@ -616,10 +588,7 @@ If that's not possible, and your text doesn't fit in its box, you can modify att - 你应该均匀分布间隔吗? - 不断加长间隔? - 不断减短间隔? - 或者让它不可预测,助你时刻警惕? + 你应该均匀分布间隔吗?渐渐加长?渐渐减短?或让它不可预测,好让你时刻警惕? = 回想 @@ -643,8 +612,7 @@ If that's not possible, and your text doesn't fit in its box, you can modify att - 给出你最好的猜测, - 当你准备好的时候, 把卡片翻过来 ↓ + 先选好你心目中的答案,当你准备好的时候,把卡片翻过来 ↓ @@ -654,12 +622,9 @@ If that's not possible, and your text doesn't fit in its box, you can modify att - 这很不符合直觉有没有! - 你可以通过和下面的模拟互动,向自己证明这是对的。 - - 把所有回想时程全都放到最佳时机带中间 。 - 你得到了什么样的间隔分布? - + 这很不符合直觉有没有!你可以玩下面的模拟,来向自己证明这是对的。 + 请将所有回想时机全都放到最佳时机带中间 。 + 你得到了什么样的间隔分布? @@ -669,11 +634,7 @@ If that's not possible, and your text doesn't fit in its box, you can modify att - (为了证明这不是一个巧合, - 这里提供一个你可以改变 - 最初记忆衰减 & 最佳时机带的模拟。 - 去观察,在除了极端情况的几乎所有其他情况中, - 为何最好的安排仍然是“增长式间隔”!) + (为了证明这不是一个巧合,这里提供一个模拟 你可以调节起始的衰减速率 & 最佳时机带。留意一下,除了极端情况,几乎所有情况里,最好的安排仍然是“增长式间隔”!) @@ -695,25 +656,22 @@ If that's not possible, and your text doesn't fit in its box, you can modify att SUSAN! - –这个fu + –什么鬼 - ...这意味着需要更长 - 的时间再次到达最佳时机带! + ...就是说到下次最佳时机带需要更长 的时间! - 但你知道更爽的是什么吗? - 这也意味着如果你的回想时间点选的刚好... + 但你知道更爽的是什么吗?要是你选准了回想时机... - ...你就可以轻易地吧任何数量 的事情装进你的长期记忆, - 永永远远。 + ...你就可以轻易地吧任何数量 的事情装进你的长期记忆,永永远远。 @@ -723,8 +681,7 @@ If that's not possible, and your text doesn't fit in its box, you can modify att - 既然说到要通过主动回想去学习, - 就让我们主动回想下我们刚刚学到的东西: + 既然说到要通过主动回想去学习,就让我们来主动回想下我们刚刚学到的东西: @@ -735,8 +692,7 @@ If that's not possible, and your text doesn't fit in its box, you can modify att - 嗯不错哦, - 但是真的要找到 一个好的间隔重复的时间安排一定很难。是不是? + 嗯不错哦,但是真的要找到一个好的间隔重复的时间安排一定很难。是不是? @@ -777,8 +733,7 @@ If that's not possible, and your text doesn't fit in its box, you can modify att
- 间隔重复的 - 艺术 + 间隔重复的艺术
@@ -790,8 +745,7 @@ If that's not possible, and your text doesn't fit in its box, you can modify att - 你不是必须 要用一个鞋盒去实现间隔重复, - 但是这样做更有趣。 + 你不是必须 要用一个鞋盒去实现间隔重复,但是这样做更有趣。 这个就是我的私教 @@ -800,7 +754,7 @@ If that's not possible, and your text doesn't fit in its box, you can modify att ??? - 我的教员们 + 它们助我渐行渐远 @@ -978,8 +921,7 @@ If that's not possible, and your text doesn't fit in its box, you can modify att - 来到现在,这里是一个逐月模拟。 - 用这个去提前计算出 能用间隔重复学习到多少东西! + 接下来是一个逐月模拟。用这个来预计出 能用间隔重复学习到多少东西吧! @@ -989,10 +931,10 @@ If that's not possible, and your text doesn't fit in its box, you can modify att - 就是这样。这就是你如何能让长期记忆成为一个选择 。 + 就是这样。这就是你如何能让记忆长存成为一种可能 - 让刚刚学到的渗透进来。休息一下,然后开始回想: + 把刚刚所学的沉淀一下。休息一会儿,然后来回想一下: @@ -1002,17 +944,17 @@ If that's not possible, and your text doesn't fit in its box, you can modify att - 间隔重复几乎好到不真实。 + 间隔重复似乎妙不可言。
- 它确实不真实...如果 你陷入一些常见陷阱。 + 它确实是如此...人们常常因此陷入了一些认知陷阱…
- 记忆不是书架 - 用来收集随机的巨大卷集来吓唬别人。 + 记忆不是书架,收集海量的随机信息 + 不是用来哗众取宠的。 一堆 @@ -1030,8 +972,8 @@ If that's not possible, and your text doesn't fit in its box, you can modify att 废话 - 这就是说:间隔重复不起作用如果你的卡片 - 臃肿没有关联 或者毫无意味 。 + 这也就是说:如果你的卡片臃肿毫无关联 + 或者毫无意味 ,间隔重复是不起作用的 @@ -1039,7 +981,7 @@ If that's not possible, and your text doesn't fit in its box, you can modify att 记忆反而像一个拼图游戏:充满了小而连接起来的部分。 - (神经元的机制也是如此:很多小的连接的东西) + (神经元的机制也是如此:很多小而相连的东西) 重要的不是收集 ,而是连接 。 @@ -1069,11 +1011,13 @@ If that's not possible, and your text doesn't fit in its box, you can modify att
- + - + + + @@ -1092,8 +1036,8 @@ If that's not possible, and your text doesn't fit in its box, you can modify att 它太大了。信息太多。 - 让我们把它分解成更小的,连接起来的部分! - 一般来说,一张记忆卡片应该有 & 只有一个概念。 + 让我们把它分解成更小的,相连的拼图碎片! + 作为一大要则,一张记忆卡片应该有 & 仅有一个概念。 像这样: @@ -1139,14 +1083,14 @@ If that's not possible, and your text doesn't fit in its box, you can modify att - + 相互联系 - 这张卡片... 一般般。 + 这张卡片... 还行。 它正面是中文,背面是法语。 - + 学什么? - + 为什么? - - 怎么样? + + 怎么学? - + 何时? @@ -1397,8 +1341,8 @@ Remember, if your translated word is too big, you can modify the CSS! (especiall 在任何地方发现的感兴趣的任何东西! - - 所有pokémon + + 所有pokemon 现在,你把你的 答案写在背面: @@ -1433,7 +1377,7 @@ Remember, if your translated word is too big, you can modify the CSS! (especiall 这可能过于哲学,所以这里有一些 - 具体的例子关于学什么 背后的为什么: + 关于学什么 背后的为什么 的具体例子: 学什么:一门新语言 @@ -1450,8 +1394,8 @@ Remember, if your translated word is too big, you can modify the CSS! (especiall
为什么:好奇心本身!
- - 所以...你的 为什么学什么呢? + + 所以你的“为何学什么”是什么呢?
@@ -1461,8 +1405,8 @@ Remember, if your translated word is too big, you can modify the CSS! (especiall - 你现在有了学什么和为什么...但是我们还需要选一个怎么样! - 这就是说,你想用什么工具/软件呢? + 你现在有了学什么和为什么...但是我们还需要选一个怎么学! + 就是在问,你想用什么工具/软件呢? 我们的下一张卡片会问: @@ -1497,7 +1441,7 @@ Remember, if your translated word is too big, you can modify the CSS! (especiall
优点:用户社群很大,开源,有很多强大的功能
- 缺点:有点丑 + 缺点:有点儿丑 TinyCards (软件) @@ -1532,9 +1476,8 @@ Remember, if your translated word is too big, you can modify the CSS! (especiall - 只剩下一张卡片了! - 现在:实行间隔重复其实很简单... - 但是,把它当作一个日常习惯 很难。 + 最后一张卡片!实行间隔重复其实很简单... + 然而把它当作一个日常习惯 很难。 为什么?因为开始任何 一个新习惯都很难。 @@ -1545,7 +1488,7 @@ Remember, if your translated word is too big, you can modify the CSS! (especiall 难,但是很直接。 - 习惯的科学表明,如果你在相同的信号下,做一件相同的事情, + 习惯的科学表明,如果你在相同的提示信号下,做一件相同的事情, 一次又一次... @@ -1567,7 +1510,7 @@ Remember, if your translated word is too big, you can modify the CSS! (especiall 谢谢,你也是! - ...它将变成一个习惯,无论是更好或还是更坏。 + ...它将变成一个习惯,无论或好或坏。 所以对于间隔重复这个习惯,我们的问题是: @@ -1581,7 +1524,7 @@ Remember, if your translated word is too big, you can modify the CSS! (especiall - 比如,你可以在这些时候玩间隔重复这个游戏... + 比如,你可以在以下时刻玩间隔重复的游戏... 醒后 @@ -1647,7 +1590,7 @@ Remember, if your translated word is too big, you can modify the CSS! (especiall - 但据我说,我想助你
今天 就掌控你的记忆。 + 但就如我所说的,
我想今天 就助你
掌控你的记忆。
不是最终,也不是
明天,是今天。 @@ -1660,9 +1603,9 @@ Remember, if your translated word is too big, you can modify the CSS! (especiall 为了帮你...
- 让我们下载一些 + 来下载一些
- 酷炫的好东西 + 酷炫的好东西吧
@@ -1706,8 +1649,8 @@ Remember, if your translated word is too big, you can modify the CSS! (especiall - (这些可以是你间隔重复一开始几天的用量,旨在助你起航! - 作为额外好处,你还可以永久性地记住今天在这里学到的一切。) + (这些可以作为你间隔重复起始几天的用量,旨在助你起航! + 作为额外的好处,你还可以永久性地记住今天在这里学到的一切。) @@ -1759,7 +1702,7 @@ Remember, if your translated word is too big, you can modify the CSS! (especiall 如果你是学生,我希望间隔重复 - 助你更自信,并把学习掌握在自己手里。 + 助你更自信,并将学习掌握在自己手中。
@@ -1767,7 +1710,7 @@ Remember, if your translated word is too big, you can modify the CSS! (especiall 如果你是老师, - 拜托哦拜托 把间隔重复告诉早日你的学生们 + 拜托哦
拜托 把间隔重复告诉早日你的学生们 (& 其他有据可循的学习习惯)。
@@ -1776,11 +1719,11 @@ Remember, if your translated word is too big, you can modify the CSS! (especiall 但是不管你在不在学校里, - 我希望间隔重复帮助你发展你的记忆,你的头脑和心力, + 我希望间隔重复帮助你发展你的记忆,你的心智, 你的缪斯... - - “不!”线粒体尖叫到,此时她正滑向细胞温暖湿润的舌头的底端。“我不-” + + “不!”线粒体尖叫到,此时她正滑入细胞温暖湿润的喉咙。“我不-” @@ -1857,12 +1800,12 @@ Remember, if your translated word is too big, you can modify the CSS! (especiall - PUBLIC DOMAIN + 公有领域 - 这意味着你可以免费把它用于教育,个人,甚至商业目的。 - 你已经有了我的许可! + 也就是说你可以免费把它用于教育,个人,甚至商业目的。 + 而且你已经有了我的许可! (下载代码) @@ -1874,7 +1817,7 @@ Remember, if your translated word is too big, you can modify the CSS! (especiall 但是,多亏我的1000+的Patreon支持者我才能做成这个。 他们让我继续做我爱做的。谢谢你们!💖 - (你也想要下注?点击这里!) + (你也想要加码?点我!)

@@ -1893,7 +1836,7 @@ Remember, if your translated word is too big, you can modify the CSS! (especiall
  • 🤓 - Augmenting Long-Term Memory + 增强长期记忆(Augmenting Long-Term Memory) by Michael Nielsen 向我展示了间隔重复不仅是一个记忆的工具, 也是深度理解的工具。它甚至可以是一种生活 方式。 @@ -1901,43 +1844,44 @@ Remember, if your translated word is too big, you can modify the CSS! (especiall
  • 💬 - Fluent Forever + 《永远流利(Fluent Forever)》 by Gabriel Wyner 最终说服我(重新)开始学习法语, 并且搭建一个Leitner盒。(我的64天日历是从这本书里改装来的) + 译注:暂无中译本,台译本书名为《跟各國人都可以聊得來:語言大師教你如何掌握三大關鍵快速精通各國語言,學了就不忘!》
  • 🃏 - 20 Rules for Cards + 卡片的20条法则(20 Rules for Cards) by Piotr Wozniak 叫我把间隔重复发挥到极致。 (备注:这个作者也发明了Anki使用的算法!)
  • - 还有我最喜欢的关于学习的科学的读物: + 还有我最喜欢的有关学习的科学的读物: @@ -1945,13 +1889,13 @@ Remember, if your translated word is too big, you can modify the CSS! (especiall

    如果你想要边玩边学习更多的东西, - 记得去看Explorable Explanations! 🕹️ + 记得去看可探索解释(Explorable Explanations)! 🕹️


    - 更多的感谢 + 更多感谢

    @@ -2066,7 +2010,7 @@ WE'VE STILL GOT THE INTERFACE LABELS & FLASHCARDS TO TRANSLATE 记得,继续! - 现在先这样!继续 + 目前都搞定了!继续往下滑
    @@ -2223,13 +2167,13 @@ When you translate, make sure the [N] is there if it was there in the original. 一张为你手机准备的锁屏壁纸, - 我亲爱的朋友Chris Walker做的,一段关于怎么手工制作你自己的Leitner盒的视频! + 我亲爱的朋友Chris Walker做的,一段关于如何手工制作属于你自己的Leitner盒的视频!


    - (这里是一个相似的教程,宜家风格:) + (这里是一个相似的教程,仿宜家风格的:)


    点击下载PDF
    @@ -2258,7 +2202,7 @@ When you translate, make sure the [N] is there if it was there in the original. [pdf], - Anki, + Anki App, 以及 TinyCards! @@ -2277,7 +2221,7 @@ When you translate, make sure the [N] is there if it was there in the original. - 如何类永久性地记住任何事情 + 如何永远般地记住任何事情 一本关于记忆的艺术 & 科学的互动式连环画 @@ -2319,7 +2263,7 @@ Good luck!

    - 间隔重复 + 间隔重复
    @@ -2335,7 +2279,7 @@ Good luck!
    - 3个常见但无效的学习/教授惯例是... + 3个常见但无效的学习/教学惯例是...
    @@ -2348,13 +2292,13 @@ Good luck! 在希腊神话中, 女神____ 是女神________ - 的妈 + 的母亲
    - 记忆是灵感的妈 + 记忆是灵感的母亲
    @@ -2364,7 +2308,7 @@ Good luck!
    - 分布回想时程的最佳方式是... + 回想时机的最佳分布方式是...
    @@ -2386,7 +2330,7 @@ Good luck!
    - ( 任何回想时程的)遗忘曲线长什么样... + ( 任何回想的)遗忘曲线长什么样...
    @@ -2397,13 +2341,13 @@ Good luck!
    - ( 排的好的回想时程的)遗忘曲线长什么样... + ( 排好回想时机的)遗忘曲线长什么样...
    - (备注:回想时程间的间隔递增 ) + (备注:回想时机的间隔递增 )
    @@ -2415,7 +2359,7 @@ Good luck!
    在Leitner盒里, 我们______ - 每个等级之间的间隔(回想时程之间的天数) + 每个等级之间的间隔(回想时机间隔的天数)
    @@ -2470,7 +2414,7 @@ Good luck!
    - 这是什么咯? + 这是什么?
    @@ -2486,7 +2430,7 @@ Good luck!
    - 这是什么咯? + 这是什么?
    @@ -2576,13 +2520,13 @@ Good luck!
    - 根据内共生学说,线粒体的起源是... + 根据内共生学说,线粒体的首次出现是在什么时候?
    - 因为一个原核细胞被另一个细胞吃了 + 当一个原核细胞被另一个细胞吃了