-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
131 lines (109 loc) · 4.91 KB
/
index.html
File metadata and controls
131 lines (109 loc) · 4.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<style type="text/css">.table{width:1000px!important;margin-bottom:0!important;}</style>
<title>CoinChoose</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-40290647-1', 'coinchoose.com');
ga('send', 'pageview');
</script>
<script type="text/javascript">
google.load("visualization", "1", {packages:["corechart"]});
google.setOnLoadCallback(drawChart);
function drawChart() {
var chart = new google.visualization.LineChart(document.getElementById('chart_div'));
google.visualization.events.addListener(chart, 'ready', function () {
setTimeout(updateChart, 60000);
});
updateChart();
function updateChart () {
var jsonData = $.ajax({
url: "timedata.json",
dataType:"json",
async: false
}).responseText;
// Create our data table out of JSON data loaded from server.
var data = new google.visualization.DataTable(jsonData);
// draw the chart
var options = {
title: 'Currency Profitability Last 24 Hours',
titlePosition: 'in',
legend: {position: 'bottom', textStyle: {color: 'blue', fontSize: 16}},
interpolateNulls: 'true',
lineWidth: 2
};
chart.draw(data, options);
}
}
</script>
<script type='text/javascript'>
google.load('visualization', '1', {packages:['table']});
google.setOnLoadCallback(drawTable);
//var refreshInterval = setInterval(drawChart, 30 * 1000);
function drawTable() {
var table = new google.visualization.Table(document.getElementById('table_div'));
google.visualization.events.addListener(table, 'ready', function () {
setTimeout(updateChart, 60000);
});
updateChart();
function updateChart () {
var jsonData = $.ajax({
url: "chartdata.json",
dataType:"json",
async: false
}).responseText;
// Create our data table out of JSON data loaded from server.
var data = new google.visualization.DataTable(jsonData);
// draw the chart
var options = {
allowHtml: true
};
var formatter = new google.visualization.NumberFormat(
{suffix:'%'});
formatter.format(data, 7); // Apply formatter to second column
formatter.format(data, 8); // Apply formatter to second column
formatter.format(data, 9);
table.draw(data, options);
}
}
</script>
</head>
<body><script type="text/javascript">
//<![CDATA[
try{(function(a){var b="http://",c="www.coinchoose.com",d="/cdn-cgi/cl/",e="54c2795ede351131721822c6d076d3292a7b4476.gif",f=new a;f.src=[b,c,d,e].join("")})(Image)}catch(e){}
//]]>
</script>
<center> <br/>
<h3 class="muted">Coin Mining Information</h3>
<div id="table_div"></div>
<br/>
<iframe data-aa='2784' src='//ad.a-ads.com/2784?size=728x90' scrolling='no' style='width:728px; height:90px; border:0px; padding:0;overflow:hidden' allowtransparency='true'></iframe>
<div id="chart_div" style="width: 1200px; height: 600px;"></div>
<div id="notes">
<p>Formatted JSON API is available at <a href="api.json">http://choosecoin.appspot.com/api.json</a><br/>
All pricing is from the most profitable exchange (hyperlinked to the price).
<br /><br />Auto-mine the best coin (using this site) with <a href="https://bitcointalk.org/index.php?topic=172121.0">CryptoSwitcher</a>.
<br/>
Please support this site by using our referral link to sign up at
Vircurex at<a href="https://vircurex.com/welcome/index?referral_id=294-4868">https://vircurex.com/welcome/index?referral_id=294-4868</a> or thru BTER at <a href="https://bter.com/ref/929">https://bter.com/ref/929</a>.
You get discounted fees at both exchanges if you sign up thru a referral!<br/>
Or send a BTC donation to 1FcznMjGBFxD9YvcFfMCVbhkkKYSACCNcP<br/>
Discuss at <a href="https://bitcointalk.org/index.php?topic=152515.20">https://bitcointalk.org/index.php?topic=152515.20</a>
</p>
</div>
</center>
<script type="text/javascript" src="http://wms.assoc-amazon.com/20070822/US/js/link-enhancer-common.js?tag=coinc01-20">
</script>
<noscript>
<img src="http://wms.assoc-amazon.com/20070822/US/img/noscript.gif?tag=coinc01-20" alt=""/>
</noscript>
</body>
</html>