Skip to content

Instantly share code, notes, and snippets.

@grinsted
grinsted / color_fun.py
Created February 26, 2025 13:38
nice colorgradients using SR2Lab (or OKLab)
import numpy as np
from matplotlib import colors
import matplotlib.pyplot as plt
def lch_to_lab(LCh):
a = np.cos(LCh[2] * np.pi / 180) * LCh[1]
b = np.sin(LCh[2] * np.pi / 180) * LCh[1]
return np.array((LCh[0], a, b))
@grinsted
grinsted / SIA-solution2025.ipynb
Created March 26, 2025 11:53
shallow ice approximation
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@grinsted
grinsted / compress_video.ipynb
Created March 28, 2025 09:16
compress phone videos to make space
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@grinsted
grinsted / test_northbound.py
Created September 16, 2025 06:57
minimal test of Northbound login, and fetching of station list
import requests
_host= 'https://eu5.fusionsolar.huawei.com'
_username = 'test'
_password = 'test'
url = _host + '/thirdData/login'
headers = {
'accept': 'application/json',
}