Created
July 20, 2014 09:45
-
-
Save justmoon/e22b7f411047557e1d61 to your computer and use it in GitHub Desktop.
Roger's Famous Bet
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
// 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