A personal blog and digital garden exploring tech, finance, travel, and mindfulness. Built with Jekyll and hosted on GitHub Pages.
Live Site: jackmeson1.github.io
Tech & Career:
- QA to DevOps Transition 2025 β Market analysis with salary data & roadmap (10k+ words)
- Five Paradigms of Quality β Complete testing philosophy
- AI Power Infrastructure Series β 5-part investment analysis (Constellation, Vertiv, Eaton, Bloom)
Finance & Investment:
- Taleb Barbell Strategy β Anti-fragile portfolio design
Travel & Life:
| Category | Focus | Count |
|---|---|---|
| Tech | QA, DevOps, Cloud Native, AI Infrastructure | 10+ |
| Finance | Portfolio strategy, AI datacenter investments | 5+ |
| Travel | Vancouver guides, city routines | 3+ |
| Mind | Mindfulness, career reflection | 2+ |
Visit: jackmeson1.github.io
# 1. Install dependencies
bundle install
# 2. Start development server
bundle exec jekyll serve
# 3. Open browser
# Navigate to http://localhost:4000Requirements:
- Ruby 2.7+
- Bundler
- Jekyll 4.3+
Site Structure:
βββββββββββββββββββββββββββββββββββββββββββ
β Remote Theme: So Simple 3.2.0 β
β (mmistakes/so-simple-theme) β
βββββββββββββββββββββββββββββββββββββββββββ
β
βββββββββββββββββββββββββββββββββββββββββββ
β Content Layer β
βββββββββββββββββββββββββββββββββββββββββββ€
β _posts/ Blog articles β
β _notes/ Evergreen notes β
β pages/ Static pages β
β _data/ Structured data β
βββββββββββββββββββββββββββββββββββββββββββ
β
βββββββββββββββββββββββββββββββββββββββββββ
β Visual Layer β
βββββββββββββββββββββββββββββββββββββββββββ€
β assets/css/ Custom styles + themes β
β assets/images/ SVG infographics β
β _includes/ Custom components β
βββββββββββββββββββββββββββββββββββββββββββ
β
βββββββββββββββββββββββββββββββββββββββββββ
β Deployment β
βββββββββββββββββββββββββββββββββββββββββββ€
β GitHub Pages Auto-deploy on push β
β Build time: 1-5 minutes β
βββββββββββββββββββββββββββββββββββββββββββ
jackmeson1.github.io/
βββ _posts/ # Blog articles (date-prefixed)
β βββ 2025-10-13-qa-to-devops-2025-market-analysis.md
β βββ 2025-10-12-ai-datacenter-power-revolution.md
β βββ 2025-10-11-taleb-barbell-strategy.md
β βββ ...
β
βββ _data/ # Structured data (YAML)
β βββ navigation.yml # Site navigation menu
β βββ categories.yml # Category definitions
β βββ books.yml # Reading list
β
βββ assets/
β βββ css/ # Stylesheets
β β βββ main.scss # Theme overrides
β β βββ visual-enhancements.css # Glass morphism, animations
β β βββ design-system.css # Design tokens
β β
β βββ images/posts/ # Article visuals (SVG)
β βββ qa-devops-transition-2025.svg
β βββ ai-power-value-chain.svg
β βββ taleb-barbell-analysis.svg
β βββ ...
β
βββ _includes/ # Custom HTML components
β βββ post-card.html # Card component
β βββ hero.html # Hero section
β βββ timeline.html # Timeline visualization
β
βββ pages/ # Static pages
β βββ about.md # About page
β βββ blog.md # Blog index
β βββ library.md # Reading list
β βββ travel.md # Travel notes
β
βββ _config.yml # Jekyll configuration
βββ Gemfile # Ruby dependencies
βββ CLAUDE.md # AI assistant instructions
βββ README.md # This file
# 1. Create file in _posts/
touch _posts/YYYY-MM-DD-your-title.md
# 2. Add front matterTemplate:
---
layout: post
title: "Your Article Title"
date: 2025-10-13 09:00:00 -0700
categories: [tech] # tech, finance, travel, mind
tags: [tag1, tag2, tag3]
author: Jiajun Liang
description: "Brief description for SEO (150-160 chars)"
image: /assets/images/posts/your-image.svg # Optional
toc: true # Enable table of contents
featured: false # Highlight on homepage
---
Your content here...tldr:
- "Key point 1"
- "Key point 2"
- "Key point 3"
key_takeaways:
- "Actionable takeaway 1"
- "Actionable takeaway 2"
faqs:
- question: "Common question?"
answer: "Detailed answer..."- Create SVG in
assets/images/posts/ - Reference in front matter:
image: /assets/images/posts/your-diagram.svg - Use in article:

