Skip to content

Commit

Permalink
feat: added 3 new quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
lmammino committed Jan 27, 2025
1 parent cab5505 commit 45403c2
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion src/quotes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ export type AuthorDescription =
'Philosopher' |
'Physicist' |
'Scientist' |
'Software Developer'
'Software Developer' |
'Ethnographer'

export interface RawQuote {
text: string
Expand Down Expand Up @@ -1172,6 +1173,23 @@ const quotes: RawQuote[] = [
text: 'The thing is, you can\'t fake drive. If you try to, you can easily burnout',
authorName: 'Sophia Turner',
authorDescription: 'Engineer'
},
{
text: 'Computer Science is no more about computers than astronomy is about telescopes',
authorName: 'E.W. Dijkstra',
authorDescription: 'Computer Scientist',
authorWiki: 'https://en.wikipedia.org/wiki/E._W._Dijkstra'
},
{
text: 'Progress is man\'s ability to complicate simplicity',
authorName: 'Thor Heyerdahl',
authorDescription: 'Ethnographer',
authorWiki: 'https://en.wikipedia.org/wiki/Thor_Heyerdahl'
},
{
text: 'Don\'t shoot a fly with a cannon',
authorName: 'Paolo Insogna',
authorDescription: 'Engineer'
}
]

Expand Down

0 comments on commit 45403c2

Please sign in to comment.