Files
compare_altcoin_development/src/index.html
T
2017-11-29 13:24:14 +08:00

101 lines
4.5 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Compare github repository statistics</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/datatables/1.10.13/css/jquery.dataTables.css">
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
<div>
<label><a href="https://github.com/settings/tokens">Github api token: </a></label>
<input id="token" placeholder="token" value="1996bd63f4c524b4cd36499e3db39d321f0b39a7"/>
</div>
<div>
<label title="Enter each entry onseperate lines. Each line as 'name,url' where url is 'https://github.com/<orgname>/<reponame>' or 'https://github.com/orgs/<orgname>' or 'https://github.com/users/<username>' or a space seperated list 'https://github.com/<orgname>/<reponame1> https://github.com/<orgname>/<reponame2>">csv inputs</label>
<textarea id="repos" style="width: 100%; height:200px;">
#name,url/s
Bitcoin,https://github.com/bitcoin/bitcoin https://github.com/bitcoin/bips https://github.com/bitcoin/libbase58
Iota,https://github.com/orgs/iotaledger
Ethereum,https://github.com/orgs/ethereum
Ripple,https://github.com/orgs/ripple
Litecoin,https://github.com/orgs/litecoin-project
Monero,https://github.com/users/monero-project
Dash,https://github.com/orgs/dashpay
Augur,https://github.com/orgs/AugurProject
Maidsafe,https://github.com/orgs/maidsafe
Steem,https://github.com/orgs/steemit
NEM,https://github.com/orgs/NemProject
Factom,https://github.com/orgs/FactomProject
Dogecoin,https://github.com/orgs/dogecoin
Waves,https://github.com/orgs/wavesplatform
ZCash,https://github.com/orgs/zcash
DigixDAO,https://github.com/orgs/DigixGlobal
Stellar Lumens,https://github.com/orgs/stellar
Lisk,https://github.com/orgs/LiskHQ
GameCredits,https://github.com/orgs/gamecredits-project
Swiscoin,https://github.com/users/SCNPay
Bitshares,https://github.com/orgs/bitshares
Golem,https://github.com/orgs/golemfactory
PIVX,https://github.com/users/PIVX-Project
Nxt,https://bitbucket.org/Jelurida/nxt
Ardor,https://bitbucket.org/Jelurida/ardor
Vertcoin,https://github.com/orgs/vertcoin
Stratis,https://github.com/orgs/stratisproject
VCash,https://github.com/orgs/openvcash
BitcoinCash,https://github.com/orgs/bitcoincashorg
Ethereum Classic,https://github.com/orgs/ethereumproject
BitcoinUnlimited,https://github.com/orgs/BitcoinUnlimited
Bitcoinclassic,https://github.com/orgs/bitcoinclassic
BitcoinGold,https://github.com/orgs/BTCGPU
NEO,https://github.com/orgs/neo-project
Qtum,https://github.com/qtumproject/qtum
LBRY Credits,https://github.com/orgs/lbryio
OmiseGO,https://github.com/orgs/omise
EOS,https://github.com/orgs/EOSIO
Burstcoin,https://github.com/users/BurstProject
Blocknet,https://github.com/users/atcsecure
Syscoin,https://github.com/orgs/syscoin
Gnosis,https://github.com/orgs/gnosis
Qora,https://github.com/orgs/Qoracoin
Storj,https://github.com/orgs/Storj
Sia,https://github.com/NebulousLabs/Sia https://github.com/NebulousLabs/Sia-UI https://github.com/NebulousLabs/Sia-Nextcloud
Status,https://github.com/orgs/status-im
Cardano,https://github.com/input-output-hk/cardano-sl
Tittiecoin,https://github.com/users/tittiecoin
</textarea>
</div>
<div class="">
<button id="go">go</button>
<button id="clear">clear cache</button>
</div>
<table id="table" class="display" width="100%">
<textbox id="markdown"></textbox>
</table>
</body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.js" charset="utf-8"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/datatables/1.10.13/js/jquery.dataTables.js" charset="utf-8"></script>
<script src="https://cdn.datatables.net/buttons/1.2.4/js/dataTables.buttons.min.js" charset="utf-8"></script>
<link rel="stylesheet" href="https://cdn.datatables.net/buttons/1.2.4/css/buttons.dataTables.min.css">
<script src="https://cdn.datatables.net/buttons/1.2.4/js/buttons.colVis.min.js" charset="utf-8"></script>
<script src="https://cdn.datatables.net/colreorder/1.3.2/js/dataTables.colReorder.min.js" charset="utf-8"></script>
<link rel="stylesheet" href="https://cdn.datatables.net/colreorder/1.3.2/css/colReorder.dataTables.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.4/lodash.js" charset="utf-8"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gh.js/3.0.8/gh.min.js" charset="utf-8"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.17.1/moment.js" charset="utf-8"></script>
<script src="js/example_data.js" charset="utf-8"></script>
<script src="js/fetch_stats.js" charset="utf-8"></script>
<script src="js/main.js" charset="utf-8"></script>
</html>