Somewhere — in a real building, with air conditioning and blinking lights — stands a computer that holds a copy of your my-site folder. It has been awake since the moment you dragged that folder onto Netlify, and it will answer anyone on Earth who types your address. Let's follow one visit, start to finish.
The journey of one visit
Step 1 — the address. aigerim-tool.netlify.app is a name for humans. Computers find each other by number (an IP address), so the first thing your phone does is ask the internet's phone book — a system called DNS — “what number answers to this name?” The answer comes back in milliseconds.
Step 2 — the request. Your phone sends a short message to that number: “please give me the page at /”. This is all the web is, at the bottom: computers politely asking other computers for files.
Step 3 — the server. The computer that answers is a server — not a special kind of machine, just an ordinary computer with three jobs: it is always on, always connected, and it runs a program whose only purpose is answering these requests. When you “deployed”, Netlify copied your folder onto machines like this.
Step 4 — the response. The server finds index.html in its copy of your folder and sends the text back. Your browser reads it, fetches whatever else the page mentions (styles, images), and draws. Total time: usually under a second.
Why your laptop can't be the server (and what can)
Technically, your laptop could serve your site — it's a computer with an internet connection. Practically, it fails all three server jobs: it sleeps, it changes networks, and it follows you into the mountains. That's the entire reason hosting services exist: they run warehouse buildings full of always-on machines and rent you a sliver of one for free or a few dollars.
This is also why, on Day 6, your Telegram bot went silent when the laptop slept — the laptop was playing server, badly. Tomorrow's session and Day 10 build on this exact idea: things that must be reachable at all times live on machines whose only job is being reachable at all times.
What changes tomorrow
So far, deploying meant you dragging a folder — a manual copy, every time. Tomorrow you'll build the professional version: your project's checkpoints live on GitHub (a warehouse for project histories), Netlify watches it, and every approved change gets copied to the servers automatically. Once you've seen today's diagram, tomorrow's setup is obvious: you're not learning a new magic, you're just automating step “copy the folder”.
You'll also meet domains properly: buying yourtool.com (~$10–15 a year) just means adding your own entry to the phone book, pointing your name at Netlify's machines. Nothing else changes — the same server, wearing a nicer name.
Check yourself
Your site is live, but a friend says “it's down for me.” What are the three places it could be failing — in journey order?
Why did your changes never appear until you dragged the folder again?
The internet stops being magic the moment you see it's a delivery service: names looked up in a phone book, files copied to always-on machines, browsers asking politely and drawing what they receive. Tomorrow you put a conveyor belt on the delivery — and never drag a folder again.