Skip to content

Commit 45403c2

Browse files
committed
feat: added 3 new quotes
1 parent cab5505 commit 45403c2

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

src/quotes.ts

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ export type AuthorDescription =
1818
'Philosopher' |
1919
'Physicist' |
2020
'Scientist' |
21-
'Software Developer'
21+
'Software Developer' |
22+
'Ethnographer'
2223

2324
export interface RawQuote {
2425
text: string
@@ -1172,6 +1173,23 @@ const quotes: RawQuote[] = [
11721173
text: 'The thing is, you can\'t fake drive. If you try to, you can easily burnout',
11731174
authorName: 'Sophia Turner',
11741175
authorDescription: 'Engineer'
1176+
},
1177+
{
1178+
text: 'Computer Science is no more about computers than astronomy is about telescopes',
1179+
authorName: 'E.W. Dijkstra',
1180+
authorDescription: 'Computer Scientist',
1181+
authorWiki: 'https://en.wikipedia.org/wiki/E._W._Dijkstra'
1182+
},
1183+
{
1184+
text: 'Progress is man\'s ability to complicate simplicity',
1185+
authorName: 'Thor Heyerdahl',
1186+
authorDescription: 'Ethnographer',
1187+
authorWiki: 'https://en.wikipedia.org/wiki/Thor_Heyerdahl'
1188+
},
1189+
{
1190+
text: 'Don\'t shoot a fly with a cannon',
1191+
authorName: 'Paolo Insogna',
1192+
authorDescription: 'Engineer'
11751193
}
11761194
]
11771195

0 commit comments

Comments
 (0)