| Code | Title | Duration | Link |
|---|---|---|---|
| Keynote | Andy Jassy Keynote Announcement Recap | 0:01 | https://www.youtube.com/watch?v=TZCxKAM2GtQ |
| Keynote | AWS re:Invent 2016 Keynote: Andy Jassy | 2:22 | https://www.youtube.com/watch?v=8RrbUyw9uSg |
| Keynote | AWS re:Invent 2016 Keynote: Werner Vogels | 2:16 | https://www.youtube.com/watch?v=ZDScBNahsL4 |
| Keynote | [Tuesday Night Live with Jame |
This file contains hidden or 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
| package interview; | |
| import com.fasterxml.jackson.core.type.TypeReference; | |
| import com.fasterxml.jackson.databind.ObjectMapper; | |
| import jdk.incubator.http.HttpClient; | |
| import jdk.incubator.http.HttpRequest; | |
| import jdk.incubator.http.HttpResponse; | |
| import java.io.IOException; | |
| import java.net.URI; |
- Use Eric Meyer's CSS override
- Use clearfloat instead of
clear:both, when applicable - Use core html over divs whenever possible (
h2,p,li,ol,time) - Add a top level ID to every kind of page (
#race-page,#candidate-page) - Use IDs for elements that are unique to every page in the site
- Use hyphens for IDs and classes, no camelCase or underscores. (Improves readability)
This file contains hidden or 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
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
NewerOlder