- How the browser renders the document
- Receives the data (bytes) from the server.
- Parses and converts into tokens (<, TagName, Attribute, AttributeValue, >).
- Turns tokens into nodes.
- Turns nodes into the
DOM
tree.
- Builds
CSSOM
tree from thecss rules
.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Hello, Frank! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> make a new app | |
You create a new application in Xcode called "Play Me". You then write a little | |
program that will allow you to play a song on your phone. You spend most of | |
the day coding this up. | |
> add features to my app | |
You add a few more features to your app, such as a button to play/pause or skip | |
through songs. You also add a slider so you can change the volume between 0-100% | |
> launch my app |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"Stolen from Alatz https://github.com/alatz | |
execute pathogen#infect() | |
syntax on | |
filetype plugin indent on | |
set number | |
set nocompatible " be iMproved, required | |
filetype off " required | |
" set the runtime path to include Vundle and initialize |