- Website Performance Optimization|Udacity
- [Browser Rendering Optimization|Udacity] (https://www.udacity.com/course/browser-rendering-optimization--ud860)
hombrew is required
brew install caskroom/cask/brew-cask
brew cask install xquartz
type your password
brew tap homebrew/science
brew install gcc
brew install r
This file contains 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
#!/bin/bash | |
if [ $# -ne 1 ] | |
then | |
echo "Syntax: $0 FILE" | |
echo $0 - display a random line from FILE. | |
exit 1 | |
fi | |
RAND=`od -d -N2 -An /dev/urandom` | |
LINES=`cat "$1" | wc -l` | |
LINE=$(( RAND % LINES + 1 )) |