| title | strip-claude | |||
|---|---|---|---|---|
| date | 2026-08-14 | |||
| author | Iain Maitland | |||
| tags |
|
|||
| summary | A Git commit-msg hook that removes trailing Claude Code attribution from commit messages. |
On every machine in the cluster install openmpi and mlx-lm:
conda install conda-forge::openmpi
pip install -U mlx-lmNext download the pipeline parallel run script. Download it to the same path on every machine:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from fasthtml.all import * | |
| import anthropic, base64, time | |
| client = anthropic.Anthropic( | |
| api_key="your_key_here", | |
| ) | |
| canvas_js = """ | |
| const canvas = document.getElementById('drawingCanvas'); |
MANUAL for DXY-1350 and DXY-1150 http://emoc.org/materiel/plotter_roland_DXY-1200/UMDXY1350a.pdf
make sure you have xcode command line tools installed.
xcode-select --install
Install pstoedit
Via Brew: brew install pstoedit
Picking the right architecture = Picking the right battles + Managing trade-offs
- Clarify and agree on the scope of the system
- User cases (description of sequences of events that, taken together, lead to a system doing something useful)
- Who is going to use it?
- How are they going to use it?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import bpy | |
| from mathutils.geometry import interpolate_bezier | |
| def get_points(spline, clean=True): | |
| knots = spline.bezier_points | |
| if len(knots) < 2: | |
| return |
