-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
124 lines (115 loc) · 5 KB
/
index.html
File metadata and controls
124 lines (115 loc) · 5 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
<html>
<head>
<meta charset="UTF-8">
<title>HandyMiner King Cobra - Quick Start Guide</title>
<link rel="stylesheet" type="text/css" href="css/main.css" />
<script src="guideJS/jquery.min.js"></script>
<script src="guideJS/three.min.js"></script>
<script type="shader/x-fragment" id="logoFragmentShader">
uniform float animate;
uniform float opacity;
void main() {
gl_FragColor = vec4(vec3(0,0,0), opacity);
}
</script>
<script type="shader/x-vertex" id="logoVertexShader">
attribute vec3 direction;
attribute vec3 centroid;
uniform float animate;
uniform float opacity;
uniform float scale;
#define PI 3.14
void main() {
// rotate the triangles
// each half rotates the opposite direction
float theta = (1.0 - animate) * (PI * 1.5) * sign(centroid.x);
mat3 rotMat = mat3(
vec3(cos(theta), 0.0, sin(theta)),
vec3(0.0, 1.0, 0.0),
vec3(-sin(theta), 0.0, cos(theta))
);
// push outward
vec3 offset = mix(vec3(0.0), direction.xyz * rotMat, 1.0 - animate);
// scale triangles to their centroids
vec3 tPos = mix(centroid.xyz, position.xyz, scale) + offset;
gl_Position = projectionMatrix *
modelViewMatrix *
vec4(tPos, 1.0);
}
</script>
<script src="guideJS/main.js"></script>
</head>
<body>
<div id="logo"></div>
<div id="languageSelector">
<select id="language">
<option value="en">English</option>
<option value="fr">Français</option>
<option value="ru">Русский</option>
<option value="de">Deutsch</option>
<option value="cn">中文 (简体)</option>
<option value="es">Español</option>
<option value="ua">Україна</option>
</select>
</div>
<div id="content">
<!-- Update #header and #main content within the content_[language].html files.
Below this: #header and #main is only here for SEO. They'll get overwritten by content_en.html on init -->
<div id="header">HandyMiner King Cobra - Quick Start Guide</div>
<div id="main">
<ul>
<li><a id="downloadZIP" href="https://github.com/HandyMiner/HandyMiner-CLI/releases/download/0.0.4/HandyMiner_HangryMode_0.0.4_Release.zip" target="_blank">Download HandyMiner Release ZIP</a> or <a id="downloadTAR" href="https://github.com/HandyMiner/HandyMiner-CLI/releases/download/0.0.4/HandyMiner_HangryMode_0.0.4_Release.tar.xz" target="_blank">Download HandyMiner Release Tarball</a></li>
<li>
<strong>Prerequisites:</strong>
<ul>
<li>Install <a href="https://nodejs.org/en/download/" target="_blank">nodeJS</a></li>
<li>(windows only) Install <a href="https://git-scm.com/downloads" target="_blank">git bash</a> into Program Files/Git</li>
</ul>
</li>
<li>
<strong>Running:</strong>
<ul>
<li>Windows: double click 'dashboard.windows.bat'</li>
<li>Linux: double click 'dashboard.sh'</li>
<li>Mac: double click 'dashboard.mac.command'</li>
<li>CLI: <input id="cliCommand" class="selectMe" value="npm start" readonly="readonly" size=9 /> or <input id="cliCommand2" class="selectMe" value="./dashboard.sh" readonly="readonly" size=15 /> </li>
</ul>
</li>
<li>
<strong>Configuring:</strong> First run will start the configurator
<ul>
<li>Select GPUs</li>
<li>Set a mode ( solo | pool )</li>
<li>Intensity: 11 for beast mode</li>
<li>Pool Difficulty: -1 for variable difficulty</li>
<li>
<strong>Pool Hosts:</strong>
<ul>
<li><strong>f2pool</strong> <input class="selectMe" value="hns.f2pool.com" readonly="readonly" size=15 /> port: <input class="selectMe" value="6000" readonly="readonly" size=4 /> <br />username: wallet.workerName <br /> password: anything</li>
<li><strong>6block</strong> <input class="selectMe" value="stratum+tcp://handshake.6block.com" readonly="readonly" size=36 /> port: <input class="selectMe" value="7701" readonly="readonly" size=4 /> <br />username: registeredMinerName <br /> password: anything</li>
<li><strong>PoolFlare</strong> <input class="selectMe" value="hns-us.ss.poolflare.com" readonly="readonly" size=24 /> port: <input class="selectMe" value="3355" readonly="readonly" size=4 /> <br />username: wallet.workerName <br /> password: anything</li>
<li><strong>hnspool</strong> <input class="selectMe" value="stratum-us.hnspool.com" readonly="readonly" size=23 /> port: <input class="selectMe" value="3001" readonly="readonly" size=4 /> <br />username: registeredUsername <br /> password: registeredUserPassword</li>
</ul>
</li>
</ul>
</li>
<li>
<strong>Wallets:</strong>
<ul>
<li><a href="https://github.com/kyokan/bob-wallet/releases" target="_blank">Bob Wallet</a> (GUI, Non-Custodial)</li>
</ul>
</li>
</ul>
</div>
<!-- end update me in language specific files please -->
<div class="donate">
<img src="logo/wallet.png" />
<div>
Donate:
<input class="selectMe" id="donateInput" value="hs1qwfpd5ukdwdew7tn7vdgtk0luglgckp3klj44f8" readonly="readonly" size=44 />
</div>
</div>
</div>
<div id="introLogo"></div>
</body>
</html>