Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

.gitignore: lock out the paths evicted in 2026-04-29 history shake

A `git filter-repo` pass on 2026-04-29 dropped 10 path patterns from
history that were already deleted from HEAD (CMake/JUCE build output,
generated PDF bifolds, an old GIF, an APK release artifact). Add them
to .gitignore so they can't accidentally re-enter history via a
forgetful `git add -A` or a tool that drops artifacts in-tree. Net
reclaim from gc + filter: 1.4 GB → 845 MB (~40%).

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

+21
+21
.gitignore
··· 376 376 # Fedac native build artifacts (kernel sources, object files, images) 377 377 fedac/native/build/ 378 378 379 + # Fedac scratch directories from earlier kiosk experiments 380 + .fedac-work/ 381 + 382 + # Swift / Xcode build directory for the AC VST plugin (CMake/JUCE output). 383 + # History was tree-shaken on 2026-04-29 to evict 309 MB of pack bloat — 384 + # do not let it back in. 385 + ac-vst/build/ 386 + 387 + # Electron native module build output (regenerated by node-gyp) 388 + ac-electron/native/*/build/ 389 + 390 + # Android release artifacts (the APK lives on a CDN, not in source) 391 + android/app/release/*.apk 392 + 393 + # Tezos CLI bundles (re-downloadable from origin) 394 + tezos/smartpy-cli.zip 395 + 396 + # Generated PDF bifolds — TeX/HTML/MJS source remains in-repo 397 + gigs/dis-order-pamphlet-8.5x11-folded/*.pdf 398 + gigs/fundraiser-checklist/fundraiser-poster.pdf 399 + 379 400 # External project artifacts (not part of AC repo) 380 401 surface-architecture.html 381 402