-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
112 lines (97 loc) · 3.98 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
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
<!DOCTYPE html>
<html lang="en-US">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-GWV2V1WB5F"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-GWV2V1WB5F');
</script>
<title>A Programmer's Introduction to Mathematics</title>
<!-- This theme was adapted from: https://onepagelove.com/split -->
<meta name="generator" content="Hugo 0.49.2" />
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="author" content="Jeremy Kun" />
<meta name="description" content="A Programmer's Introduction to Mathematics" />
<meta name="robots" content="index, follow" />
<meta name="referrer" content="always" />
<meta property="og:title" content="A Programmer's Introduction to Mathematics" />
<meta property="og:description" content="A Programmer's Introduction to Mathematics" />
<meta property="og:url" content="http://pimbook.org" />
<meta name="twitter:site" content="@MathProgramming" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" href="css/split.css" type="text/css" media="screen" />
<style type="text/css">
.fs-split .split-image {
background-image: url("images/book-splash.jpg");
}
</style>
</head>
<body>
<div class="fs-split">
<div class="split-image"></div>
<div class="split-content">
<div class="split-content-vertically-center">
<div class="split-intro">
<h1>A Programmer's Introduction to Mathematics</h1>
</div>
<div class="split-links">
<table>
<tr>
<td class="links-left"> <a href="pdf/pim_toc.pdf">Table of Contents</a> </td>
<td> • </td>
<td> Overview of the contents </td>
</tr>
<tr>
<td class="links-left"> <a href="pdf/pim_first_pages.pdf">First pages</a> </td>
<td> • </td>
<td> A preview of the book </td>
</tr>
<tr>
<td class="links-left"> <a href="https://amzn.to/2TckiJd">Physical book</a> </td>
<td> • </td>
<td> Purchase through Amazon </td>
</tr>
<tr>
<td class="links-left"> <a href="https://gum.co/pim-book">E-book</a> </td>
<td> • </td>
<td> Pay what you want (PDF)</td>
</tr>
<tr>
<td class="links-left"> <a href="https://github.com/pim-book/programmers-introduction-to-mathematics">GitHub</a> </td>
<td> • </td>
<td> Code from each chapter </td>
</tr>
<tr>
<td class="links-left"> <a href="https://github.com/pim-book/exercises">Exercises</a> </td>
<td> • </td>
<td> Discuss exercises with other readers </td>
</tr>
<tr>
<td class="links-left"> <a href="demo/index.html">Demos</a> </td>
<td> • </td>
<td> Interactive demos </td>
</tr>
<tr>
<td class="links-left"> <a href="errata/errata.html">Errata</a> </td>
<td> • </td>
<td> Errata from the first edition </td>
</tr>
</table>
</div>
</div>
<div class="split-footer">
<ul>
<li>© 2021 Jeremy Kun</li>
<li><a href="https://jeremykun.com">jeremykun.com</a></li>
<li><a href="https://twitter.com/jeremyjkun">jeremyjkun@twitter</a></li>
<li><a href="https://github.com/j2kun/">j2kun@github</a></li>
</ul>
</div>
</div>
</div>
</body>
</html>