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 | |
# args are percentiles, stdin - integers one per line | |
set -o errexit | |
set -o nounset | |
set -o pipefail | |
tmp="$(mktemp -t percentile)" | |
trap "rm -f \"$tmp\"" EXIT | |
total=$(sort -n | tee "$tmp" | wc -l) |
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
// https://victoriabeckham.landrover.com/js/ScrollAnimator.js?v=548 | |
var ScrollAnimator = function() { | |
var settings = {}, | |
page, | |
started = false, | |
paused = false, | |
animation = null; | |
var w = $(window), |