-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (48 loc) · 2.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>The Little Erlanger</title>
<link rel="preload" href="/global.css" as="style">
<link rel="stylesheet" href="/global.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-65775908-7"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-65775908-7');
</script>
</head>
<body>
<h1> The Little Erlanger (WIP)</h1>
<p>by <a href="https://twitter.com/leostera">@leostera</a></p>
<a href="https://leftoversalad.com/c/015_programmingpeople/"><img src="./assets/cover-drawing.png" width="300px"/></a>
<p style="color: gray;">%% This hilarious drawing by <a href="https://leftoversalad.com">@leftoversalad</a>. </p>
<h3> Contents </h3>
<ul>
<li> [ <a href="./preface.html">preface</a> </li>
<li> , <a href="./chapters/1-stuff.html"> {1, Stuff}</a> <span style="color: gray;">%% atoms, tuples, lists, binding, and pattern matching </span> </li>
<li> , <a href="./chapters/2-oats-oaths-and-otters.html">{2, Oats, Oaths, and Otters} </a> <span style="color: gray;"> %% functions, recursion, and decisions by pattern matching </span></li>
<li> , {3, Fair is Fair} <span style="color: gray;"> %% spawn, pids, and spreading work across processes </span> </li>
<li> , {4, Process The Ultimate} <span style="color: gray;"> %% send, receive, loop: a generic server </span> </li>
<li> , {5, Necromancy for the Working Wizard} <span style="color: gray;"> %% monitor, link: a supervisor </span> </li>
<li> , {6, Intermission} <span style="color: gray;"> %% where to go from here </span> </li>
<li> , index ]. </li>
</ul>
<hr />
<form
action="https://buttondown.email/api/emails/embed-subscribe/abstractmachines"
method="post"
target="popupwindow"
onsubmit="window.open('https://buttondown.email/abstractmachines', 'popupwindow')"
class="buttondown"
>
<h4> Subscribe for Updates </h4>
<input type="email" name="email" placeholder="hello@example.com" id="bd-email">
<input type="hidden" value="1" name="embed"></input>
<input type="submit" value="Subscribe"></input>
</form>
</body>
</html>