Skip to content

Instantly share code, notes, and snippets.

type: sidebar
path: "0"
cards:
- type: custom:bubble-card
card_type: button
button_type: switch
modules:
- default
show_icon: false
scrolling_effect: false
@lzambarda
lzambarda / google-keep-to-standard-notes.js
Last active January 5, 2023 15:24
Google Keep to Standard Notes converter
/**
* 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
@vinovator
vinovator / checkDuplicates.py
Last active July 28, 2025 18:29
Python script to find duplicate files from a folder
# 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