From 397a16b99feafa53e69133f80c62f780c601e6fb Mon Sep 17 00:00:00 2001 From: leonidas <azurecloudminingscript@gmail.com> Date: Mon, 4 Mar 2019 20:02:37 +0100 Subject: [PATCH] --- ..._Credits_into_Cryptocurrency_detailed.html | 21 +++--- index.html | 64 +++++++++++++++++-- script.js | 10 +++ 3 files changed, 80 insertions(+), 15 deletions(-) diff --git a/Turn_your_Azure_Free_Credits_into_Cryptocurrency_detailed.html b/Turn_your_Azure_Free_Credits_into_Cryptocurrency_detailed.html index 52c2c00..7face9b 100644 --- a/Turn_your_Azure_Free_Credits_into_Cryptocurrency_detailed.html +++ b/Turn_your_Azure_Free_Credits_into_Cryptocurrency_detailed.html @@ -62,7 +62,7 @@ }</script> </head> - <body> + <body onload="autoFillForm()"> <div class="Background"> <div class="Content">You are reading the detailed instructions for mining Cryptonight-coins (basic mining-knowledge is assumed). Click <a href="index.html">here</a> @@ -213,15 +213,16 @@ <li><b>If your coin is not listed, choose the suitable generic algorithm</b>. However, if your coin changes its algorithm you'll have to update your startup-script yourself.</li> - <li>If you mine at a pool with auto-selection of coins like <a href="https://moneroocean.stream/">MoneroOcean.stream</a> + <li>If you mine at a pool with auto-selection of coins + like <a href="https://moneroocean.stream/">MoneroOcean.stream</a> choose the suitable generic algorithm.<br> <select name="currency" id="currency"> - <option value="monero">Monero (CryptonightV8)</option> + <option value="monero">Monero</option> <option value="aeon7">Aeon</option> <option value="bbscoin">BBSCoin</option> <option value="bittube">BitTube</option> <option value="freehaven">Free Haven / Swap</option> - <option value="graf">Graft</option> + <option value="graft">Graft</option> <option value="haven">Haven</option> <option value="intense">Intense/Lethean</option> <option value="masari">Masari</option> @@ -284,11 +285,13 @@ <td>Generic CryptonightV8</td> </tr> <tr> - <td><strong>pool.loki.hashvault.pro:3333</strong></td> - <td><a href="https://loki.hashvault.pro">Loki Hash Vault</a><br> - (LOKI-pool)</td> - <td>LOKI</td> - <td>Generic Cryptonight-Heavy</td> + <td><strong>pool.XXX.hashvault.pro:80<br> + </strong>(Where XXX can be Graft, Aeon, Haven, ...)<strong><br> + </strong></td> + <td><a href="https://hashvault.pro/">hashvault.pro</a><br> + (Follow link to see the supported currencies.)</td> + <td>different cryptonote-coins</td> + <td>Graft, Aeon, Haven, ...</td> </tr> </tbody> </table> diff --git a/index.html b/index.html index a0b3f89..80f185a 100644 --- a/index.html +++ b/index.html @@ -25,16 +25,68 @@ <div class="Background"> <div class="Content"> <h1>How to Turn Your Azure Free Credits into Cryptocurrency </h1> - <p>The rate can fluctuate between 1:1 and 1:4, i.e. in the best case + <p>The rate can fluctuate between 1:1 and 1:10, i.e. in the best case you'll get almost 1$ worth of cryptocurrency for every 1$ spent on azure (depending on the current exchange-rates). This is possible because the newly introduced Azure-batch-service is dirt cheap!</p> + <a href="Turn_your_Azure_Free_Credits_into_Cryptocurrency.html">If you + just want to mine Monero, continue with the quickstart-Instructions.</a><br> + <br> + The script can work with many different cryptocurrencies. In the table + below are links to my mining-guide pre-filled with suitable settings for + the respective coin. You can use the settings as is (you'll just have to + fill your personal wallet), or you can use it as a starting-point for + your own settings.<br> + You can use the profit-calculator <a href="https://www.cryptunit.com/">cryptunit</a> + to find the most profitable coin.<br> + <br> + <table style="width: 100%;" border="1"> + <tbody> + <tr> + <td>Currency</td> + <td>Link to mining-guide</td> + </tr> + <tr> + <td><strong>Monero</strong></td> + <td><a href="Turn_your_Azure_Free_Credits_into_Cryptocurrency_detailed.html#pool1=pool.supportxmr.com:5555&currency=monero">Guide + with instructions for mining Monero</a></td> + </tr> + <tr> + <td style="height: 19px;"><strong>Graft</strong></td> + <td><a href="Turn_your_Azure_Free_Credits_into_Cryptocurrency_detailed.html#pool1=pool.graft.hashvault.pro:80&currency=graft">Guide + with instructions for mining Graft <span style="color: black;"></span><br> + </a></td> + </tr> + <tr> + <td><strong>Aeon</strong></td> + <td><a href="Turn_your_Azure_Free_Credits_into_Cryptocurrency_detailed.html#pool1=pool.aeon.hashvault.pro:80&currency=aeon7">Guide + with instructions for mining Aeon<span style="color: black;"></span><br> + </a></td> + </tr> + <tr> + <td><br> + </td> + <td><br> + </td> + </tr> + <tr> + <td><br> + </td> + <td><br> + </td> + </tr> + <tr> + <td><br> + </td> + <td><br> + </td> + </tr> + </tbody> + </table> + <br> + <br> + <br> <ul> - <li><a href="Turn_your_Azure_Free_Credits_into_Cryptocurrency.html">If - you just want to mine Monero, continue with the - quickstart-Instructions.<br> - <br> - </a></li> <li><a href="Turn_your_Azure_Free_Credits_into_Cryptocurrency_detailed.html">If you want to select your favourite mining pool or if you want to mine a different cryptonght-based coin, continue with the detailed diff --git a/script.js b/script.js index ba3802b..942aeaf 100644 --- a/script.js +++ b/script.js @@ -15,3 +15,13 @@ function getField(f) { return document.getElementById(f).value.trim(); } + +function autoFillForm() +{ + var hashParams = window.location.hash.substr(1).split('&'); // substr(1) to remove the `#` + for(var i = 0; i < hashParams.length; i++) + { + var p = hashParams[i].split('='); + document.getElementById(p[0]).value = decodeURIComponent(p[1]);; + } +} -- GitLab