The Context (Business Challenge / Problem): As an IT entrepreneur and Senior Infrastructure Architect managing infrastructure for 25 B2B clients, time is my most critical asset. Maintaining a traditional dynamic CMS for a technical diary, digital resume, and client case studies requires unnecessary overhead, security patching, and resource allocation. The challenge was to design a web platform that reflects the “Infrastructure as Code” (IaC) philosophy: zero maintenance, robust security, blazing fast loading speeds, and a frictionless content publishing pipeline.

The Architecture & Work (Solution): The architecture is built on a modern static site generation stack integrated with artificial intelligence. The core engine is Hugo, which compiles Markdown files into static assets in milliseconds. The entire workspace is managed locally in Visual Studio Code. To streamline content creation, I integrated Claude Opus 4.6 into my workflow. Its primary roles are translating my raw engineering thoughts into clean Markdown with proper Hugo shortcodes, and seamlessly translating the articles into professional English. Version control and synchronization are handled via GitHub Desktop. Pushing a new commit to the main branch automatically triggers a GitHub Actions CI/CD pipeline. This workflow builds the Hugo site and deploys it directly to GitHub Pages.

# .github/workflows/hugo.yaml
name: Deploy Hugo site to Pages

on:
  push:
    branches: ["main"]
  workflow_dispatch:

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout repository
        uses: actions/checkout@v4
        with:
          submodules: recursive
      - name: Setup Hugo
        uses: peaceiris/actions-hugo@v3
        with:
          hugo-version: 'latest'
          extended: true
      - name: Build site
        run: hugo --minify

  deploy:
    needs: build
    runs-on: ubuntu-latest
    steps:
      - name: Deploy to GitHub Pages
        uses: actions/deploy-pages@v4

The Takeaway (Business Value): The result is a highly secure, automated, and globally fast digital presence hosted purely on GitHub Pages. By eliminating backend administration, I can focus entirely on delivering value to B2B clients, designing complex networks (MikroTik), managing virtualized environments (Proxmox, Docker), and studying for my CKA certification. The portfolio updates itself through a simple git commit, practically demonstrating my engineering competence and deep understanding of process automation to potential enterprise clients.