Skip to content

Instantly share code, notes, and snippets.

@justmoon
Created July 20, 2014 09:45
Show Gist options
  • Save justmoon/e22b7f411047557e1d61 to your computer and use it in GitHub Desktop.
Save justmoon/e22b7f411047557e1d61 to your computer and use it in GitHub Desktop.
Roger's Famous Bet
// After two years
var now = moment(),
deadline = moment("2011-08-04").add("years", 2);
if (now.isAfter(deadline)) {
var bitcoinPerformance = getBitcoinPriceInUsd() / 10;
var goldPerformance = getGoldPriceInUsd() / 1679.50;
var silverPerformance = getSilverPriceInUsd() / 38.87;
var nasdaqPerformance = getNasdaq() / 2556.39;
// Unless Bitcoin outperformed gold, silver and stocks by more than 100x
if (bitcoinPerformance < 100 * Math.max(goldPerformance, silverPerformance, nasdaqPerformance)) {
// Donate 1000 BTC to FEE
sendBitcoin(1000, "15wDJRfsyomAgvX2TdW32gdYtAWZtAd1ps");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment