Skip to content

Instantly share code, notes, and snippets.

View ThomasHineXYZ's full-sized avatar

Thomas Hine ThomasHineXYZ

View GitHub Profile
@ThomasHineXYZ
ThomasHineXYZ / gist:3590771aa77df11cc97ff619514812fb
Last active February 22, 2021 02:58
Pokemon Nature highlighting for spreadsheet software
Column M is the column named Nature for me, but you do have to leave it as 1 for that column.
Stat:
Increase
Decrease
Attack:
=IF(OR(INDEX(COUNTIF(M1,{"Lonely"; "Brave"; "Adamant"; "Naughty"}),)), TRUE, FALSE)
=IF(OR(INDEX(COUNTIF(M1,{"Bold"; "Timid"; "Modest"; "Calm"}),)), TRUE, FALSE)
@ThomasHineXYZ
ThomasHineXYZ / KeepToMarkdown.py
Last active July 20, 2024 17:45
Google Keep "Takeout" to Markdown Converter
#!/usr/bin/env python
# Google Keep "Takeout" to Markdown Converter
# This allows you to convert your Google Keep notes that are downloaded from
# Google's "Takeout" system. This works with Nextcloud's Notes system.
from datetime import datetime
import json
import os
import shutil