Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

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

papers/comp-strats: rip aphorism paper — compositional strategies as cultural shield

Comp Strats: Compositional Strategies in AC — Aphorisms for a Shielded
Media-Arts Practice. ~5pp first-pass, two-column arxiv layout. Frames AC's
accumulated rules-of-thumb (pieces not programs, cover don't fork, compose
from instruments not prompts, the seam shows, drafts only) as a layered
defense — aphorism / piece / paper / dossier / platter — against the
predictable failure modes of small media-arts projects: capture, dilution,
anthologization, infrastructure rot, quiet abandonment.

Registered in cli.mjs PAPER_MAP, metadata.json, SCORE.md.

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

+484
+1
papers/SCORE.md
··· 135 135 136 136 | Paper | Format | PDF | Source | 137 137 |-------|--------|-----|--------| 138 + | Comp Strats: Compositional Strategies in AC --- Aphorisms for a Shielded Media-Arts Practice | arXiv (LaTeX, ~7pp first-pass) | `arxiv-comp-strats/comp-strats.pdf` | `arxiv-comp-strats/comp-strats.tex` | 138 139 | A Fraserin' Art + Tech (methodology essay + prior-art survey, labor-folk register) | arXiv (LaTeX, 7pp first-pass) | `arxiv-fraserin/fraserin.pdf` | `arxiv-fraserin/fraserin.tex` | 139 140 | Pioneer Works: A Dossier (Genealogy, History, Programs, People, Money, Footprint, 2012–2026) | arXiv (LaTeX, dossier) | `arxiv-pioneer-works/pioneer-works.pdf` | `arxiv-pioneer-works/pioneer-works.tex` | 140 141 | Mellon Foundation: A Dossier (Genealogy, Programs, Giving, People, Politics, 1969–2026) | arXiv (LaTeX, dossier) | `arxiv-mellon/mellon.pdf` | `arxiv-mellon/mellon.tex` |
+1
papers/arxiv-comp-strats/ac-paper-layout.sty
··· 1 + ../ac-paper-layout.sty
+335
papers/arxiv-comp-strats/comp-strats.tex
··· 1 + % !TEX program = xelatex 2 + \documentclass[10pt,letterpaper,twocolumn]{article} 3 + 4 + % === GEOMETRY === 5 + \usepackage[top=0.75in, bottom=0.75in, left=0.75in, right=0.75in]{geometry} 6 + 7 + % === FONTS === 8 + \usepackage{fontspec} 9 + \usepackage{unicode-math} 10 + \setmainfont{lmroman10-regular.otf}[ 11 + BoldFont=lmroman10-bold.otf, 12 + ItalicFont=lmroman10-italic.otf, 13 + BoldItalicFont=lmroman10-bolditalic.otf, 14 + ] 15 + \setsansfont{lmsans10-regular.otf}[ 16 + BoldFont=lmsans10-bold.otf, 17 + ItalicFont=lmsans10-oblique.otf, 18 + BoldItalicFont=lmsans10-boldoblique.otf, 19 + ] 20 + \setmonofont{lmmono10-regular.otf}[Scale=0.85, 21 + BoldFont=lmmonolt10-bold.otf, 22 + ItalicFont=lmmono10-italic.otf, 23 + ] 24 + \newfontfamily\acbold{ywft-processing-bold}[ 25 + Path=../../system/public/type/webfonts/, 26 + Extension=.ttf 27 + ] 28 + \newfontfamily\aclight{ywft-processing-light}[ 29 + Path=../../system/public/type/webfonts/, 30 + Extension=.ttf 31 + ] 32 + 33 + % === PACKAGES === 34 + \usepackage{xcolor} 35 + \usepackage{titlesec} 36 + \usepackage{enumitem} 37 + \usepackage{booktabs} 38 + \usepackage{tabularx} 39 + \usepackage{fancyhdr} 40 + \usepackage{hyperref} 41 + \usepackage{graphicx} 42 + \usepackage{ragged2e} 43 + \usepackage{microtype} 44 + \usepackage{natbib} 45 + \usepackage[colorspec=0.92]{draftwatermark} 46 + 47 + % === COLORS === 48 + \definecolor{acpink}{RGB}{180,72,135} 49 + \definecolor{acpurple}{RGB}{120,80,180} 50 + \definecolor{acdark}{RGB}{64,56,74} 51 + \definecolor{acgray}{RGB}{119,119,119} 52 + \definecolor{draftcolor}{RGB}{180,72,135} 53 + 54 + % === DRAFT WATERMARK === 55 + \DraftwatermarkOptions{ 56 + text=WORKING DRAFT, 57 + fontsize=3cm, 58 + color=draftcolor!18, 59 + angle=45, 60 + pos={0.5\paperwidth, 0.5\paperheight} 61 + } 62 + 63 + % === HYPERREF === 64 + \hypersetup{ 65 + colorlinks=true, 66 + linkcolor=acpurple, 67 + urlcolor=acpurple, 68 + citecolor=acpurple, 69 + pdfauthor={@jeffrey}, 70 + pdftitle={Comp Strats}, 71 + } 72 + 73 + % === SECTION FORMATTING === 74 + \titleformat{\section} 75 + {\normalfont\bfseries\normalsize\uppercase} 76 + {\thesection.} 77 + {0.5em} 78 + {} 79 + \titlespacing{\section}{0pt}{1.2em}{0.3em} 80 + 81 + \titleformat{\subsection} 82 + {\normalfont\bfseries\small} 83 + {\thesubsection} 84 + {0.5em} 85 + {} 86 + \titlespacing{\subsection}{0pt}{0.8em}{0.2em} 87 + 88 + % === HEADER/FOOTER === 89 + \pagestyle{fancy} 90 + \fancyhf{} 91 + \renewcommand{\headrulewidth}{0pt} 92 + \fancyhead[C]{\footnotesize\color{draftcolor}\textit{Working Draft --- not for citation}} 93 + \fancyfoot[C]{\footnotesize\thepage} 94 + 95 + % === LIST SETTINGS === 96 + \setlist[itemize]{nosep, leftmargin=1.2em, itemsep=0.1em} 97 + \setlist[enumerate]{nosep, leftmargin=1.2em} 98 + 99 + % === COLUMN SEPARATION === 100 + \setlength{\columnsep}{1.8em} 101 + 102 + % === PARAGRAPH SETTINGS === 103 + \setlength{\parindent}{1em} 104 + \setlength{\parskip}{0.3em} 105 + 106 + \tolerance=800 107 + \emergencystretch=1em 108 + \hyphenpenalty=50 109 + 110 + \newcommand{\acdot}{{\color{acpink}.}} 111 + \newcommand{\ac}{\textsc{Aesthetic.Computer}} 112 + 113 + % Aphorism environment: a bold one-liner followed by a short gloss. 114 + \newcommand{\strat}[1]{\medskip\noindent\textbf{\color{acdark}#1}\par\nopagebreak} 115 + 116 + \begin{document} 117 + 118 + \twocolumn[{% 119 + \begin{center} 120 + \includegraphics[height=4em]{pals}\par\vspace{0.5em} 121 + {\acbold\fontsize{30pt}{34pt}\selectfont\color{acdark} Comp Strats}\par 122 + \vspace{0.2em} 123 + {\aclight\fontsize{11pt}{13pt}\selectfont\color{acpink} Compositional Strategies in \ac{} --- Aphorisms for a Shielded Media-Arts Practice}\par 124 + \vspace{0.6em} 125 + {\normalsize\href{https://prompt.ac/@jeffrey}{@jeffrey}}\par 126 + {\small\color{acgray} Aesthetic.Computer}\par 127 + {\small\color{acgray} ORCID: \href{https://orcid.org/0009-0007-4460-4913}{0009-0007-4460-4913}}\par 128 + \vspace{0.3em} 129 + {\small\color{acpurple} \url{https://aesthetic.computer}}\par 130 + \vspace{0.6em} 131 + \rule{\textwidth}{1.5pt} 132 + \vspace{0.5em} 133 + \end{center} 134 + 135 + \begin{center} 136 + {\small\color{draftcolor}\textbf{[ working draft --- not for citation ]}} 137 + \end{center} 138 + \vspace{0.3em} 139 + 140 + \begin{quote} 141 + \small\noindent\textbf{Abstract.} 142 + \ac{} has accumulated, over six years of practice, a small set of compositional strategies---short, repeatable, deliberately compressed rules that survive being moved between codebases, conversations, and conferences. They are not features. They are not branding. They are aphorisms in the older sense: \emph{portable, memorizable, sharp}. This paper collects the strategies that are currently load-bearing, glosses each in one or two sentences, and argues for the strategy of strategy itself. The argument is that the media arts---small, perpetually undercapitalized, perpetually adjacent to industries that would prefer to absorb them---need a shield made of sentences. Aphorisms are the smallest defensive unit a culture can carry. Pieces are the next-smallest. Papers are larger. The platter is the largest. Together they form a layered defense against the predictable failure modes of small creative-software projects: capture, dilution, anthologization, infrastructure rot, and quiet abandonment. 143 + \end{quote} 144 + \vspace{0.5em} 145 + }] 146 + 147 + \section{Why Aphorisms} 148 + 149 + The media arts are a small target. They are also a soft target. A studio practice with thirty years of work can be acquired, anthologized, indexed, paywalled, mirrored, defunded, or absorbed in a single fiscal quarter. Any defense that depends on infrastructure is brittle, because infrastructure is exactly what the absorbing party is best at replacing. Any defense that depends on funding is brittle, because funding is exactly what the absorbing party controls. 150 + 151 + What survives, when funding and infrastructure do not, is sentences. \citet{shklovsky1917art} called the technique \emph{defamiliarization}: art works by making the familiar strange, by forcing perception where habit would otherwise let us sleepwalk. \citet{adorno1990punctuation} argued that even punctuation is constitutive---that formal choices in notation shape what can be thought. An aphorism inherits both: it is a small, strange, formally tight unit of thought that resists smoothing. It is too short to anthologize and too compressed to acquire. It is also, importantly, easy to teach. 152 + 153 + \ac{} is built around the conviction that creative software should be \emph{practiced} rather than deployed~\citep{scudder2026pieces}. Practice requires doctrine. Doctrine, to remain practice and not become bureaucracy, has to fit on a card. The aphorisms below are what fits. 154 + 155 + \subsection{What this is not} 156 + 157 + This is not a manifesto. Manifestos commit. These commit nothing the practice has not already proven. This is not a manual. Manuals are exhaustive. These are partial on purpose. This is not a brand book. Brand books rehearse identity. These are tools. 158 + 159 + The closest existing form is the koan, the proverb, or the studio rule taped to the wall. The voice is the voice of the studio, not the conference~\citep{scudder2026voice}. 160 + 161 + \section{On the Unit} 162 + 163 + The unit of work in \ac{} is the \emph{piece}: a single \texttt{.mjs} or \texttt{.lisp} file that boots in a browser at a memorizable URL~\citep{scudder2026pieces}. Strategies that follow from that choice: 164 + 165 + \strat{Pieces, not programs.} 166 + A program is correct or incorrect. A piece is interesting or not. The first frame ships every property the engineering frame strips out: authorship, performance, iteration, return. 167 + 168 + \strat{One file, one piece.} 169 + No project structure, no build system, no dependency tree extending past the platform API. If a piece does not fit in one file, it is two pieces. The constraint is what makes covering possible. 170 + 171 + \strat{If it survives compression to a card, it was essential.} 172 + Same source, two formats: arXiv and card~\citep{scudder2026score}. The card pass is not a marketing exercise. It is a load-bearing test. Anything that cannot survive compression to a single sheet was scaffolding for the writer, not signal for the reader. 173 + 174 + \strat{Three similar lines beats a premature abstraction.} 175 + Repetition is cheap. The wrong abstraction is expensive. Wait until the third or fourth instance teaches you the actual shape; abstract from data, not from intuition. 176 + 177 + \section{On Time} 178 + 179 + \ac{} pieces share a lifecycle: \texttt{boot}, \texttt{paint}, \texttt{sim}, \texttt{act}, \texttt{leave}. The shape is borrowed from enactive cognitive science~\citep{varela1991embodied,clark1998extended}: perceive, update, render, return. 180 + 181 + \strat{Boot, paint, sim, act, leave.} 182 + The five verbs are not arbitrary. They are the smallest legible model of an agent in time. Anything you cannot fit into them, you should question. 183 + 184 + \strat{Practice, not deployment.} 185 + The relationship between author and piece is closer to a musician's relationship with an instrument than a developer's with a service. Pieces accumulate hours, not commits. 186 + 187 + \strat{Live coding is rehearsal.} 188 + Hot reload is not a developer convenience. It is the equivalent of practicing at tempo: the author plays the piece as it changes, not after. 189 + 190 + \strat{Done when abandoned.} 191 + There is no merge-to-main, no v1.0, no production cutover. A piece is finished when the author stops returning. This is the only honest definition of done in a creative practice. 192 + 193 + \section{On Names} 194 + 195 + \ac{} routes everything through the URL: \texttt{aesthetic.computer/notepat}, \texttt{aesthetic.computer/@user/piece}, parameters via colons~\citep{scudder2026url}. The namespace is the interface. 196 + 197 + \strat{URLs are mnemonic, not addresses.} 198 + A URL is a path back to a practice, not a pointer to a resource. The user who knows \texttt{notepat}, \texttt{wrl}, \texttt{prompt}, \texttt{clock} has internalized a map of possible experiences. 199 + 200 + \strat{The prompt is the instrument.} 201 + The command line at the top of every screen is what gets memorized. It is designed to reward fluency, not configuration~\citep{scudder2026notepat}. 202 + 203 + \strat{The browser is the concert hall.} 204 + Pieces play in the browser not because it is technically optimal but because it is the most accessible performance venue that exists. Every other venue is gated. 205 + 206 + \strat{Name like a song.} 207 + Two syllables, lower-case, evocative, available in the namespace. Avoid acronyms. Avoid project codenames. The name is the first thing the audience repeats. 208 + 209 + \section{On Authorship} 210 + 211 + \strat{Cover, don't fork.} 212 + \texttt{source piece-name} hands you the source and makes you a new author. The metaphor is musical, not version-control. A cover is a respectful re-interpretation; a fork is a schism. 213 + 214 + \strat{Idiotext over identity.} 215 + Stiegler's \emph{idiotext} is the singular memory woven through one's technical prostheses~\citep{stiegler1998technics,staunaes2021stiegler}. The point of an authored piece is not that it expresses you; it is that it remembers for you. 216 + 217 + \strat{Publishing is performance.} 218 + Issuing \texttt{publish} is not deployment. It is stepping on stage. The piece enters the namespace and becomes playable by anyone with the URL. 219 + 220 + \strat{First person is fine.} 221 + ``I built this'' beats ``the author implemented.'' The voice in code, in commits, in docs, and in papers is the same voice~\citep{scudder2026voice}. 222 + 223 + \section{On Composition (Proper)} 224 + 225 + The strategies that earned this paper its name. They concern how works are assembled out of the platform's primitives. 226 + 227 + \strat{Compose from instruments, not from prompts.} 228 + A song made by typing a sentence into a closed-source endpoint is not a composition. It is a request. \ac{} pop research starts from \texttt{notepat}, \texttt{sinebells}, \texttt{chord}, \texttt{beat}---instruments authored inside the system---and builds upward. Suno-style end-to-end generation is excluded by design. 229 + 230 + \strat{AI is a performance layer, not a composer.} 231 + A trained model can sing a part the same way a sampler can play a part: as one voice in an arrangement the human authored. The arrangement is the composition. The arrangement must survive being inspected. 232 + 233 + \strat{The seam shows.} 234 + \ac{} does not paper over the boundary between sinebells bed and notepat lead, between rendered subtitle and live overlay, between human hand and machine assist. The seam is information. Smoothing it is forgery. 235 + 236 + \strat{If you can't write the score, you don't know the piece.} 237 + A piece you can render but cannot describe is a happy accident, not a practice. The score---the source, the prompt log, the waltz events file---is what makes the piece teachable. 238 + 239 + \strat{Immediate-mode all the way down.} 240 + \texttt{paint} is called every frame; the screen is rebuilt from scratch. There is no retained scene graph. The cognitive payoff is that the artist thinks in terms of \emph{what to draw now}, not \emph{what to change}~\citep{montfort201210print}. 241 + 242 + \strat{Translate, always.} 243 + Every paper exists in four languages~\citep{scudder2026score}. This is not decoration. The work is not finished until it has left English. 244 + 245 + \section{On Refusal} 246 + 247 + A practice is also defined by what it will not do. The refusals below are non-negotiable. 248 + 249 + \strat{Closed source has no place in schools.} 250 + The pedagogical argument is in~\citet{scudder2026openschools}. The compositional argument is shorter: you cannot teach a black box. Anything taught must be openable by the student. 251 + 252 + \strat{No analytics. No telemetry. No dark patterns.} 253 + The platform does not measure its users. It is not optimizing them. It is hosting them. The first behavior follows from the conviction that the audience is a peer, not a metric. 254 + 255 + \strat{Drafts only. The send is human.} 256 + Outreach, applications, pitches, replies---automated assistance produces drafts, never sends. The human remains the only signature that has ever been on the work. 257 + 258 + \strat{What the private archive keeps, the public repo does not surface.} 259 + The studio has a vault. The vault is not the platter. Material flows from vault to platter only after a human review. This is the archive's analogue of the send rule. 260 + 261 + \strat{Never anonymize the labor.} 262 + Every commit, every cover, every paper is signed. The anti-pattern---unattributed work flowing through a corporate channel---is what the field is trying to escape, not reproduce. 263 + 264 + \section{On Care} 265 + 266 + \strat{Warmth is the default.} 267 + The voice for collaborators, students, and family is warm before it is correct. Coldness is the failure mode of efficiency culture; in a small studio, it is also the failure mode of burnout. 268 + 269 + \strat{Document the labor.} 270 + The dossier swimlane~\citep{scudder2026score} records what is publicly recoverable about the organizations that fund and host media arts: financials, governance, programs, named grants. Surfacing the labor is a form of care for the field. 271 + 272 + \strat{Surface the facts; stop where the facts stop.} 273 + The dossier posture is fact-surfacing, not argumentative. Where the data ends, the dossier ends. This is also the rule for code comments, commit messages, and applications. 274 + 275 + \strat{The honeydo list is real.} 276 + Opportunities that arrive through trusted channels go into a tracked inbox. They are not a backlog. They are a queue of relationships. 277 + 278 + \section{On the Platter} 279 + 280 + The platter is the long-running collection from which papers, pieces, and dossiers are carved~\citep{scudder2026score}. It is the longest unit in this paper. 281 + 282 + \strat{The platter is always growing.} 283 + Work is added before it is finished. Threads accumulate without obligation to become papers. The platter's job is to hold the raw material that the mill will eventually press. 284 + 285 + \strat{If a thread can survive being written down, it was real.} 286 + Writing is the test, not the documentation. Anything that disintegrates the moment you try to write it was scaffolding for the conversation, not signal for the field. 287 + 288 + \strat{Cover what you cite.} 289 + Every visual claim in a dossier cover has a source line~\citep{scudder2026score}. Every reference in a paper points to a thing you have read, not a thing you have heard of. Defensible footing is the only footing. 290 + 291 + \strat{Mill, don't market.} 292 + The papers exist because the practice generates more thinking than the practice can absorb. The mill catches the overflow. It is not a marketing pipeline; it is an honesty pipeline. 293 + 294 + \section{On the Shield} 295 + 296 + \subsection{What is being defended} 297 + 298 + Five failure modes recur in small media-arts projects. The aphorisms above are organized to defend against them. 299 + 300 + \begin{enumerate} 301 + \item \textbf{Capture.} A larger entity acquires the work or the maker and reframes the practice in its own terms. \emph{Defense: aphorisms travel; institutions cannot acquire a sentence.} 302 + \item \textbf{Dilution.} The practice grows by accretion until it no longer means anything specific. \emph{Defense: refusal aphorisms; the practice is defined by what it will not do.} 303 + \item \textbf{Anthologization.} The work is flattened into a representative sample inside someone else's narrative. \emph{Defense: dossier posture; the work surfaces its own context before someone else does.} 304 + \item \textbf{Infrastructure rot.} The platform that hosted the work decays, taking the work with it. \emph{Defense: pieces are single files at named URLs; translation; multiple mirrors; the platter as the canonical archive.} 305 + \item \textbf{Quiet abandonment.} The maker stops returning. \emph{Defense: ``done when abandoned'' as a positive value; the practice is what survives in the trace.} 306 + \end{enumerate} 307 + 308 + \subsection{Why these strategies and not others} 309 + 310 + The strategies in this paper were selected by use, not by argument. Each one is currently load-bearing in at least one piece, paper, dossier, or studio decision. Strategies that earned a place by argument but never proved themselves in practice were cut. So were strategies that proved themselves once and never recurred. The remaining set is the set that the practice cannot run without. 311 + 312 + \citet{magnusson2010designing} describes the epistemic dimension of musical instruments: instruments are tools that shape what their players can think. \ac{} is its own instrument; the strategies in this paper are the technique. They are not optional, in the same way that a violinist's bowing technique is not optional. The instrument is playable without them. It is not playable \emph{well} without them. 313 + 314 + \subsection{What is missing} 315 + 316 + A real shield has gaps. So does this one. Three known gaps: 317 + 318 + \begin{itemize} 319 + \item \textbf{Economics.} The strategies above describe a posture. They do not describe how the studio pays rent. Sustainability is treated separately~\citep{scudder2026sustainability}; the synthesis is open work. 320 + \item \textbf{Successor culture.} The aphorisms are currently held by one author. A culture is what survives the author. The translation, dossier, and platter strategies are first attempts at this; the rest is unsolved. 321 + \item \textbf{Adversarial robustness.} Aphorisms can be repeated by an actor who does not believe them. The defense against that is not in the words but in the surrounding artifacts---the pieces, the papers, the platter. This is why the shield is layered: no single layer is sufficient. 322 + \end{itemize} 323 + 324 + \section{Conclusion} 325 + 326 + Compositional strategy in \ac{} is not a feature list. It is a posture. The posture is encoded in sentences short enough to teach and sharp enough to defend. The sentences are arranged into a layered shield: aphorism, piece, paper, dossier, platter. Each layer slows a different mode of attrition. 327 + 328 + The deeper claim is that the media arts deserve a doctrine that fits on a card. Not because the field is small, but because the field is the kind of thing that is worth preserving in a form that is small enough to carry. Programs, in the engineering sense, do not need aphorisms. Pieces, in the sense this practice uses the word, do. 329 + 330 + The shield is unfinished. So is the practice. That is the point. 331 + 332 + \bibliographystyle{plainnat} 333 + \bibliography{references} 334 + 335 + \end{document}
papers/arxiv-comp-strats/pals.pdf

This is a binary file and will not be displayed.

+137
papers/arxiv-comp-strats/references.bib
··· 1 + % === Aesthetic Computer (sibling papers in the platter) === 2 + 3 + @misc{scudder2026pieces, 4 + title={Pieces Not Programs: The Piece as a Unit of Creative Cognition}, 5 + author={{@jeffrey}}, 6 + year={2026}, 7 + note={arXiv preprint draft, papers/arxiv-pieces in repository} 8 + } 9 + 10 + @misc{scudder2026notepat, 11 + title={notepat.com: From Keyboard Toy to System Front Door}, 12 + author={{@jeffrey}}, 13 + year={2026}, 14 + note={arXiv preprint draft, papers/arxiv-notepat in repository} 15 + } 16 + 17 + @misc{scudder2026url, 18 + title={The URL Tradition}, 19 + author={{@jeffrey}}, 20 + year={2026}, 21 + note={arXiv preprint draft, papers/arxiv-url-tradition in repository} 22 + } 23 + 24 + @misc{scudder2026score, 25 + title={Reading the Score: A Critical Analysis of SCORE.md}, 26 + author={{@jeffrey}}, 27 + year={2026}, 28 + note={arXiv preprint draft, papers/arxiv-score-analysis in repository} 29 + } 30 + 31 + @misc{scudder2026openschools, 32 + title={Get Closed Source Out of Schools}, 33 + author={{@jeffrey}}, 34 + year={2026}, 35 + note={arXiv preprint draft, papers/arxiv-open-schools in repository} 36 + } 37 + 38 + @misc{scudder2026sustainability, 39 + title={Who Pays for Creative Tools?}, 40 + author={{@jeffrey}}, 41 + year={2026}, 42 + note={arXiv preprint draft, papers/arxiv-sustainability in repository} 43 + } 44 + 45 + @misc{scudder2026voice, 46 + title={Voice Guide for AC Papers}, 47 + author={{@jeffrey}}, 48 + year={2026}, 49 + note={Internal style guide, papers/VOICE.md in repository} 50 + } 51 + 52 + % === Embodied / Extended Cognition === 53 + 54 + @article{clark1998extended, 55 + title={The Extended Mind}, 56 + author={Clark, Andy and Chalmers, David J.}, 57 + journal={Analysis}, 58 + volume={58}, 59 + number={1}, 60 + pages={7--19}, 61 + year={1998}, 62 + doi={10.1093/analys/58.1.7} 63 + } 64 + 65 + @book{varela1991embodied, 66 + title={The Embodied Mind: Cognitive Science and Human Experience}, 67 + author={Varela, Francisco J. and Thompson, Evan and Rosch, Eleanor}, 68 + year={1991}, 69 + publisher={MIT Press}, 70 + address={Cambridge, MA} 71 + } 72 + 73 + % === Tool / Instrument Theory === 74 + 75 + @article{magnusson2010designing, 76 + title={Designing Constraints: Composing and Performing with Digital Musical Systems}, 77 + author={Magnusson, Thor}, 78 + journal={Computer Music Journal}, 79 + volume={34}, 80 + number={4}, 81 + pages={62--73}, 82 + year={2010}, 83 + publisher={MIT Press}, 84 + doi={10.1162/comj_a_00026} 85 + } 86 + 87 + % === Defamiliarization, Form, Notation === 88 + 89 + @incollection{shklovsky1917art, 90 + title={Art as Technique}, 91 + author={Shklovsky, Viktor}, 92 + booktitle={Russian Formalist Criticism: Four Essays}, 93 + editor={Lemon, Lee T. and Reis, Marion J.}, 94 + year={1965}, 95 + publisher={University of Nebraska Press}, 96 + note={Originally published 1917} 97 + } 98 + 99 + @article{adorno1990punctuation, 100 + title={Punctuation Marks}, 101 + author={Adorno, Theodor W.}, 102 + journal={The Antioch Review}, 103 + volume={48}, 104 + number={3}, 105 + pages={300--305}, 106 + year={1990}, 107 + note={Trans.\ Shierry Weber Nicholsen. Originally published 1956} 108 + } 109 + 110 + % === Idiotext / Technics === 111 + 112 + @article{staunaes2021stiegler, 113 + title={Stiegler's Concept of Idiotext}, 114 + author={Staun{\ae}s, Asker Bryld}, 115 + journal={Stiegler Studies}, 116 + volume={1}, 117 + number={1}, 118 + year={2021} 119 + } 120 + 121 + @book{stiegler1998technics, 122 + title={Technics and Time, 1: The Fault of Epimetheus}, 123 + author={Stiegler, Bernard}, 124 + year={1998}, 125 + publisher={Stanford University Press}, 126 + address={Stanford}, 127 + note={Trans.\ Richard Beardsworth and George Collins} 128 + } 129 + 130 + % === Procedural Aesthetics === 131 + 132 + @book{montfort201210print, 133 + title={10 PRINT CHR\$(205.5+RND(1)); : GOTO 10}, 134 + author={Montfort, Nick and Baudoin, Patsy and Bell, John and Bogost, Ian and Douglass, Jeremy and Marino, Mark C. and Mateas, Michael and Reas, Casey and Sample, Mark and Vawter, Noah}, 135 + year={2012}, 136 + publisher={MIT Press} 137 + }
+5
papers/cli.mjs
··· 251 251 siteName: "fraserin-essay-26-arxiv", 252 252 title: "A Fraserin' Art + Tech", 253 253 }, 254 + "arxiv-comp-strats": { 255 + base: "comp-strats", 256 + siteName: "comp-strats-26-arxiv", 257 + title: "Comp Strats", 258 + }, 254 259 }; 255 260 256 261 function texName(base, lang) {
+5
papers/metadata.json
··· 178 178 "created": "2026-05-02", 179 179 "revisions": 15, 180 180 "updated": "2026-05-02T08:53:35.014Z" 181 + }, 182 + "arxiv-comp-strats": { 183 + "created": "2026-05-03", 184 + "revisions": 1, 185 + "updated": "2026-05-03T00:00:00.000Z" 181 186 } 182 187 }