Created
May 22, 2013 03:25
-
-
Save highruned/5625046 to your computer and use it in GitHub Desktop.
Dashboard for net worth + current TODO list. Keeps you motivated? Currently over invested in ASICMINER, lol.
This file contains hidden or 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
<html> | |
<body> | |
<div style="text-align: center"> | |
<br /> | |
<br /> | |
<img id="am_value" src="" style="width: 700px; " /> | |
<br /> | |
<textarea id="todo" rows="20" cols="120"></textarea> | |
</div> | |
<script> | |
document.getElementById('todo').value = localStorage.todo; | |
var updateNetWorth = function() { | |
document.getElementById('am_value').src = "http://textray.com/asicminer_value.png?" + new Date().getTime(); | |
setTimeout(updateNetWorth, 20 * 1000); | |
}; | |
var updateTodo = function() { | |
localStorage.todo = document.getElementById('todo').value; | |
setTimeout(updateTodo, 5 * 1000); | |
}; | |
updateNetWorth(); | |
updateTodo(); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment