记录下如何自动化听写并制作卡片导入Anki
Table of contents
Open Table of contents
比较对错
=IF(A1<>B1, B1, "")
translate
=GOOGLETRANSLATE(A1,"en","zh-CN")
anki
export to csv —> anki-file-import —> awesomeTTS import
I need to record more about the anki, the inspiration is from computer-science-flash-cards, knowledge is not only to learn once to remember it, repeat and practice is important too, so I am precious that anki here.
There are 2 questions:
- too many cards, how to arrange to study?
- refer to anki filter, we could use the overall rule to filter them.
- whats the meaning of the memory parameters?
- refer to anki parameters, to know the internal, complex point, diff type cards(easy, normal, hard), the duration will be computed by the multiplication of the interval and the complex factor, the factor will be changed by the answer of the card.
- how to make decks and cards?
- why we make cards?
- to memory the basic points, these points dont have the connections mostly.
- the important points are:
- tag
- easier to filter
- format automatically
- better to use different way to input, such as vscode
- tag
- why we make cards?
anki for vscode
## recursion
```python
def factorial(n):
# Base case: factorial of 0 or 1 is 1
if n == 0 or n == 1:
return 1
# Recursive case: factorial of n is n multiplied by factorial of (n-1)
else:
return n * factorial(n-1)
\```