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
| type: sidebar | |
| path: "0" | |
| cards: | |
| - type: custom:bubble-card | |
| card_type: button | |
| button_type: switch | |
| modules: | |
| - default | |
| show_icon: false | |
| scrolling_effect: false |
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
| /** | |
| * Basic Google Keep to Standard Notes importer made by | |
| * https://github.com/lzambarda because he was too lazy to manually migrate his | |
| * notes. | |
| * | |
| * How to use: | |
| * 1) Use Google Takeout to export a copy of your Keep notes. The folder you | |
| * will download will contain two files for each note: | |
| * - a sassy html visually resembling your note | |
| * - a tasty JSON file containing the true format of the note |
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
| # checkDuplicates.py | |
| # Python 2.7.6 | |
| """ | |
| Given a folder, walk through all files within the folder and subfolders | |
| and get list of all files that are duplicates | |
| The md5 checcksum for each file will determine the duplicates | |
| """ | |
| import os |