Skip to content

Instantly share code, notes, and snippets.

View crazzle's full-sized avatar

Mark Keinhörster crazzle

View GitHub Profile
@crazzle
crazzle / energy_awtrix.yml
Last active June 9, 2025 19:47
AWTRIX Solar Energy Monitor
---
blueprint:
name: AWTRIX Solar Energy Monitor
description: >
This blueprint will show the current solar energy received.
It uses a icons 54156 (solar-green), 50557 (solar-white-dyn), 50546 (solar-static) that you need to install.
domain: automation
input:
@crazzle
crazzle / tmux-cheatsheet.markdown
Created December 17, 2018 20:03 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@crazzle
crazzle / mnist.py
Created November 15, 2017 09:23 — forked from akesling/mnist.py
import os
import struct
import numpy as np
"""
Loosely inspired by http://abel.ee.ucla.edu/cvxopt/_downloads/mnist.py
which is GPL licensed.
"""
def read(dataset = "training", path = "."):