-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
315 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="stylesheet" type="text/css" media="screen" href="./styles.css" /> | ||
<title>Book Notes - Book Notes</title> | ||
</head> | ||
|
||
<body id="index-page"> | ||
|
||
<nav> | ||
<a href="./" id="home">Book Notes</a> | ||
<div></div> | ||
<a href="https://github.com/philc/book-notes" id="github"><img src="./github.svg" /></a> | ||
</nav> | ||
<div id="title"> | ||
<h1>Book Notes</h1> | ||
</div> | ||
|
||
<div id="content"> | ||
<h2>Lifestyle</h2> | ||
<ul> | ||
<li><a href="what-is-culture-for-school-of-life.html">What Is Culture For - School of Life</a></li> | ||
</ul> | ||
</div> | ||
|
||
<footer> | ||
<hr></hr> | ||
All content on this page, including text excerpts, is copyrighted by the author of the book. | ||
</footer> | ||
|
||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,132 @@ | ||
/* The colors are sepia; some drawn from here: https://www.color-hex.com/color-palette/92457 */ | ||
html, body { | ||
margin: 0; | ||
} | ||
|
||
:root { | ||
--padding: 20px; | ||
--width: 650px; | ||
--link-color: #1E6ADE; | ||
--text-color: black; | ||
background-color: white; | ||
color: var(--text-color); | ||
} | ||
|
||
body { | ||
font-size: 18px; | ||
/* Palatino is available on MacOS, iOS, and Windows. */ | ||
font-family: "Palatino", "Palatino Linotype", "Georgia", "Serif"; | ||
padding: 20px 0; | ||
} | ||
|
||
/* Center each of the main sections on the page. */ | ||
#content, h1, nav, footer { | ||
margin: 0 auto; | ||
box-sizing: border-box; | ||
padding: 0 var(--padding); | ||
max-width: var(--width); | ||
} | ||
|
||
a, nav a:visited { | ||
color: var(--link-color); | ||
} | ||
|
||
a:visited { | ||
color: #551A8B; /* The browser's default. */ | ||
} | ||
|
||
nav { | ||
margin-bottom: 20px; | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
} | ||
|
||
a#github { | ||
width: 40px; | ||
border: 0; | ||
/* Artifically reduce the layout height of this github icon. Otherwise it will make the nav | ||
taller than it needs to be, consuming too much vertical space. */ | ||
margin-top: -8px; | ||
margin-bottom: -8px; | ||
} | ||
|
||
#title { | ||
background-color: #F8F5F0; | ||
padding: 20px 0; | ||
border-bottom: 1px solid #ECE6DA; | ||
} | ||
|
||
li, p { | ||
text-align: justify; | ||
line-height: 1.5; | ||
margin: 1em 0; | ||
list-style-type: none; | ||
} | ||
|
||
ul { | ||
margin: 0; | ||
padding-left: 3em; | ||
} | ||
|
||
#content > ul { | ||
padding-left: 0; | ||
} | ||
|
||
hr { | ||
height: 1px; | ||
width: 80%; | ||
border: 0; | ||
border-color: #B98F0D; | ||
border-top-width: 1px; | ||
border-style: dashed; | ||
margin: 24px auto; | ||
} | ||
|
||
footer { | ||
font-style: italic; | ||
} | ||
|
||
/* Styles specificalaly for the index page. */ | ||
#index-page a#home, #index-page footer { | ||
display: none; | ||
} | ||
|
||
@media (prefers-color-scheme: dark) { | ||
:root { | ||
color-scheme: dark; | ||
background-color: #242220; | ||
--link-color: #fbab7e; | ||
--text-color: #DEC2AF; | ||
color: var(--text-color); | ||
} | ||
a#github img { | ||
/* The icon is black; invert it to white. */ | ||
filter: invert(100%); | ||
/* Tone down the opacity so it's not so bright. */ | ||
opacity: 0.66; | ||
} | ||
a:visited { | ||
color: var(--text-color); | ||
} | ||
a:hover, nav a:hover { | ||
color: #ff725c; | ||
} | ||
|
||
a#github:hover img { | ||
opacity: 1.0; | ||
} | ||
li, p { | ||
/* Slightly more space between lines. */ | ||
line-height: 1.6; | ||
margin: 1.1em 0; | ||
} | ||
#title { | ||
color: #eadbcb; | ||
background-color: #1B1B1B; | ||
border-bottom: 0; | ||
} | ||
h2 { | ||
color: #ffd586; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,146 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="stylesheet" type="text/css" media="screen" href="./styles.css" /> | ||
<title>What Is Culture For - School of Life - Book Notes</title> | ||
</head> | ||
|
||
<body> | ||
|
||
<nav> | ||
<a href="./" id="home">Book Notes</a> | ||
<div></div> | ||
<a href="https://github.com/philc/book-notes" id="github"><img src="./github.svg" /></a> | ||
</nav> | ||
<div id="title"> | ||
<h1>What Is Culture For - School of Life</h1> | ||
</div> | ||
|
||
<div id="content"> | ||
|
||
<h2>Gems</h2> | ||
<ul> | ||
<li>"Strangely, it appears that certain imaginary friends drawn from culture can end up feeling more | ||
real and in that sense more present to us than any of our real-life acquaintances, even if they | ||
have been dead a few centuries and lived on another continent. We can feel honored to count them | ||
as among our best friends."</li> | ||
<li>"There's a strange contrast we sometimes catch sight of around parents and children. The child | ||
might be joyfully singing and dancing along to a favorite song. As they watch, the parent's | ||
delight has a different quality: they are deeply conscious of how fragile and fleeting such | ||
moments of intense happiness are; they see this lovely, innocent moment against the backdrop of | ||
life's sorrows and troubles — adding a layer of poignancy and tenderness which the child can't as | ||
yet imagine. And this is what makes the sight so moving to the parent."</li> | ||
<li>"'When two people part, it is the one who is not in love who makes the tender speeches.' The | ||
clarity won't make the lover return; but it will do the next best thing: help us to feel less | ||
confused by, and alone with, the misery of having been left."</li> | ||
</ul> | ||
<h2>Intro</h2> | ||
<ul> | ||
<li>"Rather than focus on what a work of art might tell us about the time and place it was made or | ||
about the person who created it, we should develop the confidence to do exactly that which we | ||
might feel discouraged to do: relate cultural masterpieces to our own dilemmas and pains."</li> | ||
</ul> | ||
<h2>Companionship (chap 1)</h2> | ||
<ul> | ||
<li>"The legacy of Romanticism has been an epidemic of loneliness, as we are repeatedly brought up | ||
against the truth: the radical inability of any one other person to wholly grasp who we truly | ||
are."</li> | ||
<li>"Art can, for adults, function as more sophisticated versions of transitional objects. What we are | ||
at heart looking for in friendship is not necessarily someone we can touch and see in front of us, | ||
but a person who shares, and can help us develop, our sensibility and our values."</li> | ||
<li>"Strangely, it appears that certain imaginary friends drawn from culture can end up feeling more | ||
real and in that sense more present to us than any of our real-life acquaintances, even if they | ||
have been dead a few centuries and lived on another continent. We can feel honored to count them | ||
as among our best friends."</li> | ||
<li>"Confronted by the many failings of our real life communities, culture gives us the option of | ||
assembling a tribe for ourselves, drawing its members from across the widest ranges of time and | ||
space, blending some living friends with some dead authors, architects, musicians and composers, | ||
painters and poets."</li> | ||
<li>"So we can confront the difficult stretches of existence not simply on the basis of our own small | ||
resources, but accompanied by the accumulated wisdom of the kindest, most intelligent voices of | ||
all ages gone by."</li> | ||
</ul> | ||
<h2>Hope (chap 2)</h2> | ||
<ul> | ||
<li>"There's a strange contrast we sometimes catch sight of around parents and children. The child | ||
might be joyfully singing and dancing along to a favorite song. As they watch, the parent's | ||
delight has a different quality: they are deeply conscious of how fragile and fleeting such | ||
moments of intense happiness are; they see this lovely, innocent moment against the backdrop of | ||
life's sorrows and troubles — adding a layer of poignancy and tenderness which the child can't as | ||
yet imagine. And this is what makes the sight so moving to the parent."</li> | ||
<li>In defense of sweet / sentimental art | ||
<ul> | ||
<li>"It's because we're burdened with frustrations, disappointments, failings, errors, regrets and | ||
compromises that the sight of grace, innocence, lightness and carefree joy is so moving; and if | ||
we cry it is because we're glimpsing something we love and need and yet cannot now hold on to."</li> | ||
</ul> | ||
</li> | ||
</ul> | ||
<h2>Balance (chap 3)</h2> | ||
<ul> | ||
<li>Helpful framing of art: art is produced to supply us with what we lack emotionally, thus helping | ||
us achieve emotional balance. Art that does this is considered beautiful. Since everyone has | ||
different emotional shortages, everyone has different tastes in art.</li> | ||
<li>Film can educate us by example, and deliver a balancing view to what we're missing. That's why | ||
there's so many genre of film.</li> | ||
<li>"Our tastes will depend on what spectrum of our emotional makeup lies in shadow and is hence in | ||
need of stimulation and emphasis."</li> | ||
</ul> | ||
<h2>Compassion (chap 4)</h2> | ||
<ul> | ||
<li>Nice advocacy for the Tolstoy novel Anna Karenina, and how novels like that develop our powers of | ||
sympathy by showing how unfortunate characters can get there, step by step.</li> | ||
</ul> | ||
<h2>Knowledge (chap 5)</h2> | ||
<ul> | ||
<li>Literate is a reality simulation which teaches us what befalls us if we behave in certain ways. Or | ||
more generally, what humanity is like.</li> | ||
<li>"'When two people part, it is the one who is not in love who makes the tender speeches.' The | ||
clarity won't make the lover return; but it will do the next best thing: help us to feel less | ||
confused by, and alone with, the misery of having been left."</li> | ||
</ul> | ||
<h2>Encouragement (chap 6)</h2> | ||
<ul> | ||
<li>Architecture: "the most imposing of the arts." | ||
<ul> | ||
<li>"In the company of the right building (as in the company of the right friend) we find it easier | ||
to become the better versions of who we really are."</li> | ||
</ul> | ||
</li> | ||
<li>"The Parliament building in Dhaka, like many a beautiful city, street, chair or teapot, matters | ||
because of its skill at encouraging the better sides of us."</li> | ||
</ul> | ||
<h2>Appreciation (chap 7)</h2> | ||
<ul> | ||
<li>"[We] are prone to racing through the years while forgetting the wonder, fragility and beauty of | ||
existence. It's fortunate, therefore, that we have art."</li> | ||
<li>Art is a form of advertising to remind us of what is good and beautiful | ||
<ul> | ||
<li>"If advertising images carry a lot of the blame for instilling a sickness in our souls, the | ||
images of artists reconcile us with our realities and reawaken us to the genuine, but too-easily | ||
forgotten, value of our lives."</li> | ||
</ul> | ||
</li> | ||
<li>"Art doesn't have to tantalize us with alluring visions of things we can never attain. It's | ||
capable of drawing our admiration to the easily forgotten, but very real, charms and dignity of | ||
everyday life."</li> | ||
</ul> | ||
<h2>Perspective (chap 8)</h2> | ||
<ul> | ||
<li>Concerning grand scenes of nature, "We regain composure not by being made to feel more important, | ||
but by being reminded of the minuscule and momentary nature of everyone and everything."</li> | ||
</ul> | ||
|
||
</div> | ||
|
||
<footer> | ||
<hr></hr> | ||
All content on this page, including text excerpts, is copyrighted by the author of the book. | ||
</footer> | ||
|
||
</body> | ||
|
||
</html> |