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
| @echo off | |
| REM ===================================================================== | |
| REM InstallClaude.cmd - run ONCE, on a machine you trust. | |
| REM Downloads + verifies claude.exe, writes an INERT, self-elevating | |
| REM Claude.cmd plus config.txt, a field-IT CLAUDE.md, and a safe-fast | |
| REM settings.json, then opens Claude Code for a one-time login. | |
| REM Everything below the "#PS-PAYLOAD#" line is PowerShell, run by the | |
| REM line just below. cmd never runs it. It is not obfuscated - read it. | |
| REM ===================================================================== | |
| setlocal |
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
| 'Claude<->Cuis bridge: RemoteControl. Filed out 3 June 2026.'! | |
| 'A minimal in-image HTTP server (port 2347) exposing POST /eval and GET /screenshot, so an external agent (e.g. Claude Code, driven by curl) can evaluate Smalltalk and read the screen of a live Cuis image. Also adds ClassDescription>>safelyCompile:classified: for robust method compilation over the bridge.'! | |
| !provides: 'RemoteControl' 1 0! | |
| !requires: 'WebClient' 1 0 nil! | |
| SystemOrganization addCategory: #RemoteControl! | |
| !classDefinition: #RemoteControl category: #RemoteControl! | |
| Object subclass: #RemoteControl | |
| instanceVariableNames: '' | |
| classVariableNames: 'Server' |
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
| // Automating Artbreeder Interpolation | |
| // https://www.youtube.com/watch?v=Dhj59I6sus4 | |
| function range(start = 0, end = 1, num = 3) { | |
| return Array(num) | |
| .fill(null) | |
| .map((v, i) => start + (i * (end - start)) / (num - 1)); | |
| } | |
| function interpolateGene(gene = "mouthopen", values = range(-1, 1, 30)) { |
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
| git ls-files | grep "src/.*\.js\$" | xargs -n1 git blame --line-porcelain | grep "author " | sed -n 's/author //p' | sort -f | uniq -ic | sort -nr |
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
| <link rel="import" href="../ace-element/ace-element.html"> | |
| <polymer-element name="my-element"> | |
| <template> | |
| <style> | |
| :host { | |
| position: absolute; | |
| width: 100%; | |
| height: 100%; |
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
| <link rel="import" href="../code-mirror/code-mirror.html"> | |
| <link rel="import" href="../core-splitter/core-splitter.html"> | |
| <polymer-element name="my-element"> | |
| <template> | |
| <style> |