-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmine.html
184 lines (179 loc) · 10.8 KB
/
mine.html
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<!DOCTYPE html>
<html lang="en">
<head>
<title>CodersCoin - A cryptocurrency for developers and IT enthusiasts</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<script src="https://kit.fontawesome.com/d9ec437633.js" crossorigin="anonymous" defer></script>
<meta name="saashub-verification" content="cqle6ueijluk" />
<link rel="icon" type="image/png" href="./assets/brand/icon.png">
<link rel="apple-touch-icon" href="./assets/brand/icon.png"/>
<!-- SEO -->
<meta name="title" content="CodersCoin - A cryptocurrency for developers and IT enthusiasts">
<meta name="description" content="CodersCoin is a cryptocurrency for developers. It provides a simple platform for developers to pay each other. No wallet is required, just a Github account.">
<meta name="keywords" content="crypto,blockchain,cryptocurrency,coderscoin,CodersCoin,CSC,coin,web3">
<meta name="robots" content="index, follow">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<!--meta name="language" content="English"-->
<meta name="revisit-after" content="10 days">
<meta name="author" content="Peter Till">
<!-- social -->
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://coderscoin.github.io/">
<meta property="og:title" content="CodersCoin - A cryptocurrency for developers and IT enthusiasts">
<meta property="og:description" content="CodersCoin is a cryptocurrency for developers. It provides a simple platform for developers to pay each other. No wallet is required, just a Github account.">
<meta property="og:image" content="https://coderscoin.github.io/link.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://coderscoin.github.io/">
<meta property="twitter:title" content="CodersCoin - A cryptocurrency for developers and IT enthusiasts">
<meta property="twitter:description" content="CodersCoin is a cryptocurrency for developers. It provides a simple platform for developers to pay each other. No wallet is required, just a Github account.">
<meta property="twitter:image" content="https://coderscoin.github.io/link.png">
<!-- Google Analytics -->
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-P1GTLYFGQX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-P1GTLYFGQX');
</script>
<!--bootstrap-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
<!--custom css-->
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark custom-navbar p-10 fixed-top">
<div class="container-fluid">
<a class="navbar-brand" href="./index.html">
<img src="./assets/brand/icon.png" alt="Logo" width="40" height="40" class="d-inline-block align-text-top">
CodersCoin
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<!--span class="navbar-toggler-icon">re</span-->
<span class="" role="button" ><i class="fas fa-code-branch" aria-hidden="true"></i></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="./index.html"><i class="fa-solid fa-house"></i> Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://csc.onrender.com/auth/github"><i class="fa-solid fa-wallet"></i> Wallet</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./mine.html"><i class="fas fa-cubes"></i> Mine CSC</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./node.html"><i class="fa-solid fa-database"></i> Node</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./whitepaper.html"><i class="fa-solid fa-paperclip"></i> Whitepaper</a>
</li><!--.disabled to disable-->
<!--li class="nav-item">
<a class="nav-link" href="./cart.html"><i class="fas fa-shopping-cart"></i> <span class="badge badge-danger bg-danger px-1">
<script>
var cart = JSON.parse(sessionStorage.getItem("cart"));
if(cart != null){document.write(Object.keys(cart).length);}else{document.write("0");}
</script>
</span></a>
</li-->
</ul>
</div>
</div>
</nav>
<div class="px-4 py-5 my-5 text-center hero">
<h1 class="display-5 fw-bold">⛏️ Let's mine CodersCoin!</h1>
<div class="col-lg-6 mx-auto">
<p class="lead mb-4">Contribute to blockchain security by mining! Unlike other cryptocurrencies, CodersCoin mining does not require huge computing capacity and continuous running. Mine whenever you want, with a guaranteed reward!</p>
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center">
<a href="https://github.com/coderscoin/miner/releases/download/v1.5.0/miner-win.exe" type="button" class="btn btn-primary btn-lg px-4 gap-3"><i class="fab fa-windows"></i> Download to Windows</a>
</div>
</div>
</div>
<!--/div-->
<main class="container">
<section>
<div class="row">
<div class="col-xs-12 text-center"><h2>Or choose another platform...</h2></div>
<div class="col-xs-12 text-center"><p>SOON</p></div>
</div>
<h3>Desktop</h3>
<ul>
<li><a href="https://github.com/coderscoin/miner/releases/download/v1.5.0/miner-linux">Download v1.5.0 for Linux</a></li>
<li><a href="https://github.com/coderscoin/miner/releases/download/v1.5.0/miner-macos">Download v1.5.0 for MacOS</a></li>
<li><a href="https://github.com/coderscoin/miner/releases/download/v1.5.0/miner-win.exe">Download v1.5.0 executable for Windows</a></li>
</ul>
<hr>
<h3>Source code</h3>
<p>The CodersCoin Miner software was created in Node.js, its source code and installation/running instructions can be found at <a href="https://github.com/coderscoin/miner">https://github.com/coderscoin/miner</a>.</p>
<hr>
<h3>Mobile</h3>
<p>Mobile mining is not supported yet.</p>
</section>
</main>
<dialog id="csc" class="container">
<div class="row">
<div class="col-sm">
<h2>CodersCoin</h2>
<p>CodersCoin is a unique and completely proprietary blockchain and cryptocurrency technology developed by Peter Till. CodersCoin serves as a kind of reputation and credit for programmers, designers, and computer enthusiasts. The goal of the development is to provide a simple platform for digital creators to pay themselves without the intervention of any banks or governments. In addition, digital files can be sent securely. No separate app needed, just a Github account. With CodersCoin you can empower your community with fast and secure transactions or support your favorite open source projects.</p>
</div>
<div class="col-sm">
<table class="table" style="color: white;">
<thead></thead>
<tr>
<td>Technology</td>
<td>NodeJS, Express.js, MongoDB</td>
</tr>
<tr>
<td>Time to create</td>
<td>Less than a week</td>
</tr>
<tr>
<td>Website</td>
<td><a href="https://coderscoin.github.io/?utm_source=portfolio&utm_medium=project&utm_campaign=popup">Website</a></td>
</tr>
</table>
</div>
</div>
<button class="btn btn-primary" onclick="csc.close()">Close</button><!--Or from with dialog method-->
</dialog>
<dialog id="fmode" class="container">
<div class="row">
<div class="col-sm">
<h2>FocusMode</h2>
<p>FocusMode is a powerful productivity tool made by Peter Till, that allows you to create custom modes such as study and work and block disruptive websites in those modes. Simply add the websites you want to block to each mode. These websites are automatically blocked when this mode is enabled. FocusMode lets you focus on your work or study without social media, news sites, or other online distractions. FocusMode helps you get more done in less time. </p>
</div>
<div class="col-sm">
<table class="table" style="color: white;">
<thead></thead>
<tr>
<td>Technology</td>
<td>JavaScript, HTML, CSS, Bootstrap, Chrome API</td>
</tr>
<tr>
<td>Time to create</td>
<td>Less than a week</td>
</tr>
<tr>
<td>Website</td>
<td><a href="https://microsoftedge.microsoft.com/addons/detail/oijfegadlcnfapbpkpkfmloghahlicea">Microsoft Addon</a></td>
</tr>
</table>
</div>
</div>
<button class="btn btn-primary" onclick="fmode.close()">Close</button><!--Or from with dialog method-->
</dialog>
<footer class="bg-light text-center text-lg-start">
<!-- Copyright fixed-bottom -->
<div class="text-center p-3" style="background-color: #1B223D; color: white;">
© 2023 Copyright:
CodersCoin
</div>
<!-- Copyright -->
</footer>
</body>
</html>