Skip to content

Commit

Permalink
Add books
Browse files Browse the repository at this point in the history
  • Loading branch information
alexjdean committed Aug 28, 2024
1 parent d3c102e commit a6b2233
Show file tree
Hide file tree
Showing 4 changed files with 108 additions and 7 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
.DS_Store
values.html
books.html
92 changes: 92 additions & 0 deletions books.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="styles/index.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alex Dean</title>
</head>

<body>

<div class="front-page">
<div class="page-navigation">
<a href="books.html">Books</a> <br/>
<a href="engineering.html">Engineering</a> <br/>
<!-- <a href="research.html">Research</a> -->
</div>

<div class="page-description">
<h1>Alex Dean</h1>
<a href="index.html">Back</a>

<p>There's nothing quite like a book that changes how you see the world. There's nothing quite like perceiving life through some unspoken lens, and then having some elegant idea change that perception. Books like that are the stuff of magic.</p>

<p>The purpose of this page is to serve as a resource for others hoping to be transformed. For each year, I selected the top five books (from the roughly 40 to 50 books I typically get through) that have influenced me the most. While my selections are susceptible to my inherent biases of what is important, as well as my prevailing interests and attitudes of the time, I hope this page will be useful for others willing to indulge their curiosities to the furthest extent.</p>

<hr>

<h2>2024</h2>
<ol>
<li><i>The Dream Machine</i> by M. Mitchell Waldrop</li>
<li><i>To The Lighthouse</i> by Virginia Woolf</li>
<li><i>The Undoing Project</i> by Michael Lewis</li>
</ol>

<h2>2023</h2>
<ol>
<li><i>Organizing Genius</i> by Warren Bennis and Patricia Ward Biederman</li>
<li><i>Strangers Drowning</i> by Larissa MacFarquhar</li>
<li><i>The Canceling of the American Mind</i> by Greg Lukianoff and Rikki Schlott</li>
<li><i>The Rise of Theodore Roosevelt</i> by Edmund Morris</li>
<li><i>Paved Paradise</i> by Henry Grabar</li>
</ol>

<h2>2022</h2>
<ol>
<li><i>Amusing Ourselves to Death</i> by Neil Postman</li>
<li><i>The Righteous Mind</i> by Jonathan Haidt</li>
<li><i>American Pharaoh</i> by Adam Cohen and Elizabeth Taylor</li>
<li><i>Pacific</i> by Simon Winchester</li>
<li><i>Strangers to Ourselves</i> by Rachel Aviv</li>
</ol>

<h2>2021</h2>
<ol>
<li><i>When We Cease to Understand the World</i> by Benjamín Labatut</li>
<li><i>This Is How They Tell Me The World Ends</i> by Nicole Perlroth</li>
<li><i>The Second Founding</i> by Eric Foner</li>
<li><i>The Price of Peace</i> by Zachary D. Carter</li>
<li><i>The Alignment Problem</i> by Brian Christian</li>
</ol>

<h2>2020</h2>
<ol>
<li><i>The Undocumented Americans</i> by Karla Cornejo Villavicencio</li>
<li><i>Conditional Citizens</i> by Laila Lalami</li>
<li><i>A Promised Land</i> by Barack Obama</li>
<li><i>The Age of Surveillance Capitalism</i> by Shoshana Zuboff</li>
<li><i>Politics Is For Power</i> by Eitan Hersh</li>
</ol>

<h2>2019</h2>
<ol>
<li><i>Peak</i> by Anders Ericsson and Robert Pool</li>
<li><i>Incognito</i> by David Eagleman</li>
<li><i>Range</i> by David Epstein</li>
<li><i>Why We Sleep</i> by Matthew Walker</li>
<li><i>Make It Stick</i> by Peter Brown, Henry Roediger, and Mark McDaniel</li>
</ol>

<h2>2018</h2>
<ol>
<li><i>So Good They Can't Ignore You</i> by Cal Newport</li>
<li><i>How to Win Friends & Influence People</i> by Dale Carnegie</li>
<li><i>Hotel on the Corner of Bitter and Sweet</i> by Jamie Ford</li>
<li><i>The Great Gatsby</i> by F. Scott Fitzgerald</li>
<li><i>Othello</i> by William Shakespeare</li>
</ol>
</div>
</div>
</body>
</html>
11 changes: 6 additions & 5 deletions engineering.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@

<div class="front-page">
<div class="page-navigation">
<!-- <a href="books.html">Books</a> <br/> -->
<a href="books.html">Books</a> <br/>
<a href="engineering.html">Engineering</a> <br/>
<!-- <a href="research.html">Research</a> -->
</div>

<div class="page-description">
Expand All @@ -24,7 +25,7 @@ <h1>Alex Dean</h1>

<ul>
<li>
<strong>Generative Documentation & Testing</strong>: NPM package that
<strong>Generative Documentation & Testing</strong> &mdash; NPM package that
functions as a CLI tool using the GPT 3.5 API to improve your JavaScript and
TypeScript code. It helps you write better code by automatically generating
documentation, refactoring code to improve performance and maintainability,
Expand All @@ -33,7 +34,7 @@ <h1>Alex Dean</h1>
<a href="https://github.com/alexjdean/type-scriptor">GitHub page</a>.
</li>
<li>
<strong>Generative Satire</strong>: Automated satirical news site monitoring
<strong>Generative Satire</strong> &mdash; Automated satirical news site monitoring
recent events and generating Onion-style articles using LLMs; At its peak,
the site had a viewership of about 1500 people per week. The application was
built using a React frontend and a Node.js backend, with articles stored on a
Expand All @@ -43,15 +44,15 @@ <h1>Alex Dean</h1>
<a href="https://github.com/alexjdean/chicagomoontimes.com">GitHub page</a>.
</li>
<li>
<strong>Read This to Me</strong>: Application that converts written text into
<strong>Read This to Me</strong> &mdash; Application that converts written text into
audio from a wide variety of dialects, using the SpeechSynthesis Web API. The
site was built using JavaScript and HTML/CSS. The site is hosted on GitHub
Pages with a custom domain. You can see the
<a href="https://readtext.me/">website</a> and
<a href="https://github.com/alexjdean/readtext.me">GitHub page</a>.
</li>
<li>
<strong>Language Discovery</strong>: Application that applies various
<strong>Language Discovery</strong> &mdash; Application that applies various
similarity algorithms on various human language data sets. By languages,
I'm referencing frequency dictionaries for human languages, which catalog
how frequently a word is used in one language relative to another. I examine
Expand Down
11 changes: 10 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@
<body>
<div class="front-page">
<div class="page-navigation">
<!-- <a href="books.html">Books</a> <br/> -->
<a href="books.html">Books</a> <br/>
<a href="engineering.html">Engineering</a> <br/>
<!-- <a href="research.html">Research</a> -->
</div>

<div class="page-description">
Expand All @@ -32,6 +33,14 @@ <h1>Alex Dean</h1>
<a href="https://github.com/alexjdean">my GitHub</a>.
</p>

<!-- <p>I'm also a non-degree graduate student at the University of Chicago. I'm broadly
interested in theoretical computer science, particularly graph-related algorithm
and optimization problems. For more information, see
<a href="research.html">my research</a> and
<a href="https://scholar.google.com/citations?user=Z9zyFCoAAAAJ">my
Google Scholar</a>.
</p> -->

<p>You can reach me at dean.alex.contact [at] gmail [dot] com.</p>
</div>
</div>
Expand Down

0 comments on commit a6b2233

Please sign in to comment.