HTML • CSS • GitHub • Cloudflare • AI-Assisted Learning

How LaunchShell.org Was Built

LaunchShell.org is a student-built project site for documenting practical technology builds, beginner guides, free student resources, and lessons learned from real projects.

The site started as a simple static homepage and grew into a structured project archive with separate areas for guides, resources, and real builds. The stack stayed intentionally simple: HTML, shared CSS, local assets, Git, GitHub, Cloudflare Pages, and AI-assisted learning.

Core idea: AI did not replace the learning process. It helped me ask better questions, organize ideas faster, test different approaches, and understand what I was building.
Content Guides, resources, projects, notes, screenshots
Frontend HTML pages, shared CSS, local image assets
Workflow Git, GitHub, Codespaces, AI-assisted review
Deployment Cloudflare Pages serving the static site
This site is a practical example of learning by building, backing up, breaking safely, and improving.

How it actually came together

LaunchShell did not start as a finished website plan. It started as a small homepage and became more organized as the project grew.

01
Started with a simple static homepage
The first version was a basic HTML/CSS page with a logo, short description, and project preview sections.
02
Added cards for real projects
Instead of making fake portfolio pieces, I used actual builds: cloud servers, Flask apps, the 8-bit computer, Raspberry Pi ideas, and electronics projects.
03
Separated projects, guides, and resources
The site needed structure. Projects became things I built. Guides became how-to lessons. Resources became outside tools, free offers, and learning platforms.
04
Built beginner guides from real problems
The first guides came from practical needs: setting up an AWS VPS, learning the Linux terminal, understanding VMs, using GitHub Codespaces, and explaining Git.
05
Turned project notes into project pages
README files and rough notes became cleaner project pages that explain what was built, what tools were used, and what the project teaches.
06
Cleaned up the folder structure
Pages moved into folders like guides/, projects/, and resources/, which made URLs and navigation easier to understand.
07
Moved repeated styling into one CSS file
As the site grew, repeated styles needed to live in assets/site.css instead of being copied into every page.
08
Deployed it through Cloudflare Pages
The site became public through a GitHub-to-Cloudflare workflow: commit changes, push to GitHub, let Cloudflare deploy, then verify the live site.
09
Kept improving it as a real project
The site is not just a finished page. It is a growing project notebook for guides, builds, experiments, and lessons learned.

What I used

The site uses a simple static setup on purpose. No framework, no backend, no build system.

Part What I used Why it mattered
Pages HTML Each page is easy to inspect, edit, copy, and deploy.
Design Shared CSS file One stylesheet keeps the site consistent across guides, resources, and projects.
Assets Local images and logos Keeping assets local makes the site easier to move, back up, and deploy.
Version control Git Git lets me commit working versions, try changes, and roll back when something breaks.
Code hosting GitHub GitHub stores the repo, supports private work-in-progress, and helps turn finished projects into a portfolio.
Cloud coding GitHub Codespaces Codespaces provides a Linux-based browser workspace where I can edit files and use the terminal.
Domain and DNS Cloudflare Registrar and Cloudflare DNS I used Cloudflare to register the domain, manage DNS, and connect the public site to the domain.
Hosting Cloudflare Pages Cloudflare Pages deploys the static site from the GitHub repo and serves it on Cloudflare’s network.
Proxying and security Cloudflare proxy, security rules, and access features Cloudflare gives the site room to grow into real web security topics like proxying, WAF rules, access control, and protected admin areas.
Edge experiments Cloudflare Workers Workers make it possible to run small pieces of code at the edge without managing a traditional server.
Learning assistant AI AI helped with planning, drafting, debugging, explaining, reviewing, and organizing.

Why Cloudflare deserves its own shoutout

Cloudflare made this project feel realistic without making it complicated. I use it for more than simple hosting: Pages, DNS, proxying, security features, access control, and edge Workers all fit into the same learning path.

What I use now

Pages, DNS, and proxying

I use Cloudflare Pages to host the static site. The workflow is simple: push changes to GitHub, let Cloudflare deploy them, and then check the live site.

I also use Cloudflare DNS and proxying. That means Cloudflare can sit in front of a site, route web traffic through its network, and add caching, protection, and security controls.

Security

Security features and access control

Cloudflare is useful because it lets a student project grow into real security topics: WAF rules, security rules, access policies, identity-aware access, and protected admin pages.