Example SVGs:
- Market data visualizations
- Architecture diagrams
- Comparison charts
- Roadmap timelines
The site uses modern design patterns:
Glass Morphism:
.glass-card {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
}Gradients (6 presets):
gradient-purpleβ Tech/Career contentgradient-blueβ Finance/Investmentgradient-greenβ Travel/Lifegradient-pinkβ Mindfulnessgradient-sunsetβ Featured contentgradient-oceanβ Default
Animations:
floatβ Gentle hover liftpulseβ Attention grabbershimmerβ Loading statesdriftβ Background movement
Each category has unique visual identity:
| Category | Primary Color | Accent | Icon |
|---|---|---|---|
| Tech | #667eea (Purple) |
#764ba2 |
π» |
| Finance | #f093fb (Pink) |
#f5576c |
π° |
| Travel | #4facfe (Blue) |
#00f2fe |
|
| Mind | #43e97b (Green) |
#38f9d7 |
π§ |
- β jekyll-seo-tag β Auto-generates meta tags
- β jekyll-sitemap β XML sitemap for search engines
- β jekyll-feed β RSS feed generation
- β Search functionality β Client-side search with Lunr.js
Every article includes:
- Optimized meta title (<60 chars)
- Meta description (150-160 chars)
- Target keywords in H1, H2, first paragraph
- Internal linking to related articles
- External authority links with sources
- Featured images (Open Graph tags)
- Structured data (TL;DR, FAQs)
Example SEO Front Matter:
seo_title: "Optimized Title for Google (50-60 chars)"
keywords: [keyword1, keyword2, keyword3, keyword4]
description: "Compelling meta description with target keywords."Edit _config.yml:
title: Your Site Name
description: Your site description
author: Your Name
email: [email protected]
url: "https://yourusername.github.io"
timezone: "America/Vancouver" # Your timezoneEdit _data/navigation.yml:
- title: Posts
url: /blog/
- title: Categories
url: /categories/
- title: About
url: /about/
- title: Your New Page
url: /your-page/- Add definition to
_data/categories.yml:
- slug: your-category
name: Your Category
description: "Category description"
permalink: /categories/your-category/-
Create landing page:
categories/your-category.md -
Use in post front matter:
categories: [your-category]
# Start server with live reload
bundle exec jekyll serve --livereload
# Build for production
bundle exec jekyll build
# Check build errors
bundle exec jekyll doctor# 1. Create feature branch
git checkout -b feature/your-feature
# 2. Make changes and commit
git add .
git commit -m "Your descriptive commit message"
# 3. Push to GitHub
git push origin feature/your-feature
# 4. Merge to main (triggers auto-deploy)
git checkout main
git merge feature/your-feature
git push origin mainDeployment: GitHub Pages auto-builds within 1-5 minutes after pushing to main.
Deep Dives (5,000-15,000 words):
- Market analysis with data sources
- Technical guides with roadmaps
- Investment research with valuation models
- Example: QA to DevOps Market Analysis
Framework Articles (3,000-5,000 words):
- Mental models and philosophies
- Testing methodologies
- Portfolio strategies
- Example: Five Paradigms of Quality
Series (5+ articles):
- Multi-part explorations
- Investment theses with parts
- Example: AI Power Infrastructure Series
Short Notes (500-1,500 words):
- Quick reflections
- Travel observations
- Career updates
- Tech/Finance: 1-2 per month (research-heavy)
- Travel/Mind: As inspiration strikes
- Updates: Quarterly refreshes of evergreen content
This is a personal blog, but suggestions welcome!
Found an issue?
- Typos, broken links, or bugs β Open an issue
Have a suggestion?
- Content ideas, design improvements β Create a GitHub issue or reach out
- GitHub: @Jackmeson1
- LinkedIn: linkedin.com/in/jiajun-liang
- Email: [email protected]
- Blog: jackmeson1.github.io
Content Β© 2024-2025 Jiajun Liang. All rights reserved.
Code (site structure, styles, components) licensed under MIT License.
Third-party assets (So Simple Theme, etc.) retain their original licenses.
Built with:
- Jekyll β Static site generator
- So Simple Theme by Michael Rose
- GitHub Pages β Free hosting
- Claude Code β AI pair programming assistant
Inspired by:
- Derek Sivers' Blog β Simplicity and clarity
- Paul Graham's Essays β Long-form thinking
- Gwern.net β Digital garden philosophy
Start exploring: jackmeson1.github.io π