reading-notes

Getting Started

How The Web Works

What happens when you view a webpage on your computer or phone?

Other Parts of the Toolbox

So What Happens, Exactly?

  1. Browser goes to DNS server, finds real address of the server the website lives on.
  2. Browser sends an HTTP request message to the server, asking it to send a copy of the website to the client. All messages are sent across your internet connection using TCP/IP.
  3. If the server approves the clients request, the server sends the client a “200 OK” message, which means “Of course you can look at that website! Here it is!” and sends the files to the browser as a series of small chunks called data packets.
  4. Browser assembles the small chunks into a complete web page and displays it to you.

The Poetic Art of Packet Shipment

So you logged into the portal and your just a silly mortal and your asking for advice from techno god…So you place your shaking hands on the alter and manipulate the glyphs and your inputs are discretely placed upon the screen…Now your searchbox has been filled and your feeling kind of thrilled because today is going to be the day that you receive the gifts…and with that one little finger you press slowly on the lever and send your prayers along the fiber wire lightwave coursing straight away…Techno god has allowed messengers and ghosts to parse the holy tomes and they have already interpreted your request…the algorythm anticipated your every stroke; familiar spirits, behold these ghosts…Hypertextually Transfered responses behave in accordance with the Protocols of destiny and the language of the Techno god is proven true…see these are little packets on a million different journeys that lead them right back to the brower where your fingers laid the framework to receive…So in this response you are just like Ponce, an explorer blazing trail to this day…In a predefined language the techno god served you the wisdom you requested as you sacrificed your data on the alter of the algorythm…the portal has opened…the portal is open…come on through whoa poetry bro

Order in Which Component Files Are Parsed

Domain Name System DNS Explained

Packets Explained

What Will Your Website Look Like?

First Things First: Planning

  1. What is your website about?
  2. What information are you presenting on the subject?
  3. What does your website look like in simple high-level terms?
    • What’s the background color?
    • What kind of font is appropriate: formal, cartoony, bold and loud, subtle?

Sketching out your design

Choose Your Assets

JavaScript Basics

What is JavaScript

A “Hello World!” Example

What Happened?

Language Basics Crash Course

Variables and other Stuff

Comments

Conditionals

Functions

Events

Adding an Image Changer

How can you find images for your Website?

How do you create a string vs a number in JavaScript?

Getting Started With HTML

Miscellaneous