Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added public/images/books/superintelligence.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/books/the-alignment-problem.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/books/the-singularity-is-near.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
36 changes: 36 additions & 0 deletions src/data/books.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Loading