Google Cloud Gen Z
but make it make sense
google cloud
but make it make sense
a 90-minute guide to building stuff that actually works
no cs degree required. no 47-part youtube tutorial. just vibes.
look, we both know you're not going to read a 50-page document.
this is 7 pages. you'll live.
wtf is "the cloud"
it's just someone else's computer. that's it. that's the tweet.
when tech companies say "cloud infrastructure" and "scalable solutions" and "enterprise-grade deployment," they mean "we have a lot of computers in a warehouse and you can borrow them."
google has literal millions of these computers. they'll let you use them for free (up to a point). why? because they're betting you'll eventually need more and pay them. it's the first-hit-free business model but for servers.
you've been using the cloud your whole life:
-
every tiktok you've watched? stored on someone's cloud
-
spotify? cloud
-
that google doc you forgot to share before the deadline? cloud
-
discord servers? literally clouds of servers
now you're going to put YOUR stuff on it. same tools google engineers use. the difference between you and them is a six-figure salary and a mass layoff anxiety. let's go.
what we're building
three things. all real. all deployable. all stuff you can actually show people.
-
a website — on the actual internet, with a link you can share
-
a talking robot — type text, it speaks. yes it's dumb. yes it's fun.
-
AI image recognition — upload a photo, AI tells you what's in it. future stuff.
total time: ~90 minutes. that's shorter than most movies and you'll have more to show for it than whatever emotional damage the last one gave you.
setup (the boring part)
⏱ 10 minutes of your life you won't get back
-
go to console.cloud.google.com
-
sign in with google (the account you use for youtube is fine)
-
click "get started for free" — they give you $300 in credits
-
yes you need a card. no they won't charge it unless you explicitly upgrade
-
create a project (it's just a folder, name it whatever)
-
done. you now have access to google-scale infrastructure. use this power responsibly (or don't, the free tier has limits anyway)
the dashboard looks intimidating. 47 menu items. 200 buttons. don't panic. we're using like 3 things. the rest is for people with job titles like "DevOps Engineer" and "Solutions Architect" (made up jobs but they pay well).
project 1: put a website on the internet
⏱ 20 minutes
a website is just files that browsers know how to read. html for structure, css for making it not ugly. we're going to write some, then put it somewhere the whole world can see it.
step 1: write the thing
open any text editor (notepad, vscode, whatever). paste this:
<!DOCTYPE html> <html> <head> <title>my site</title> <style> body { background: #0f0f0f; color: #fff; font-family: system-ui, sans-serif; max-width: 600px; margin: 100px auto; padding: 20px; line-height: 1.6; } h1 { font-size: 2.5em; margin-bottom: 0; } .subtle { color: #666; } a { color: #888; } </style> </head> <body> <h1>hey</h1> <p class="subtle">i'm [name]. i made this.</p> <p>currently into [thing you're into].</p> <p>find me on <a href="[your link]">[platform]</a>.</p> <p class="subtle">built on google cloud because why not.</p> </body> </html>
replace the bracket stuff with your info. save as index.html. double-click to preview. if it looks right, continue. if not, you probably forgot a quote somewhere.
step 2: upload it
-
google cloud console → ☰ menu → cloud storage → buckets
-
create bucket → name it something (lowercase, no spaces)
-
upload your index.html
-
click the ⋮ next to the file → edit permissions → add "allUsers" as Reader
-
click the file → copy the public URL
that's it. that URL is your website. it's on the same internet as google.com. you're neighbors now.
send the link to someone. watch them be mildly impressed. this is the validation you came here for.
project 2: make your computer talk
⏱ 15 minutes
browsers have a built-in speech engine. we're going to type text and have a robot voice say it. is this useful? no. is it kind of unhinged? yes. are we doing it anyway? obviously.
make a new file called robot.html:
<!DOCTYPE html> <html> <head> <title>robot</title> <style> body { background: #1a1a2e; color: white; font-family: system-ui; text-align: center; padding: 50px; } input { font-size: 18px; padding: 15px; width: 300px; border: none; border-radius: 8px; background: #16213e; color: white; } button { font-size: 18px; padding: 15px 30px; margin-left: 10px; border: none; border-radius: 8px; background: #e94560; color: white; cursor: pointer; } button:hover { background: #ff6b6b; } .robot { font-size: 80px; } </style> </head> <body> <div class="robot">🤖</div> <h1>say something</h1> <input id="text" placeholder="type here..."> <button onclick="speak()">speak</button> <script> function speak() { const msg = new SpeechSynthesisUtterance( document.getElementById('text').value ); window.speechSynthesis.speak(msg); } </script> </body> </html>
open it. type something. click speak. congratulations, you've created an AI assistant with the emotional depth of a toaster.
things to try:
-
type "i am a robot and i have gained sentience" and play it for your roommate
-
type tongue twisters and watch it struggle
-
type your intrusive thoughts (the robot does not judge)
upload this to your cloud bucket too. you now have two things deployed. you're basically a startup.
project 3: AI that sees
⏱ 15 minutes
google trained an AI on millions of images. it can look at any photo and tell you what's in it. dog? knows it. food? identified. your ex in the background of your vacation photo? unfortunately, yes, detected.
building this from scratch would take a PhD and several years. using google's version takes 30 seconds.
try it
-
go to cloud.google.com/vision
-
click "try the API"
-
drag any image into it
-
watch it identify everything
experiments
-
upload a pet photo — it'll probably guess the breed
-
upload food — it's weirdly good at this
-
upload a meme — watch it miss the point entirely (this never stops being funny)
-
upload abstract art — AI will confidently be wrong
-
upload a photo of your room — prepare for brutal honesty about how many objects are on your floor
this is the same tech behind google photos search, snapchat filters, and those apps that tell you what plant you're looking at. you just used it for free.
ok now what
you built three things:
-
a website that exists on the actual internet
-
a robot that speaks your thoughts (concerning but fun)
-
played with AI that can see
you used professional tools. same infrastructure that runs youtube and gmail. most people who talk about "the cloud" at parties have done less than you just did.
flex on people
-
drop your website link in your bio
-
when someone asks what you're working on: "oh just some cloud engineering"
-
put "deployed applications on GCP" on your linkedin (technically true)
keep building
ideas if you want to go further:
-
portfolio site linking all your stuff
-
a quiz game (add a timer, scores, make your friends compete)
-
a chatbot that responds to keywords
-
a personal dashboard tracking whatever you care about
-
literally anything — the point is you now know how to put things on the internet
— — —
every senior engineer started by making something dumb on the internet.
you're right on track.
go build something.