diff --git a/public/images/books/superintelligence.jpg b/public/images/books/superintelligence.jpg new file mode 100644 index 00000000..74c1b2a1 Binary files /dev/null and b/public/images/books/superintelligence.jpg differ diff --git a/public/images/books/the-alignment-problem.jpg b/public/images/books/the-alignment-problem.jpg new file mode 100644 index 00000000..cf896a70 Binary files /dev/null and b/public/images/books/the-alignment-problem.jpg differ diff --git a/public/images/books/the-singularity-is-near.jpg b/public/images/books/the-singularity-is-near.jpg new file mode 100644 index 00000000..ac0d2ab2 Binary files /dev/null and b/public/images/books/the-singularity-is-near.jpg differ diff --git a/src/data/books.js b/src/data/books.js index de704aad..2b608542 100644 --- a/src/data/books.js +++ b/src/data/books.js @@ -107,6 +107,42 @@ const books = [ }, ], }, + { + title: 'The Singularity Is Near', + author: 'Ray Kurzweil', + description: 'When Humans Transcend Biology. A deep dive into exponential technological growth and the coming merger of human and machine intelligence.', + cover: '/images/books/the-singularity-is-near.jpg', + links: [ + { + name: 'Read', + url: 'https://archive.org/details/singularityisnea00kurz', + }, + ], + }, + { + title: 'Superintelligence', + author: 'Nick Bostrom', + description: 'Paths, Dangers, Strategies. What happens when machines surpass human intelligence, and how do we navigate the transition?', + cover: '/images/books/superintelligence.jpg', + links: [ + { + name: 'Read', + url: 'https://archive.org/details/superintelligenc0000bost', + }, + ], + }, + { + title: 'The Alignment Problem', + author: 'Brian Christian', + description: 'Machine Learning and Human Values. How do we ensure the systems we build actually do what we intend?', + cover: '/images/books/the-alignment-problem.jpg', + links: [ + { + name: 'Read', + url: 'https://brianchristian.org/the-alignment-problem/', + }, + ], + }, ]; export default books;