Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

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

fix: cards translation links point to regular PDFs, not nonexistent cards PDFs

The cards template was generating links to {siteName}-{lang}-cards.pdf but translated cards don't exist — only English cards are generated. Changed to link to the regular translation PDFs ({siteName}-{lang}.pdf) which do exist.

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

+3 -3
+2 -2
papers/arxiv-plork/plork-cards.tex
··· 86 86 \vspace{0.15em} 87 87 \colorbox{yellow!60}{\small\color{red!80!black}\textbf{\textit{working draft --- not for citation}}}\par 88 88 \vspace{0.1em} 89 - {\footnotesize\color{acgray} March 2026 · \href{https://github.com/whistlegraph/aesthetic-computer/commit/6fd9fced2}{6fd9fced2}}\par 89 + {\footnotesize\color{acgray} March 2026 · \href{https://github.com/whistlegraph/aesthetic-computer/commit/fa414c731}{fa414c731}}\par 90 90 \vspace{0.1em} 91 - {\footnotesize\color{acgray}\href{https://papers.aesthetic.computer/plorking-the-planet-26-arxiv-da-cards.pdf}{Dansk} · \href{https://papers.aesthetic.computer/plorking-the-planet-26-arxiv-es-cards.pdf}{Español} · \href{https://papers.aesthetic.computer/plorking-the-planet-26-arxiv-zh-cards.pdf}{{\accjk 中文}} · \href{https://papers.aesthetic.computer/plorking-the-planet-26-arxiv-ja-cards.pdf}{{\accjk 日本語}}}\par 91 + {\footnotesize\color{acgray}\href{https://papers.aesthetic.computer/plorking-the-planet-26-arxiv-da.pdf}{Dansk} · \href{https://papers.aesthetic.computer/plorking-the-planet-26-arxiv-es.pdf}{Español} · \href{https://papers.aesthetic.computer/plorking-the-planet-26-arxiv-zh.pdf}{{\accjk 中文}} · \href{https://papers.aesthetic.computer/plorking-the-planet-26-arxiv-ja.pdf}{{\accjk 日本語}}}\par 92 92 \end{center} 93 93 \vspace*{\fill} 94 94
+1 -1
papers/cards-convert.mjs
··· 192 192 ? Object.entries(info.translations) 193 193 .map(([code, label]) => { 194 194 const displayLabel = cjkLangs.has(code) ? `{\\accjk ${label}}` : label; 195 - return `\\href{https://papers.aesthetic.computer/${info.siteName}-${code}-cards.pdf}{${displayLabel}}`; 195 + return `\\href{https://papers.aesthetic.computer/${info.siteName}-${code}.pdf}{${displayLabel}}`; 196 196 }) 197 197 .join(" · ") 198 198 : "";