-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
62 lines (57 loc) · 1.97 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Snaptoken</title>
<link href="style.css" rel="stylesheet">
</head>
<body>
<h1>Snaptoken</h1>
<p>
These tutorials walk you through writing medium-size software projects from
scratch, step by step. The projects are based on real open-source software
projects, and most of the tutorials stay true to the original source code.
Every line of code is explained in detail, allowing you to
<a href="https://en.wikipedia.org/wiki/Grok">thoroughly understand</a> the
project’s entire codebase.
</p>
<h2>Tutorials</h2>
<ul>
<li>
<a href="kilo/" class="avail">kilo</a>: A text editor.
(C, ~900 <abbr title="Lines of (actual) Code">LOC</abbr>)
</li>
<li>
<a href="#" class="notyet">pass</a>: A password manager.
(Shell, ~800 <abbr title="Lines of (actual) Code">LOC</abbr>)
<strong>[Coming Soon]</strong>
</li>
<li>
<a href="#" class="notyet">camping</a>: A web microframework.
(Ruby, ~700 <abbr title="Lines of (actual) Code">LOC</abbr>)
<strong>[Coming Soon]</strong>
</li>
<li>
<a href="#" class="notyet">lua</a>: A programming language.
(C, ~17000 <abbr title="Lines of (actual) Code">LOC</abbr>)
<strong>[Coming Soon]</strong>
</li>
</ul>
<p>
All tutorials are developed openly at
<a href="https://github.com/snaptoken">github.com/snaptoken</a>.
</p>
<h2>You Can Also…</h2>
<ul>
<li>1) <a target="_blank" href="http://eepurl.com/cIOGCD">Receive an email</a>
whenever a new tutorial is ready</li>
<li>2) Check out my
<a href="similarTutorials.html">list of similar tutorials</a></li>
<li>3) Use <a href="https://github.com/yjerem/leg">leg</a> to make your own
tutorials</li>
<li>4) Go to my <a href="http://viewsourcecode.org">homepage</a> to find out
more about me</li>
</ul>
</body>
</html>