The Inference Stack — GitHub Pages Development Notes

Site Overview

URL: https://inference.thinxai.net/ Theme: Catppuccin Mocha (dark tech aesthetic) Color Palette: Blues, greens, silver on dark background Generator: Jekyll with GitHub Pages


2026-02-22: Comments and Feedback System

Giscus Integration

Anonymous Feedback Form

Files Modified


Implementation

Files Added/Modified


2026-02-22: Trust Architecture Article

Content

Mobile Optimizations


2026-02-22: Google Search Console

Verification

SEO


2026-02-21: Article Migration

Migrated from Substack

12 articles with images preserved:

  1. AIDK Framework
  2. Amazon AI Bot
  3. Confidence Laundering
  4. Context Poisoning
  5. Cyber Risk Two-Front War
  6. Flexibly Deterministic
  7. GPU Doesn’t Care
  8. Hidden Human
  9. Know Your Limitations
  10. Real Work Real Failure
  11. Retreat from AGI
  12. Rules I Can’t Follow
  13. Sarbanes-Oxley for AI
  14. Using AI Wrong
  15. What Can AI Do

Fixes Applied


2026-02-21: Initial Site Setup

GitHub Pages Configuration

Structure

docs/
├── _config.yml
├── _includes/
│   ├── comments.html
│   ├── head.html
│   ├── header.html
│   └── search.html
├── _layouts/
│   ├── article.html
│   ├── default.html
│   └── framework.html
├── articles/
│   ├── index.md
│   └── [15 article files]
├── assets/
│   └── images/
├── framework/
│   ├── index.md
│   ├── aidk.md
│   ├── hcae.md
│   └── research-program.md
├── index.md
├── search.json
├── robots.txt
└── feedback-thanks.html

Local Development

cd docs
bundle install
bundle exec jekyll serve
# Open http://localhost:4000/

Deployment

Automatic via GitHub Pages on push to main. No manual build required.


Future Considerations