Skip to content

Cloud + AI Learning Resource - Project Instructions

Overview

A learning resource for cloud and AI - concepts, hands-on builds, deep references, and certification prep. Covers 148 certifications across 27 providers (AWS, Azure, GCP, Kubernetes/CNCF, NVIDIA, Anthropic, HashiCorp, Databricks, Snowflake, GitHub, Red Hat, Cisco, Salesforce, Confluent/Kafka, MongoDB, FinOps, CompTIA, ISC2, ISACA, Cloud Security Alliance, Offensive Security, Palo Alto Networks, Linux Foundation, Oracle, IBM, ServiceNow, VMware) plus 3 self-directed study tracks (Anthropic prompt engineering, plus Azure and GCP GenAI). Counts are generated from docs/certs.json, not maintained by hand. Certifications are one pillar; the repo also serves non-cert learners.

Structure

cloud-data-ai-security-zero-to-hero/
β”œβ”€β”€ exams/              # Cert-specific study guides (the certify pillar)
β”œβ”€β”€ learn/              # Plain-English learning content (the learn pillar)
β”‚   β”œβ”€β”€ concepts/       # Bite-size topic pages (5-10 min): cloud + AI primitives
β”‚   β”œβ”€β”€ day-one/        # Strict beginner on-ramp: terminal, git, HTTP, servers
β”‚   β”œβ”€β”€ ai-from-scratch.md
β”‚   β”œβ”€β”€ cloud-from-scratch.md
β”‚   β”œβ”€β”€ glossary.md
β”‚   └── youtube.md
β”œβ”€β”€ resources/          # Cross-cert reference (build + reference pillars)
β”œβ”€β”€ topics/             # Cross-pillar topic indexes (LLMs, IAM, networking, K8s, ...)
β”œβ”€β”€ assets/diagrams/    # PNG diagrams (draw.io exports), organized by topic
β”œβ”€β”€ docs/               # Repo-level docs (ARCHITECTURE.md, certs.json, freshness.md, tag-taxonomy.md, improvement-roadmap.md)
β”œβ”€β”€ .github/site/       # Site chrome: extra.css (staged to assets/site/) + home.md (the site's landing page)
β”œβ”€β”€ mkdocs.yml          # Site config; nav is generated, not written here
β”œβ”€β”€ README.md           # Top-level overview
β”œβ”€β”€ STUDY-HUB.md        # Navigation hub
└── CONTRIBUTING.md     # How to contribute

Purpose / Usage

  • Personal study notes and exam prep materials (cert pillar)
  • Plain-English learning content for non-cert students (learn pillar)
  • Reference documentation for architecture, comparison, troubleshooting (build + reference pillars)
  • Markdown-based knowledge base; STUDY-HUB.md is the navigation hub.
  • Also published as a website: https://patrickwiloak.github.io/cloud-data-ai-security-zero-to-hero/, built by .github/workflows/docs-site.yml on push to main (live since 2026-08-14). The site is generated from the markdown as-is - never restructure content or add frontmatter to satisfy the site build. Site-only fixes go in .github/scripts/build-site.py, which transforms a staged copy in .site-src/ and never touches the repo's markdown. Theme colour lives in .github/site/extra.css (near-black plus the green accent, ported from gitGood.dev so the Nobler Works sites share a language; mkdocs.yml sets primary: custom so Material's palettes are bypassed).
  • The site's home page is .github/site/home.md, not README.md. A repo front page (banner, badges, repo structure, "star this repo") and a website landing page want different things, so the build renders home.md over the staged README.md. Editing the README does not change the site's front door - except for the "What's new" bullets, which are extracted from it. Every number on that page is a {{token}} filled from certs.json and check-readme-counts.py; never type a figure into it. See docs/ARCHITECTURE.md.
  • Organized by purpose (learn / certify / reference) and within each, by provider.
  • Each cert dir has: README.md, fact-sheet.md, notes/, practice-plan.md, scenarios.md, strategy.md.
  • Resources include: architecture patterns, service comparisons, CLI cheat sheets, roadmaps, compliance guides, migration guides, interview prep, troubleshooting guides, hands-on projects.

House style / conventions

House style

  • No em dashes (-). Use regular dashes (-) only.
  • Plain English, short sentences. Avoid emoji in body text (section markers OK).
  • Cite vendor docs, don't paraphrase. Use the **[πŸ“– Title](URL)** - description link format.
  • No verbatim vendor exam questions.

Visual content standards

  • Mermaid fenced code blocks are the default. Write the diagram inline in the page that uses it. GitHub renders Mermaid natively, it stays editable in the markdown, and it diffs as text in review.
  • Prefer flowchart TB / flowchart LR over the older graph syntax. Use subgraph for grouped components. Don't hard-code colours; the diagram has to read in both light and dark themes.
  • Mermaid has no alt text, so give each diagram a caption or a sentence of prose saying what it shows.
  • PNG is the exception, for diagrams too dense to read inline. Save to assets/diagrams/<topic>/<slug>.png (topic subdirs created lazily) and embed with descriptive alt text: ![3-tier architecture with load balancer, app servers, and database](../../assets/diagrams/architecture/web-app-3-tier.png)
  • See docs/ARCHITECTURE.md for the full convention.

Frontmatter convention (new and refreshed pages)

---
last-updated: YYYY-MM-DD
applies-to: AWS console as of 2026-Q2          # optional
difficulty: beginner | intermediate | advanced  # optional
reading-time: 10 min                            # optional
---
Backfill is opportunistic. Don't add frontmatter to thousands of files in one PR.

Automation

  • .github/workflows/ - link-check (lychee, weekly + on PR), markdown-lint (markdownlint-cli2), structure-validate (custom scripts), docs-site (MkDocs build + Pages deploy; the build runs --strict as a blocking PR gate).
  • .github/scripts/validate-cert-structure.sh - confirm every cert dir has a README; warn on missing fact-sheet, practice-plan, scenarios, strategy.
  • .github/scripts/build-freshness-ledger.sh - regenerate docs/freshness.md from last-updated frontmatter. Run after meaningful content updates.
  • .github/scripts/build-site.py - stage and build the site. --serve for live preview, --strict to fail on any broken link or anchor.
  • See docs/freshness.md for the per-cert verification ledger.

Counts are checked, not remembered

Every number advertised in README.md and STUDY-HUB.md is verified by CI. Cert and provider counts come from docs/certs.json via build-certs-index.py --check. The per-provider tables in both files are generated from that index by build-provider-indexes.py, between <!-- BEGIN GENERATED: ... --> markers - don't hand-edit inside a marked block. Everything else (concept pages, topic indexes, comparisons, cheat sheets, projects, word count, doc-link floor, the Repository Statistics block) is verified by check-readme-counts.py --check.

When you add or remove content, run python3 .github/scripts/check-readme-counts.py --fix in the same change. This exists because the README sat at "37 concept pages" while the tree had 46 and TODO.md had already recorded the change, and because a dated ~2.6M words snapshot from docs/improvement-roadmap.md was restated in three files as a current fact. If you add a new counted claim to the README, add a matching entry to CLAIMS in that script - an unchecked number goes stale.

The script counts via git ls-files, never a filesystem walk: a local site build leaves a full staged copy of the tree in .site-src/, and walking the working directory counts every page twice. Its own first version did exactly that and reported 6.1M words against a real 3.0M.