Skip to content

Instantly share code, notes, and snippets.

View scruss's full-sized avatar
💭
🦆

Stewart Russell scruss

💭
🦆
View GitHub Profile
@scruss
scruss / same_area.scad
Created March 13, 2025 00:55
do simpler n-gons print more quickly? OpenSCAD test
// do simpler n-gons print more quickly?
// scruss, 2025-03 - OpenSCAD
// after: https://fosstodon.org/@linux_mclinuxface/114151938845634308
// n-gon area, given n and radius
function a(n, r) = (1 / 2) * n * r * r * sin(360 / n);
// n-gon radius, given n and area
function r(n, a) = sqrt(2 * a / (n * sin(360 / n)));
height = 10;
@scruss
scruss / multi-rotating_kite-decorated.scad
Created February 6, 2025 04:54
a pattern, in OpenSCAD (unfortunately)
// kite for rotation square thingy - scruss, 2025-02
/*
ECHO: "b:", 14.4721
ECHO: "h:", 5.52786
ECHO: "h+b:", 20
ECHO: "(h+b)^2:", 400
ECHO: "b-h:", 8.94427
ECHO: "(b-h)^2:", 80
ECHO: "Part area:", 80
@scruss
scruss / brkmat_ssd1306.py
Created January 17, 2025 03:29
benchmark Mandelbrot set (aka Brooks-Matelski set) on OLED - MicroPython
# benchmark Mandelbrot set (aka Brooks-Matelski set) on OLED
# scruss, 2025-01
# MicroPython
# -*- coding: utf-8 -*-
from machine import Pin, I2C, idle, reset, freq
# from os import uname
from sys import implementation
from ssd1306 import SSD1306_I2C
@scruss
scruss / Music.bas
Created December 15, 2024 20:16
Microsoft BASIC for Macintosh "Music" demo: wavetable synthesis + MML parser in BASIC
REM --- Music
REM --- Reads easy to generate music commands and plays them.
REM --- Any four voice song can be played by simply changing the
REM --- DATA statements after the label Song:
DEFINT A-Z
REM --- Display Picture
OPEN "MusicPict" FOR INPUT AS 1
PICTURE (100,50),INPUT$(LOF(1),1)
@scruss
scruss / mqtt_cheerlights.py
Last active December 5, 2024 00:21
a very simple Cheerlights/NeoPixel MQTT client for MicroPython
# -*- coding: utf-8 -*-
# scruss, 2024-12
# MicroPython
"""
a very simple Cheerlights MQTT client for MicroPython
Uses Peter Hinch's MicroPython Asynchronous MQTT library
— https://github.com/peterhinch/micropython-mqtt/
Install it with:
mpremote mip install github:peterhinch/micropython-mqtt
@scruss
scruss / framebuf_pattern_pbm-big2.py
Created November 27, 2024 21:57
write a threatening pattern to a pbm
#!/usr/bin/env micropython
# write a threatening pattern to a pbm
# scruss, 2024-11
# MicroPython has framebuf, but no math.isqrt()
# Python3 has no framebuf, but has math.isqrt()
import framebuf
from math import sqrt
WIDTH = 1280 # original target was a 128 x 64 OLED
@scruss
scruss / threes.py
Last active October 21, 2024 02:03
threes.py - re-split several 3-letter words into (several-1) new 3-letter words
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# scruss, 2024-10
from itertools import combinations
from textwrap import wrap
import random
random.seed(None)
@scruss
scruss / csvthing.py
Created October 12, 2024 13:34
csvthing - clean up header of (slightly) nasty CSV so it'll work with SQLite
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# csvthing - clean up horrid csv so it will work with q and SQLite
# scruss, 2022-06
import sys
import csv
if len(sys.argv) < 2:
@scruss
scruss / capacitor.sh
Created September 18, 2024 15:37
capacitor discharge calculator shell script
#!/bin/zsh -f
# capacitor discharge - scruss, 2023-11
# - this should work with bash too but the formatting may be off
# - weird narrow format was designed for thermal printer output
if
[ "$#" -lt 3 ]
then
echo "usage: $0 resistance capacitance voltage [V₀]"
exit 1
@scruss
scruss / ES100_Arduino.ino
Last active August 18, 2024 20:56
minimally modified EverSet ES100 WWVB board Arduino example
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
// es100_host_arduino.c
//
// Xtendwave ES100 Example Host MCU Code for Arduino - version 0002
//
// Copyright 2013 Xtendwave
//
// THIS SOFTWARE IS PROVIDED TO YOU "AS IS," AND WE MAKE NO EXPRESS OR IMPLIED
// WARRANTIES WHATSOEVER WITH RESPECT TO ITS FUNCTIONALITY, OPERABILITY, OR USE,