80 Commits
Author SHA1 Message Date
Andrew Stryker c27ac500db Have Hugo process the resume html as if it is Markdown 2026-07-11 23:14:30 -07:00
Andrew Stryker 706601950c Make the resume static content to bypass security warning 2026-07-11 23:00:46 -07:00
Andrew Stryker c7396a5fd4 Complete the draft 2026-05-03 18:19:07 -07:00
Andrew Stryker 82f719f734 Correct slug 2026-05-03 18:02:40 -07:00
Andrew Stryker 9e323ee4c4 Continue edits 2026-05-03 18:00:27 -07:00
Andrew Stryker 127715abfb Merge branch 'main' into posts/2026-04-12-mcp-for-you-data-warehouse 2026-05-01 16:29:56 -07:00
Andrew Stryker 84b2336a18 Perform an editting pass 2026-05-01 16:29:36 -07:00
Andrew Stryker b300f8d733 Update from _build to build 2026-04-20 21:48:34 -07:00
Andrew Stryker 780d24a491 Hide the share index 2026-04-20 20:39:00 -07:00
Andrew Stryker 28f6c9f89e Consolidate tags 2026-04-20 09:40:39 -07:00
Andrew Stryker 172a9c6965 Merge branch 'infra/mastodon-share' 2026-04-20 09:38:28 -07:00
Andrew Stryker 8579907491 Refine sharing 2026-04-20 09:38:19 -07:00
Andrew Stryker 20c5086509 Shorten the ontology foundations path 2026-04-20 09:17:53 -07:00
Andrew Stryker 93365efdc4 Internalize Mastodon sharing 2026-04-20 09:13:22 -07:00
Andrew Stryker 2f75dd84cd Complete draft
Need one editorial, language pass. Technical work is done.
2026-04-20 08:45:18 -07:00
Andrew Stryker 4fa625500d Apply minor updates 2026-04-19 12:00:25 -07:00
Andrew Stryker a55915a310 Add summary to Bayes note
Without the summary, the notes list shows math, which may or may not render
correctly.
2026-04-19 11:46:50 -07:00
Andrew Stryker 524a985378 Complete Wharton page 2026-04-19 11:41:41 -07:00
Andrew Stryker 522c023671 Edit draft 2026-04-19 10:38:06 -07:00
Andrew Stryker 338f9f38ef Complete initial draft 2026-04-12 17:05:07 -07:00
Andrew Stryker 96340594db Update notes for Hugo detail shortcode 2026-04-06 09:53:11 -07:00
Andrew Stryker b446d243ec Update resume for the correct Quadrant4 spelling 2026-04-06 09:11:19 -07:00
Andrew Stryker d72b1f3cf4 Merge branch 'wharton-certicates' 2026-04-06 09:06:00 -07:00
Andrew Stryker d3fbb70d4b Add tags to ontology 2026-03-31 09:38:58 -07:00
Andrew Stryker 7b3c44f56d Take warehouse ontology out of draft 2026-03-31 08:43:19 -07:00
Andrew Stryker 259969d252 Add missing word 2026-03-30 22:32:37 -07:00
Andrew Stryker 288eaa8ccb Move to page bundle and isolate the simulator 2026-03-30 22:19:19 -07:00
Andrew Stryker f20c90a91c Name the layer in the footnote 2026-03-30 18:42:45 -07:00
Andrew Stryker b107f4958c Use the date prefix in the directory 2026-03-30 18:40:26 -07:00
Andrew Stryker d8742a04b7 Add the ontology tech note 2026-03-30 18:39:49 -07:00
Andrew Stryker 7aa0b1f40f Finalize the onotology post 2026-03-30 18:39:29 -07:00
Andrew Stryker f10ca11257 Add a summaary 2026-03-25 20:26:10 -07:00
Andrew Stryker d91a5c7c9e Consolidate chunk opts 2026-03-25 17:53:15 -07:00
Andrew Stryker 376add89a9 Finalize post 2026-03-25 16:58:39 -07:00
Andrew Stryker efb99a6875 Merge branch 'main' into post/autogolpe 2026-03-25 12:51:02 -07:00
Andrew StrykerandClaude Opus 4.6 8ff7fb63e6 Fix Mermaid rendering: move JS to extend_head, fix hook path
Three issues prevented Mermaid diagrams from rendering:

1. Render hook was in layouts/_defaults/ (with 's') instead of
   layouts/_default/ — Hugo never found it
2. The .Store.Set approach in the render hook couldn't communicate
   with extend_footer because PaperMod caches the footer partial
   via partialCached, so per-page state is lost
3. Moved Mermaid JS loading to extend_head (not cached) using the
   same xparams.mermaid front matter flag pattern as KaTeX

Pages opt in with xparams.mermaid: true in front matter. The code
block render hook still converts ```mermaid fences to <pre> tags.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-25 11:20:05 -07:00
Andrew Stryker d83f47556f Merge branch 'main' into demo/reactable 2026-03-25 09:57:54 -07:00
Andrew StrykerandClaude Opus 4.6 70bf848fa3 Add demos section with integration tests for site capabilities
Move reactable demo from content/posts/ to content/demos/ so it
doesn't appear in the posts list. Add demo pages for:

- Mermaid: flowchart, sequence, and state diagrams via code blocks
- KaTeX: inline and display math via the math partial
- Shortcodes: toc, rawhtml, youtube, vimeo

All demos are draft: true and in a dedicated section, so they
build with hugo --buildDrafts but are never published.

Also widen Makefile RMD_SOURCES glob to include content/demos/.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-25 09:47:37 -07:00
Andrew StrykerandClaude Opus 4.6 51440bc030 Add reactable demo and fix renv project detection in Makefile
- Add reactable-demo post exercising the full statdown/depkit
  htmlwidget pipeline (two reactable tables with filtering)
- Replace renv::restore() with renv::load() using explicit project
  root in Makefile and watch-rmd.sh — renv could not find the
  lockfile when cd'd into post subdirectories

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-25 09:25:13 -07:00
Andrew Stryker e47d677360 Update resume 2026-03-25 09:15:59 -07:00
Andrew Stryker 35ed25f8bb Update the date 2026-03-24 22:25:53 -07:00
Andrew StrykerandClaude Opus 4.6 cc3aa74b46 Replace resume.md with resume.html
Use the pandoc-generated narrative resume HTML, replacing the
handwritten markdown version.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-24 22:23:41 -07:00
Andrew Stryker 82a6d16d59 Restructure bayes as odds 2026-03-24 21:40:19 -07:00
Andrew Stryker 173c1a37e7 Ignore figures and libs 2026-03-24 21:39:25 -07:00
Andrew StrykerandClaude Opus 4.6 403da45ff1 Merge infrastructure changes from post/autogolpe into main
Brings in renv, archetypes, layout partials, shortcodes, gitignore,
and hugo config changes that were committed on the post branch.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-24 21:33:44 -07:00
axs f1d4cac578 Add note on using the div tag 2025-04-08 08:26:41 -07:00
axs bea242adaf Add notes on Bayes theorem as odds 2025-03-26 23:14:02 -07:00
Andrew Stryker df80ad6c65 Merge branch 'post/autogolpe' 2025-03-14 20:26:05 -07:00
Andrew Stryker 216ca36215 Continue refining 2025-03-14 20:22:55 -07:00
Andrew Stryker 1f15d89f89 Ignore derived files 2025-03-14 20:18:52 -07:00