Skip to content

Commit

Permalink
adds day 12 contents
Browse files Browse the repository at this point in the history
fix typo on day 10 contents
  • Loading branch information
Jaxolotl committed Oct 20, 2019
1 parent d1586c2 commit 3d25bb4
Show file tree
Hide file tree
Showing 7 changed files with 386 additions and 12 deletions.
1 change: 1 addition & 0 deletions .markdownlint.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
"MD013": false,
"MD026": false,
"MD028": false,
"MD033": false,
"MD036": false
}
17 changes: 9 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -196,12 +196,13 @@ Hopefully your walk will be much easier than mine!
- Brunch
- Yeoman
- RollUp
- DAY 12
- [DAY 12](/day_12.md)
- Destructuring
- <https://github.com/Jaxolotl-Didactic-Lab/useful-info/blob/develop/destructuring.md>
- ..
- .. good practices
- Function composition
- <https://github.com/Jaxolotl-Didactic-Lab/useful-info/blob/develop/currying_partialApplication_composition.md>
- ..
- .. good practices
- Syntax
- Examples
- Readings
- Advanced Function/code factorization
- Currying
- Partial application
- First-class composition
- Readings
4 changes: 2 additions & 2 deletions day_10.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ We won't get deep into them as that's not the scope of this course, but at least
## TL;DR

- **JavaScript Engine:** takes car of the analysis and execution of the code
- **JavaScript Runtime:** takes car of running the JavaScript engine and provide to it the mechanisms to communicate with other systems (e.g. timers, external resources) through specific APIs
- **JavaScript Engine:** takes care of the analysis and execution of the code
- **JavaScript Runtime:** takes care of running the JavaScript engine and provide to it the mechanisms to communicate with other systems (e.g. timers, external resources) through specific APIs
- **HTML:** takes care of presenting the information to the browser in a semantic way by delivering a structured document and inform the browser about external resources required for the presentation (e.g. js, css, fonts)
- **CSS:** takes care of defining the structured document (HTML) to cover different presentational (rendering) needs such as visual aspect (e.g desktop vs mobile displays), specific devices (e.g. printers), accessibility (e.g. screen readers, Braille tactile devices)

Expand Down
Loading

0 comments on commit 3d25bb4

Please sign in to comment.