I was curious to know which locations are ranked the highest, so I made this quick 'n' dirty shell script: #!/bin/sh curl -s 'https://news.ycombinator.com/item?id=30210378' | awk ' BEGIN { FS = "[<>]" } { for (i = 1; i…
I was curious to know which locations are ranked the highest, so I made this quick 'n' dirty shell script: #!/bin/sh curl -s 'https://news.ycombinator.com/item?id=30210378' | awk ' BEGIN { FS = "[<>]" } { for (i = 1; i…