Personal website, portfolio, and blog built with Jekyll and Ruby, automatically deployed to GitHub Pages via GitHub Actions.
Ensure you have Ruby 3.3+ and Bundler installed. If using rbenv:
rbenv install 3.3.8 # (if not already installed)bundle installbundle exec jekyll serve --livereloadOpen http://127.0.0.1:4000 in your browser.
Add new markdown files in _posts/ with the filename format YYYY-MM-DD-post-title.md:
---
layout: post
title: "My New Article"
date: 2026-08-13 14:00:00 -0400
description: "Brief summary of the article."
categories: [Engineering, Cloud]
tags: [ruby, jekyll]
---
Your post content here in Markdown...