Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
window, navigator
navigator represents the the browser basic code (or kernel) and properties, like version, user agent string, language, geolocation options and so on.window is a "god object" containing all browser components, such as the address bar (window.location), modal dialogues (alert(), prompt()) and the window being displayed on screen itself. It's also the top object where all global variables are assigned to.document
window.document represents all content as nodes - tags, text, images, and so on.| #!/bin/sh | |
| start=`date +%s` | |
| bold=$(tput bold) | |
| normal=$(tput sgr0) | |
| red=`tput setaf 1` | |
| green=`tput setaf 2` | |
| reset=`tput sgr0` |