├── .devcontainer ├── .emacs.d │ └── .gitignore ├── .gitignore ├── DOCKER-IN-DOCKER-FIX.md ├── Dockerfile ├── build-and-push.sh ├── config.fish ├── devcontainer.json ├── docker-dev-mount ├── entry.fish ├── envs │ └── load_envs.fish ├── nuget.config └── scripts │ ├── README-PORT-VISIBILITY.md │ ├── check-node-deps.mjs │ ├── enable-windows-interop.fish │ ├── prepare-host.sh │ └── set-port-public.fish ├── .gitattributes ├── .gitignore ├── .gitmodules ├── .helmignore ├── .netlify-clean-build ├── .node-version ├── .prettierrc ├── .vercel ├── README.txt └── project.json ├── .vscode ├── check-kidlisp.mjs ├── chrome-mcp-wrapper.sh ├── gecko.mjs ├── mcp.json ├── settings.json ├── start-chrome-debug.fish ├── tasks.json ├── terminals.json └── tests │ ├── melodies.mjs │ ├── test-chords.mjs │ ├── test-generative-waltz.mjs │ ├── test-line.mjs │ ├── test-melody.mjs │ ├── test-notepat.mjs │ ├── test-playlist.mjs │ └── test-toss.mjs ├── EMBEDDED_LAYER_PERSISTENCE_BUG.md ├── GRAVEYARD.txt ├── KIDLISP_DEBUG_ANALYSIS.md ├── MULTIPLE-GAMEPAD-SUPPORT.md ├── README.md ├── STORY.md ├── TAPE-PREVIEW-ISSUE-ANALYSIS.md ├── TODO.txt ├── WRITE-A-PIECE.md ├── ac-event-daemon ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── build.rs ├── dev.fish ├── icons │ └── icon.png ├── install-overlay-tools.sh ├── rebuild-and-start.sh ├── src │ ├── ac-event-daemon.rs │ └── tauri-overlay.rs ├── start-daemon-safe.sh ├── start-daemon.sh ├── tauri.conf.json ├── test-notifications.sh ├── test-overlays.sh ├── test-shutdown.sh ├── test-web-overlay.sh └── watch-and-build.sh ├── ac-m4l ├── ABLETON-INTEGRATION-PROGRESS.md ├── AC Metronome.amxd ├── AC Notepat.amxd ├── AC Prompt.amxd ├── AC-Notepat.amxd.json ├── AC-Notepat.maxpat ├── JS-PIECE-BUNDLE-DEBUG.md ├── README.md ├── ac-audio-bridge.js ├── ac-audio-splitter.js ├── ac-buffer-writer.js ├── ac-ws-server.js ├── audio-bridge.js ├── build.py └── devices.json ├── ac-notify ├── ac-vst ├── CMakeLists.txt ├── rebuild.sh └── source │ ├── acnotepat.cpp │ ├── acnotepat.h │ ├── acnotepat_cids.h │ ├── acnotepat_controller.h │ ├── acnotepat_controller.mm │ ├── acnotepat_entry.cpp │ └── version.h ├── aesthetic ├── aesthetic-launch.sh ├── android ├── .gitignore ├── .idea │ ├── .gitignore │ ├── .name │ ├── codeStyles │ │ ├── Project.xml │ │ └── codeStyleConfig.xml │ ├── compiler.xml │ ├── deploymentTargetSelector.xml │ ├── gradle.xml │ ├── inspectionProfiles │ │ └── Project_Default.xml │ ├── kotlinc.xml │ ├── migrations.xml │ ├── misc.xml │ ├── runConfigurations.xml │ └── vcs.xml ├── app │ ├── .gitignore │ ├── build.gradle.kts │ ├── index.html │ ├── proguard-rules.pro │ ├── release │ │ ├── app-release.apk │ │ ├── baselineProfiles │ │ │ ├── 0 │ │ │ │ └── app-release.dm │ │ │ └── 1 │ │ │ │ └── app-release.dm │ │ └── output-metadata.json │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── computer │ │ │ └── aesthetic │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ │ └── index.html │ │ ├── ic_launcher-playstore.png │ │ ├── java │ │ │ └── computer │ │ │ │ └── aesthetic │ │ │ │ ├── BootReceiver.kt │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── MyDeviceAdminReceiver.kt │ │ │ │ ├── localHttpServer.kt │ │ │ │ └── ui │ │ │ │ └── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Theme.kt │ │ │ │ └── Type.kt │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── raw │ │ │ └── keystore.bks │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ ├── data_extraction_rules.xml │ │ │ └── device_admin.xml │ │ └── test │ │ └── java │ │ └── computer │ │ └── aesthetic │ │ └── ExampleUnitTest.kt ├── build.gradle.kts ├── gradle.properties ├── gradle │ ├── libs.versions.toml │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts ├── apple ├── .gitignore ├── aesthetic-computer-Info.plist ├── aesthetic.computer.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved ├── aesthetic.computer │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ └── iconAS.png │ │ ├── Contents.json │ │ ├── Launch.imageset │ │ │ ├── Contents.json │ │ │ └── Vector 129.png │ │ └── LaunchColor.colorset │ │ │ └── Contents.json │ ├── ContentView.swift │ ├── GoogleService-Info.plist │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ ├── aesthetic.computer-release.entitlements │ ├── aesthetic.computer.entitlements │ ├── aesthetic_computerApp.swift │ └── html │ │ ├── ProggyClean.ttf │ │ └── offline.html └── aesthetic │ ├── Assets.xcassets │ ├── Contents.json │ └── iMessage App Icon.stickersiconset │ │ ├── Contents.json │ │ ├── iconAS 1.png │ │ ├── iconAS 10.png │ │ ├── iconAS 11.png │ │ ├── iconAS 2.png │ │ ├── iconAS 3.png │ │ ├── iconAS 4.png │ │ ├── iconAS 5.png │ │ ├── iconAS 6.png │ │ ├── iconAS 7.png │ │ ├── iconAS 8.png │ │ ├── iconAS 9.png │ │ ├── iconAS.png │ │ └── iconASimessage.png │ ├── Base.lproj │ └── MainInterface.storyboard │ ├── Info.plist │ └── MessagesViewController.swift ├── archive ├── deprecated-serverless-functions │ ├── index.js │ └── slash.js ├── edge-stream │ ├── .gitignore │ ├── README.txt │ ├── api │ │ ├── ask.ts │ │ └── say.js │ ├── help.mjs │ ├── package-lock.json │ └── package.json ├── figjam │ ├── README.md │ ├── code.js │ ├── code.tsx │ ├── manifest.json │ ├── package-lock.json │ ├── package.json │ ├── tsconfig.json │ └── ui.html ├── github-discord.sh ├── micro │ ├── .gitignore │ ├── boot.sh │ ├── code.sh │ ├── emacs.sh │ ├── package-lock.json │ ├── package.json │ ├── pieces │ │ └── line.ac │ ├── reset.sh │ ├── system │ │ ├── backend.mjs │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── processor.wat │ │ └── public │ │ │ ├── interpreter.mjs │ │ │ ├── player.html │ │ │ └── processor.wasm │ └── todo.txt ├── old.docs.md ├── ordinals │ ├── inscribe.sh │ ├── ord.fish │ ├── ordfish │ │ ├── inscriptions.json │ │ └── meta.json │ └── sats.txt ├── piece-server │ ├── index.js │ ├── package-lock.json │ └── package.json ├── socket-server │ ├── jsconfig.json │ ├── package-lock.json │ ├── package.json │ └── socket.js ├── thumbnail-server │ ├── jsconfig.json │ ├── package-lock.json │ ├── package.json │ └── thumbnail.js └── video-sync │ ├── README.txt │ ├── autostart-child.desktop │ ├── autostart-child.sh │ ├── autostart.desktop │ ├── autostart.sh │ ├── index-child.html │ ├── index.html │ ├── package-lock.json │ ├── package.json │ └── server.js ├── artery ├── artery-dev.mjs ├── artery-tui.mjs ├── artery.mjs ├── emacs-mcp.mjs ├── test-1v1-split.mjs ├── test-hiphop.mjs ├── test-metronome.mjs ├── test-notepat.mjs └── test-trapwaltz.mjs ├── at ├── .env.example ├── .gitignore ├── ADMIN.md ├── ATPROTO-ENV-VARS-FIX.md ├── BACKFILL-ATPROTO-GUIDE.md ├── BACKFILL-QUICK-REF.md ├── BACKFILL-SUMMARY.md ├── DOCUMENTATION-SUMMARY.md ├── ENV-SETUP.md ├── FIX-SUMMARY.md ├── INVESTIGATION-REPORT.md ├── LEXICON-REF-FIELD-RENAME.md ├── MANIFEST.md ├── MONITORING-GUIDE.md ├── MOODS-ARCHITECTURE-DIAGRAM.md ├── MOODS-ATPROTO-INTEGRATION-PLAN.md ├── MOODS-BIDIRECTIONAL-SYNC.md ├── MOODS-GET-STARTED.md ├── MOODS-IMPLEMENTATION-COMPLETE.md ├── MOODS-INDEX.md ├── MOODS-INTEGRATION-CHECKLIST.md ├── MOODS-INTEGRATION-SUMMARY.md ├── MOODS-MIGRATION-COMPLETE.md ├── MOODS-SIMPLE-PLAN.md ├── MOODS-STATUS-REPORT.md ├── PAINTING-ATPROTO-IMPLEMENTATION.md ├── PAINTING-SHARING.md ├── QUICK-REFERENCE.md ├── QUICKSTART.md ├── README.md ├── TOOLS-README.md ├── USER-PAGES-API-EXAMPLES.md ├── USER-PAGES-ARCHITECTURE.md ├── USER-PAGES-DEPLOYMENT.md ├── USER-PAGES-INDEX.md ├── USER-PAGES-MOCKUP.css ├── USER-PAGES-SUMMARY.md ├── USER-PAGES.md ├── bulk-share-paintings.mjs ├── delete-all-posts.mjs ├── deploy-landing.fish ├── deploy-user-page.fish ├── deploy-user-pages.fish ├── docs │ ├── ANONYMOUS-PAINTINGS-RECORDINGS.md │ ├── ATPROTO-MIGRATION-STATUS.md │ ├── PAINTING-ATPROTO-IMPLEMENTATION-PLAN.md │ └── PAINTING-MIGRATION-PLAN.md ├── explore-lexicons.mjs ├── landing-page-atproto.html ├── landing-page.html ├── landing-page.old.html ├── lexicons │ └── computer │ │ └── aesthetic │ │ ├── kidlisp.json │ │ ├── mood.json │ │ ├── painting.json │ │ ├── piece.json │ │ └── tape.json ├── oldtools │ ├── README.md │ ├── check-code-1-user.mjs │ ├── diagnose-user-code-generation.mjs │ └── test-user-creation-flow.mjs ├── package-lock.json ├── package.json ├── pds │ ├── DEPLOYMENT.md │ ├── DEV-CONTAINER-SETUP.md │ ├── INFRASTRUCTURE.md │ ├── MAINTENANCE.md │ ├── QUICKSTART.md │ ├── README.md │ ├── STORAGE.md │ ├── config │ │ └── pds.env.example │ ├── deployment │ │ └── digitalocean │ │ │ ├── .droplet_id │ │ │ ├── .droplet_ip │ │ │ ├── configure-dns.mjs │ │ │ ├── deploy.fish │ │ │ ├── deploy.sh │ │ │ └── generate-pds-env.fish │ └── scripts │ │ ├── README.md │ │ ├── backup.sh │ │ ├── check-handle-structure.mjs │ │ ├── check-jeffrey-email.mjs │ │ ├── check-missing-accounts.mjs │ │ ├── check-pdstest-user.mjs │ │ ├── check-stale-atproto.mjs │ │ ├── check-user-raw.mjs │ │ ├── create-account-with-env.fish │ │ ├── create-account.mjs │ │ ├── create-bulk-accounts.mjs │ │ ├── deploy-landing-page.fish │ │ ├── deploy-landing-page.sh │ │ ├── explore-collections.mjs │ │ ├── find-handle-collisions.mjs │ │ ├── generate-invite.mjs │ │ ├── generate-user-codes.mjs │ │ ├── get-jeffrey-info.mjs │ │ ├── health-check.sh │ │ ├── inspect-user-schema.mjs │ │ ├── migrate-atproto-to-nested.mjs │ │ ├── migrate-pds-accounts.mjs │ │ ├── migrate-to-users-collection.mjs │ │ ├── preview-migration.mjs │ │ ├── query-unhandled.mjs │ │ ├── query-user.mjs │ │ ├── recreate-jeffrey.mjs │ │ ├── run-bulk-creation.fish │ │ ├── storage-manager.fish │ │ ├── test-create-jeffrey.mjs │ │ ├── with-env.fish │ │ └── with-env.sh ├── post-to-bluesky.mjs ├── query-posts.mjs ├── query-profile.mjs ├── resolve-did.mjs ├── resync-paintings-atproto.mjs ├── scripts │ ├── BUG-FIX-2025-10-11-missing-users.md │ ├── atproto │ │ ├── TAPE-BLOB-CLEANUP-SUMMARY.md │ │ ├── backfill-moods-to-atproto.mjs │ │ ├── backfill-paintings-to-atproto.mjs │ │ ├── batch-fix-tape-blobs.mjs │ │ ├── check-all-atproto-moods.mjs │ │ ├── check-all-mongo-tapes.mjs │ │ ├── check-atproto-timeline.mjs │ │ ├── check-atproto-users.mjs │ │ ├── check-deleted-tape-history.mjs │ │ ├── check-fifi-paintings.mjs │ │ ├── compare-moods-atproto-mongo.mjs │ │ ├── debug-backfill-query.mjs │ │ ├── debug-painting-doc.mjs │ │ ├── debug-tape-blob.mjs │ │ ├── delete-orphaned-tapes.mjs │ │ ├── list-users-without-atproto.mjs │ │ ├── mood-sync-stats.mjs │ │ ├── painting-sync-stats.mjs │ │ ├── unsynced-paintings-report.mjs │ │ ├── verify-paintings-sync.mjs │ │ └── verify-tapes-sync.mjs │ ├── audit-user-creation-sync.mjs │ ├── check-atproto-duplicates.mjs │ ├── check-atproto-moods.mjs │ ├── check-auth0-flow.mjs │ ├── check-auth0-webhook-config.mjs │ ├── check-handle-timestamps.mjs │ ├── check-mood-sync.mjs │ ├── check-recent-users.mjs │ ├── cloudflare-dns.mjs │ ├── migrate-moods-to-atproto.mjs │ ├── moods-integration-commands.sh │ ├── publish-lexicons.mjs │ ├── query-auth0-signups.mjs │ └── setup-netlify-env.sh ├── share-latest-painting.mjs ├── share-random-painting.mjs ├── test-all.mjs ├── test-mood-api.mjs ├── test-mood-create.mjs ├── test-painting-atproto.mjs ├── test-user-pages.html └── user-page.html ├── censor ├── Caddyfile ├── Modelfile ├── README.md ├── api-server.mjs ├── create-model.fish ├── index.html ├── inspect-mongodb.mjs ├── package-lock.json ├── package.json ├── start-dashboard.fish ├── start-server.fish ├── test-continuous.fish ├── test-explicit.mjs ├── test-filter.fish ├── test-mongodb-messages.mjs ├── test-mongodb.fish └── test-resources.mjs ├── daemon ├── daemon.js ├── install-daemon.fish ├── package-lock.json └── package.json ├── dark-window ├── Dockerfile ├── conductor.mjs ├── package-lock.json └── package.json ├── demo-notifications.sh ├── deno.lock ├── docs ├── NETLIFY-BUNDLE-FUNCTION-PLAN.md ├── PERFORMANCE.md ├── ableton-als-structure.md ├── kidlisp-embed-feature.md └── kidlisp-feed-feature.md ├── dotfiles ├── .gitignore ├── dot_config │ ├── EMACS-OPTIMIZATION.md │ ├── emacs-optimized.el │ ├── emacs.el │ ├── fish │ │ ├── conf.d │ │ │ └── rustup.fish │ │ ├── config.fish │ │ └── fish_variables │ ├── fish_macos │ │ ├── config.fish │ │ └── fish_variables │ ├── foot │ │ └── foot.ini │ ├── nvim │ │ ├── autoload │ │ │ └── plug.vim │ │ └── init.vim │ ├── starship.toml │ └── switch-emacs-config.fish ├── emacs-safe.el ├── install.sh └── symlink.sh ├── drone ├── Dockerfile ├── entrypoint.sh ├── nginx.conf ├── player.html └── start.sh ├── ethereum ├── .gitignore ├── contracts │ └── AestheticComputerPaintings.sol ├── hardhat.config.js ├── package-lock.json └── package.json ├── experiments ├── blessed.mjs ├── elisp │ ├── pixel.el │ └── xpm.el └── snake.six ├── false.work ├── BUILD-DISTRIBUTION.md ├── BUILD-SYSTEM-UPDATES.md ├── MAC-BUILD-WORKFLOW.md ├── README.md ├── UNIFIED-BUILD-SYSTEM-PLAN.md ├── build-and-run-spiderlily-mac.sh ├── build-run-spiderlily.sh ├── build-spiderlily-from-devcontainer.sh ├── builds-spaces.env.example ├── builds.false.work │ ├── index.html │ └── ios-build-status.html ├── package-spiderlily-mac.sh └── unreal-builder │ ├── .gitignore │ ├── BUILD-AUTOMATION-GUIDE.md │ ├── EDGE-CASES-AND-FIXES.md │ ├── IOS-BUILD-STATUS.md │ ├── LIVECODING-WORKAROUND.md │ ├── MAC-BUILD-UPLOAD-SETUP.md │ ├── MAC-SETUP-PLAN.md │ ├── README.md │ ├── SECRETS-SETUP.md │ ├── START-HERE.md │ ├── TROUBLESHOOTING.md │ ├── config │ └── build-config.json │ ├── docs │ ├── CLOUD-VM-GUIDE.md │ ├── HARDWARE-SPECS.md │ ├── HORDE-AND-BUILDTOOLS.md │ ├── MANUAL-BOOTSTRAP.md │ ├── NEXT-STEPS.md │ ├── OPERATIONS.md │ ├── RDP-GUIDE.md │ ├── README.md │ ├── SECRETS-MANAGEMENT.md │ ├── SECRETS-SETUP.md │ └── TROUBLESHOOTING.md │ ├── scripts │ ├── bootstrap-windows-minimal.ps1 │ ├── bootstrap-windows.ps1 │ ├── build.fish │ ├── connect-rdp.sh │ ├── create-gcp-vm.ps1 │ ├── create-gcp-vm.sh │ ├── daily-build.ps1 │ ├── disable-livecoding.ps1 │ ├── install-via-xcode-ui.sh │ ├── load-secrets.fish │ ├── load-secrets.sh │ ├── mac │ │ ├── INSTALL-DOTNET-INSTRUCTIONS.md │ │ ├── build-and-upload.sh │ │ ├── build-spiderlily-editor.sh │ │ ├── build-spiderlily-with-fixes.sh │ │ ├── cook-stage-ios-remote.fish │ │ ├── cook-stage-ios.sh │ │ ├── copy-fmod-mac-files.sh │ │ ├── deploy-ios-via-xcode.md │ │ ├── deploy-spiderlily-ios.sh │ │ ├── install-dotnet.sh │ │ ├── ioslogs2.txt │ │ ├── ioslogs3.txt │ │ ├── package-spiderlily-ios.sh │ │ ├── package-spiderlily-mac.sh │ │ ├── patch-ue5-xcode26.sh │ │ ├── ssh-mac.fish │ │ ├── survey-mac-environment.fish │ │ └── upload-spiderlily-ios.sh │ ├── migrate-builds-to-mongodb.mjs │ ├── monitor-ios-deployment.sh │ ├── package-for-team.ps1 │ ├── quick-setup-gcp.sh │ ├── remote-build.ps1 │ ├── remote-ios-build.fish │ ├── remote-ios-build.sh │ ├── remote-mac-build.fish │ ├── remove-spiderlily-ios.sh │ ├── schedule-builds.fish │ ├── setup-build-machine.ps1 │ ├── setup-github-runner.ps1 │ ├── setup-rdp-gnome.sh │ ├── shared │ │ ├── register-build.fish │ │ └── update-builds-page.fish │ ├── update-builds-index.sh │ ├── upload-to-spaces.sh │ └── windows-build-and-upload.ps1 │ └── test-connection.ps1 ├── fedora-image ├── .gitignore ├── blueprint.toml └── notes.txt ├── feed ├── DEPLOYMENT.md ├── DP1-FEED-ARCHITECTURE.md ├── DP1-FEED-CHECKLIST.md ├── DP1-FEED-SETUP.md ├── DP1-FEED-SUMMARY.md ├── DP1-PROVENANCE-COMPLETED.md ├── DP1-PROVENANCE-UPDATE.md ├── ORGANIZATION-COMPLETE.md ├── QUICKREF.md ├── README.md ├── SETUP-SUMMARY.md ├── build-feed.fish ├── build-kidlisp-feed.mjs ├── channel-config.json ├── create-kidlisp-chords-playlist.mjs ├── create-kidlisp-colors-playlist.mjs ├── create-top-kidlisp-playlist.mjs ├── dp1-deploy │ ├── AESTHETIC-DEPLOY.md │ ├── README.md │ ├── deploy-aesthetic.sh │ └── wrangler.production.toml ├── regenerate-kidlisp-playlists.mjs ├── update-existing-playlists.mjs ├── update-kidlisp-playlists-simple.mjs └── wrangler.production.toml ├── fuzz ├── README.md └── notepat-fuzz.js ├── generate_qr.py ├── gigs ├── fundraiser-checklist │ ├── Caddyfile │ ├── README.md │ ├── TODO.md │ ├── fundraiser-checklist.html │ ├── generate-pdf-deno.ts │ ├── images │ │ ├── 01-jonny-negron.jpg │ │ ├── 02-paz-g.png │ │ ├── 03-sisson.jpg │ │ ├── 04-jake-sheiner.png │ │ ├── 05-ari-salka.png │ │ ├── 06-lucy-black.png │ │ ├── 07-devendra-banhart-para-paz.jpg │ │ ├── 08-devendra-banhart-nil-patin.jpg │ │ ├── 09-max-rippon.jpg │ │ ├── 10-alia-shawkat.jpg │ │ ├── 11-tuna-bora.jpg │ │ ├── 12-clara-balzary.jpg │ │ └── 13-chloe-pang.gif │ ├── serve.fish │ ├── venmo.jpeg │ └── venmo_qr.png └── wire-ad-2025 │ ├── fetch_wire_data.mjs │ ├── process_wire_ad.py │ ├── process_wire_ad_backup.py │ ├── process_wire_ad_simple.py │ ├── wire-2025.md │ ├── wire_ad_fresh.py │ └── wire_data.json ├── gpu └── RESEARCH.md ├── grab ├── .gitignore ├── DEPLOY.md ├── README.md ├── VIDEO-FUTURE.md ├── docs │ ├── ANIMATED-GIF-STATUS.md │ ├── AUTOMATED-DEPLOYMENT.md │ ├── CODE-CHANGES.md │ ├── CUSTOM-DOMAIN-SETUP.md │ ├── DEPLOYMENT-SUMMARY.md │ ├── DEPLOYMENT.md │ ├── DEV-SETUP.md │ ├── DNS-SETUP.md │ ├── INTEGRATION-SUMMARY.md │ ├── MIGRATION.md │ ├── PLAN.md │ ├── README.md │ └── VIDEO-RECORDING.md ├── package-lock.json ├── package.json ├── scripts │ ├── deploy-with-dns.fish │ ├── deploy.fish │ └── setup-browser-binding.fish ├── src │ └── index.ts ├── tsconfig.json ├── wrangler.production.toml └── wrangler.toml.example ├── install.mjs ├── judge ├── .env.example ├── Caddyfile ├── Modelfile ├── README.md ├── api-server.mjs ├── create-model.fish ├── deploy.env.example ├── deploy.fish ├── index.html ├── inspect-mongodb.mjs ├── package-lock.json ├── package.json ├── redeploy.fish ├── start-dashboard.fish ├── start-server.fish ├── test-continuous.fish ├── test-explicit.mjs ├── test-filter.fish ├── test-mongodb-messages.mjs ├── test-mongodb.fish └── test-resources.mjs ├── kidlisp-com-progress.md ├── kidlisp-gameboy ├── .gitignore ├── AUDIO-VISUAL-SYNC-ANALYSIS.md ├── C-QUICKSTART.md ├── KIDLISP-COMPILER.md ├── PROGRESS.md ├── QUICKSTART.md ├── README.md ├── build ├── build.fish ├── build.sh ├── compile-gbdk-examples.fish ├── compile-gbdk-playground.fish ├── compiler │ ├── kidlisp-gb-compiler-browser.mjs │ ├── kidlisp-gb-compiler-cli.mjs │ └── kidlisp-to-gb.mjs ├── ebook-ulysses │ ├── PROGRESS.md │ ├── README.md │ ├── book_data.h │ ├── book_data_small.h │ ├── build.fish │ ├── fetch_small.py │ ├── fetch_ulysses.py │ ├── minimal.c │ ├── pagetest.c │ ├── test-simple.c │ ├── ulysses.c │ ├── ulysses2.c │ └── ulysses_auto.c ├── examples │ ├── boxtest.lisp │ ├── lines.lisp │ ├── linetest.lisp │ ├── nosplash.lisp │ └── shapes.lisp ├── hardware.inc ├── hugedriver │ ├── .gitignore │ ├── README.md │ ├── doc │ │ ├── driver-format.txt │ │ └── internals.md │ ├── gbdk │ │ └── hUGEDriver.lib │ ├── gbdk_example │ │ ├── Makefile │ │ ├── README.md │ │ ├── build.bat │ │ └── src │ │ │ ├── gbdk_player_example.c │ │ │ └── sample_song.c │ ├── include │ │ ├── hUGE.inc │ │ ├── hUGEDriver.h │ │ ├── hUGE_note_table.inc │ │ └── hardware.inc │ ├── rgbds_example │ │ ├── README.md │ │ ├── build.bat │ │ └── build.sh │ └── tools │ │ └── rgb2sdas.py ├── src │ ├── aesthetic_boot.h │ ├── boxtest.c │ ├── build-random.sh │ ├── build-timestamped.fish │ ├── build-timestamped.sh │ ├── circle-anim.c │ ├── demo-graphics.c │ ├── direct_test.c │ ├── hello.c │ ├── lines.c │ ├── linetest.c │ ├── melody.c │ ├── melody_sprites.c │ ├── scrub.c │ ├── shapes.c │ ├── test-angles.c │ ├── turtle-anim.c │ ├── turtle-circle-simple.c │ ├── turtle-pixels.c │ ├── wave-editor.c │ └── wave-test.c ├── templates │ └── boot.asm └── test │ ├── convert-font.mjs │ ├── hardware.inc │ ├── kidlisp-gb-test.mjs │ ├── minimal-test.asm │ ├── rainbow-bars.asm.old │ └── test-point.asm ├── kidlisp-knowledge ├── README.md └── features │ └── suck-lossless-implementation.md ├── kidlisp-n64 ├── asm │ ├── boot.s │ └── kidlisp-compat.s ├── bare-metal.s ├── nu0-test │ └── asm │ │ ├── entry.s │ │ └── rom_header.s ├── sdk-hello │ └── asm │ │ ├── entry.s │ │ └── rom_header.s └── swamp-minimal │ └── header.s ├── kidlisp-tools ├── README.md ├── get-source.mjs ├── kidlisp-probe.mjs └── source-tree.fish ├── kidlisp.com ├── FEATURES.md ├── LIVE-RELOAD-PLAN.md ├── README.md ├── SETUP.md ├── index.html ├── open.fish └── watch.fish ├── kidlisp ├── COMPLETE_API_MAP.md ├── PERFORMANCE-ANALYSIS.md ├── README.md ├── STRUCTURE.md ├── dictionary │ ├── README.md │ └── TODO.md ├── docs │ ├── README.md │ ├── core │ │ └── language-reference.md │ ├── features │ │ ├── embedding-system.md │ │ ├── feed-system.md │ │ ├── suck-lossless-implementation.md │ │ └── transformation-functions.md │ ├── functions │ │ ├── README.md │ │ ├── fill.md │ │ ├── outline.md │ │ ├── scroll.md │ │ ├── spin.md │ │ ├── suck.md │ │ └── zoom.md │ ├── implementation │ │ ├── blur-buffer-issues.md │ │ ├── embedding-fixes.md │ │ ├── make-integration.md │ │ ├── singleton-refactor.md │ │ ├── todo-fixes.md │ │ └── unified-kidlisp-execution.md │ ├── integration │ │ └── x-ff1-art-computer.md │ ├── reports │ │ ├── fa2-contract-spec.md │ │ └── feral-file-integration.md │ ├── suck-complete-technical-guide.md │ ├── suck-function-fixed.md │ └── suck-redesign-notes.md ├── examples │ └── README.md ├── reports │ ├── README.md │ ├── analysis-report.md │ ├── comparison-metrics.md │ ├── implementation-guide.md │ ├── tinylisp │ │ ├── .gitignore │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── examples │ │ │ ├── README.md │ │ │ ├── apply.lisp │ │ │ ├── fact.lisp │ │ │ ├── hanoi.lisp │ │ │ ├── qsort.lisp │ │ │ └── sqrt.lisp │ │ ├── img │ │ │ ├── lisp850.jpg │ │ │ └── tracing.png │ │ ├── proto │ │ │ ├── README.md │ │ │ ├── nqueens.lisp │ │ │ └── tinylisp-extras-gc.c │ │ ├── src │ │ │ ├── README.md │ │ │ ├── common.lisp │ │ │ ├── lisp850-opt.c │ │ │ ├── lisp850.c │ │ │ ├── list.lisp │ │ │ ├── math.lisp │ │ │ ├── tinylisp-commented.c │ │ │ ├── tinylisp-extras.c │ │ │ ├── tinylisp-float-opt.c │ │ │ ├── tinylisp-float.c │ │ │ ├── tinylisp-opt.c │ │ │ └── tinylisp.c │ │ ├── tests │ │ │ ├── README.md │ │ │ ├── dotcall-extras.lisp │ │ │ └── dotcall.lisp │ │ ├── tinylisp.pdf │ │ └── wav │ │ │ ├── lisp850-opt.wav │ │ │ └── lisp850.wav │ └── zoom-vs-suck-implementation-report.md └── tools │ ├── README.md │ ├── api-summary.mjs │ └── source-tree.mjs ├── lectures ├── el-cid-lecture-plain.md └── el-cid-lecture.md ├── llm.md ├── modes ├── chatmodes │ ├── aesthetic-computer-platform.chatmode.md │ └── kidlisp.chatmode.md └── workflows │ ├── performance-tests.yml │ └── spiderlily-daily-build.yml ├── monitor-emacs.sh ├── nanos ├── .gitignore ├── .node-version ├── README.txt ├── chat.mjs ├── conductor.mjs ├── config-do.json ├── config-gcp-dev.json ├── config-gcp.json ├── config-js.json ├── filter.mjs ├── hello.lisp ├── package-lock.json ├── package.json ├── package.manifest ├── redact.mjs └── refresh-chat-handles.mjs ├── ngrok.yml ├── notebook ├── .node-version ├── aesthetic.py ├── encode_kidlisp.mjs ├── hands.ipynb ├── hello.ipynb ├── library.ipynb ├── publish.fish ├── ukulele-songs.ipynb └── wipppps.ipynb ├── objkt ├── AC-PACK-TAPE-GUIDE.md ├── README.md ├── SINGLE-FILE-BUNDLER-PROGRESS.md ├── ac-pack-single-file.mjs ├── ac-pack.mjs ├── ac-ship.mjs ├── ac-unpack.mjs ├── agents.md ├── dependency-analyzer.mjs ├── examples │ ├── README.md │ ├── starfield.md │ └── starfield │ │ └── README.md ├── kidlisp-extractor.mjs └── pack-for-teia.sh ├── oven ├── .env.example ├── .gitignore ├── LOCAL-DEV-SETUP.md ├── README.md ├── baker.mjs ├── deploy.fish ├── deploy.sh ├── package-lock.json ├── package.json ├── scripts │ ├── check-slugs.mjs │ ├── rename-video-files.mjs │ └── setup-cdn-dns.fish ├── server.mjs └── test-query-tapes.mjs ├── package.json ├── paintings ├── .env.example ├── .env.template ├── ATTRIBUTION-STRATEGY.md ├── GUEST-BUCKET-INVESTIGATION.md ├── README.md ├── STATUS.md ├── bulk-fix-acls.mjs ├── check-lifecycle.mjs ├── generate-code.mjs ├── inspect-api.mjs ├── inspect-mongodb.mjs ├── inspect-spaces.mjs ├── migrate-add-codes.mjs ├── migrate-paintings.mjs ├── package-lock.json ├── package.json ├── regenerate-codes.mjs ├── setup.fish ├── setup.mjs ├── test-code-generator.mjs ├── test-generator.mjs └── verify-migration.mjs ├── plans ├── 1v1-quake-fps.md ├── KIDLISP_INTEGRATION_PLAN.md ├── NOPAINT_COLOR_HIGHLIGHTING_PLAN.md ├── REAL_TIME_PAINTING_SYNC.md ├── SECURITY-SECRETS.md ├── TAPE-VIDEO-PROCESSING.md ├── TODO-kidlisp-fixes.md ├── VIDEO_PROGRESS_IMPROVEMENTS.md ├── ac-command-robustness.md ├── atproto-data-architecture.md ├── atproto-integration-plan.md ├── atproto-pds-roadmap.md ├── bake-layer-persistence-fix.md ├── bdf-matrix-glyph-rendering-teia-export-bug.md ├── bdf-rotation-issue.md ├── blur-implementation.md ├── button-width-sizing-issue.md ├── chat-migration-to-session-server.md ├── cross-tab-painting-sync.md ├── hud-drag-fix.md ├── implementation-unified-kidlisp.md ├── judge-deployment.md ├── kidlisp-background-persistence-feature.md ├── kidlisp-blur-buffer-context-issue.md ├── kidlisp-color-buffer-issue-2025-09-27.md ├── kidlisp-embedding-fix.md ├── kidlisp-feral-file-architecture-analysis.md ├── kidlisp-filled-circle-mode-support.md ├── kidlisp-hud-text-layout-issue.md ├── kidlisp-live-parameter-editing.md ├── kidlisp-make-integration.md ├── kidlisp-malformed-code-protection.md ├── kidlisp-mic-global.md ├── kidlisp-singleton-refactor.md ├── lexicon-publication.md ├── merry │ ├── MERRY_EXAMPLES.md │ ├── MERRY_FLOW_DIAGRAM.txt │ ├── MERRY_IMPLEMENTATION_SUMMARY.md │ ├── MERRY_PROGRESS_BAR_VISUAL.txt │ ├── MERRY_QUICK_REFERENCE.txt │ ├── MERRY_SEGMENTED_PROGRESS_FEATURE.md │ └── README.md ├── objkt-to-pack-mode-rename.md ├── pack-$39i.md ├── painting-short-codes-plan.md ├── per-note-waveform-visualization.md ├── recursive-embedded-kidlisp.md ├── repeat-alias-research.md ├── rgb-first-line-color-support.md ├── robo.md ├── session-dashboard-progress.md ├── session-server-architecture.md ├── session-server-status-page.md ├── slgb-spider-lily-gameboy-autoload.md ├── stow-file-upload-feature.md ├── suck-function-fixed.md ├── suck-redesign-notes.md ├── tape-mp4-conversion-service.md ├── tape-player-refactor.md ├── tape-viewer-implementation.md ├── tape-viewer-symbol-design.md ├── tape-viewer-testing.md ├── teia-to-objkt-rename.md ├── tv-fyp-implementation.md ├── tv-multi-tape-transition-system.md ├── tv-piece-plan.md ├── unified-kidlisp-execution.md ├── unifont-character-width-fix.md ├── unifont-moods-fix.md ├── video-button-reframe-issue.md ├── video-scrub-line-visibility-issue.md ├── video-tape-post-feature.md ├── video-tape-post-implementation-complete.md ├── vscode-chrome-devtools-mcp-integration.md ├── vst-ableton-notepat-plugin.md ├── webgpu-renderer-plan.md ├── zebra-color-sequence-implementation.md └── zoom-vs-suck-implementation-report.md ├── prompts └── aesthetic-computer.prompt.md ├── rebroadcast.sh ├── reference ├── README.md ├── TODO.md ├── ableton │ ├── ABLETON_TIMELINE_GUIDE.md │ ├── BLESSED-SESSION-README.md │ ├── README_TIMELINE.md │ ├── SESSION-README.md │ ├── TIMELINE_README.md │ ├── ableton-live-viewer.mjs │ ├── ableton-report-fresh.json │ ├── ableton-report.json │ ├── ableton-session-simple.mjs │ ├── ableton-session-viewer-blessed.mjs │ ├── ableton-session-viewer.mjs │ ├── ableton-simple-viewer.mjs │ ├── analyze-ableton.mjs │ ├── full_snapshot.csv │ ├── grid_full.csv │ ├── grid_test.csv │ ├── grid_test2.csv │ ├── live-12-blank.xml │ ├── notes.json │ ├── package-lock.json │ ├── package.json │ ├── report.json │ ├── run-full-track.mjs │ ├── session │ ├── sim.csv │ ├── sim_snapshot.csv │ ├── simulate-ableton.mjs │ └── timeline.mjs ├── api │ └── javascript-api.md ├── kidlisp │ └── language-reference.md ├── package-lock.json ├── package.json ├── pieces │ └── structure.md └── tools │ ├── api │ └── api-structure-analysis.json │ ├── cli-explorer.md │ ├── coverage │ ├── api-inventory.json │ └── coverage-report.json │ ├── recording │ ├── README.md │ ├── cleanup-artifacts.sh │ ├── cleanup-hanging-processes.sh │ ├── deprecated │ │ ├── README.md │ │ ├── TAPE_USAGE.md │ │ ├── burn-flyer.mjs │ │ ├── dashboard-main.mjs │ │ ├── noise-test.mjs │ │ ├── tape.mjs │ │ └── television.mjs │ ├── frame-renderer.mjs │ ├── gif-renderer.mjs │ ├── headless.mjs │ ├── logger.mjs │ ├── orchestrator.mjs │ ├── package-lock.json │ ├── package.json │ ├── pieces │ │ ├── README.md │ │ ├── chunkyraytracer.mjs │ │ ├── cubes.mjs │ │ ├── elcid-flyer.mjs │ │ ├── fastraytracer.mjs │ │ ├── fuzz.mjs │ │ ├── gameoflife.mjs │ │ ├── hundredballs.mjs │ │ ├── jumping-guys.mjs │ │ ├── mandelbrot.mjs │ │ ├── mixedshapes.mjs │ │ ├── orbital.mjs │ │ ├── raytracer.mjs │ │ └── slowmixed.mjs │ ├── tests │ │ └── README.md │ └── tv-preview.mjs │ ├── scripts │ ├── test-complex.mjs │ └── test-simple.mjs │ └── testing.md ├── reports ├── coordinate-regression-fix.md ├── feral-file-email-reply-experiments.md ├── ink-function-gradient-documentation.md ├── kidlisp-fa2-contract-spec.md ├── kidlisp-feral-file-architecture-analysis.md ├── kidlisp-x-ff1-art-computer-integration-proposal.html ├── kidlisp-x-ff1-art-computer-integration-proposal.md ├── pen-handling-regression-analysis.md └── tape-command-research.md ├── repository-thumbnail ├── README.md ├── build.fish ├── qr-code.png └── social-preview.png ├── scripts ├── ARCHITECTURE.md ├── BACKFILL_PAINTING_CODES.md ├── README.md ├── SETUP.md ├── admin-migrate.mjs ├── atproto │ ├── backfill-kidlisp-rkeys.mjs │ ├── check-fifi-kidlisp.mjs │ ├── check-kidlisp-atproto.mjs │ ├── sync-atproto.mjs │ ├── sync-fifi-kidlisp.mjs │ ├── sync-jeffrey-kidlisp.mjs │ ├── sync-mongodb-from-atproto.mjs │ └── test-mood-sync.mjs ├── check-short-domains.mjs ├── check-tape-status.mjs ├── fix-tape-z-suffix.mjs ├── recovery │ ├── check-tape-zips-in-spaces.mjs │ └── recover-deleted-tapes.mjs ├── retry-tape-bake.mjs └── setup-vscode-debugging-mac.sh ├── secret └── server-exploration.md ├── session-server ├── .gitignore ├── DEPLOY.md ├── Dockerfile ├── README.md ├── README.txt ├── chat-manager.mjs ├── dashboard.el ├── dashboard.mjs ├── deploy-session.fish ├── deploy.fish ├── filter.mjs ├── package-lock.json ├── package.json ├── redact.mjs ├── session.mjs ├── session_server.pub ├── setup-ssh.fish ├── test-chat.fish ├── tests │ └── chat.test.mjs └── update-chat-dns.mjs ├── shared ├── filter.mjs ├── package-lock.json ├── package.json ├── redact.mjs └── shared.txt ├── simple-gb-asm-examples ├── .gitignore ├── LICENSE ├── README.md ├── inc │ └── hardware.inc └── src │ ├── background-fullscreen │ ├── background-fullscreen.asm │ └── starry-night-tiles.png │ ├── background-tile │ └── background-tile.asm │ ├── background-tilemap │ ├── abandonauts-tilemap.png │ └── background-tilemap.asm │ ├── build.bat │ ├── build.sh │ ├── grid-collision │ ├── grid-collision-bg-tiles.png │ ├── grid-collision-obj-ztiles.png │ ├── grid-collision.asm │ └── grid-collision.tilemap │ ├── joypad │ ├── joypad-tiles.png │ └── joypad.asm │ ├── oamdma │ └── oamdma.asm │ ├── sprite │ └── sprite.asm │ └── vblank │ └── vblank.asm ├── sites ├── digitpain.com │ ├── README.md │ ├── digitpain.jpg │ ├── index.html │ └── style.css └── whistlegraph.com │ └── index.html ├── sixel-experiments ├── FINAL_SUMMARY.md ├── README.md ├── bordered-128x128.mjs ├── bordered-64x64.mjs ├── bouncing-ball-demo.mjs └── ultra-fast-sixel.mjs ├── spec ├── kidlisp-spec.js └── support │ └── jasmine.json ├── ssh-mac.sh ├── ssl-dev ├── ac-ssl-mac.fish ├── ssl-install.fish └── ssl-readme.txt ├── storage ├── policy.json └── storage-notes.md ├── stringos ├── Makefile ├── main.c ├── main.efi └── main.o ├── system ├── .gitignore ├── .parcelrc ├── Caddyfile ├── Caddyfile-nossl ├── add-env-vars.sh ├── aesthetic.computer.code-workspace ├── backend │ ├── ATPROTO-INTEGRATION-TEST-RESULTS.md │ ├── ATPROTO-SYNC-CONSOLIDATION-PLAN.md │ ├── ATPROTO-SYNC-PROGRESS.md │ ├── TAPE-MP4-CONVERSION-PLAN.md │ ├── TAPE-MP4-SUCCESS.md │ ├── at.mjs │ ├── authorization.mjs │ ├── database.mjs │ ├── delete-all-art-guest-tapes.mjs │ ├── delete-and-recreate-tape.mjs │ ├── delete-atproto-duplicates.mjs │ ├── email.mjs │ ├── filter.mjs │ ├── fix-tape-slug.mjs │ ├── generate-short-code.mjs │ ├── http.mjs │ ├── kidlisp-bundler.mjs │ ├── kv.mjs │ ├── lexicons │ │ └── computer.aesthetic.painting.json │ ├── list-all-tapes-in-spaces.mjs │ ├── logger.mjs │ ├── logo.mjs │ ├── media-atproto.mjs │ ├── migrate-all-users-moods.mjs │ ├── mood-atproto.mjs │ ├── painting-atproto.mjs │ ├── recreate-tape-with-blobs.mjs │ ├── remigrate-moods-with-ref.mjs │ ├── retry-tape-bake.mjs │ ├── shell.mjs │ ├── sotce-net-constants.mjs │ ├── tape-atproto.mjs │ ├── tape-to-mp4.mjs │ ├── test-create-mood.mjs │ ├── test-mood-dual-write.mjs │ └── thumbnail.mjs ├── deno.lock ├── ignore-index.sh ├── netlify.toml ├── netlify │ ├── edge-functions │ │ └── media.js │ └── functions │ │ ├── apple-developer-merchantid-domain-association.js │ │ ├── ask.js │ │ ├── atproto-user-stats.mjs │ │ ├── auth0-events.mjs │ │ ├── authorized.js │ │ ├── backfill-painting-codes.mjs │ │ ├── bdf-glyph.js │ │ ├── bundle-html.js │ │ ├── chat-messages.mjs │ │ ├── clock.mjs │ │ ├── delete-erase-and-forget-me.mjs │ │ ├── docs.js │ │ ├── email.js │ │ ├── export-piece.mjs │ │ ├── get-builds.mjs │ │ ├── get-painting.mjs │ │ ├── get-tape-status.mjs │ │ ├── get-tape.mjs │ │ ├── handle.mjs │ │ ├── handles.js │ │ ├── handles.mjs │ │ ├── index.mjs │ │ ├── kidlisp-keep.mjs │ │ ├── logo.js │ │ ├── media-collection.js │ │ ├── metrics.mjs │ │ ├── mood.mjs │ │ ├── oven-complete.mjs │ │ ├── painting-code.mjs │ │ ├── painting-metadata.mjs │ │ ├── pixel.js │ │ ├── playlist.mjs │ │ ├── presigned-url.js │ │ ├── print.js │ │ ├── profile.js │ │ ├── redirect-proxy.js │ │ ├── register-build.mjs │ │ ├── reload.js │ │ ├── run.js │ │ ├── say.js │ │ ├── screenshot.js │ │ ├── session.js │ │ ├── sotce-net.mjs │ │ ├── store-kidlisp.mjs │ │ ├── subscribe-to-topic.js │ │ ├── test-tv-hits.mjs │ │ ├── ticket.js │ │ ├── track-media.mjs │ │ ├── tv.mjs │ │ ├── update-build.mjs │ │ ├── update-painting-slug.mjs │ │ ├── user.js │ │ ├── vary.js │ │ └── verify-builds-password.mjs ├── nginx.conf ├── offline-index.html ├── package-lock.json ├── package.json ├── public │ ├── .well-known │ │ ├── aesthetic.computer-apple-developer-merchantid-domain-association │ │ └── botce.ac-apple-developer-merchantid-domain-association │ ├── _headers │ ├── aesthetic-direct.html │ ├── aesthetic.computer │ │ ├── bios.mjs │ │ ├── boot.mjs │ │ ├── checkout.css │ │ ├── cursors │ │ │ ├── precise.svg │ │ │ └── viewpoint.svg │ │ ├── dep │ │ │ ├── .aframe-v1.3.0.min.js.map.icloud │ │ │ ├── @akamfoad │ │ │ │ └── qr │ │ │ │ │ └── qr.mjs │ │ │ ├── @mediapipe │ │ │ │ ├── hands │ │ │ │ │ ├── README.md │ │ │ │ │ ├── hand_landmark_full.tflite │ │ │ │ │ ├── hand_landmark_lite.tflite │ │ │ │ │ ├── hands.binarypb │ │ │ │ │ ├── hands.js │ │ │ │ │ ├── hands_solution_packed_assets.data │ │ │ │ │ ├── hands_solution_packed_assets_loader.js │ │ │ │ │ ├── hands_solution_simd_wasm_bin.data │ │ │ │ │ ├── hands_solution_simd_wasm_bin.js │ │ │ │ │ ├── hands_solution_simd_wasm_bin.wasm │ │ │ │ │ ├── hands_solution_wasm_bin.js │ │ │ │ │ ├── hands_solution_wasm_bin.wasm │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── package.json │ │ │ │ └── tasks-vision │ │ │ │ │ ├── README.md │ │ │ │ │ ├── package.json │ │ │ │ │ ├── vision.d.ts │ │ │ │ │ ├── vision_bundle.js │ │ │ │ │ └── wasm │ │ │ │ │ ├── .vision_wasm_internal.wasm.icloud │ │ │ │ │ ├── .vision_wasm_nosimd_internal.wasm.icloud │ │ │ │ │ ├── vision_wasm_internal.js │ │ │ │ │ └── vision_wasm_nosimd_internal.js │ │ │ ├── README-gif.md │ │ │ ├── aframe-v1.3.0.min.js │ │ │ ├── auth0-spa-js.production.js │ │ │ ├── auth0-spa-js.production.js.map │ │ │ ├── ffmpeg │ │ │ │ ├── ffmpeg.min.js │ │ │ │ └── ffmpeg.min.js.map │ │ │ ├── geckos.io-client.2.3.2.min.js │ │ │ ├── gif │ │ │ │ ├── gif.js │ │ │ │ ├── gif.js.map │ │ │ │ ├── gif.worker.js │ │ │ │ └── gif.worker.js.map │ │ │ ├── gifenc │ │ │ │ ├── gifenc.esm.js │ │ │ │ ├── gifenc.esm.js.map │ │ │ │ ├── gifenc.js │ │ │ │ └── gifenc.js.map │ │ │ ├── gl-matrix │ │ │ │ ├── common.mjs │ │ │ │ ├── index.mjs │ │ │ │ ├── mat2.mjs │ │ │ │ ├── mat2d.mjs │ │ │ │ ├── mat3.mjs │ │ │ │ ├── mat4.mjs │ │ │ │ ├── quat.mjs │ │ │ │ ├── quat2.mjs │ │ │ │ ├── vec2.mjs │ │ │ │ ├── vec3.mjs │ │ │ │ └── vec4.mjs │ │ │ ├── gpt3-tokenizer │ │ │ │ ├── array-keyed-map.js │ │ │ │ ├── bpe-regex.d.ts │ │ │ │ ├── bpe-vocab.d.ts │ │ │ │ ├── encodings.d.ts │ │ │ │ ├── gpt3-tokenizer.js │ │ │ │ ├── gpt3-tokenizer.js.map │ │ │ │ ├── index-browser.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── text-decoder.d.ts │ │ │ │ ├── text-encoder.d.ts │ │ │ │ └── tokenizer.d.ts │ │ │ ├── idb.js │ │ │ ├── jszip.min.js │ │ │ ├── nanoid │ │ │ │ ├── nanoid.js │ │ │ │ └── url-alphabet │ │ │ │ │ └── index.js │ │ │ ├── sm │ │ │ │ └── 0ecc1ee212c4ceef77427983aa99400261b08fb9b998f490bf0d417faadfc3ab.map │ │ │ ├── tasks-vision │ │ │ │ ├── README.md │ │ │ │ ├── package.json │ │ │ │ ├── vision.d.ts │ │ │ │ ├── vision_bundle.js │ │ │ │ └── wasm │ │ │ │ │ ├── .vision_wasm_internal.wasm.icloud │ │ │ │ │ ├── .vision_wasm_nosimd_internal.wasm.icloud │ │ │ │ │ ├── vision_wasm_internal.js │ │ │ │ │ └── vision_wasm_nosimd_internal.js │ │ │ ├── three │ │ │ │ ├── BufferGeometryUtils.js │ │ │ │ ├── GLTFExporter.js │ │ │ │ ├── Line2.js │ │ │ │ ├── LineGeometry.js │ │ │ │ ├── LineMaterial.js │ │ │ │ ├── LineSegments2.js │ │ │ │ ├── LineSegmentsGeometry.js │ │ │ │ ├── OBJExporter.js │ │ │ │ ├── TubePainter.js │ │ │ │ ├── USDZExporter.js │ │ │ │ ├── VRButton.js │ │ │ │ ├── VertexNormalsHelper.js │ │ │ │ ├── fflate.module.js │ │ │ │ └── three.module.js │ │ │ ├── wasmboy │ │ │ │ ├── core │ │ │ │ │ ├── core.cjs.js │ │ │ │ │ ├── core.esm.js │ │ │ │ │ ├── core.umd.js │ │ │ │ │ ├── core.untouched.wasm │ │ │ │ │ ├── core.untouched.wasm.map │ │ │ │ │ ├── core.untouched.wat │ │ │ │ │ ├── getWasmBoyTsCore.cjs.js │ │ │ │ │ ├── getWasmBoyTsCore.cjs.js.map │ │ │ │ │ ├── getWasmBoyTsCore.closure.cjs.js │ │ │ │ │ ├── getWasmBoyTsCore.closure.cjs.js.map │ │ │ │ │ ├── getWasmBoyTsCore.closure.esm.js │ │ │ │ │ ├── getWasmBoyTsCore.closure.esm.js.map │ │ │ │ │ ├── getWasmBoyTsCore.closure.iife.js │ │ │ │ │ ├── getWasmBoyTsCore.closure.iife.js.map │ │ │ │ │ ├── getWasmBoyTsCore.closure.umd.js │ │ │ │ │ ├── getWasmBoyTsCore.closure.umd.js.map │ │ │ │ │ ├── getWasmBoyTsCore.esm.js │ │ │ │ │ ├── getWasmBoyTsCore.esm.js.map │ │ │ │ │ ├── getWasmBoyTsCore.iife.js │ │ │ │ │ ├── getWasmBoyTsCore.iife.js.map │ │ │ │ │ ├── getWasmBoyTsCore.umd.js │ │ │ │ │ ├── getWasmBoyTsCore.umd.js.map │ │ │ │ │ ├── getWasmBoyWasmCore.cjs.js │ │ │ │ │ ├── getWasmBoyWasmCore.cjs.js.map │ │ │ │ │ ├── getWasmBoyWasmCore.esm.js │ │ │ │ │ ├── getWasmBoyWasmCore.esm.js.map │ │ │ │ │ ├── getWasmBoyWasmCore.iife.js │ │ │ │ │ ├── getWasmBoyWasmCore.iife.js.map │ │ │ │ │ ├── getWasmBoyWasmCore.umd.js │ │ │ │ │ └── getWasmBoyWasmCore.umd.js.map │ │ │ │ ├── wasmboy.ts.cjs.js │ │ │ │ ├── wasmboy.ts.cjs.js.map │ │ │ │ ├── wasmboy.ts.esm.js │ │ │ │ ├── wasmboy.ts.esm.js.map │ │ │ │ ├── wasmboy.ts.iife.js │ │ │ │ ├── wasmboy.ts.iife.js.map │ │ │ │ ├── wasmboy.ts.umd.js │ │ │ │ ├── wasmboy.ts.umd.js.map │ │ │ │ ├── wasmboy.wasm.cjs.js │ │ │ │ ├── wasmboy.wasm.cjs.js.map │ │ │ │ ├── wasmboy.wasm.esm.js │ │ │ │ ├── wasmboy.wasm.esm.js.map │ │ │ │ ├── wasmboy.wasm.iife.js │ │ │ │ ├── wasmboy.wasm.iife.js.map │ │ │ │ ├── wasmboy.wasm.umd.js │ │ │ │ └── wasmboy.wasm.umd.js.map │ │ │ ├── web3 │ │ │ │ ├── .web3.min.js.map.icloud │ │ │ │ └── web3.min.js │ │ │ └── webpxmux │ │ │ │ ├── webpxmux.d.ts │ │ │ │ ├── webpxmux.js │ │ │ │ ├── webpxmux.js.map │ │ │ │ ├── webpxmux.min.js │ │ │ │ ├── webpxmux.min.js.map │ │ │ │ └── webpxmux.wasm │ │ ├── disks │ │ │ ├── $.mjs │ │ │ ├── 1v1.mjs │ │ │ ├── 3-kidlisp-tests.lisp │ │ │ ├── 3x3.mjs │ │ │ ├── 404.mjs │ │ │ ├── a*.mjs │ │ │ ├── ableton.mjs │ │ │ ├── about.mjs │ │ │ ├── addition.lisp │ │ │ ├── aframe.mjs │ │ │ ├── alex-row.mjs │ │ │ ├── alphapoet.mjs │ │ │ ├── amby.mjs │ │ │ ├── amp.mjs │ │ │ ├── angel.mjs │ │ │ ├── api.mjs │ │ │ ├── baktok.mjs │ │ │ ├── balls.mjs │ │ │ ├── basic-line-pointer.mjs │ │ │ ├── beat.mjs │ │ │ ├── bgm.mjs │ │ │ ├── bits.mjs │ │ │ ├── blank.mjs │ │ │ ├── bleep.mjs │ │ │ ├── blur.mjs │ │ │ ├── booted-by.mjs │ │ │ ├── botce.mjs │ │ │ ├── box.mjs │ │ │ ├── boxes.mjs │ │ │ ├── boyfriend.mjs │ │ │ ├── brick-breaker.mjs │ │ │ ├── brother.mjs │ │ │ ├── brush.lisp │ │ │ ├── bubble.mjs │ │ │ ├── camera.mjs │ │ │ ├── cards.mjs │ │ │ ├── chart.mjs │ │ │ ├── chat.mjs │ │ │ ├── chord.mjs │ │ │ ├── clock.mjs │ │ │ ├── code.lisp │ │ │ ├── colors.mjs │ │ │ ├── colplay.mjs │ │ │ ├── common │ │ │ │ ├── debug.mjs │ │ │ │ ├── fonts.mjs │ │ │ │ ├── music.mjs │ │ │ │ ├── products.mjs │ │ │ │ ├── scrub.mjs │ │ │ │ ├── sfx.mjs │ │ │ │ └── tape-player.mjs │ │ │ ├── crayon.mjs │ │ │ ├── crop.mjs │ │ │ ├── cross-tab-test.mjs │ │ │ ├── dad.mjs │ │ │ ├── debug-kidlisp-hud.mjs │ │ │ ├── debug.mjs │ │ │ ├── deck.mjs │ │ │ ├── decode.mjs │ │ │ ├── delete-erase-and-forget-me.mjs │ │ │ ├── demo.mjs │ │ │ ├── description.mjs │ │ │ ├── desk.mjs │ │ │ ├── digitpain0.mjs │ │ │ ├── digitpain1.mjs │ │ │ ├── digitpain2.mjs │ │ │ ├── digitpain3.mjs │ │ │ ├── docgen.mjs │ │ │ ├── dolls.mjs │ │ │ ├── doodle.mjs │ │ │ ├── download.mjs │ │ │ ├── drawings │ │ │ │ ├── arrow-up-3x6 2022.1.18.21.59.35.json │ │ │ │ ├── default.json │ │ │ │ ├── font_1 │ │ │ │ │ ├── lowercase │ │ │ │ │ │ ├── a - 2022.1.11.16.12.07.json │ │ │ │ │ │ ├── b - 2022.1.11.16.12.57.json │ │ │ │ │ │ ├── c - 2022.1.11.16.14.15.json │ │ │ │ │ │ ├── d - 2022.1.11.16.14.53.json │ │ │ │ │ │ ├── e - 2022.1.11.16.15.35.json │ │ │ │ │ │ ├── f - 2022.1.11.16.18.40.json │ │ │ │ │ │ ├── g - 2022.1.11.16.20.34.json │ │ │ │ │ │ ├── h - 2022.1.11.16.22.10.json │ │ │ │ │ │ ├── i - 2022.1.11.16.23.36.json │ │ │ │ │ │ ├── j - 2022.1.11.16.25.14.json │ │ │ │ │ │ ├── k - 2022.1.11.16.29.25.json │ │ │ │ │ │ ├── l - 2022.1.11.16.30.34.json │ │ │ │ │ │ ├── m - 2022.1.11.16.31.12.json │ │ │ │ │ │ ├── n - 2022.1.11.16.31.51.json │ │ │ │ │ │ ├── o - 2022.1.11.16.32.30.json │ │ │ │ │ │ ├── oslash - 2022.1.11.16.32.30.json │ │ │ │ │ │ ├── oslash - 2025.5.9.10.30.15.123.json │ │ │ │ │ │ ├── p - 2022.1.11.16.35.17.json │ │ │ │ │ │ ├── q - 2022.1.11.16.36.26.json │ │ │ │ │ │ ├── r - 2022.1.11.16.39.47.json │ │ │ │ │ │ ├── s - 2022.1.11.16.41.22.json │ │ │ │ │ │ ├── t - 2022.1.11.16.42.16.json │ │ │ │ │ │ ├── u - 2022.1.11.16.43.31.json │ │ │ │ │ │ ├── v - 2022.1.11.16.44.21.json │ │ │ │ │ │ ├── w - 2022.1.11.16.45.21.json │ │ │ │ │ │ ├── x - 2022.1.11.16.45.58.json │ │ │ │ │ │ ├── y - 2022.1.11.16.47.21.json │ │ │ │ │ │ ├── z - 2022.1.11.16.48.15.json │ │ │ │ │ │ └── í - 2025.6.25.01.00.00.json │ │ │ │ │ ├── numbers │ │ │ │ │ │ ├── 0 - 2021.12.16.18.28.06.json │ │ │ │ │ │ ├── 1 - 2021.12.16.17.56.44.json │ │ │ │ │ │ ├── 2 - 2021.12.16.17.59.01.json │ │ │ │ │ │ ├── 3 - 2021.12.16.17.59.52.json │ │ │ │ │ │ ├── 4 - 2021.12.16.18.00.56.json │ │ │ │ │ │ ├── 5 - 2021.12.16.18.01.27.json │ │ │ │ │ │ ├── 6 - 2021.12.16.18.02.26.json │ │ │ │ │ │ ├── 7 - 2021.12.16.18.02.50.json │ │ │ │ │ │ ├── 8 - 2021.12.16.18.03.31.json │ │ │ │ │ │ └── 9 - 2021.12.16.18.04.15.json │ │ │ │ │ ├── symbols │ │ │ │ │ │ ├── L brace - 2022.1.11.16.53.15.json │ │ │ │ │ │ ├── L bracket - 2022.1.11.16.54.53.json │ │ │ │ │ │ ├── L paren - 2022.1.11.16.56.12.json │ │ │ │ │ │ ├── R brace - 2022.1.11.16.54.15.json │ │ │ │ │ │ ├── R bracket - 2022.1.11.16.55.19.json │ │ │ │ │ │ ├── R paren - 2022.1.11.16.57.09.json │ │ │ │ │ │ ├── ampersand - 2022.1.11.18.06.40.json │ │ │ │ │ │ ├── apostrophe - 2022.1.11.18.09.59.json │ │ │ │ │ │ ├── asterisk - 2022.1.11.17.00.45.json │ │ │ │ │ │ ├── at - 2022.1.11.17.09.12.json │ │ │ │ │ │ ├── backslash - 2022.1.11.17.11.17.json │ │ │ │ │ │ ├── caret - 2022.1.11.17.07.56.json │ │ │ │ │ │ ├── colon - 2022.1.11.18.15.47.json │ │ │ │ │ │ ├── comma - 2022.1.11.18.12.57.json │ │ │ │ │ │ ├── dollar - 2022.1.11.16.59.42.json │ │ │ │ │ │ ├── ellipsis - 2024.4.27.09.25.16.717.json │ │ │ │ │ │ ├── equal - 2022.1.11.17.02.12.json │ │ │ │ │ │ ├── exclamation - 2022.1.11.18.10.47.json │ │ │ │ │ │ ├── greater than - 2022.1.11.16.58.41.json │ │ │ │ │ │ ├── hash - 2022.1.11.17.04.12.json │ │ │ │ │ │ ├── less than - 2022.1.11.16.58.05.json │ │ │ │ │ │ ├── minus - 2022.1.11.17.01.14.json │ │ │ │ │ │ ├── percent - 2022.1.11.17.06.43.json │ │ │ │ │ │ ├── period - 2022.1.11.18.13.56.json │ │ │ │ │ │ ├── plus - 2022.1.11.17.01.43.json │ │ │ │ │ │ ├── question mark - 2022.1.11.18.09.24.json │ │ │ │ │ │ ├── quotes - 2022.1.11.18.10.19.json │ │ │ │ │ │ ├── semi colon - 2022.1.11.18.14.51.json │ │ │ │ │ │ ├── slash - 2022.1.11.17.03.28.json │ │ │ │ │ │ ├── tilde - 2022.1.11.18.08.35.json │ │ │ │ │ │ ├── underscore - 2022.1.11.17.04.46.json │ │ │ │ │ │ └── vertical line - 2022.1.11.18.07.22.json │ │ │ │ │ └── uppercase │ │ │ │ │ │ ├── A - 2022.1.11.18.30.32.json │ │ │ │ │ │ ├── B - 2022.1.11.18.13.14.json │ │ │ │ │ │ ├── C - 2022.1.11.18.14.00.json │ │ │ │ │ │ ├── D - 2022.1.11.18.14.38.json │ │ │ │ │ │ ├── E - 2022.1.11.18.15.14.json │ │ │ │ │ │ ├── F - 2022.1.11.18.15.47.json │ │ │ │ │ │ ├── G - 2022.1.11.18.16.34.json │ │ │ │ │ │ ├── H - 2022.1.11.18.17.13.json │ │ │ │ │ │ ├── I - 2022.1.11.18.18.01.json │ │ │ │ │ │ ├── J - 2022.1.11.18.18.41.json │ │ │ │ │ │ ├── K - 2022.1.11.18.19.20.json │ │ │ │ │ │ ├── L - 2022.1.11.18.19.53.json │ │ │ │ │ │ ├── M - 2022.1.11.18.24.51.json │ │ │ │ │ │ ├── N - 2022.1.11.18.31.55.json │ │ │ │ │ │ ├── O - 2022.1.11.18.32.33.json │ │ │ │ │ │ ├── Oslash - 2022.1.11.18.32.33.json │ │ │ │ │ │ ├── Oslash - 2025.5.9.10.30.15.123.json │ │ │ │ │ │ ├── P - 2022.1.11.18.33.17.json │ │ │ │ │ │ ├── Q - 2022.1.11.18.34.00.json │ │ │ │ │ │ ├── R - 2022.1.11.18.35.27.json │ │ │ │ │ │ ├── S - 2022.1.11.18.36.12.json │ │ │ │ │ │ ├── T - 2022.1.11.18.36.42.json │ │ │ │ │ │ ├── U - 2022.1.11.18.37.17.json │ │ │ │ │ │ ├── V - 2022.1.11.18.37.54.json │ │ │ │ │ │ ├── W - 2022.1.11.18.39.11.json │ │ │ │ │ │ ├── X - 2022.1.11.18.50.18.json │ │ │ │ │ │ ├── Y - 2022.1.11.18.52.28.json │ │ │ │ │ │ └── Z - 2022.1.11.18.53.22.json │ │ │ │ ├── icons │ │ │ │ │ └── lowercase │ │ │ │ │ │ ├── A.json │ │ │ │ │ │ ├── E.json │ │ │ │ │ │ ├── I.json │ │ │ │ │ │ ├── O.json │ │ │ │ │ │ ├── P.json │ │ │ │ │ │ ├── Q.json │ │ │ │ │ │ ├── R.json │ │ │ │ │ │ ├── T.json │ │ │ │ │ │ ├── U.json │ │ │ │ │ │ ├── W.json │ │ │ │ │ │ └── Y.json │ │ │ │ └── save_open_icon.json │ │ │ ├── dync.mjs │ │ │ ├── encode.mjs │ │ │ ├── f3ral3xp.mjs │ │ │ ├── ff.mjs │ │ │ ├── fia-birthday.lisp │ │ │ ├── field.mjs │ │ │ ├── fill.mjs │ │ │ ├── flap.mjs │ │ │ ├── fly.mjs │ │ │ ├── fps.mjs │ │ │ ├── freaky-flowers.mjs │ │ │ ├── game.mjs │ │ │ ├── gameboy.mjs │ │ │ ├── gamepad.mjs │ │ │ ├── gargoyle.mjs │ │ │ ├── gesture.mjs │ │ │ ├── girlfriend.mjs │ │ │ ├── gostop.mjs │ │ │ ├── gradient-test.mjs │ │ │ ├── graphics.mjs │ │ │ ├── handles.lisp │ │ │ ├── handprint.mjs │ │ │ ├── handtime.mjs │ │ │ ├── hell_-world.mjs │ │ │ ├── hellopjs.pjs │ │ │ ├── hha.mjs │ │ │ ├── hop.mjs │ │ │ ├── horizon.mjs │ │ │ ├── hueber.mjs │ │ │ ├── husband.mjs │ │ │ ├── hw.mjs │ │ │ ├── i.mjs │ │ │ ├── icon.mjs │ │ │ ├── images.mjs │ │ │ ├── imessage.mjs │ │ │ ├── justsound.lisp │ │ │ ├── keys.mjs │ │ │ ├── kid.mjs │ │ │ ├── kidlisp-gb-test.mjs │ │ │ ├── kidlisp-in-js.mjs │ │ │ ├── kidlisp-piece.mjs │ │ │ ├── kidlisp-wip.lisp │ │ │ ├── kidlisp.mjs │ │ │ ├── lab.lisp │ │ │ ├── laer-klokken.mjs │ │ │ ├── lang.mjs │ │ │ ├── learn.mjs │ │ │ ├── liar.mjs │ │ │ ├── line.mjs │ │ │ ├── list.mjs │ │ │ ├── lmn-flower.mjs │ │ │ ├── lmn-petal.mjs │ │ │ ├── login-pattern.mjs │ │ │ ├── login-wait.mjs │ │ │ ├── m2w2.mjs │ │ │ ├── make.mjs │ │ │ ├── marker.mjs │ │ │ ├── melody.mjs │ │ │ ├── metaballs.mjs │ │ │ ├── metronome.mjs │ │ │ ├── microphone.mjs │ │ │ ├── mom.mjs │ │ │ ├── mood.mjs │ │ │ ├── moods.mjs │ │ │ ├── multipen.mjs │ │ │ ├── nail.mjs │ │ │ ├── neo-wipppps.mjs │ │ │ ├── newprofile.lisp │ │ │ ├── noise.mjs │ │ │ ├── nopaint.mjs │ │ │ ├── notepat-tv.mjs │ │ │ ├── notepat.mjs │ │ │ ├── old │ │ │ │ └── worker-disk.mjs │ │ │ ├── oldline.mjs │ │ │ ├── oldmake.mjs │ │ │ ├── oldpull.mjs │ │ │ ├── oldshape.mjs │ │ │ ├── oldwand.mjs │ │ │ ├── oldwipppps.mjs │ │ │ ├── ordfish.mjs │ │ │ ├── ordsy.mjs │ │ │ ├── oval.mjs │ │ │ ├── paint.mjs │ │ │ ├── paintball.mjs │ │ │ ├── painting.mjs │ │ │ ├── paste-test.lisp │ │ │ ├── paste.mjs │ │ │ ├── perf.mjs │ │ │ ├── phand.mjs │ │ │ ├── pip.mjs │ │ │ ├── play.mjs │ │ │ ├── pline.mjs │ │ │ ├── plot.mjs │ │ │ ├── pond.mjs │ │ │ ├── pressure.mjs │ │ │ ├── profile.mjs │ │ │ ├── prompt.mjs │ │ │ ├── prutti.mjs │ │ │ ├── ptt.mjs │ │ │ ├── pull.mjs │ │ │ ├── rain.mjs │ │ │ ├── rattle.mjs │ │ │ ├── rect.mjs │ │ │ ├── replay.mjs │ │ │ ├── robo.mjs │ │ │ ├── rotate-text-demo.mjs │ │ │ ├── run&gun.mjs │ │ │ ├── sage.mjs │ │ │ ├── sb.mjs │ │ │ ├── scawy-snake.mjs │ │ │ ├── screen.mjs │ │ │ ├── screenshots.mjs │ │ │ ├── screentest.mjs │ │ │ ├── seashells.mjs │ │ │ ├── selfie.mjs │ │ │ ├── sfx.mjs │ │ │ ├── shape.mjs │ │ │ ├── share.mjs │ │ │ ├── shh.mjs │ │ │ ├── sign.mjs │ │ │ ├── signature.mjs │ │ │ ├── sing.mjs │ │ │ ├── sister.mjs │ │ │ ├── slgb.mjs │ │ │ ├── slip.mjs │ │ │ ├── smear.mjs │ │ │ ├── sno.mjs │ │ │ ├── song.mjs │ │ │ ├── sparkle-brush.mjs │ │ │ ├── sparkle.mjs │ │ │ ├── spinning-cube.lisp │ │ │ ├── spline.mjs │ │ │ ├── split.mjs │ │ │ ├── spray.mjs │ │ │ ├── sprinkles.mjs │ │ │ ├── sprite.mjs │ │ │ ├── squaresong.mjs │ │ │ ├── ss.mjs │ │ │ ├── stage-setup.html │ │ │ ├── stage.mjs │ │ │ ├── staka.mjs │ │ │ ├── stamp.mjs │ │ │ ├── stample.mjs │ │ │ ├── starfield.mjs │ │ │ ├── subtraction.lisp │ │ │ ├── test-delay-timing.lisp │ │ │ ├── test-write-center.lisp │ │ │ ├── test.mjs │ │ │ ├── textfence.mjs │ │ │ ├── throb.mjs │ │ │ ├── tobby.mjs │ │ │ ├── tone.mjs │ │ │ ├── toss.mjs │ │ │ ├── tracker.mjs │ │ │ ├── transform.mjs │ │ │ ├── tremory.mjs │ │ │ ├── triquilt.mjs │ │ │ ├── tv.mjs │ │ │ ├── ucla-1.mjs │ │ │ ├── ucla-2.mjs │ │ │ ├── ucla-3-keyboard.mjs │ │ │ ├── ucla-3.mjs │ │ │ ├── ucla-4-box.mjs │ │ │ ├── ucla-4.mjs │ │ │ ├── ucla-5.mjs │ │ │ ├── ucla-6-turtle.mjs │ │ │ ├── ucla-6.mjs │ │ │ ├── ucla-7-balls.mjs │ │ │ ├── ucla-7-dial.mjs │ │ │ ├── ucla-7-jump.mjs │ │ │ ├── ucla-7.mjs │ │ │ ├── udp.mjs │ │ │ ├── uke.mjs │ │ │ ├── valbear.mjs │ │ │ ├── vary.mjs │ │ │ ├── video.mjs │ │ │ ├── visualizer.mjs │ │ │ ├── wand.mjs │ │ │ ├── wave.mjs │ │ │ ├── wg.mjs │ │ │ ├── wgr.mjs │ │ │ ├── whistle.mjs │ │ │ ├── whistlegraph.mjs │ │ │ ├── whistlegraph │ │ │ │ └── whistlegraph-cards.js │ │ │ ├── wife.mjs │ │ │ ├── wipe.mjs │ │ │ ├── wipppps.mjs │ │ │ ├── word.mjs │ │ │ ├── zoom-test.mjs │ │ │ └── zzzwap.mjs │ │ ├── lib │ │ │ ├── 2d.mjs │ │ │ ├── 3d.mjs │ │ │ ├── GAMEPAD-COLORS.md │ │ │ ├── ask.mjs │ │ │ ├── cam-doll.mjs │ │ │ ├── chat-highlighting.mjs │ │ │ ├── chat.mjs │ │ │ ├── color-highlighting.mjs │ │ │ ├── disk.mjs │ │ │ ├── fade-state.mjs │ │ │ ├── gamepad-mappings.mjs │ │ │ ├── gamepad.mjs │ │ │ ├── geo.mjs │ │ │ ├── gesture.mjs │ │ │ ├── gizmo.mjs │ │ │ ├── gl.mjs │ │ │ ├── glaze.mjs │ │ │ ├── glazes │ │ │ │ ├── digitpain0 │ │ │ │ │ ├── digitpain0-compute.glsl │ │ │ │ │ ├── digitpain0-display.glsl │ │ │ │ │ └── digitpain0-frag.glsl │ │ │ │ ├── passthrough-vert.glsl │ │ │ │ ├── prompt │ │ │ │ │ ├── prompt-compute.glsl │ │ │ │ │ ├── prompt-display.glsl │ │ │ │ │ └── prompt-frag.glsl │ │ │ │ └── uniforms.js │ │ │ ├── graph.mjs │ │ │ ├── graphics-optimizer.mjs │ │ │ ├── hand-processor.js │ │ │ ├── hand.mjs │ │ │ ├── headers.mjs │ │ │ ├── help.mjs │ │ │ ├── helpers.mjs │ │ │ ├── keyboard.mjs │ │ │ ├── kidlisp-keep.mjs │ │ │ ├── kidlisp.mjs │ │ │ ├── logs.mjs │ │ │ ├── loop.mjs │ │ │ ├── melody-parser.mjs │ │ │ ├── microphone.mjs │ │ │ ├── midi.mjs │ │ │ ├── motion.mjs │ │ │ ├── notepat-convert.mjs │ │ │ ├── num.mjs │ │ │ ├── pack-mode.mjs │ │ │ ├── parse.mjs │ │ │ ├── pen.mjs │ │ │ ├── platform.mjs │ │ │ ├── redact.mjs │ │ │ ├── shaders │ │ │ │ ├── pass-frag.glsl │ │ │ │ └── pass-vert.glsl │ │ │ ├── shop.mjs │ │ │ ├── socket.mjs │ │ │ ├── sound │ │ │ │ ├── bubble.mjs │ │ │ │ ├── sound-whitelist.mjs │ │ │ │ ├── synth.mjs │ │ │ │ └── volume.mjs │ │ │ ├── speaker-bundled.mjs │ │ │ ├── speaker.mjs │ │ │ ├── speech.mjs │ │ │ ├── store.mjs │ │ │ ├── text.mjs │ │ │ ├── ticker.mjs │ │ │ ├── ticket.mjs │ │ │ ├── type.mjs │ │ │ ├── udp.mjs │ │ │ ├── ui.mjs │ │ │ ├── usb.mjs │ │ │ ├── user-code.mjs │ │ │ └── webgpu.mjs │ │ ├── prompts │ │ │ ├── kidlisp-make.prompt │ │ │ ├── make.prompt │ │ │ ├── make.prompt.2025-06-15-backup │ │ │ └── make.prompt.backup.2025-06-14 │ │ ├── style.css │ │ └── systems │ │ │ ├── nopaint.mjs │ │ │ ├── prompt-system.mjs │ │ │ └── world.mjs │ ├── assets │ │ └── readme.txt │ ├── builds.false.work │ │ ├── index.html │ │ ├── ios-build-status.html │ │ └── ios │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── index.html │ │ │ └── manifest.plist │ ├── bundles │ │ ├── 39j-cli.html │ │ ├── 39j-fixed.html │ │ ├── 39j.html │ │ ├── 9vd.html │ │ └── pal.html │ ├── digitpain.com │ │ ├── README.md │ │ ├── digitpain.jpg │ │ ├── index.html │ │ └── style.css │ ├── firebase-messaging-sw.js │ ├── ios-keyboard-test.html │ ├── kidlisp.com │ │ ├── README.md │ │ └── index.html │ ├── manifest.json │ ├── mediapipe.html │ ├── models │ │ └── .hand_landmarker.task.icloud │ ├── overlay-test.html │ ├── overlay.html │ ├── privacy-policy.html │ ├── purple-pals.svg │ ├── sandboxed-iframe-mockup.html │ ├── sotce-net-wrap-test.html │ ├── sundarakarma.com │ │ ├── Sundara Karma _ SUNDARA KARMA_files │ │ │ ├── 7a5594_289d1bbb3e6a3852088c37828c86da37.html │ │ │ ├── AAAAAAAA.jpg │ │ │ ├── FbWhite.png │ │ │ ├── YtWhite.png │ │ │ ├── app-v3.css │ │ │ ├── app.js │ │ │ ├── browser-deprecation.bundle.es5.js │ │ │ ├── focus-within-polyfill.js │ │ │ ├── instaWhite.png │ │ │ ├── lodash.min.js │ │ │ ├── main.435446ea.bundle.min.js │ │ │ ├── main.renderer.f600e767.bundle.min.js │ │ │ ├── minified.js │ │ │ ├── modulemetadata.es5.min.js │ │ │ ├── rb_wixui.thunderbolt[AppWidget_Classic].5d414cf3.bundle.min.js │ │ │ ├── rb_wixui.thunderbolt[ClassicSection].d444d835.bundle.min.js │ │ │ ├── rb_wixui.thunderbolt[FormContainer_FormContainerSkin].187e21cd.bundle.min.js │ │ │ ├── rb_wixui.thunderbolt[FreemiumBannerDesktop_FreemiumBannerDesktopNewLogo].2d551858.bundle.min.js │ │ │ ├── rb_wixui.thunderbolt[HtmlComponent].547b12c6.bundle.min.js │ │ │ ├── rb_wixui.thunderbolt[MeshGroup].f88c99ed.bundle.min.js │ │ │ ├── rb_wixui.thunderbolt[SkipToContentButton].69abe737.bundle.min.js │ │ │ ├── rb_wixui.thunderbolt[TextInput].03ad1d5e.bundle.min.js │ │ │ ├── rb_wixui.thunderbolt_bootstrap-classic.ee97aa67.bundle.min.js │ │ │ ├── rb_wixui.thunderbolt_bootstrap.3fbbd89c.bundle.min.js │ │ │ ├── react-dom.production.min.js │ │ │ ├── react.production.min.js │ │ │ ├── siteTags.bundle.min.js │ │ │ ├── thunderbolt-commons.0d8a3f92.bundle.min.js │ │ │ ├── twitterWhite.png │ │ │ └── widget.js │ │ ├── index.html │ │ └── oscar.html │ ├── test-qr-density.html │ ├── thumbnail │ │ └── thumbnail-note.txt │ └── type │ │ └── webfonts │ │ ├── BerkeleyMonoVariable-Italic.woff │ │ ├── BerkeleyMonoVariable-Italic.woff2 │ │ ├── BerkeleyMonoVariable-Regular.woff │ │ ├── BerkeleyMonoVariable-Regular.woff2 │ │ ├── berkeley-mono-variable.css │ │ ├── ywft-processing-alternate.css │ │ ├── ywft-processing-alternate.eot │ │ ├── ywft-processing-alternate.svg │ │ ├── ywft-processing-alternate.ttf │ │ ├── ywft-processing-alternate.woff │ │ ├── ywft-processing-alternate.woff2 │ │ ├── ywft-processing-bold-alternate.css │ │ ├── ywft-processing-bold-alternate.eot │ │ ├── ywft-processing-bold-alternate.svg │ │ ├── ywft-processing-bold-alternate.ttf │ │ ├── ywft-processing-bold-alternate.woff │ │ ├── ywft-processing-bold-alternate.woff2 │ │ ├── ywft-processing-bold.css │ │ ├── ywft-processing-bold.eot │ │ ├── ywft-processing-bold.svg │ │ ├── ywft-processing-bold.ttf │ │ ├── ywft-processing-bold.woff │ │ ├── ywft-processing-bold.woff2 │ │ ├── ywft-processing-light-alternate.css │ │ ├── ywft-processing-light-alternate.eot │ │ ├── ywft-processing-light-alternate.svg │ │ ├── ywft-processing-light-alternate.ttf │ │ ├── ywft-processing-light-alternate.woff │ │ ├── ywft-processing-light-alternate.woff2 │ │ ├── ywft-processing-light.css │ │ ├── ywft-processing-light.eot │ │ ├── ywft-processing-light.svg │ │ ├── ywft-processing-light.ttf │ │ ├── ywft-processing-light.woff │ │ ├── ywft-processing-light.woff2 │ │ ├── ywft-processing-regular.css │ │ ├── ywft-processing-regular.eot │ │ ├── ywft-processing-regular.svg │ │ ├── ywft-processing-regular.ttf │ │ ├── ywft-processing-regular.woff │ │ └── ywft-processing-regular.woff2 ├── templates │ └── index.html ├── tests │ └── parse.test.mjs └── tsconfig.json ├── tests ├── clock-notepat-convert.test.mjs ├── embed-test.mjs ├── findColor.test.mjs ├── hudColorCodes.test.mjs ├── kidlisp-color-patterns.test.mjs ├── kidlisp-v2-architecture │ ├── README.md │ ├── TEST-RESULTS.md │ ├── cache-manager-prototype.mjs │ ├── cache-manager.test.mjs │ ├── instance-manager-prototype.mjs │ ├── instance-manager.test.mjs │ ├── integration.test.mjs │ ├── mock-network.mjs │ └── performance-benchmark.mjs └── performance │ ├── README.md │ ├── boot-performance.test.mjs │ ├── chrome-devtools-test.mjs │ └── reports │ └── .gitignore ├── tezos ├── .gitignore ├── .tezos-client-local │ ├── public_key_hashs │ ├── public_keys │ └── secret_keys ├── BUNDLE-SYSTEM.md ├── Dockerfile.smartpy ├── KeepsFA2Corrected │ ├── log.txt │ ├── step_002_cont_0_contract.json │ ├── step_002_cont_0_contract.tz │ ├── step_002_cont_0_storage.json │ ├── step_002_cont_0_storage.py │ ├── step_002_cont_0_storage.tz │ └── step_002_cont_0_types.py ├── README.md ├── archive │ ├── analyze-imports.mjs │ ├── bundle-docs │ │ ├── BUNDLE-OPTIMIZATION-RESEARCH.md │ │ ├── KEEP-BUNDLE-PROGRESS.md │ │ └── OPTIMIZATION-RESULTS.md │ ├── bundle-minimal-keep.mjs │ └── compression-research.mjs ├── balance.py ├── bundle-keep-html.mjs ├── check_bundle.py ├── compile_corrected.py ├── compile_keeps.py ├── create_kidlisp_wallet.py ├── deploy-docker-cp.py ├── deploy-single-command.py ├── deploy-to-ghostnet.py ├── deploy-via-docker.py ├── deploy_clean.js ├── deploy_manual_attempt.js ├── fa2_minimal.py ├── fa2_nft_template.py ├── fa2_standard_example.py ├── fa2_template_official.py ├── fund-kidlisp.fish ├── inspect_loadbitmap.py ├── keeps_fa2_clean.py ├── keeps_fa2_compiled.tz ├── keeps_fa2_corrected_compiled.tz ├── keeps_fa2_corrected_manual.tz ├── keeps_fa2_enhanced │ ├── log.txt │ ├── step_002_cont_0_contract.json │ ├── step_002_cont_0_contract.tz │ ├── step_002_cont_0_storage.json │ ├── step_002_cont_0_storage.py │ ├── step_002_cont_0_storage.tz │ └── step_002_cont_0_types.py ├── keeps_fa2_final.py ├── keeps_fa2_final_compiled.tz ├── keeps_fa2_fixed.py ├── keeps_fa2_test.py ├── keeps_fa2_v23.py ├── keeps_fa2_v2_compiled.tz ├── michelson-lib │ ├── DOCKER-TESTS-SUMMARY.md │ ├── README.md │ ├── STATUS.md │ ├── TESTING.md │ ├── examples │ │ ├── complete_fa2_contract.py │ │ └── keeps_with_metadata.py │ ├── keeps-fa2-complete.tz │ ├── lib │ │ └── builder.py │ ├── pytest.ini │ ├── requirements.txt │ ├── test-metadata-output │ │ ├── token-0-metadata.json │ │ ├── token-0-michelson.json │ │ ├── token-1-metadata.json │ │ ├── token-1-michelson.json │ │ ├── token-2-metadata.json │ │ └── token-2-michelson.json │ ├── test-token-creation.py │ └── tests │ │ ├── __init__.py │ │ ├── test_fa2.py │ │ ├── test_keep.py │ │ ├── test_metadata.py │ │ └── test_octez_docker.py ├── mint-to-ghostnet.py ├── mint.js ├── mint_with_ipfs_ghostnet.js ├── octez-docker.fish ├── package.json ├── requirements.txt ├── setup.fish ├── smartpy-compile ├── test-balance.js ├── test-code-format.tz ├── test-minimal-fa2-param.tz ├── test-minimal-origination.tz ├── test-nested-or.tz ├── test-or-annot-on-pair.tz ├── test-or-annot.tz ├── test-or-complex.tz ├── test-param-formats.tz ├── test-setup.fish ├── test-transfer.js ├── test_edit_and_lock.js ├── transfer-to-different.js ├── transfer-v4.js ├── upload-to-ipfs.py └── upload_to_ipfs.js ├── tokens ├── README.md ├── TODO.md ├── pack.fish └── test-local.html ├── ucla-class ├── ucla-1.mjs ├── ucla-2-b.mjs ├── ucla-3-a.mjs ├── ucla-4-box.mjs ├── ucla-4-drum.mjs └── ucla-5-follow.mjs ├── utilities ├── README-emacs-monitor.md ├── emacs-monitor.sh ├── generate-local-url.js ├── generate-new-piece.mjs ├── img-to-webp.fish ├── m4a-to-audio.py ├── package-lock.json ├── package.json ├── snake.six ├── sotce-net-revenue-calc.fish ├── test-ac-pack.mjs ├── thinkpad.fish ├── thinkpad.sh └── webp-animation.fish ├── vscode-extension ├── .gitignore ├── .vscodeignore ├── CSP-FIX-SUMMARY.md ├── DEPLOYMENT-1.191.0.md ├── LICENSE.txt ├── README.md ├── RELEASE-NOTES-1.190.0.md ├── RELEASE-NOTES-1.191.0.md ├── aestheticAuthenticationProviderRemote.ts ├── dev-reload.fish ├── development+publishing.txt ├── embedded.js ├── extension.ts ├── main.css ├── package-lock.json ├── package.json ├── reset.css ├── resources │ ├── aesthetic-computer.svg │ ├── icon.png │ └── purple-pals.svg ├── syntaxes │ ├── PeaceScript.tmGrammar.json │ └── pjs-configuration.json ├── tsconfig.json ├── util.ts └── vscode.css ├── windows ├── BUILD-README.md ├── GETTING-STARTED.md ├── QUICK-START.md ├── ac-pipe.sh ├── aesthetic.ps1 ├── artery.ps1 ├── build-false-work.fish ├── build-false-work.ps1 ├── build-relay.fish ├── check-fmod-in-perforce.ps1 ├── clean-all-generated.ps1 ├── clean-intermediate.ps1 ├── clear-build-caches.ps1 ├── create-workspace-simple.ps1 ├── create-workspace.ps1 ├── fix-corrupted-gen-file.ps1 ├── fix-dependencies.ps1 ├── fix-fmod-callback-bug.ps1 ├── fix-fmod-issues.ps1 ├── install-dependencies.ps1 ├── install-netfx-devpack.ps1 ├── remote-update-and-build.fish ├── run-p4-sync-and-fix.ps1 ├── setup-perforce.ps1 ├── sync-project.ps1 ├── test-waltz.ps1 ├── unlock-fmod-files.ps1 ├── update-and-build.ps1 ├── update-build-script.ps1 └── upload-build-to-assets.ps1 ├── writing ├── agenda │ └── agenda.txt ├── asamyuta-hasta-1.png ├── asamyuta-hasta-2.png ├── asamyuta-hastas.png ├── asamyutta.org ├── diary │ ├── diary.py │ ├── entries │ │ ├── 2010-09-29_16-14 │ │ ├── 2010-09-30_17-49 │ │ ├── 2010-10-01_20-55 │ │ ├── 2010-10-02_22-35 │ │ ├── 2010-10-07_17-24 │ │ ├── 2010-10-10_16-30 │ │ ├── 2011-04-26_14-29 │ │ └── 2012-08-13_15-58 │ ├── get-entries.fish │ └── readme.md ├── etudes.txt ├── melodies.txt ├── mudras-notation.jpg ├── notes │ ├── alex-investor-notes.txt │ ├── amelia-vlog-notes.txt │ ├── devlog.txt │ ├── devs.txt │ ├── digitpain-contract-spec.txt │ ├── experiential-art.txt │ ├── feelings.txt │ ├── freaky-flowers.txt │ ├── funding-questions.txt │ ├── georgica-early-prompts.txt │ ├── harvey-momi.txt │ ├── ideas.txt │ ├── low-again.txt │ ├── new-machine.txt │ ├── pd.txt │ ├── svg.txt │ └── wilsongraph.txt ├── poetry │ └── ubt.txt ├── samyuta-hands.png ├── show-hn-2024.txt ├── swan-lake.txt └── thinkpad.txt └── youtube ├── Dockerfile ├── nginx.conf └── stream.sh /.devcontainer/.emacs.d/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory. -------------------------------------------------------------------------------- /.devcontainer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/.devcontainer/.gitignore -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/build-and-push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/.devcontainer/build-and-push.sh -------------------------------------------------------------------------------- /.devcontainer/config.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/.devcontainer/config.fish -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/docker-dev-mount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/.devcontainer/docker-dev-mount -------------------------------------------------------------------------------- /.devcontainer/entry.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/.devcontainer/entry.fish -------------------------------------------------------------------------------- /.devcontainer/envs/load_envs.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/.devcontainer/envs/load_envs.fish -------------------------------------------------------------------------------- /.devcontainer/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/.devcontainer/nuget.config -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/.gitmodules -------------------------------------------------------------------------------- /.helmignore: -------------------------------------------------------------------------------- 1 | # node dependencies 2 | node_modules/ -------------------------------------------------------------------------------- /.netlify-clean-build: -------------------------------------------------------------------------------- 1 | # Clean build trigger Sat Jul 19 01:07:09 UTC 2025 2 | -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | lts/jod 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vercel/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/.vercel/README.txt -------------------------------------------------------------------------------- /.vercel/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/.vercel/project.json -------------------------------------------------------------------------------- /.vscode/check-kidlisp.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/.vscode/check-kidlisp.mjs -------------------------------------------------------------------------------- /.vscode/chrome-mcp-wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/.vscode/chrome-mcp-wrapper.sh -------------------------------------------------------------------------------- /.vscode/gecko.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/.vscode/gecko.mjs -------------------------------------------------------------------------------- /.vscode/mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/.vscode/mcp.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/start-chrome-debug.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/.vscode/start-chrome-debug.fish -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscode/terminals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/.vscode/terminals.json -------------------------------------------------------------------------------- /.vscode/tests/melodies.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/.vscode/tests/melodies.mjs -------------------------------------------------------------------------------- /.vscode/tests/test-chords.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/.vscode/tests/test-chords.mjs -------------------------------------------------------------------------------- /.vscode/tests/test-line.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/.vscode/tests/test-line.mjs -------------------------------------------------------------------------------- /.vscode/tests/test-melody.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/.vscode/tests/test-melody.mjs -------------------------------------------------------------------------------- /.vscode/tests/test-notepat.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/.vscode/tests/test-notepat.mjs -------------------------------------------------------------------------------- /.vscode/tests/test-playlist.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/.vscode/tests/test-playlist.mjs -------------------------------------------------------------------------------- /.vscode/tests/test-toss.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/.vscode/tests/test-toss.mjs -------------------------------------------------------------------------------- /EMBEDDED_LAYER_PERSISTENCE_BUG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/EMBEDDED_LAYER_PERSISTENCE_BUG.md -------------------------------------------------------------------------------- /GRAVEYARD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/GRAVEYARD.txt -------------------------------------------------------------------------------- /KIDLISP_DEBUG_ANALYSIS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/KIDLISP_DEBUG_ANALYSIS.md -------------------------------------------------------------------------------- /MULTIPLE-GAMEPAD-SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/MULTIPLE-GAMEPAD-SUPPORT.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/README.md -------------------------------------------------------------------------------- /STORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/STORY.md -------------------------------------------------------------------------------- /TAPE-PREVIEW-ISSUE-ANALYSIS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/TAPE-PREVIEW-ISSUE-ANALYSIS.md -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/TODO.txt -------------------------------------------------------------------------------- /WRITE-A-PIECE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/WRITE-A-PIECE.md -------------------------------------------------------------------------------- /ac-event-daemon/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ac-event-daemon/.gitignore -------------------------------------------------------------------------------- /ac-event-daemon/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ac-event-daemon/Cargo.lock -------------------------------------------------------------------------------- /ac-event-daemon/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ac-event-daemon/Cargo.toml -------------------------------------------------------------------------------- /ac-event-daemon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ac-event-daemon/README.md -------------------------------------------------------------------------------- /ac-event-daemon/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ac-event-daemon/build.rs -------------------------------------------------------------------------------- /ac-event-daemon/dev.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ac-event-daemon/dev.fish -------------------------------------------------------------------------------- /ac-event-daemon/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ac-event-daemon/icons/icon.png -------------------------------------------------------------------------------- /ac-event-daemon/start-daemon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ac-event-daemon/start-daemon.sh -------------------------------------------------------------------------------- /ac-event-daemon/tauri.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ac-event-daemon/tauri.conf.json -------------------------------------------------------------------------------- /ac-event-daemon/test-overlays.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ac-event-daemon/test-overlays.sh -------------------------------------------------------------------------------- /ac-event-daemon/test-shutdown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ac-event-daemon/test-shutdown.sh -------------------------------------------------------------------------------- /ac-event-daemon/test-web-overlay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ac-event-daemon/test-web-overlay.sh -------------------------------------------------------------------------------- /ac-event-daemon/watch-and-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ac-event-daemon/watch-and-build.sh -------------------------------------------------------------------------------- /ac-m4l/AC Metronome.amxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ac-m4l/AC Metronome.amxd -------------------------------------------------------------------------------- /ac-m4l/AC Notepat.amxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ac-m4l/AC Notepat.amxd -------------------------------------------------------------------------------- /ac-m4l/AC Prompt.amxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ac-m4l/AC Prompt.amxd -------------------------------------------------------------------------------- /ac-m4l/AC-Notepat.amxd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ac-m4l/AC-Notepat.amxd.json -------------------------------------------------------------------------------- /ac-m4l/AC-Notepat.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ac-m4l/AC-Notepat.maxpat -------------------------------------------------------------------------------- /ac-m4l/JS-PIECE-BUNDLE-DEBUG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ac-m4l/JS-PIECE-BUNDLE-DEBUG.md -------------------------------------------------------------------------------- /ac-m4l/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ac-m4l/README.md -------------------------------------------------------------------------------- /ac-m4l/ac-audio-bridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ac-m4l/ac-audio-bridge.js -------------------------------------------------------------------------------- /ac-m4l/ac-audio-splitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ac-m4l/ac-audio-splitter.js -------------------------------------------------------------------------------- /ac-m4l/ac-buffer-writer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ac-m4l/ac-buffer-writer.js -------------------------------------------------------------------------------- /ac-m4l/ac-ws-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ac-m4l/ac-ws-server.js -------------------------------------------------------------------------------- /ac-m4l/audio-bridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ac-m4l/audio-bridge.js -------------------------------------------------------------------------------- /ac-m4l/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ac-m4l/build.py -------------------------------------------------------------------------------- /ac-m4l/devices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ac-m4l/devices.json -------------------------------------------------------------------------------- /ac-notify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ac-notify -------------------------------------------------------------------------------- /ac-vst/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ac-vst/CMakeLists.txt -------------------------------------------------------------------------------- /ac-vst/rebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ac-vst/rebuild.sh -------------------------------------------------------------------------------- /ac-vst/source/acnotepat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ac-vst/source/acnotepat.cpp -------------------------------------------------------------------------------- /ac-vst/source/acnotepat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ac-vst/source/acnotepat.h -------------------------------------------------------------------------------- /ac-vst/source/acnotepat_cids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ac-vst/source/acnotepat_cids.h -------------------------------------------------------------------------------- /ac-vst/source/acnotepat_entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ac-vst/source/acnotepat_entry.cpp -------------------------------------------------------------------------------- /ac-vst/source/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ac-vst/source/version.h -------------------------------------------------------------------------------- /aesthetic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/aesthetic -------------------------------------------------------------------------------- /aesthetic-launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/aesthetic-launch.sh -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /android/.idea/.name: -------------------------------------------------------------------------------- 1 | Aesthetic Computer -------------------------------------------------------------------------------- /android/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/android/.idea/compiler.xml -------------------------------------------------------------------------------- /android/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/android/.idea/gradle.xml -------------------------------------------------------------------------------- /android/.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/android/.idea/kotlinc.xml -------------------------------------------------------------------------------- /android/.idea/migrations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/android/.idea/migrations.xml -------------------------------------------------------------------------------- /android/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/android/.idea/misc.xml -------------------------------------------------------------------------------- /android/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/android/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /android/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/android/.idea/vcs.xml -------------------------------------------------------------------------------- /android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /release -------------------------------------------------------------------------------- /android/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/android/app/build.gradle.kts -------------------------------------------------------------------------------- /android/app/index.html: -------------------------------------------------------------------------------- 1 | hello aesthetic 2 | -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/release/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/android/app/release/app-release.apk -------------------------------------------------------------------------------- /android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/android/build.gradle.kts -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/android/gradle/libs.versions.toml -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/android/settings.gradle.kts -------------------------------------------------------------------------------- /apple/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/apple/.gitignore -------------------------------------------------------------------------------- /apple/aesthetic-computer-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/apple/aesthetic-computer-Info.plist -------------------------------------------------------------------------------- /apple/aesthetic/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/apple/aesthetic/Info.plist -------------------------------------------------------------------------------- /archive/edge-stream/.gitignore: -------------------------------------------------------------------------------- 1 | .vercel 2 | -------------------------------------------------------------------------------- /archive/edge-stream/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/edge-stream/README.txt -------------------------------------------------------------------------------- /archive/edge-stream/api/ask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/edge-stream/api/ask.ts -------------------------------------------------------------------------------- /archive/edge-stream/api/say.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/edge-stream/api/say.js -------------------------------------------------------------------------------- /archive/edge-stream/help.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/edge-stream/help.mjs -------------------------------------------------------------------------------- /archive/edge-stream/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/edge-stream/package.json -------------------------------------------------------------------------------- /archive/figjam/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/figjam/README.md -------------------------------------------------------------------------------- /archive/figjam/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/figjam/code.js -------------------------------------------------------------------------------- /archive/figjam/code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/figjam/code.tsx -------------------------------------------------------------------------------- /archive/figjam/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/figjam/manifest.json -------------------------------------------------------------------------------- /archive/figjam/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/figjam/package-lock.json -------------------------------------------------------------------------------- /archive/figjam/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/figjam/package.json -------------------------------------------------------------------------------- /archive/figjam/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/figjam/tsconfig.json -------------------------------------------------------------------------------- /archive/figjam/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/figjam/ui.html -------------------------------------------------------------------------------- /archive/github-discord.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/github-discord.sh -------------------------------------------------------------------------------- /archive/micro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/micro/.gitignore -------------------------------------------------------------------------------- /archive/micro/boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/micro/boot.sh -------------------------------------------------------------------------------- /archive/micro/code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/micro/code.sh -------------------------------------------------------------------------------- /archive/micro/emacs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/micro/emacs.sh -------------------------------------------------------------------------------- /archive/micro/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/micro/package-lock.json -------------------------------------------------------------------------------- /archive/micro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/micro/package.json -------------------------------------------------------------------------------- /archive/micro/pieces/line.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/micro/pieces/line.ac -------------------------------------------------------------------------------- /archive/micro/reset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/micro/reset.sh -------------------------------------------------------------------------------- /archive/micro/system/backend.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/micro/system/backend.mjs -------------------------------------------------------------------------------- /archive/micro/system/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/micro/system/package.json -------------------------------------------------------------------------------- /archive/micro/system/processor.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/micro/system/processor.wat -------------------------------------------------------------------------------- /archive/micro/system/public/processor.wasm: -------------------------------------------------------------------------------- 1 | asm`add 2 |  j -------------------------------------------------------------------------------- /archive/micro/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/micro/todo.txt -------------------------------------------------------------------------------- /archive/old.docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/old.docs.md -------------------------------------------------------------------------------- /archive/ordinals/inscribe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/ordinals/inscribe.sh -------------------------------------------------------------------------------- /archive/ordinals/ord.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/ordinals/ord.fish -------------------------------------------------------------------------------- /archive/ordinals/ordfish/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/ordinals/ordfish/meta.json -------------------------------------------------------------------------------- /archive/ordinals/sats.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archive/piece-server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/piece-server/index.js -------------------------------------------------------------------------------- /archive/piece-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/piece-server/package.json -------------------------------------------------------------------------------- /archive/socket-server/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/socket-server/jsconfig.json -------------------------------------------------------------------------------- /archive/socket-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/socket-server/package.json -------------------------------------------------------------------------------- /archive/socket-server/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/socket-server/socket.js -------------------------------------------------------------------------------- /archive/video-sync/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/video-sync/README.txt -------------------------------------------------------------------------------- /archive/video-sync/autostart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/video-sync/autostart.sh -------------------------------------------------------------------------------- /archive/video-sync/index-child.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/video-sync/index-child.html -------------------------------------------------------------------------------- /archive/video-sync/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/video-sync/index.html -------------------------------------------------------------------------------- /archive/video-sync/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/video-sync/package.json -------------------------------------------------------------------------------- /archive/video-sync/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/archive/video-sync/server.js -------------------------------------------------------------------------------- /artery/artery-dev.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/artery/artery-dev.mjs -------------------------------------------------------------------------------- /artery/artery-tui.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/artery/artery-tui.mjs -------------------------------------------------------------------------------- /artery/artery.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/artery/artery.mjs -------------------------------------------------------------------------------- /artery/emacs-mcp.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/artery/emacs-mcp.mjs -------------------------------------------------------------------------------- /artery/test-1v1-split.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/artery/test-1v1-split.mjs -------------------------------------------------------------------------------- /artery/test-hiphop.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/artery/test-hiphop.mjs -------------------------------------------------------------------------------- /artery/test-metronome.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/artery/test-metronome.mjs -------------------------------------------------------------------------------- /artery/test-notepat.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/artery/test-notepat.mjs -------------------------------------------------------------------------------- /artery/test-trapwaltz.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/artery/test-trapwaltz.mjs -------------------------------------------------------------------------------- /at/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/.env.example -------------------------------------------------------------------------------- /at/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/.gitignore -------------------------------------------------------------------------------- /at/ADMIN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/ADMIN.md -------------------------------------------------------------------------------- /at/ATPROTO-ENV-VARS-FIX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/ATPROTO-ENV-VARS-FIX.md -------------------------------------------------------------------------------- /at/BACKFILL-ATPROTO-GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/BACKFILL-ATPROTO-GUIDE.md -------------------------------------------------------------------------------- /at/BACKFILL-QUICK-REF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/BACKFILL-QUICK-REF.md -------------------------------------------------------------------------------- /at/BACKFILL-SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/BACKFILL-SUMMARY.md -------------------------------------------------------------------------------- /at/DOCUMENTATION-SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/DOCUMENTATION-SUMMARY.md -------------------------------------------------------------------------------- /at/ENV-SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/ENV-SETUP.md -------------------------------------------------------------------------------- /at/FIX-SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/FIX-SUMMARY.md -------------------------------------------------------------------------------- /at/INVESTIGATION-REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/INVESTIGATION-REPORT.md -------------------------------------------------------------------------------- /at/LEXICON-REF-FIELD-RENAME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/LEXICON-REF-FIELD-RENAME.md -------------------------------------------------------------------------------- /at/MANIFEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/MANIFEST.md -------------------------------------------------------------------------------- /at/MONITORING-GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/MONITORING-GUIDE.md -------------------------------------------------------------------------------- /at/MOODS-ARCHITECTURE-DIAGRAM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/MOODS-ARCHITECTURE-DIAGRAM.md -------------------------------------------------------------------------------- /at/MOODS-BIDIRECTIONAL-SYNC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/MOODS-BIDIRECTIONAL-SYNC.md -------------------------------------------------------------------------------- /at/MOODS-GET-STARTED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/MOODS-GET-STARTED.md -------------------------------------------------------------------------------- /at/MOODS-IMPLEMENTATION-COMPLETE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/MOODS-IMPLEMENTATION-COMPLETE.md -------------------------------------------------------------------------------- /at/MOODS-INDEX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/MOODS-INDEX.md -------------------------------------------------------------------------------- /at/MOODS-INTEGRATION-CHECKLIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/MOODS-INTEGRATION-CHECKLIST.md -------------------------------------------------------------------------------- /at/MOODS-INTEGRATION-SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/MOODS-INTEGRATION-SUMMARY.md -------------------------------------------------------------------------------- /at/MOODS-MIGRATION-COMPLETE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/MOODS-MIGRATION-COMPLETE.md -------------------------------------------------------------------------------- /at/MOODS-SIMPLE-PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/MOODS-SIMPLE-PLAN.md -------------------------------------------------------------------------------- /at/MOODS-STATUS-REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/MOODS-STATUS-REPORT.md -------------------------------------------------------------------------------- /at/PAINTING-SHARING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/PAINTING-SHARING.md -------------------------------------------------------------------------------- /at/QUICK-REFERENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/QUICK-REFERENCE.md -------------------------------------------------------------------------------- /at/QUICKSTART.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/QUICKSTART.md -------------------------------------------------------------------------------- /at/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/README.md -------------------------------------------------------------------------------- /at/TOOLS-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/TOOLS-README.md -------------------------------------------------------------------------------- /at/USER-PAGES-API-EXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/USER-PAGES-API-EXAMPLES.md -------------------------------------------------------------------------------- /at/USER-PAGES-ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/USER-PAGES-ARCHITECTURE.md -------------------------------------------------------------------------------- /at/USER-PAGES-DEPLOYMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/USER-PAGES-DEPLOYMENT.md -------------------------------------------------------------------------------- /at/USER-PAGES-INDEX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/USER-PAGES-INDEX.md -------------------------------------------------------------------------------- /at/USER-PAGES-MOCKUP.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/USER-PAGES-MOCKUP.css -------------------------------------------------------------------------------- /at/USER-PAGES-SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/USER-PAGES-SUMMARY.md -------------------------------------------------------------------------------- /at/USER-PAGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/USER-PAGES.md -------------------------------------------------------------------------------- /at/bulk-share-paintings.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/bulk-share-paintings.mjs -------------------------------------------------------------------------------- /at/delete-all-posts.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/delete-all-posts.mjs -------------------------------------------------------------------------------- /at/deploy-landing.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/deploy-landing.fish -------------------------------------------------------------------------------- /at/deploy-user-page.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/deploy-user-page.fish -------------------------------------------------------------------------------- /at/deploy-user-pages.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/deploy-user-pages.fish -------------------------------------------------------------------------------- /at/docs/ATPROTO-MIGRATION-STATUS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/docs/ATPROTO-MIGRATION-STATUS.md -------------------------------------------------------------------------------- /at/docs/PAINTING-MIGRATION-PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/docs/PAINTING-MIGRATION-PLAN.md -------------------------------------------------------------------------------- /at/explore-lexicons.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/explore-lexicons.mjs -------------------------------------------------------------------------------- /at/landing-page-atproto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/landing-page-atproto.html -------------------------------------------------------------------------------- /at/landing-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/landing-page.html -------------------------------------------------------------------------------- /at/landing-page.old.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/landing-page.old.html -------------------------------------------------------------------------------- /at/oldtools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/oldtools/README.md -------------------------------------------------------------------------------- /at/oldtools/check-code-1-user.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/oldtools/check-code-1-user.mjs -------------------------------------------------------------------------------- /at/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/package-lock.json -------------------------------------------------------------------------------- /at/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/package.json -------------------------------------------------------------------------------- /at/pds/DEPLOYMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/pds/DEPLOYMENT.md -------------------------------------------------------------------------------- /at/pds/DEV-CONTAINER-SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/pds/DEV-CONTAINER-SETUP.md -------------------------------------------------------------------------------- /at/pds/INFRASTRUCTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/pds/INFRASTRUCTURE.md -------------------------------------------------------------------------------- /at/pds/MAINTENANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/pds/MAINTENANCE.md -------------------------------------------------------------------------------- /at/pds/QUICKSTART.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/pds/QUICKSTART.md -------------------------------------------------------------------------------- /at/pds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/pds/README.md -------------------------------------------------------------------------------- /at/pds/STORAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/pds/STORAGE.md -------------------------------------------------------------------------------- /at/pds/config/pds.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/pds/config/pds.env.example -------------------------------------------------------------------------------- /at/pds/deployment/digitalocean/.droplet_id: -------------------------------------------------------------------------------- 1 | 523576067 2 | -------------------------------------------------------------------------------- /at/pds/deployment/digitalocean/.droplet_ip: -------------------------------------------------------------------------------- 1 | 165.227.120.137 2 | -------------------------------------------------------------------------------- /at/pds/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/pds/scripts/README.md -------------------------------------------------------------------------------- /at/pds/scripts/backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/pds/scripts/backup.sh -------------------------------------------------------------------------------- /at/pds/scripts/check-user-raw.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/pds/scripts/check-user-raw.mjs -------------------------------------------------------------------------------- /at/pds/scripts/create-account.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/pds/scripts/create-account.mjs -------------------------------------------------------------------------------- /at/pds/scripts/generate-invite.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/pds/scripts/generate-invite.mjs -------------------------------------------------------------------------------- /at/pds/scripts/get-jeffrey-info.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/pds/scripts/get-jeffrey-info.mjs -------------------------------------------------------------------------------- /at/pds/scripts/health-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/pds/scripts/health-check.sh -------------------------------------------------------------------------------- /at/pds/scripts/query-unhandled.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/pds/scripts/query-unhandled.mjs -------------------------------------------------------------------------------- /at/pds/scripts/query-user.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/pds/scripts/query-user.mjs -------------------------------------------------------------------------------- /at/pds/scripts/recreate-jeffrey.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/pds/scripts/recreate-jeffrey.mjs -------------------------------------------------------------------------------- /at/pds/scripts/storage-manager.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/pds/scripts/storage-manager.fish -------------------------------------------------------------------------------- /at/pds/scripts/with-env.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/pds/scripts/with-env.fish -------------------------------------------------------------------------------- /at/pds/scripts/with-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/pds/scripts/with-env.sh -------------------------------------------------------------------------------- /at/post-to-bluesky.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/post-to-bluesky.mjs -------------------------------------------------------------------------------- /at/query-posts.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/query-posts.mjs -------------------------------------------------------------------------------- /at/query-profile.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/query-profile.mjs -------------------------------------------------------------------------------- /at/resolve-did.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/resolve-did.mjs -------------------------------------------------------------------------------- /at/resync-paintings-atproto.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/resync-paintings-atproto.mjs -------------------------------------------------------------------------------- /at/scripts/BUG-FIX-2025-10-11-missing-users.md: -------------------------------------------------------------------------------- 1 | 2 | ...existing content... -------------------------------------------------------------------------------- /at/scripts/check-atproto-moods.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/scripts/check-atproto-moods.mjs -------------------------------------------------------------------------------- /at/scripts/check-auth0-flow.mjs: -------------------------------------------------------------------------------- 1 | // Moved from root for organization 2 | // ...existing code... -------------------------------------------------------------------------------- /at/scripts/check-handle-timestamps.mjs: -------------------------------------------------------------------------------- 1 | // Moved from root for organization 2 | // ...existing code... -------------------------------------------------------------------------------- /at/scripts/check-mood-sync.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/scripts/check-mood-sync.mjs -------------------------------------------------------------------------------- /at/scripts/check-recent-users.mjs: -------------------------------------------------------------------------------- 1 | // Moved from root for organization 2 | // ...existing code... -------------------------------------------------------------------------------- /at/scripts/cloudflare-dns.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/scripts/cloudflare-dns.mjs -------------------------------------------------------------------------------- /at/scripts/publish-lexicons.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/scripts/publish-lexicons.mjs -------------------------------------------------------------------------------- /at/scripts/query-auth0-signups.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/scripts/query-auth0-signups.mjs -------------------------------------------------------------------------------- /at/scripts/setup-netlify-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/scripts/setup-netlify-env.sh -------------------------------------------------------------------------------- /at/share-latest-painting.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/share-latest-painting.mjs -------------------------------------------------------------------------------- /at/share-random-painting.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/share-random-painting.mjs -------------------------------------------------------------------------------- /at/test-all.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/test-all.mjs -------------------------------------------------------------------------------- /at/test-mood-api.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/test-mood-api.mjs -------------------------------------------------------------------------------- /at/test-mood-create.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/test-mood-create.mjs -------------------------------------------------------------------------------- /at/test-painting-atproto.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/test-painting-atproto.mjs -------------------------------------------------------------------------------- /at/test-user-pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/test-user-pages.html -------------------------------------------------------------------------------- /at/user-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/at/user-page.html -------------------------------------------------------------------------------- /censor/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/censor/Caddyfile -------------------------------------------------------------------------------- /censor/Modelfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/censor/Modelfile -------------------------------------------------------------------------------- /censor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/censor/README.md -------------------------------------------------------------------------------- /censor/api-server.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/censor/api-server.mjs -------------------------------------------------------------------------------- /censor/create-model.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/censor/create-model.fish -------------------------------------------------------------------------------- /censor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/censor/index.html -------------------------------------------------------------------------------- /censor/inspect-mongodb.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/censor/inspect-mongodb.mjs -------------------------------------------------------------------------------- /censor/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/censor/package-lock.json -------------------------------------------------------------------------------- /censor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/censor/package.json -------------------------------------------------------------------------------- /censor/start-dashboard.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/censor/start-dashboard.fish -------------------------------------------------------------------------------- /censor/start-server.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/censor/start-server.fish -------------------------------------------------------------------------------- /censor/test-continuous.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/censor/test-continuous.fish -------------------------------------------------------------------------------- /censor/test-explicit.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/censor/test-explicit.mjs -------------------------------------------------------------------------------- /censor/test-filter.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/censor/test-filter.fish -------------------------------------------------------------------------------- /censor/test-mongodb-messages.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/censor/test-mongodb-messages.mjs -------------------------------------------------------------------------------- /censor/test-mongodb.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/censor/test-mongodb.fish -------------------------------------------------------------------------------- /censor/test-resources.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/censor/test-resources.mjs -------------------------------------------------------------------------------- /daemon/daemon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/daemon/daemon.js -------------------------------------------------------------------------------- /daemon/install-daemon.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/daemon/install-daemon.fish -------------------------------------------------------------------------------- /daemon/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/daemon/package-lock.json -------------------------------------------------------------------------------- /daemon/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/daemon/package.json -------------------------------------------------------------------------------- /dark-window/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/dark-window/Dockerfile -------------------------------------------------------------------------------- /dark-window/conductor.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/dark-window/conductor.mjs -------------------------------------------------------------------------------- /dark-window/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/dark-window/package-lock.json -------------------------------------------------------------------------------- /dark-window/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/dark-window/package.json -------------------------------------------------------------------------------- /demo-notifications.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/demo-notifications.sh -------------------------------------------------------------------------------- /deno.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/deno.lock -------------------------------------------------------------------------------- /docs/PERFORMANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/docs/PERFORMANCE.md -------------------------------------------------------------------------------- /docs/ableton-als-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/docs/ableton-als-structure.md -------------------------------------------------------------------------------- /docs/kidlisp-embed-feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/docs/kidlisp-embed-feature.md -------------------------------------------------------------------------------- /docs/kidlisp-feed-feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/docs/kidlisp-feed-feature.md -------------------------------------------------------------------------------- /dotfiles/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | autoload/ 3 | -------------------------------------------------------------------------------- /dotfiles/dot_config/emacs.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/dotfiles/dot_config/emacs.el -------------------------------------------------------------------------------- /dotfiles/dot_config/fish/conf.d/rustup.fish: -------------------------------------------------------------------------------- 1 | source "$HOME/.cargo/env.fish" 2 | -------------------------------------------------------------------------------- /dotfiles/dot_config/foot/foot.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/dotfiles/dot_config/foot/foot.ini -------------------------------------------------------------------------------- /dotfiles/dot_config/nvim/init.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/dotfiles/dot_config/nvim/init.vim -------------------------------------------------------------------------------- /dotfiles/dot_config/starship.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/dotfiles/dot_config/starship.toml -------------------------------------------------------------------------------- /dotfiles/emacs-safe.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/dotfiles/emacs-safe.el -------------------------------------------------------------------------------- /dotfiles/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/dotfiles/install.sh -------------------------------------------------------------------------------- /dotfiles/symlink.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/dotfiles/symlink.sh -------------------------------------------------------------------------------- /drone/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/drone/Dockerfile -------------------------------------------------------------------------------- /drone/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/drone/entrypoint.sh -------------------------------------------------------------------------------- /drone/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/drone/nginx.conf -------------------------------------------------------------------------------- /drone/player.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/drone/player.html -------------------------------------------------------------------------------- /drone/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/drone/start.sh -------------------------------------------------------------------------------- /ethereum/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ethereum/.gitignore -------------------------------------------------------------------------------- /ethereum/hardhat.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ethereum/hardhat.config.js -------------------------------------------------------------------------------- /ethereum/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ethereum/package-lock.json -------------------------------------------------------------------------------- /ethereum/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ethereum/package.json -------------------------------------------------------------------------------- /experiments/blessed.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/experiments/blessed.mjs -------------------------------------------------------------------------------- /experiments/elisp/pixel.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/experiments/elisp/pixel.el -------------------------------------------------------------------------------- /experiments/elisp/xpm.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/experiments/elisp/xpm.el -------------------------------------------------------------------------------- /experiments/snake.six: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/experiments/snake.six -------------------------------------------------------------------------------- /false.work/BUILD-DISTRIBUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/false.work/BUILD-DISTRIBUTION.md -------------------------------------------------------------------------------- /false.work/BUILD-SYSTEM-UPDATES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/false.work/BUILD-SYSTEM-UPDATES.md -------------------------------------------------------------------------------- /false.work/MAC-BUILD-WORKFLOW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/false.work/MAC-BUILD-WORKFLOW.md -------------------------------------------------------------------------------- /false.work/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/false.work/README.md -------------------------------------------------------------------------------- /false.work/build-run-spiderlily.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/false.work/build-run-spiderlily.sh -------------------------------------------------------------------------------- /false.work/unreal-builder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/false.work/unreal-builder/README.md -------------------------------------------------------------------------------- /fedora-image/.gitignore: -------------------------------------------------------------------------------- 1 | *.qcow2 -------------------------------------------------------------------------------- /fedora-image/blueprint.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/fedora-image/blueprint.toml -------------------------------------------------------------------------------- /fedora-image/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/fedora-image/notes.txt -------------------------------------------------------------------------------- /feed/DEPLOYMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/feed/DEPLOYMENT.md -------------------------------------------------------------------------------- /feed/DP1-FEED-ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/feed/DP1-FEED-ARCHITECTURE.md -------------------------------------------------------------------------------- /feed/DP1-FEED-CHECKLIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/feed/DP1-FEED-CHECKLIST.md -------------------------------------------------------------------------------- /feed/DP1-FEED-SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/feed/DP1-FEED-SETUP.md -------------------------------------------------------------------------------- /feed/DP1-FEED-SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/feed/DP1-FEED-SUMMARY.md -------------------------------------------------------------------------------- /feed/DP1-PROVENANCE-COMPLETED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/feed/DP1-PROVENANCE-COMPLETED.md -------------------------------------------------------------------------------- /feed/DP1-PROVENANCE-UPDATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/feed/DP1-PROVENANCE-UPDATE.md -------------------------------------------------------------------------------- /feed/ORGANIZATION-COMPLETE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/feed/ORGANIZATION-COMPLETE.md -------------------------------------------------------------------------------- /feed/QUICKREF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/feed/QUICKREF.md -------------------------------------------------------------------------------- /feed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/feed/README.md -------------------------------------------------------------------------------- /feed/SETUP-SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/feed/SETUP-SUMMARY.md -------------------------------------------------------------------------------- /feed/build-feed.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/feed/build-feed.fish -------------------------------------------------------------------------------- /feed/build-kidlisp-feed.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/feed/build-kidlisp-feed.mjs -------------------------------------------------------------------------------- /feed/channel-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/feed/channel-config.json -------------------------------------------------------------------------------- /feed/dp1-deploy/AESTHETIC-DEPLOY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/feed/dp1-deploy/AESTHETIC-DEPLOY.md -------------------------------------------------------------------------------- /feed/dp1-deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/feed/dp1-deploy/README.md -------------------------------------------------------------------------------- /feed/dp1-deploy/deploy-aesthetic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/feed/dp1-deploy/deploy-aesthetic.sh -------------------------------------------------------------------------------- /feed/update-existing-playlists.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/feed/update-existing-playlists.mjs -------------------------------------------------------------------------------- /feed/wrangler.production.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/feed/wrangler.production.toml -------------------------------------------------------------------------------- /fuzz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/fuzz/README.md -------------------------------------------------------------------------------- /fuzz/notepat-fuzz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/fuzz/notepat-fuzz.js -------------------------------------------------------------------------------- /generate_qr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/generate_qr.py -------------------------------------------------------------------------------- /gigs/fundraiser-checklist/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/gigs/fundraiser-checklist/Caddyfile -------------------------------------------------------------------------------- /gigs/fundraiser-checklist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/gigs/fundraiser-checklist/README.md -------------------------------------------------------------------------------- /gigs/fundraiser-checklist/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/gigs/fundraiser-checklist/TODO.md -------------------------------------------------------------------------------- /gigs/wire-ad-2025/wire-2025.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/gigs/wire-ad-2025/wire-2025.md -------------------------------------------------------------------------------- /gigs/wire-ad-2025/wire_ad_fresh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/gigs/wire-ad-2025/wire_ad_fresh.py -------------------------------------------------------------------------------- /gigs/wire-ad-2025/wire_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/gigs/wire-ad-2025/wire_data.json -------------------------------------------------------------------------------- /gpu/RESEARCH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/gpu/RESEARCH.md -------------------------------------------------------------------------------- /grab/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/grab/.gitignore -------------------------------------------------------------------------------- /grab/DEPLOY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/grab/DEPLOY.md -------------------------------------------------------------------------------- /grab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/grab/README.md -------------------------------------------------------------------------------- /grab/VIDEO-FUTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/grab/VIDEO-FUTURE.md -------------------------------------------------------------------------------- /grab/docs/ANIMATED-GIF-STATUS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/grab/docs/ANIMATED-GIF-STATUS.md -------------------------------------------------------------------------------- /grab/docs/AUTOMATED-DEPLOYMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/grab/docs/AUTOMATED-DEPLOYMENT.md -------------------------------------------------------------------------------- /grab/docs/CODE-CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/grab/docs/CODE-CHANGES.md -------------------------------------------------------------------------------- /grab/docs/CUSTOM-DOMAIN-SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/grab/docs/CUSTOM-DOMAIN-SETUP.md -------------------------------------------------------------------------------- /grab/docs/DEPLOYMENT-SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/grab/docs/DEPLOYMENT-SUMMARY.md -------------------------------------------------------------------------------- /grab/docs/DEPLOYMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/grab/docs/DEPLOYMENT.md -------------------------------------------------------------------------------- /grab/docs/DEV-SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/grab/docs/DEV-SETUP.md -------------------------------------------------------------------------------- /grab/docs/DNS-SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/grab/docs/DNS-SETUP.md -------------------------------------------------------------------------------- /grab/docs/INTEGRATION-SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/grab/docs/INTEGRATION-SUMMARY.md -------------------------------------------------------------------------------- /grab/docs/MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/grab/docs/MIGRATION.md -------------------------------------------------------------------------------- /grab/docs/PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/grab/docs/PLAN.md -------------------------------------------------------------------------------- /grab/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/grab/docs/README.md -------------------------------------------------------------------------------- /grab/docs/VIDEO-RECORDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/grab/docs/VIDEO-RECORDING.md -------------------------------------------------------------------------------- /grab/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/grab/package-lock.json -------------------------------------------------------------------------------- /grab/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/grab/package.json -------------------------------------------------------------------------------- /grab/scripts/deploy-with-dns.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/grab/scripts/deploy-with-dns.fish -------------------------------------------------------------------------------- /grab/scripts/deploy.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/grab/scripts/deploy.fish -------------------------------------------------------------------------------- /grab/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/grab/src/index.ts -------------------------------------------------------------------------------- /grab/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/grab/tsconfig.json -------------------------------------------------------------------------------- /grab/wrangler.production.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/grab/wrangler.production.toml -------------------------------------------------------------------------------- /grab/wrangler.toml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/grab/wrangler.toml.example -------------------------------------------------------------------------------- /install.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/install.mjs -------------------------------------------------------------------------------- /judge/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/judge/.env.example -------------------------------------------------------------------------------- /judge/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/judge/Caddyfile -------------------------------------------------------------------------------- /judge/Modelfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/judge/Modelfile -------------------------------------------------------------------------------- /judge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/judge/README.md -------------------------------------------------------------------------------- /judge/api-server.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/judge/api-server.mjs -------------------------------------------------------------------------------- /judge/create-model.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/judge/create-model.fish -------------------------------------------------------------------------------- /judge/deploy.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/judge/deploy.env.example -------------------------------------------------------------------------------- /judge/deploy.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/judge/deploy.fish -------------------------------------------------------------------------------- /judge/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/judge/index.html -------------------------------------------------------------------------------- /judge/inspect-mongodb.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/judge/inspect-mongodb.mjs -------------------------------------------------------------------------------- /judge/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/judge/package-lock.json -------------------------------------------------------------------------------- /judge/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/judge/package.json -------------------------------------------------------------------------------- /judge/redeploy.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/judge/redeploy.fish -------------------------------------------------------------------------------- /judge/start-dashboard.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/judge/start-dashboard.fish -------------------------------------------------------------------------------- /judge/start-server.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/judge/start-server.fish -------------------------------------------------------------------------------- /judge/test-continuous.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/judge/test-continuous.fish -------------------------------------------------------------------------------- /judge/test-explicit.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/judge/test-explicit.mjs -------------------------------------------------------------------------------- /judge/test-filter.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/judge/test-filter.fish -------------------------------------------------------------------------------- /judge/test-mongodb-messages.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/judge/test-mongodb-messages.mjs -------------------------------------------------------------------------------- /judge/test-mongodb.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/judge/test-mongodb.fish -------------------------------------------------------------------------------- /judge/test-resources.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/judge/test-resources.mjs -------------------------------------------------------------------------------- /kidlisp-com-progress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp-com-progress.md -------------------------------------------------------------------------------- /kidlisp-gameboy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp-gameboy/.gitignore -------------------------------------------------------------------------------- /kidlisp-gameboy/C-QUICKSTART.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp-gameboy/C-QUICKSTART.md -------------------------------------------------------------------------------- /kidlisp-gameboy/KIDLISP-COMPILER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp-gameboy/KIDLISP-COMPILER.md -------------------------------------------------------------------------------- /kidlisp-gameboy/PROGRESS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp-gameboy/PROGRESS.md -------------------------------------------------------------------------------- /kidlisp-gameboy/QUICKSTART.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp-gameboy/QUICKSTART.md -------------------------------------------------------------------------------- /kidlisp-gameboy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp-gameboy/README.md -------------------------------------------------------------------------------- /kidlisp-gameboy/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp-gameboy/build -------------------------------------------------------------------------------- /kidlisp-gameboy/build.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp-gameboy/build.fish -------------------------------------------------------------------------------- /kidlisp-gameboy/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp-gameboy/build.sh -------------------------------------------------------------------------------- /kidlisp-gameboy/examples/lines.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp-gameboy/examples/lines.lisp -------------------------------------------------------------------------------- /kidlisp-gameboy/hardware.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp-gameboy/hardware.inc -------------------------------------------------------------------------------- /kidlisp-gameboy/src/boxtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp-gameboy/src/boxtest.c -------------------------------------------------------------------------------- /kidlisp-gameboy/src/build-random.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp-gameboy/src/build-random.sh -------------------------------------------------------------------------------- /kidlisp-gameboy/src/circle-anim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp-gameboy/src/circle-anim.c -------------------------------------------------------------------------------- /kidlisp-gameboy/src/demo-graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp-gameboy/src/demo-graphics.c -------------------------------------------------------------------------------- /kidlisp-gameboy/src/direct_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp-gameboy/src/direct_test.c -------------------------------------------------------------------------------- /kidlisp-gameboy/src/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp-gameboy/src/hello.c -------------------------------------------------------------------------------- /kidlisp-gameboy/src/lines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp-gameboy/src/lines.c -------------------------------------------------------------------------------- /kidlisp-gameboy/src/linetest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp-gameboy/src/linetest.c -------------------------------------------------------------------------------- /kidlisp-gameboy/src/melody.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp-gameboy/src/melody.c -------------------------------------------------------------------------------- /kidlisp-gameboy/src/scrub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp-gameboy/src/scrub.c -------------------------------------------------------------------------------- /kidlisp-gameboy/src/shapes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp-gameboy/src/shapes.c -------------------------------------------------------------------------------- /kidlisp-gameboy/src/test-angles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp-gameboy/src/test-angles.c -------------------------------------------------------------------------------- /kidlisp-gameboy/src/turtle-anim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp-gameboy/src/turtle-anim.c -------------------------------------------------------------------------------- /kidlisp-gameboy/src/turtle-pixels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp-gameboy/src/turtle-pixels.c -------------------------------------------------------------------------------- /kidlisp-gameboy/src/wave-editor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp-gameboy/src/wave-editor.c -------------------------------------------------------------------------------- /kidlisp-gameboy/src/wave-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp-gameboy/src/wave-test.c -------------------------------------------------------------------------------- /kidlisp-gameboy/test/hardware.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp-gameboy/test/hardware.inc -------------------------------------------------------------------------------- /kidlisp-knowledge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp-knowledge/README.md -------------------------------------------------------------------------------- /kidlisp-n64/asm/boot.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp-n64/asm/boot.s -------------------------------------------------------------------------------- /kidlisp-n64/asm/kidlisp-compat.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp-n64/asm/kidlisp-compat.s -------------------------------------------------------------------------------- /kidlisp-n64/bare-metal.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kidlisp-n64/nu0-test/asm/entry.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp-n64/nu0-test/asm/entry.s -------------------------------------------------------------------------------- /kidlisp-n64/sdk-hello/asm/entry.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp-n64/sdk-hello/asm/entry.s -------------------------------------------------------------------------------- /kidlisp-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp-tools/README.md -------------------------------------------------------------------------------- /kidlisp-tools/get-source.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp-tools/get-source.mjs -------------------------------------------------------------------------------- /kidlisp-tools/kidlisp-probe.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp-tools/kidlisp-probe.mjs -------------------------------------------------------------------------------- /kidlisp-tools/source-tree.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp-tools/source-tree.fish -------------------------------------------------------------------------------- /kidlisp.com/FEATURES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp.com/FEATURES.md -------------------------------------------------------------------------------- /kidlisp.com/LIVE-RELOAD-PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp.com/LIVE-RELOAD-PLAN.md -------------------------------------------------------------------------------- /kidlisp.com/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp.com/README.md -------------------------------------------------------------------------------- /kidlisp.com/SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp.com/SETUP.md -------------------------------------------------------------------------------- /kidlisp.com/index.html: -------------------------------------------------------------------------------- 1 | ../system/public/kidlisp.com/index.html -------------------------------------------------------------------------------- /kidlisp.com/open.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp.com/open.fish -------------------------------------------------------------------------------- /kidlisp.com/watch.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp.com/watch.fish -------------------------------------------------------------------------------- /kidlisp/COMPLETE_API_MAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp/COMPLETE_API_MAP.md -------------------------------------------------------------------------------- /kidlisp/PERFORMANCE-ANALYSIS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp/PERFORMANCE-ANALYSIS.md -------------------------------------------------------------------------------- /kidlisp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp/README.md -------------------------------------------------------------------------------- /kidlisp/STRUCTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp/STRUCTURE.md -------------------------------------------------------------------------------- /kidlisp/dictionary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp/dictionary/README.md -------------------------------------------------------------------------------- /kidlisp/dictionary/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp/dictionary/TODO.md -------------------------------------------------------------------------------- /kidlisp/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp/docs/README.md -------------------------------------------------------------------------------- /kidlisp/docs/functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp/docs/functions/README.md -------------------------------------------------------------------------------- /kidlisp/docs/functions/fill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp/docs/functions/fill.md -------------------------------------------------------------------------------- /kidlisp/docs/functions/outline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp/docs/functions/outline.md -------------------------------------------------------------------------------- /kidlisp/docs/functions/scroll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp/docs/functions/scroll.md -------------------------------------------------------------------------------- /kidlisp/docs/functions/spin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp/docs/functions/spin.md -------------------------------------------------------------------------------- /kidlisp/docs/functions/suck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp/docs/functions/suck.md -------------------------------------------------------------------------------- /kidlisp/docs/functions/zoom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp/docs/functions/zoom.md -------------------------------------------------------------------------------- /kidlisp/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp/examples/README.md -------------------------------------------------------------------------------- /kidlisp/reports/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp/reports/README.md -------------------------------------------------------------------------------- /kidlisp/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp/tools/README.md -------------------------------------------------------------------------------- /kidlisp/tools/api-summary.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp/tools/api-summary.mjs -------------------------------------------------------------------------------- /kidlisp/tools/source-tree.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/kidlisp/tools/source-tree.mjs -------------------------------------------------------------------------------- /lectures/el-cid-lecture-plain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/lectures/el-cid-lecture-plain.md -------------------------------------------------------------------------------- /lectures/el-cid-lecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/lectures/el-cid-lecture.md -------------------------------------------------------------------------------- /llm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/llm.md -------------------------------------------------------------------------------- /monitor-emacs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/monitor-emacs.sh -------------------------------------------------------------------------------- /nanos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/nanos/.gitignore -------------------------------------------------------------------------------- /nanos/.node-version: -------------------------------------------------------------------------------- 1 | 20.5.0 -------------------------------------------------------------------------------- /nanos/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/nanos/README.txt -------------------------------------------------------------------------------- /nanos/chat.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/nanos/chat.mjs -------------------------------------------------------------------------------- /nanos/conductor.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/nanos/conductor.mjs -------------------------------------------------------------------------------- /nanos/config-do.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/nanos/config-do.json -------------------------------------------------------------------------------- /nanos/config-gcp-dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/nanos/config-gcp-dev.json -------------------------------------------------------------------------------- /nanos/config-gcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/nanos/config-gcp.json -------------------------------------------------------------------------------- /nanos/config-js.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/nanos/config-js.json -------------------------------------------------------------------------------- /nanos/filter.mjs: -------------------------------------------------------------------------------- 1 | ../shared/filter.mjs -------------------------------------------------------------------------------- /nanos/hello.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/nanos/hello.lisp -------------------------------------------------------------------------------- /nanos/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/nanos/package-lock.json -------------------------------------------------------------------------------- /nanos/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/nanos/package.json -------------------------------------------------------------------------------- /nanos/package.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/nanos/package.manifest -------------------------------------------------------------------------------- /nanos/redact.mjs: -------------------------------------------------------------------------------- 1 | ../shared/redact.mjs -------------------------------------------------------------------------------- /nanos/refresh-chat-handles.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/nanos/refresh-chat-handles.mjs -------------------------------------------------------------------------------- /ngrok.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ngrok.yml -------------------------------------------------------------------------------- /notebook/.node-version: -------------------------------------------------------------------------------- 1 | lts/jod -------------------------------------------------------------------------------- /notebook/aesthetic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/notebook/aesthetic.py -------------------------------------------------------------------------------- /notebook/encode_kidlisp.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/notebook/encode_kidlisp.mjs -------------------------------------------------------------------------------- /notebook/hands.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/notebook/hands.ipynb -------------------------------------------------------------------------------- /notebook/hello.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/notebook/hello.ipynb -------------------------------------------------------------------------------- /notebook/library.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/notebook/library.ipynb -------------------------------------------------------------------------------- /notebook/publish.fish: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env fish 2 | 3 | jupyter nbconvert hello.ipynb --to html -------------------------------------------------------------------------------- /notebook/ukulele-songs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/notebook/ukulele-songs.ipynb -------------------------------------------------------------------------------- /notebook/wipppps.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/notebook/wipppps.ipynb -------------------------------------------------------------------------------- /objkt/AC-PACK-TAPE-GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/objkt/AC-PACK-TAPE-GUIDE.md -------------------------------------------------------------------------------- /objkt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/objkt/README.md -------------------------------------------------------------------------------- /objkt/ac-pack-single-file.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/objkt/ac-pack-single-file.mjs -------------------------------------------------------------------------------- /objkt/ac-pack.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/objkt/ac-pack.mjs -------------------------------------------------------------------------------- /objkt/ac-ship.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/objkt/ac-ship.mjs -------------------------------------------------------------------------------- /objkt/ac-unpack.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/objkt/ac-unpack.mjs -------------------------------------------------------------------------------- /objkt/agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/objkt/agents.md -------------------------------------------------------------------------------- /objkt/dependency-analyzer.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/objkt/dependency-analyzer.mjs -------------------------------------------------------------------------------- /objkt/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/objkt/examples/README.md -------------------------------------------------------------------------------- /objkt/examples/starfield.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/objkt/examples/starfield.md -------------------------------------------------------------------------------- /objkt/kidlisp-extractor.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/objkt/kidlisp-extractor.mjs -------------------------------------------------------------------------------- /objkt/pack-for-teia.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/objkt/pack-for-teia.sh -------------------------------------------------------------------------------- /oven/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/oven/.env.example -------------------------------------------------------------------------------- /oven/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/oven/.gitignore -------------------------------------------------------------------------------- /oven/LOCAL-DEV-SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/oven/LOCAL-DEV-SETUP.md -------------------------------------------------------------------------------- /oven/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/oven/README.md -------------------------------------------------------------------------------- /oven/baker.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/oven/baker.mjs -------------------------------------------------------------------------------- /oven/deploy.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/oven/deploy.fish -------------------------------------------------------------------------------- /oven/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/oven/deploy.sh -------------------------------------------------------------------------------- /oven/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/oven/package-lock.json -------------------------------------------------------------------------------- /oven/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/oven/package.json -------------------------------------------------------------------------------- /oven/scripts/check-slugs.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/oven/scripts/check-slugs.mjs -------------------------------------------------------------------------------- /oven/scripts/setup-cdn-dns.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/oven/scripts/setup-cdn-dns.fish -------------------------------------------------------------------------------- /oven/server.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/oven/server.mjs -------------------------------------------------------------------------------- /oven/test-query-tapes.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/oven/test-query-tapes.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/package.json -------------------------------------------------------------------------------- /paintings/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/paintings/.env.example -------------------------------------------------------------------------------- /paintings/.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/paintings/.env.template -------------------------------------------------------------------------------- /paintings/ATTRIBUTION-STRATEGY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/paintings/ATTRIBUTION-STRATEGY.md -------------------------------------------------------------------------------- /paintings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/paintings/README.md -------------------------------------------------------------------------------- /paintings/STATUS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/paintings/STATUS.md -------------------------------------------------------------------------------- /paintings/bulk-fix-acls.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/paintings/bulk-fix-acls.mjs -------------------------------------------------------------------------------- /paintings/check-lifecycle.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/paintings/check-lifecycle.mjs -------------------------------------------------------------------------------- /paintings/generate-code.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/paintings/generate-code.mjs -------------------------------------------------------------------------------- /paintings/inspect-api.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/paintings/inspect-api.mjs -------------------------------------------------------------------------------- /paintings/inspect-mongodb.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/paintings/inspect-mongodb.mjs -------------------------------------------------------------------------------- /paintings/inspect-spaces.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/paintings/inspect-spaces.mjs -------------------------------------------------------------------------------- /paintings/migrate-add-codes.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/paintings/migrate-add-codes.mjs -------------------------------------------------------------------------------- /paintings/migrate-paintings.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/paintings/migrate-paintings.mjs -------------------------------------------------------------------------------- /paintings/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/paintings/package-lock.json -------------------------------------------------------------------------------- /paintings/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/paintings/package.json -------------------------------------------------------------------------------- /paintings/regenerate-codes.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/paintings/regenerate-codes.mjs -------------------------------------------------------------------------------- /paintings/setup.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/paintings/setup.fish -------------------------------------------------------------------------------- /paintings/setup.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/paintings/setup.mjs -------------------------------------------------------------------------------- /paintings/test-code-generator.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/paintings/test-code-generator.mjs -------------------------------------------------------------------------------- /paintings/test-generator.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/paintings/test-generator.mjs -------------------------------------------------------------------------------- /paintings/verify-migration.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/paintings/verify-migration.mjs -------------------------------------------------------------------------------- /plans/1v1-quake-fps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/plans/1v1-quake-fps.md -------------------------------------------------------------------------------- /plans/KIDLISP_INTEGRATION_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/plans/KIDLISP_INTEGRATION_PLAN.md -------------------------------------------------------------------------------- /plans/REAL_TIME_PAINTING_SYNC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/plans/REAL_TIME_PAINTING_SYNC.md -------------------------------------------------------------------------------- /plans/SECURITY-SECRETS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/plans/SECURITY-SECRETS.md -------------------------------------------------------------------------------- /plans/TAPE-VIDEO-PROCESSING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/plans/TAPE-VIDEO-PROCESSING.md -------------------------------------------------------------------------------- /plans/TODO-kidlisp-fixes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/plans/TODO-kidlisp-fixes.md -------------------------------------------------------------------------------- /plans/ac-command-robustness.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/plans/ac-command-robustness.md -------------------------------------------------------------------------------- /plans/atproto-integration-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/plans/atproto-integration-plan.md -------------------------------------------------------------------------------- /plans/atproto-pds-roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/plans/atproto-pds-roadmap.md -------------------------------------------------------------------------------- /plans/bdf-rotation-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/plans/bdf-rotation-issue.md -------------------------------------------------------------------------------- /plans/blur-implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/plans/blur-implementation.md -------------------------------------------------------------------------------- /plans/cross-tab-painting-sync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/plans/cross-tab-painting-sync.md -------------------------------------------------------------------------------- /plans/hud-drag-fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/plans/hud-drag-fix.md -------------------------------------------------------------------------------- /plans/judge-deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/plans/judge-deployment.md -------------------------------------------------------------------------------- /plans/kidlisp-embedding-fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/plans/kidlisp-embedding-fix.md -------------------------------------------------------------------------------- /plans/kidlisp-make-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/plans/kidlisp-make-integration.md -------------------------------------------------------------------------------- /plans/kidlisp-mic-global.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/plans/kidlisp-mic-global.md -------------------------------------------------------------------------------- /plans/lexicon-publication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/plans/lexicon-publication.md -------------------------------------------------------------------------------- /plans/merry/MERRY_EXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/plans/merry/MERRY_EXAMPLES.md -------------------------------------------------------------------------------- /plans/merry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/plans/merry/README.md -------------------------------------------------------------------------------- /plans/pack-$39i.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/plans/pack-$39i.md -------------------------------------------------------------------------------- /plans/repeat-alias-research.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/plans/repeat-alias-research.md -------------------------------------------------------------------------------- /plans/robo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/plans/robo.md -------------------------------------------------------------------------------- /plans/stow-file-upload-feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/plans/stow-file-upload-feature.md -------------------------------------------------------------------------------- /plans/suck-function-fixed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/plans/suck-function-fixed.md -------------------------------------------------------------------------------- /plans/suck-redesign-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/plans/suck-redesign-notes.md -------------------------------------------------------------------------------- /plans/tape-player-refactor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/plans/tape-player-refactor.md -------------------------------------------------------------------------------- /plans/tape-viewer-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/plans/tape-viewer-testing.md -------------------------------------------------------------------------------- /plans/teia-to-objkt-rename.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/plans/teia-to-objkt-rename.md -------------------------------------------------------------------------------- /plans/tv-fyp-implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/plans/tv-fyp-implementation.md -------------------------------------------------------------------------------- /plans/tv-piece-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/plans/tv-piece-plan.md -------------------------------------------------------------------------------- /plans/unifont-moods-fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/plans/unifont-moods-fix.md -------------------------------------------------------------------------------- /plans/video-tape-post-feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/plans/video-tape-post-feature.md -------------------------------------------------------------------------------- /plans/webgpu-renderer-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/plans/webgpu-renderer-plan.md -------------------------------------------------------------------------------- /rebroadcast.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/rebroadcast.sh -------------------------------------------------------------------------------- /reference/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/reference/README.md -------------------------------------------------------------------------------- /reference/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/reference/TODO.md -------------------------------------------------------------------------------- /reference/ableton/grid_full.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/reference/ableton/grid_full.csv -------------------------------------------------------------------------------- /reference/ableton/grid_test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/reference/ableton/grid_test.csv -------------------------------------------------------------------------------- /reference/ableton/grid_test2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/reference/ableton/grid_test2.csv -------------------------------------------------------------------------------- /reference/ableton/notes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/reference/ableton/notes.json -------------------------------------------------------------------------------- /reference/ableton/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/reference/ableton/package.json -------------------------------------------------------------------------------- /reference/ableton/report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/reference/ableton/report.json -------------------------------------------------------------------------------- /reference/ableton/session: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/reference/ableton/session -------------------------------------------------------------------------------- /reference/ableton/sim.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/reference/ableton/sim.csv -------------------------------------------------------------------------------- /reference/ableton/timeline.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/reference/ableton/timeline.mjs -------------------------------------------------------------------------------- /reference/api/javascript-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/reference/api/javascript-api.md -------------------------------------------------------------------------------- /reference/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/reference/package-lock.json -------------------------------------------------------------------------------- /reference/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/reference/package.json -------------------------------------------------------------------------------- /reference/pieces/structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/reference/pieces/structure.md -------------------------------------------------------------------------------- /reference/tools/cli-explorer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/reference/tools/cli-explorer.md -------------------------------------------------------------------------------- /reference/tools/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/reference/tools/testing.md -------------------------------------------------------------------------------- /reports/tape-command-research.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/reports/tape-command-research.md -------------------------------------------------------------------------------- /repository-thumbnail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/repository-thumbnail/README.md -------------------------------------------------------------------------------- /repository-thumbnail/build.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/repository-thumbnail/build.fish -------------------------------------------------------------------------------- /repository-thumbnail/qr-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/repository-thumbnail/qr-code.png -------------------------------------------------------------------------------- /scripts/ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/scripts/ARCHITECTURE.md -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/scripts/SETUP.md -------------------------------------------------------------------------------- /scripts/admin-migrate.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/scripts/admin-migrate.mjs -------------------------------------------------------------------------------- /scripts/atproto/sync-atproto.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/scripts/atproto/sync-atproto.mjs -------------------------------------------------------------------------------- /scripts/check-short-domains.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/scripts/check-short-domains.mjs -------------------------------------------------------------------------------- /scripts/check-tape-status.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/scripts/check-tape-status.mjs -------------------------------------------------------------------------------- /scripts/fix-tape-z-suffix.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/scripts/fix-tape-z-suffix.mjs -------------------------------------------------------------------------------- /scripts/retry-tape-bake.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/scripts/retry-tape-bake.mjs -------------------------------------------------------------------------------- /secret/server-exploration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/secret/server-exploration.md -------------------------------------------------------------------------------- /session-server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/session-server/.gitignore -------------------------------------------------------------------------------- /session-server/DEPLOY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/session-server/DEPLOY.md -------------------------------------------------------------------------------- /session-server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/session-server/Dockerfile -------------------------------------------------------------------------------- /session-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/session-server/README.md -------------------------------------------------------------------------------- /session-server/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/session-server/README.txt -------------------------------------------------------------------------------- /session-server/chat-manager.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/session-server/chat-manager.mjs -------------------------------------------------------------------------------- /session-server/dashboard.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/session-server/dashboard.el -------------------------------------------------------------------------------- /session-server/dashboard.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/session-server/dashboard.mjs -------------------------------------------------------------------------------- /session-server/deploy.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/session-server/deploy.fish -------------------------------------------------------------------------------- /session-server/filter.mjs: -------------------------------------------------------------------------------- 1 | ../shared/filter.mjs -------------------------------------------------------------------------------- /session-server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/session-server/package-lock.json -------------------------------------------------------------------------------- /session-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/session-server/package.json -------------------------------------------------------------------------------- /session-server/redact.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/session-server/redact.mjs -------------------------------------------------------------------------------- /session-server/session.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/session-server/session.mjs -------------------------------------------------------------------------------- /session-server/session_server.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/session-server/session_server.pub -------------------------------------------------------------------------------- /session-server/setup-ssh.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/session-server/setup-ssh.fish -------------------------------------------------------------------------------- /session-server/test-chat.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/session-server/test-chat.fish -------------------------------------------------------------------------------- /shared/filter.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/shared/filter.mjs -------------------------------------------------------------------------------- /shared/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/shared/package-lock.json -------------------------------------------------------------------------------- /shared/package.json: -------------------------------------------------------------------------------- 1 | {"type":"module","dependencies":{"obscenity":"^0.4.5"}} -------------------------------------------------------------------------------- /shared/redact.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/shared/redact.mjs -------------------------------------------------------------------------------- /shared/shared.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/shared/shared.txt -------------------------------------------------------------------------------- /simple-gb-asm-examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/simple-gb-asm-examples/.gitignore -------------------------------------------------------------------------------- /simple-gb-asm-examples/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/simple-gb-asm-examples/LICENSE -------------------------------------------------------------------------------- /simple-gb-asm-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/simple-gb-asm-examples/README.md -------------------------------------------------------------------------------- /sites/digitpain.com/README.md: -------------------------------------------------------------------------------- 1 | # jas.life 2 | -------------------------------------------------------------------------------- /sites/digitpain.com/digitpain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/sites/digitpain.com/digitpain.jpg -------------------------------------------------------------------------------- /sites/digitpain.com/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/sites/digitpain.com/index.html -------------------------------------------------------------------------------- /sites/digitpain.com/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/sites/digitpain.com/style.css -------------------------------------------------------------------------------- /sites/whistlegraph.com/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/sites/whistlegraph.com/index.html -------------------------------------------------------------------------------- /sixel-experiments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/sixel-experiments/README.md -------------------------------------------------------------------------------- /spec/kidlisp-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/spec/kidlisp-spec.js -------------------------------------------------------------------------------- /spec/support/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/spec/support/jasmine.json -------------------------------------------------------------------------------- /ssh-mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ssh-mac.sh -------------------------------------------------------------------------------- /ssl-dev/ac-ssl-mac.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ssl-dev/ac-ssl-mac.fish -------------------------------------------------------------------------------- /ssl-dev/ssl-install.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ssl-dev/ssl-install.fish -------------------------------------------------------------------------------- /ssl-dev/ssl-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ssl-dev/ssl-readme.txt -------------------------------------------------------------------------------- /storage/policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/storage/policy.json -------------------------------------------------------------------------------- /storage/storage-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/storage/storage-notes.md -------------------------------------------------------------------------------- /stringos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/stringos/Makefile -------------------------------------------------------------------------------- /stringos/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/stringos/main.c -------------------------------------------------------------------------------- /stringos/main.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/stringos/main.efi -------------------------------------------------------------------------------- /stringos/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/stringos/main.o -------------------------------------------------------------------------------- /system/.gitignore: -------------------------------------------------------------------------------- 1 | .env.backup 2 | -------------------------------------------------------------------------------- /system/.parcelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/.parcelrc -------------------------------------------------------------------------------- /system/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/Caddyfile -------------------------------------------------------------------------------- /system/Caddyfile-nossl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/Caddyfile-nossl -------------------------------------------------------------------------------- /system/add-env-vars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/add-env-vars.sh -------------------------------------------------------------------------------- /system/backend/at.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/backend/at.mjs -------------------------------------------------------------------------------- /system/backend/authorization.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/backend/authorization.mjs -------------------------------------------------------------------------------- /system/backend/database.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/backend/database.mjs -------------------------------------------------------------------------------- /system/backend/email.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/backend/email.mjs -------------------------------------------------------------------------------- /system/backend/filter.mjs: -------------------------------------------------------------------------------- 1 | ../../shared/filter.mjs -------------------------------------------------------------------------------- /system/backend/fix-tape-slug.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/backend/fix-tape-slug.mjs -------------------------------------------------------------------------------- /system/backend/http.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/backend/http.mjs -------------------------------------------------------------------------------- /system/backend/kv.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/backend/kv.mjs -------------------------------------------------------------------------------- /system/backend/logger.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/backend/logger.mjs -------------------------------------------------------------------------------- /system/backend/logo.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/backend/logo.mjs -------------------------------------------------------------------------------- /system/backend/media-atproto.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/backend/media-atproto.mjs -------------------------------------------------------------------------------- /system/backend/mood-atproto.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/backend/mood-atproto.mjs -------------------------------------------------------------------------------- /system/backend/shell.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/backend/shell.mjs -------------------------------------------------------------------------------- /system/backend/tape-atproto.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/backend/tape-atproto.mjs -------------------------------------------------------------------------------- /system/backend/tape-to-mp4.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/backend/tape-to-mp4.mjs -------------------------------------------------------------------------------- /system/backend/thumbnail.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/backend/thumbnail.mjs -------------------------------------------------------------------------------- /system/deno.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/deno.lock -------------------------------------------------------------------------------- /system/ignore-index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/ignore-index.sh -------------------------------------------------------------------------------- /system/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/netlify.toml -------------------------------------------------------------------------------- /system/netlify/functions/ask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/netlify/functions/ask.js -------------------------------------------------------------------------------- /system/netlify/functions/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/netlify/functions/docs.js -------------------------------------------------------------------------------- /system/netlify/functions/email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/netlify/functions/email.js -------------------------------------------------------------------------------- /system/netlify/functions/kidlisp-keep.mjs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/netlify/functions/logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/netlify/functions/logo.js -------------------------------------------------------------------------------- /system/netlify/functions/mood.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/netlify/functions/mood.mjs -------------------------------------------------------------------------------- /system/netlify/functions/pixel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/netlify/functions/pixel.js -------------------------------------------------------------------------------- /system/netlify/functions/print.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/netlify/functions/print.js -------------------------------------------------------------------------------- /system/netlify/functions/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/netlify/functions/run.js -------------------------------------------------------------------------------- /system/netlify/functions/say.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/netlify/functions/say.js -------------------------------------------------------------------------------- /system/netlify/functions/tv.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/netlify/functions/tv.mjs -------------------------------------------------------------------------------- /system/netlify/functions/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/netlify/functions/user.js -------------------------------------------------------------------------------- /system/netlify/functions/vary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/netlify/functions/vary.js -------------------------------------------------------------------------------- /system/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/nginx.conf -------------------------------------------------------------------------------- /system/offline-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/offline-index.html -------------------------------------------------------------------------------- /system/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/package-lock.json -------------------------------------------------------------------------------- /system/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/package.json -------------------------------------------------------------------------------- /system/public/_headers: -------------------------------------------------------------------------------- 1 | /* 2 | Access-Control-Allow-Origin: * -------------------------------------------------------------------------------- /system/public/aesthetic.computer/dep/@mediapipe/hands/hands_solution_simd_wasm_bin.data: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/public/aesthetic.computer/dep/gpt3-tokenizer/text-decoder.d.ts: -------------------------------------------------------------------------------- 1 | export default TextDecoder; 2 | -------------------------------------------------------------------------------- /system/public/aesthetic.computer/dep/gpt3-tokenizer/text-encoder.d.ts: -------------------------------------------------------------------------------- 1 | export default TextEncoder; 2 | -------------------------------------------------------------------------------- /system/public/aesthetic.computer/disks/addition.lisp: -------------------------------------------------------------------------------- 1 | ; Adds numbers 2 | (+ 1 2 3) ; 6 -------------------------------------------------------------------------------- /system/public/aesthetic.computer/disks/drawings/font_1/lowercase/oslash - 2022.1.11.16.32.30.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/public/aesthetic.computer/disks/drawings/font_1/uppercase/Oslash - 2022.1.11.18.32.33.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/public/aesthetic.computer/disks/kidlisp-wip.lisp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/public/aesthetic.computer/disks/subtraction.lisp: -------------------------------------------------------------------------------- 1 | ; Subtracts numbers 2 | (- 10 5 1 1) ; 3 -------------------------------------------------------------------------------- /system/public/aesthetic.computer/disks/test-write-center.lisp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/public/aesthetic.computer/disks/zoom-test.mjs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/public/aesthetic.computer/lib/kidlisp-keep.mjs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/public/assets/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/public/assets/readme.txt -------------------------------------------------------------------------------- /system/public/builds.false.work/ios/.gitignore: -------------------------------------------------------------------------------- 1 | *.ipa 2 | -------------------------------------------------------------------------------- /system/public/bundles/39j.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/public/bundles/39j.html -------------------------------------------------------------------------------- /system/public/bundles/9vd.html: -------------------------------------------------------------------------------- 1 | {"error":"Piece '$9vd' not found"} -------------------------------------------------------------------------------- /system/public/bundles/pal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/public/bundles/pal.html -------------------------------------------------------------------------------- /system/public/digitpain.com/README.md: -------------------------------------------------------------------------------- 1 | # jas.life 2 | -------------------------------------------------------------------------------- /system/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/public/manifest.json -------------------------------------------------------------------------------- /system/public/mediapipe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/public/mediapipe.html -------------------------------------------------------------------------------- /system/public/overlay-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/public/overlay-test.html -------------------------------------------------------------------------------- /system/public/overlay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/public/overlay.html -------------------------------------------------------------------------------- /system/public/privacy-policy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/public/privacy-policy.html -------------------------------------------------------------------------------- /system/public/purple-pals.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/public/purple-pals.svg -------------------------------------------------------------------------------- /system/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/templates/index.html -------------------------------------------------------------------------------- /system/tests/parse.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/tests/parse.test.mjs -------------------------------------------------------------------------------- /system/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/system/tsconfig.json -------------------------------------------------------------------------------- /tests/embed-test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tests/embed-test.mjs -------------------------------------------------------------------------------- /tests/findColor.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tests/findColor.test.mjs -------------------------------------------------------------------------------- /tests/hudColorCodes.test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tests/hudColorCodes.test.mjs -------------------------------------------------------------------------------- /tests/performance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tests/performance/README.md -------------------------------------------------------------------------------- /tezos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/.gitignore -------------------------------------------------------------------------------- /tezos/BUNDLE-SYSTEM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/BUNDLE-SYSTEM.md -------------------------------------------------------------------------------- /tezos/Dockerfile.smartpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/Dockerfile.smartpy -------------------------------------------------------------------------------- /tezos/KeepsFA2Corrected/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/KeepsFA2Corrected/log.txt -------------------------------------------------------------------------------- /tezos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/README.md -------------------------------------------------------------------------------- /tezos/archive/analyze-imports.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/archive/analyze-imports.mjs -------------------------------------------------------------------------------- /tezos/balance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/balance.py -------------------------------------------------------------------------------- /tezos/bundle-keep-html.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/bundle-keep-html.mjs -------------------------------------------------------------------------------- /tezos/check_bundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/check_bundle.py -------------------------------------------------------------------------------- /tezos/compile_corrected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/compile_corrected.py -------------------------------------------------------------------------------- /tezos/compile_keeps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/compile_keeps.py -------------------------------------------------------------------------------- /tezos/create_kidlisp_wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/create_kidlisp_wallet.py -------------------------------------------------------------------------------- /tezos/deploy-docker-cp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/deploy-docker-cp.py -------------------------------------------------------------------------------- /tezos/deploy-single-command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/deploy-single-command.py -------------------------------------------------------------------------------- /tezos/deploy-to-ghostnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/deploy-to-ghostnet.py -------------------------------------------------------------------------------- /tezos/deploy-via-docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/deploy-via-docker.py -------------------------------------------------------------------------------- /tezos/deploy_clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/deploy_clean.js -------------------------------------------------------------------------------- /tezos/deploy_manual_attempt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/deploy_manual_attempt.js -------------------------------------------------------------------------------- /tezos/fa2_minimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/fa2_minimal.py -------------------------------------------------------------------------------- /tezos/fa2_nft_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/fa2_nft_template.py -------------------------------------------------------------------------------- /tezos/fa2_standard_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/fa2_standard_example.py -------------------------------------------------------------------------------- /tezos/fa2_template_official.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/fa2_template_official.py -------------------------------------------------------------------------------- /tezos/fund-kidlisp.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/fund-kidlisp.fish -------------------------------------------------------------------------------- /tezos/inspect_loadbitmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/inspect_loadbitmap.py -------------------------------------------------------------------------------- /tezos/keeps_fa2_clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/keeps_fa2_clean.py -------------------------------------------------------------------------------- /tezos/keeps_fa2_compiled.tz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/keeps_fa2_compiled.tz -------------------------------------------------------------------------------- /tezos/keeps_fa2_enhanced/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/keeps_fa2_enhanced/log.txt -------------------------------------------------------------------------------- /tezos/keeps_fa2_final.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/keeps_fa2_final.py -------------------------------------------------------------------------------- /tezos/keeps_fa2_final_compiled.tz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/keeps_fa2_final_compiled.tz -------------------------------------------------------------------------------- /tezos/keeps_fa2_fixed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/keeps_fa2_fixed.py -------------------------------------------------------------------------------- /tezos/keeps_fa2_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/keeps_fa2_test.py -------------------------------------------------------------------------------- /tezos/keeps_fa2_v23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/keeps_fa2_v23.py -------------------------------------------------------------------------------- /tezos/keeps_fa2_v2_compiled.tz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/keeps_fa2_v2_compiled.tz -------------------------------------------------------------------------------- /tezos/michelson-lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/michelson-lib/README.md -------------------------------------------------------------------------------- /tezos/michelson-lib/STATUS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/michelson-lib/STATUS.md -------------------------------------------------------------------------------- /tezos/michelson-lib/TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/michelson-lib/TESTING.md -------------------------------------------------------------------------------- /tezos/michelson-lib/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/michelson-lib/pytest.ini -------------------------------------------------------------------------------- /tezos/michelson-lib/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Tests initialization 3 | """ 4 | -------------------------------------------------------------------------------- /tezos/mint-to-ghostnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/mint-to-ghostnet.py -------------------------------------------------------------------------------- /tezos/mint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/mint.js -------------------------------------------------------------------------------- /tezos/mint_with_ipfs_ghostnet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/mint_with_ipfs_ghostnet.js -------------------------------------------------------------------------------- /tezos/octez-docker.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/octez-docker.fish -------------------------------------------------------------------------------- /tezos/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/package.json -------------------------------------------------------------------------------- /tezos/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/requirements.txt -------------------------------------------------------------------------------- /tezos/setup.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/setup.fish -------------------------------------------------------------------------------- /tezos/smartpy-compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/smartpy-compile -------------------------------------------------------------------------------- /tezos/test-balance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/test-balance.js -------------------------------------------------------------------------------- /tezos/test-code-format.tz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/test-code-format.tz -------------------------------------------------------------------------------- /tezos/test-minimal-fa2-param.tz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/test-minimal-fa2-param.tz -------------------------------------------------------------------------------- /tezos/test-minimal-origination.tz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/test-minimal-origination.tz -------------------------------------------------------------------------------- /tezos/test-nested-or.tz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/test-nested-or.tz -------------------------------------------------------------------------------- /tezos/test-or-annot-on-pair.tz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/test-or-annot-on-pair.tz -------------------------------------------------------------------------------- /tezos/test-or-annot.tz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/test-or-annot.tz -------------------------------------------------------------------------------- /tezos/test-or-complex.tz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/test-or-complex.tz -------------------------------------------------------------------------------- /tezos/test-param-formats.tz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/test-param-formats.tz -------------------------------------------------------------------------------- /tezos/test-setup.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/test-setup.fish -------------------------------------------------------------------------------- /tezos/test-transfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/test-transfer.js -------------------------------------------------------------------------------- /tezos/test_edit_and_lock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/test_edit_and_lock.js -------------------------------------------------------------------------------- /tezos/transfer-to-different.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/transfer-to-different.js -------------------------------------------------------------------------------- /tezos/transfer-v4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/transfer-v4.js -------------------------------------------------------------------------------- /tezos/upload-to-ipfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/upload-to-ipfs.py -------------------------------------------------------------------------------- /tezos/upload_to_ipfs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tezos/upload_to_ipfs.js -------------------------------------------------------------------------------- /tokens/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tokens/README.md -------------------------------------------------------------------------------- /tokens/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tokens/TODO.md -------------------------------------------------------------------------------- /tokens/pack.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tokens/pack.fish -------------------------------------------------------------------------------- /tokens/test-local.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/tokens/test-local.html -------------------------------------------------------------------------------- /ucla-class/ucla-1.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ucla-class/ucla-1.mjs -------------------------------------------------------------------------------- /ucla-class/ucla-2-b.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ucla-class/ucla-2-b.mjs -------------------------------------------------------------------------------- /ucla-class/ucla-3-a.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ucla-class/ucla-3-a.mjs -------------------------------------------------------------------------------- /ucla-class/ucla-4-box.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ucla-class/ucla-4-box.mjs -------------------------------------------------------------------------------- /ucla-class/ucla-4-drum.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ucla-class/ucla-4-drum.mjs -------------------------------------------------------------------------------- /ucla-class/ucla-5-follow.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/ucla-class/ucla-5-follow.mjs -------------------------------------------------------------------------------- /utilities/README-emacs-monitor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/utilities/README-emacs-monitor.md -------------------------------------------------------------------------------- /utilities/emacs-monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/utilities/emacs-monitor.sh -------------------------------------------------------------------------------- /utilities/generate-local-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/utilities/generate-local-url.js -------------------------------------------------------------------------------- /utilities/generate-new-piece.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/utilities/generate-new-piece.mjs -------------------------------------------------------------------------------- /utilities/img-to-webp.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/utilities/img-to-webp.fish -------------------------------------------------------------------------------- /utilities/m4a-to-audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/utilities/m4a-to-audio.py -------------------------------------------------------------------------------- /utilities/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/utilities/package-lock.json -------------------------------------------------------------------------------- /utilities/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/utilities/package.json -------------------------------------------------------------------------------- /utilities/snake.six: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/utilities/snake.six -------------------------------------------------------------------------------- /utilities/test-ac-pack.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/utilities/test-ac-pack.mjs -------------------------------------------------------------------------------- /utilities/thinkpad.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/utilities/thinkpad.fish -------------------------------------------------------------------------------- /utilities/thinkpad.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/utilities/thinkpad.sh -------------------------------------------------------------------------------- /utilities/webp-animation.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/utilities/webp-animation.fish -------------------------------------------------------------------------------- /vscode-extension/.gitignore: -------------------------------------------------------------------------------- 1 | out/ 2 | .vscode-test-web -------------------------------------------------------------------------------- /vscode-extension/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/vscode-extension/.vscodeignore -------------------------------------------------------------------------------- /vscode-extension/LICENSE.txt: -------------------------------------------------------------------------------- 1 | None 2 | -------------------------------------------------------------------------------- /vscode-extension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/vscode-extension/README.md -------------------------------------------------------------------------------- /vscode-extension/dev-reload.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/vscode-extension/dev-reload.fish -------------------------------------------------------------------------------- /vscode-extension/embedded.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/vscode-extension/embedded.js -------------------------------------------------------------------------------- /vscode-extension/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/vscode-extension/extension.ts -------------------------------------------------------------------------------- /vscode-extension/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/vscode-extension/main.css -------------------------------------------------------------------------------- /vscode-extension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/vscode-extension/package.json -------------------------------------------------------------------------------- /vscode-extension/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/vscode-extension/reset.css -------------------------------------------------------------------------------- /vscode-extension/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/vscode-extension/tsconfig.json -------------------------------------------------------------------------------- /vscode-extension/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/vscode-extension/util.ts -------------------------------------------------------------------------------- /vscode-extension/vscode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/vscode-extension/vscode.css -------------------------------------------------------------------------------- /windows/BUILD-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/windows/BUILD-README.md -------------------------------------------------------------------------------- /windows/GETTING-STARTED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/windows/GETTING-STARTED.md -------------------------------------------------------------------------------- /windows/QUICK-START.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/windows/QUICK-START.md -------------------------------------------------------------------------------- /windows/ac-pipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/windows/ac-pipe.sh -------------------------------------------------------------------------------- /windows/aesthetic.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/windows/aesthetic.ps1 -------------------------------------------------------------------------------- /windows/artery.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/windows/artery.ps1 -------------------------------------------------------------------------------- /windows/build-false-work.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/windows/build-false-work.fish -------------------------------------------------------------------------------- /windows/build-false-work.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/windows/build-false-work.ps1 -------------------------------------------------------------------------------- /windows/build-relay.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/windows/build-relay.fish -------------------------------------------------------------------------------- /windows/clean-all-generated.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/windows/clean-all-generated.ps1 -------------------------------------------------------------------------------- /windows/clean-intermediate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/windows/clean-intermediate.ps1 -------------------------------------------------------------------------------- /windows/clear-build-caches.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/windows/clear-build-caches.ps1 -------------------------------------------------------------------------------- /windows/create-workspace.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/windows/create-workspace.ps1 -------------------------------------------------------------------------------- /windows/fix-dependencies.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/windows/fix-dependencies.ps1 -------------------------------------------------------------------------------- /windows/fix-fmod-callback-bug.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/windows/fix-fmod-callback-bug.ps1 -------------------------------------------------------------------------------- /windows/fix-fmod-issues.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/windows/fix-fmod-issues.ps1 -------------------------------------------------------------------------------- /windows/install-dependencies.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/windows/install-dependencies.ps1 -------------------------------------------------------------------------------- /windows/install-netfx-devpack.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/windows/install-netfx-devpack.ps1 -------------------------------------------------------------------------------- /windows/run-p4-sync-and-fix.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/windows/run-p4-sync-and-fix.ps1 -------------------------------------------------------------------------------- /windows/setup-perforce.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/windows/setup-perforce.ps1 -------------------------------------------------------------------------------- /windows/sync-project.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/windows/sync-project.ps1 -------------------------------------------------------------------------------- /windows/test-waltz.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/windows/test-waltz.ps1 -------------------------------------------------------------------------------- /windows/unlock-fmod-files.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/windows/unlock-fmod-files.ps1 -------------------------------------------------------------------------------- /windows/update-and-build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/windows/update-and-build.ps1 -------------------------------------------------------------------------------- /windows/update-build-script.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/windows/update-build-script.ps1 -------------------------------------------------------------------------------- /writing/agenda/agenda.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/writing/agenda/agenda.txt -------------------------------------------------------------------------------- /writing/asamyuta-hasta-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/writing/asamyuta-hasta-1.png -------------------------------------------------------------------------------- /writing/asamyuta-hasta-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/writing/asamyuta-hasta-2.png -------------------------------------------------------------------------------- /writing/asamyuta-hastas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/writing/asamyuta-hastas.png -------------------------------------------------------------------------------- /writing/asamyutta.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/writing/asamyutta.org -------------------------------------------------------------------------------- /writing/diary/diary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/writing/diary/diary.py -------------------------------------------------------------------------------- /writing/diary/get-entries.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/writing/diary/get-entries.fish -------------------------------------------------------------------------------- /writing/diary/readme.md: -------------------------------------------------------------------------------- 1 | # diary 2 | 3 | Python software. -------------------------------------------------------------------------------- /writing/etudes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/writing/etudes.txt -------------------------------------------------------------------------------- /writing/melodies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/writing/melodies.txt -------------------------------------------------------------------------------- /writing/mudras-notation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/writing/mudras-notation.jpg -------------------------------------------------------------------------------- /writing/notes/devlog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/writing/notes/devlog.txt -------------------------------------------------------------------------------- /writing/notes/devs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/writing/notes/devs.txt -------------------------------------------------------------------------------- /writing/notes/feelings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/writing/notes/feelings.txt -------------------------------------------------------------------------------- /writing/notes/freaky-flowers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/writing/notes/freaky-flowers.txt -------------------------------------------------------------------------------- /writing/notes/harvey-momi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/writing/notes/harvey-momi.txt -------------------------------------------------------------------------------- /writing/notes/ideas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/writing/notes/ideas.txt -------------------------------------------------------------------------------- /writing/notes/low-again.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/writing/notes/low-again.txt -------------------------------------------------------------------------------- /writing/notes/new-machine.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/writing/notes/new-machine.txt -------------------------------------------------------------------------------- /writing/notes/pd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/writing/notes/pd.txt -------------------------------------------------------------------------------- /writing/notes/svg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/writing/notes/svg.txt -------------------------------------------------------------------------------- /writing/notes/wilsongraph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/writing/notes/wilsongraph.txt -------------------------------------------------------------------------------- /writing/poetry/ubt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/writing/poetry/ubt.txt -------------------------------------------------------------------------------- /writing/samyuta-hands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/writing/samyuta-hands.png -------------------------------------------------------------------------------- /writing/show-hn-2024.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/writing/show-hn-2024.txt -------------------------------------------------------------------------------- /writing/swan-lake.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/writing/swan-lake.txt -------------------------------------------------------------------------------- /writing/thinkpad.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/writing/thinkpad.txt -------------------------------------------------------------------------------- /youtube/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/youtube/Dockerfile -------------------------------------------------------------------------------- /youtube/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/youtube/nginx.conf -------------------------------------------------------------------------------- /youtube/stream.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlegraph/aesthetic-computer/HEAD/youtube/stream.sh --------------------------------------------------------------------------------