add page for taoup epub
This commit is contained in:
parent
dbab4ca77b
commit
e1ecc896b2
|
|
@ -1,3 +1,4 @@
|
||||||
cheatsheet.aux
|
cheatsheet.aux
|
||||||
cheatsheet.log
|
cheatsheet.log
|
||||||
cheatsheet.pdf
|
cheatsheet.pdf
|
||||||
|
*.swp
|
||||||
|
|
|
||||||
|
|
@ -22,13 +22,14 @@
|
||||||
<h1>Hi.</h1>
|
<h1>Hi.</h1>
|
||||||
<p>Welcome to one of the most boring websites on the internet.</p>
|
<p>Welcome to one of the most boring websites on the internet.</p>
|
||||||
|
|
||||||
<p>Feel free to peruse any of the <em>four</em> (4) interesting things
|
<p>Feel free to peruse any of the <em>five</em> (5) interesting things
|
||||||
on this site:</p>
|
on this site:</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="https://scm.dairydemon.net">my software forge</a></li>
|
<li><a href="https://scm.dairydemon.net">my software forge</a></li>
|
||||||
<li><a href='mgs/mgs.html'>this Metal Gear Solid trivia game I made</a>
|
<li><a href='mgs/mgs.html'>this Metal Gear Solid trivia game I made</a>
|
||||||
<li><a href='statsapi/index.html'>generated documentation for MLB's Stats API</a>
|
<li><a href='statsapi/index.html'>generated documentation for MLB's Stats API</a>
|
||||||
<li><a href='eulerbooks/eulerbooks.html'>Jupyter notebooks for the first 100 Project Euler problems</a>
|
<li><a href='eulerbooks/eulerbooks.html'>Jupyter notebooks for the first 100 Project Euler problems</a>
|
||||||
|
<li><a href='taoup/taoup.html'>The Art of Unix Programming by Eric S. Raymond, converted to an epub</a>
|
||||||
</ul>
|
</ul>
|
||||||
</article>
|
</article>
|
||||||
</main>
|
</main>
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,38 @@
|
||||||
|
<!doctype html>
|
||||||
|
<html lang="en-US">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||||
|
<link rel="stylesheet" href="/styles/default.css" />
|
||||||
|
<link rel="icon" href="/images/favicon.ico" />
|
||||||
|
<title>The Art of Unix Programming</title>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<p><a id="homelink" href="/">dairydemon.net</a></p>
|
||||||
|
</header>
|
||||||
|
<main>
|
||||||
|
<article>
|
||||||
|
<h1>The Art of Unix Programming</h1>
|
||||||
|
<p><strong><a href="eric-steven-raymond_the-art-of-unix-programming.epub">Click here to download The Art of Unix Programming in epub format!</a></strong></p>
|
||||||
|
|
||||||
|
<p><cite>The Art of Unix Programming</cite> is
|
||||||
|
<a href="http://www.catb.org/esr/writings/taoup/html/">available online</a>
|
||||||
|
from the author himself as a set of HTML pages. I was interested in
|
||||||
|
reading it, but navigating that website on a phone is a bit of a pain,
|
||||||
|
so I decided to see if I could convert it to a more convenient epub
|
||||||
|
format.</p>
|
||||||
|
|
||||||
|
<p>This was created using the tooling provided by
|
||||||
|
<a href="https://standardebooks.org">Standard Ebooks</a>.
|
||||||
|
I also tried to follow their
|
||||||
|
<a href="https://standardebooks.org/contribute/producing-an-ebook-step-by-step">production guide</a>,
|
||||||
|
but admittedly got lazy. To be clear, this conversion is certainly not
|
||||||
|
up to Standard Ebooks' level of quality, but it's nice enough that I
|
||||||
|
thought I would share it anyway. In particular, the book's numerous
|
||||||
|
footnotes have been redone to play nicely in an epub.</p>
|
||||||
|
</article>
|
||||||
|
</main>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Loading…
Reference in New Issue