Skip to content

Instantly share code, notes, and snippets.

@highruned
Created May 22, 2013 03:25
Show Gist options
  • Save highruned/5625046 to your computer and use it in GitHub Desktop.
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.
<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