That makes it a great bridge between web development, networking, cloud infrastructure, and cybersecurity.

Pages

Static site hosting

Cloudflare Pages hosts the public site directly from the GitHub repo.

DNS + proxy

Traffic control

DNS points the domain, and proxied records let Cloudflare protect and handle web traffic.

Workers

Code at the edge

Workers can run small serverless functions close to users without managing a traditional server.

Access

Protect private tools

Access control can put login rules in front of internal dashboards, admin pages, and private apps.

Security

WAF and rules

Cloudflare security features make it easier to learn what web protection looks like in practice.

Domain

Affordable registration

A real domain makes the project feel real, and Cloudflare Registrar keeps the domain workflow simple.

Related guide: Cloudflare deserves a dedicated guide. Read the Cloudflare Pages Guide.

Folder structure

The site is organized so each section has a clear purpose.

.
├── index.html
├── assets/
│   ├── site.css
│   ├── launchshell-logo-horizontial.png
│   └── ...
├── guides/
│   ├── git-and-github/
│   ├── github-codespace/
│   ├── linux-terminal-intro/
│   └── ...
├── projects/
│   ├── build-this-site/
│   ├── 8-bit/
│   └── ...
└── resources/
    └── index.html
Rule: Guides are LaunchShell-written how-to pages. Resources are outside tools, free offerings, student discounts, and learning platforms. Projects are real builds and portfolio work.

The build process

The workflow follows the same LaunchShell method used across the site.

01

Build it

Create the page, add the structure, write the content, and connect the assets.

02

Back it up

Commit working changes with Git before making risky edits.

03

Break it safely

Try new layouts, move folders, change links, and test what fails.

04

Fix and explain

Use the errors to understand paths, CSS, deployment, browser behavior, and Git history.

Problems I had to solve

A simple static site still teaches real technical lessons.

01

Relative paths

Pages inside folders need different asset paths, like ../../assets/site.css.

02

Folder strategy

Guides, resources, and projects needed different meanings so the site stayed organized.

03

Image cleanup

Logos and graphics needed to look clean on the site, not like copied previews.

04

Deployment

Cloudflare Pages made deployment simple, but I still had to understand Git, paths, DNS, and site structure.

How AI helped

AI was useful because I stayed involved. I asked questions, tested the output, changed the direction, fixed mistakes, and made final decisions.

Planning

Turning rough ideas into structure

AI helped turn rough notes into page outlines, sections, checklists, and beginner-friendly explanations.

Writing

Explaining things more clearly

AI helped rewrite technical ideas in plain English so a new student could understand them.

Review

Checking for sensitive or unsafe content

AI helped review pages, code, and repo content for secrets, hardcoded values, confusing wording, and risky publishing mistakes.

AI as a data cleanup tool

One of the most practical uses of AI is turning messy human information into structured data.

Real example

Recipe App JSON files

For the Recipe App, recipes came from index cards, magazine clippings, old notes, text messages, family recipes, and online references. None of those formats matched.

AI helped normalize that messy information into consistent JSON records that the app could read, search, display, and organize.

Important

AI did not remove review

I still had to check ingredients, review steps, fix mistakes, choose the JSON structure, test the data in the app, and make sure the recipe made sense.

AI made formatting and cleanup faster, but I was still responsible for the final result.

Safe AI rules for this project

AI is useful, but it has to be used carefully.

Verify

Test everything

AI can produce confident wrong answers. I still had to run the code, open the page, check the links, and inspect the result.

Protect

Do not paste secrets

Passwords, API keys, tokens, private files, SSH keys, and sensitive logs do not belong in AI prompts.

Own it

Understand the final result

The final project is my responsibility. AI can help, but I need to explain what was built and why it works.

What this project demonstrates

This site is more than a homepage. It demonstrates a complete beginner-friendly web workflow.

01

Static web fundamentals

HTML, CSS, assets, pages, links, browser testing, and clean folder structure.

02

Real deployment

GitHub repository, Cloudflare Pages deployment, domain, DNS, proxying, and HTTPS.

03

AI-assisted learning

Using AI to ask better questions, organize ideas, review work, and learn faster without giving up ownership.

Final lesson

LaunchShell.org was built to prove a simple idea: students can learn real technical skills by building real things. Git makes the work safer, Cloudflare makes the site real, and AI can help turn curiosity into progress when the student stays in control.