Anki is a great open source flashcard app that can be used to learn anything.
This Gist is a full end to end example of how to:
- export Anki decks from Anki
- import Anki decks into MySQL
- edit Anki decks using MySQL
- export Anki decks from MySQL
Anki is a great open source flashcard app that can be used to learn anything.
This Gist is a full end to end example of how to:
| # Author: Linwood Creekmore | |
| # Email: valinvescap@gmail.com | |
| # Description: Python script to pull content from a website (works on news stories). | |
| #Licensed under GNU GPLv3; see https://choosealicense.com/licenses/lgpl-3.0/ for details | |
| # Notes | |
| """ | |
| 23 Oct 2017: updated to include readability based on PyCon talk: https://github.com/DistrictDataLabs/PyCon2016/blob/master/notebooks/tutorial/Working%20with%20Text%20Corpora.ipynb | |
| 18 Jul 2018: added keywords and summary |
| javascript:(function() { | |
| function copyToClipboard(text) { | |
| if (window.clipboardData && window.clipboardData.setData) { | |
| /*IE specific code path to prevent textarea being shown while dialog is visible.*/ | |
| return clipboardData.setData("Text", text); | |
| } else if (document.queryCommandSupported && document.queryCommandSupported("copy")) { | |
| var textarea = document.createElement("textarea"); | |
| textarea.textContent = text; |
| function UndoItem (perform, data) { | |
| this.perform = perform; | |
| this.data = data; | |
| } | |
| /** | |
| * UndoStack: | |
| * Easy undo-redo in JavaScript. | |
| **/ |