-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquotes.html
167 lines (126 loc) · 3.64 KB
/
quotes.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!doctype html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" href="tufte.css" />
<title>Quotes</title>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-32X4EF7YLE"></script>
<script type="text/javascript" src="google_analytics.js"></script>
</head>
<body>
<article>
<h1>Quotes I Like</h1>
<section>
<blockquote>
<p>
A man who has the knowledge but lacks the power to express it is no
better off than if he never had any ideas at all.
</p>
<footer>Pericles (c. 429 BCE)</footer>
</blockquote>
</section>
<section>
<blockquote>
<p>
Models don't kill projects, people kill projects.
</p>
<footer>Scott W. Ambler (2000)</footer>
</blockquote>
</section>
<section>
<blockquote>
<p>
Conceive the buildings in imagination, not first on paper but in the
mind, thoroughly, before touching paper.
</p>
<footer>Frank Lloyd Wright (1960)</footer>
</blockquote>
</section>
<section>
<blockquote>
<p>
It's my fault.
</p>
<footer>Chet Hendrickson (2000)</footer>
</blockquote>
</section>
<section>
<blockquote>
<p>
It's about finding something you yourself are interested in, and
then going out and doing it.
</p>
<footer>Linus Torvalds (2001)</footer>
</blockquote>
</section>
<section>
<blockquote>
<p>
These things cannot be explained in detail. From one thing, know ten
thousand things. When you attain the Way of strategy there will not
be one thing you cannot see. You must study hard.
</p>
<footer>Miyamoto Musashi (1645)</footer>
</blockquote>
<blockquote>
<p>
These are things you must learn thoroughly.
</p>
<footer>Miyamoto Musashi (1645)</footer>
</blockquote>
</section>
<section>
<blockquote>
<p>
Live as if you were to die tomorrow. Learn as if you were to live
forever.
</p>
<footer>Mahatma Gandhi (1869-1948)</footer>
</blockquote>
<blockquote>
<p>
Whatever you do will be insignificant, but it is very important that
you do it.
</p>
<footer>Mahatma Gandhi (1869-1948)</footer>
</blockquote>
</section>
<section>
<blockquote>
<p>
They can, because they think they can!
</p>
<footer>Virgil (70BCE - 19BCE)</footer>
</blockquote>
</section>
<section>
<blockquote>
<p>
Education is not something you can finish.
</p>
<footer>Isaac Asimov (1920 - 1992)</footer>
</blockquote>
<blockquote>
<p>
Never let your sense of morals get in the way of doing what's right.
</p>
<footer>Isaac Asimov (1920 - 1992)</footer>
</blockquote>
</section>
<section>
<blockquote>
<p>
When I was seven, my grandfather sent me a kids' book on
anthropology. Each chapter described the fascinating customs and
creation stories of a different culture. I saw quickly that each
culture had a different creation story, that all of them couldn't be
true so none of them was true, that what was true was that people
needed stories. So they made them up.
</p>
<footer>Barbara Tversky, <a href="https://www.edge.org/conversation/barbara_tversky-the-geometry-of-thought">The Geometry of Thought</a> (2019)</footer>
</blockquote>
</section>
</article>
</body>
</html>