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> |