In your command-line run the following commands:
brew doctorbrew update
In your command-line run the following commands:
brew doctorbrew update| var http = require('http'); | |
| http.createServer(function (req, res) { | |
| // set up some routes | |
| switch(req.url) { | |
| case '/': | |
| console.log("[501] " + req.method + " to " + req.url); | |
| res.writeHead(501, "Not implemented", {'Content-Type': 'text/html'}); | |
| res.end('<html><head><title>501 - Not implemented</title></head><body><h1>Not implemented!</h1></body></html>'); | |
| break; |
| HTML | |
| - Semantic HTML | |
| - Event delegation | |
| - Accessibility / ARIA | |
| CSS | |
| - Specificity | |
| - Pseudo-elements | |
| - Pseudo-selectors | |
| - Combinators |
| git ls-files -z | xargs -0n1 git blame -w | perl -n -e '/^.*\((.*?)\s*[\d]{4}/; print $1,"\n"' | sort -f | uniq -c | sort -n |