diff --git a/static/js/BookRecommendations.jsx b/static/js/BookRecommendations.jsx
index a2c5fcc..cda4058 100644
--- a/static/js/BookRecommendations.jsx
+++ b/static/js/BookRecommendations.jsx
@@ -12,25 +12,66 @@ export function BookRecommendations(){
Everyday Reads
- Incerto by
- Nassim Taleb
+ Nassim Taleb
-
Five book collection centered around the understanding the impacts of randomness.
+ - Outlive by
+ Peter Attia
+
+
+ -
+ View health span as a constant downward slope instead of a constant as years pass by.
+
+
+ - The Life Cleaning Magic Of Tidying Up by
+ Marie Kondo
+
+
+ -
+ Evaluate each item in your life for whether it continues to bring you joy.
+
+
+ - The Power Of Bad by
+ John Tierney and Roy Baumeister
+
+
+ -
+ Having 1 friend with a negative personality is asymmetrically harmful to your well being.
+
+
Software Engineering
- Clean Architecture by
- Bob Martin
+ Bob Martin
-
The goal of software architecture is to minimize the human resources required to build and maintain the desired application.
- Rework by
- DHH and Jason Fried
-
@@ -38,13 +79,27 @@ export function BookRecommendations(){
- Shape Up by
- Ryan Singer
+ Ryan Singer
-
Outside of the fact that he objectively has the coolest first name a human can have,
this is the definitive guide on how iterations should be structured in any devops oriented team.
+ - The Mythical Man Month by
+ Fred Brooks
+
+ -
+ Scaling software engineering team size leads to increased communication overhead
+ and might cause the project miss deadlines.
+
+
diff --git a/static/tests/BookRecommendations.test.js b/static/tests/BookRecommendations.test.js
index 98e6aba..378b39d 100644
--- a/static/tests/BookRecommendations.test.js
+++ b/static/tests/BookRecommendations.test.js
@@ -19,7 +19,7 @@ describe('BookRecommendations displayed on screen', () => {
const numHeaders = getAllByRole(
'heading'
);
- expect(bookLinks.length).toBe(4);
+ expect(bookLinks.length).toBe(8);
expect(numHeaders.length).toBe(2);
});