This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # Explanation: | |
| # Export a word list from Yomiwa iOS app to a file, convert to a tab-separated file, and import to Anki. | |
| # Installation: | |
| # 1. pip install jamdict | |
| # 2. Follow jamdict's github page instructions to install the dictionary database. | |
| # Usage: | |
| # In Yomiwa, add words to a list. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # Export word list from Yomiwa iOS app, convert to tab-separated file, and import to Anki. | |
| # Add example sentences by adding the word first, then by pressing analyze text and starring it. | |
| skip = 0 | |
| word_count = 0 | |
| to_write = '' | |
| reading_meanings = False # Expect meanings in the next line |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Normalize your MyAnimeList scores | |
| * | |
| * This is a tool to organize your anime into a list according to how good they are | |
| * and then assign them scores using the full scale from 1 to 10, following these (or other) percentages: | |
| * 10: 3.5%, 9: 8%, 8: 10%, 7: 14%, 6: 14.5%, 5: 14.5%, 4: 14%, 3: 10%, 2: 8%, 1: 3.5% | |
| * | |
| * HOW TO USE: | |
| * Go to a myanimelist.net anime/manga list, and choose the 'Completed' view. | |
| * Open a JavaScript console on your browser and paste this code into it and press enter. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * MyAnimeList Rewatch Counter | |
| * (+ reread manga) | |
| * | |
| * This is a tool to easily and quickly make a list of what anime you have rewatched and how many times. | |
| * Also works for reread manga. | |
| * | |
| * HOW TO USE: | |
| * Go to a myanimelist.net anime/manga list, and choose the 'Completed' view. | |
| * Open a JavaScript console on your browser and paste this code into it and press enter. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| data:text/html; | |
| charset=utf-8, | |
| <style> | |
| html,body{ | |
| margin: 0; | |
| padding: 0; | |
| } | |
| </style> |