Goals: Add links that are reasonable and good explanations of how stuff works. No hype and no vendor content if possible. Practical first-hand accounts of models in prod eagerly sought.

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
import bpy | |
from mathutils.geometry import interpolate_bezier | |
def get_points(spline, clean=True): | |
knots = spline.bezier_points | |
if len(knots) < 2: | |
return |