Skip to content

Commit dabb9c5

Browse files
add ai page
1 parent 70fdd85 commit dabb9c5

1 file changed

Lines changed: 144 additions & 0 deletions

File tree

pages/ai.js

Lines changed: 144 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,144 @@
1+
import Link from 'next/link';
2+
import dayjs from 'dayjs';
3+
import Head from 'next/head';
4+
5+
import { NextSeo } from 'next-seo';
6+
7+
import styles from '../styles/blog.module.scss';
8+
9+
10+
export default function AI({ readings }) {
11+
12+
const description = `I'm becoming increasingly convinced that the
13+
advancement and development of AI is the most important technological
14+
innovation in human history, for better or for worse. I'm also convinced
15+
that how we grow, change, and adapt to it is the most important question.
16+
If nothing else, it is the only thing I care about right now.
17+
18+
I have read everything on this list. I may write start writing some about
19+
what I read, too.
20+
21+
Disclaimer: I don't agree with everything listed below or disagree with
22+
everything listed below. I will read anything and everything, and this is
23+
just a list. Please send me things to read! :)`;
24+
25+
return (
26+
<>
27+
<NextSeo
28+
title="AI"
29+
description="Ethan's AI reading list"
30+
openGraph={{
31+
url: 'https://ethancedwards.com/ai',
32+
}}
33+
/>
34+
35+
<h1 className={styles.header}>Ethan's AI Reading List</h1>
36+
<div className={styles.podcast}>
37+
<p>{description}</p>
38+
<p>In no particular order:</p>
39+
</div>
40+
<div className={styles.blog}>
41+
{readings.map((reading, index) => (
42+
<div key={index} className={styles.post}>
43+
<hr/>
44+
45+
<Link href={reading.link} passHref>
46+
<h2>{reading.title}</h2>
47+
</Link>
48+
49+
<div>
50+
{reading.author.map((author, index) => (
51+
<h4 className={styles.info}>
52+
{author.firstName} {author.lastName}
53+
</h4>
54+
))}
55+
</div>
56+
<h4 className={styles.info}>{reading.date}</h4>
57+
</div>
58+
))}
59+
</div>
60+
</>
61+
);
62+
}
63+
64+
export async function getStaticProps() {
65+
const res = await fetch(`https://api.ethancedwards.com/zotero/v1`)
66+
const readings = await res.json();
67+
68+
// const readings = [
69+
// {
70+
// "title": "Machines of Loving Grace",
71+
// "author": "Dario Amodei",
72+
// "date": "October 2024",
73+
// "link": "https://darioamodei.com/essay/machines-of-loving-grace",
74+
// },
75+
// {
76+
// "title": "The Adolescence of Technology",
77+
// "author": "Dario Amodei",
78+
// "link": "https://darioamodei.com/essay/the-adolescence-of-technology",
79+
// "date": "January 2026"
80+
// },
81+
// {
82+
// "title": "On DeepSeek and Export Controls",
83+
// "author": "Dario Amodei",
84+
// "link": "https://darioamodei.com/post/on-deepseek-and-export-controls",
85+
// "date": "January 2025"
86+
// },
87+
// {
88+
// "title": "The Urgency of Interpretability",
89+
// "author": "Dario Amodei",
90+
// "link": "https://darioamodei.com/post/the-urgency-of-interpretability",
91+
// "date": "April 2025"
92+
// },
93+
// {
94+
// "title": "Thoughts on slowing the fuck down",
95+
// "author": "Mario Zechner",
96+
// "link": "https://mariozechner.at/posts/2026-03-25-thoughts-on-slowing-the-fuck-down/",
97+
// "date": "2026-03-25"
98+
// },
99+
// {
100+
// "title": "Why the Future Doesn't Need Us",
101+
// "author": "Bill Joy",
102+
// "link": "https://sites.cc.gatech.edu/computing/nano/documents/Joy%20-%20Why%20the%20Future%20Doesn%27t%20Need%20Us.pdf",
103+
// "date": "April 2000"
104+
// },
105+
// {
106+
// "title": "Lena",
107+
// "author": "qntm",
108+
// "link": "https://qntm.org/mmacevedo",
109+
// "date": "2021-01-04"
110+
// },
111+
// {
112+
// "title": "Darwin Among the Machines",
113+
// "author": "Samuel Butler",
114+
// "link": "https://mediarep.org/server/api/core/bitstreams/e0da505d-200c-43ab-be4b-6604a4df816f/content",
115+
// "date": "13 June, 1863"
116+
// },
117+
// {
118+
// "title": "Einstein–Szilard letter",
119+
// "author": "Albert Einstein",
120+
// "link": "https://www.atomicarchive.com/resources/documents/beginnings/einstein.html",
121+
// "link2": "https://en.wikipedia.org/wiki/Einstein%E2%80%93Szilard_letter",
122+
// "date": "August 2nd, 1939"
123+
// },
124+
// // {
125+
// // "title": "https://www.wheresyoured.at/",
126+
// // "author": "",
127+
// // "link": "",
128+
// // "date": ""
129+
// // },
130+
// // {
131+
// // "title": "",
132+
// // "author": "",
133+
// // "link": "",
134+
// // "date": ""
135+
// // },
136+
// ];
137+
138+
return {
139+
props: {
140+
readings
141+
},
142+
revalidate: 3600
143+
}
144+
}

0 commit comments

Comments
 (0)