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.mdis 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.ymlon push tomain(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.ymlsetsprimary: customso Material's palettes are bypassed). - The site's home page is
.github/site/home.md, notREADME.md. A repo front page (banner, badges, repo structure, "star this repo") and a website landing page want different things, so the build rendershome.mdover the stagedREADME.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 fromcerts.jsonandcheck-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)** - descriptionlink 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 LRover the oldergraphsyntax. Usesubgraphfor 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: - 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
---
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--strictas 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- regeneratedocs/freshness.mdfromlast-updatedfrontmatter. Run after meaningful content updates..github/scripts/build-site.py- stage and build the site.--servefor live preview,--strictto 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.