159 Commits

Author SHA1 Message Date
Andrew Stryker
59095c952f Handle sentinel for builds correctly 2026-05-03 20:31:18 -07:00
Andrew Stryker
64c772e216 Update PaperMod 2026-05-03 18:27:31 -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
24cba59620 Correct branch naming with slugs 2026-04-20 08:46:30 -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
af4974de7e Place social sharing in the correct place 2026-04-19 10:49:23 -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
5fd6d1dc1e Automate creating a new branch 2026-04-12 15:17:22 -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
0fb13773a7 Enable sharing in lists 2026-03-31 09:38:25 -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
dd37c2b4f7 Generalize the Rmd to Md pattern 2026-03-30 22:19:45 -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
ee5b9f7bcb Configure Mermaid for a native look 2026-03-30 16:47:08 -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
260dfabc9c Add a reactable theme 2026-03-25 16:58:53 -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 Stryker
433d2b6ad4 Override PaperMod author partial to handle map format
PaperMod's author.html expects params.author to be a string, but
our config uses a map with name and email (needed for RSS). Add a
reflect.IsMap check to extract .name for display, matching how the
updated PaperMod RSS template already handles the map format.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-25 11:33:46 -07:00
Andrew Stryker
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 Stryker
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 Stryker
4e7959076e Update statdown to cebe5e27 (front matter preservation fix)
statdown now inserts CSS/JS dependency tags after the YAML front
matter closing delimiter instead of before it, fixing Hugo's
inability to parse the front matter in rendered widget posts.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-25 09:38:28 -07:00
Andrew Stryker
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
751a7f17fa Merge branch 'main' into about/resume 2026-03-24 22:30:21 -07:00