Skip to content

Commit 08e047b

Browse files
committed
Added 19 new quotes
1 parent f5f3d31 commit 08e047b

File tree

1 file changed

+110
-0
lines changed

1 file changed

+110
-0
lines changed

src/quotes.ts

Lines changed: 110 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ export type AuthorDescription =
44
'Composer' |
55
'Computer Scientist' |
66
'Director' |
7+
'Engineer' |
78
'Entrepreneur' |
89
'Hacker' |
910
'Historian' |
@@ -854,6 +855,115 @@ const quotes: RawQuote[] = [
854855
authorName: 'Alexis Ohanian',
855856
authorDescription: 'Entrepreneur',
856857
authorWiki: 'https://en.wikipedia.org/wiki/Alexis_Ohanian'
858+
},
859+
{
860+
text: 'Being a young programmer today must be awful—you can choose 20 different programming languages, dozens of framework and operating systemsand you\'re paralyzed by choice',
861+
authorName: 'Joe Armstrong',
862+
authorDescription: 'Software Developer',
863+
authorWiki: 'https://en.wikipedia.org/wiki/Joe_Armstrong_(programmer)'
864+
},
865+
{
866+
text: 'In some ways, programming is like painting. You start with a blank canvas and certain basic raw materials. You use a combination of science, art, and craft to determine what to do with them',
867+
authorName: 'Andrew Hunt',
868+
authorDescription: 'Software Developer',
869+
authorWiki: 'https://en.wikipedia.org/wiki/Andy_Hunt_(author)'
870+
},
871+
{
872+
text: 'Testing leads to failure, and failure leads to understanding',
873+
authorName: 'Burt Rutan',
874+
authorDescription: 'Engineer',
875+
authorWiki: 'https://en.wikipedia.org/wiki/Burt_Rutan'
876+
},
877+
{
878+
text: 'Programming isn\'t about what you know; it\'s about what you can figure out',
879+
authorName: 'Chris Pine',
880+
authorDescription: 'Software Developer'
881+
},
882+
{
883+
text: 'If you optimize everything, you will always be unhappy',
884+
authorName: 'Donald Knuth',
885+
authorDescription: 'Computer Scientist',
886+
authorWiki: 'https://en.wikipedia.org/wiki/Donald_Knuth'
887+
},
888+
{
889+
text: 'If debugging is the process of removing bugs, then programming must be the process of putting them in',
890+
authorName: 'E.W. Dijkstra',
891+
authorDescription: 'Computer Scientist',
892+
authorWiki: 'https://en.wikipedia.org/wiki/E._W._Dijkstra'
893+
},
894+
{
895+
text: 'Coding isn\'t the poor handmaiden of design or analysis. Coding is where your fuzzy ideas awaken in the harsh dawn of reality',
896+
authorName: 'Kent Beck',
897+
authorDescription: 'Software Developer',
898+
authorWiki: 'https://en.wikipedia.org/wiki/Kent_Beck'
899+
},
900+
{
901+
text: 'Inside every well-written large program is a well-written small program',
902+
authorName: 'C.A.R. Hoare',
903+
authorDescription: 'Computer Scientist',
904+
authorWiki: 'https://en.wikipedia.org/wiki/C._A._R._Hoare'
905+
},
906+
{
907+
text: 'So much complexity in software comes from trying to make one thing do two things',
908+
authorName: 'Ryan Singer',
909+
authorDescription: 'Software Developer'
910+
},
911+
{
912+
text: 'Code is like humor. When you have to explain it, it\'s bad',
913+
authorName: 'Cory House',
914+
authorDescription: 'Software Developer'
915+
},
916+
{
917+
text: 'The more I study, the more insatiable do I feel my genius for it to be',
918+
authorName: 'Ada Lovelace',
919+
authorDescription: 'Mathematician',
920+
authorWiki: 'https://en.wikipedia.org/wiki/Ada_Lovelace'
921+
},
922+
{
923+
text: 'There are only two hard things in Computer Science: cache invalidation and naming things',
924+
authorName: 'Phil Karlton',
925+
authorDescription: 'Software Developer'
926+
},
927+
{
928+
text: 'All programming languages are shit. But the good ones fertilize your mind',
929+
authorName: 'Reginald Braithwaite',
930+
authorDescription: 'Software Developer'
931+
},
932+
{
933+
text: 'The question of whether Machines Can Think... is about as relevant as the question of whether Submarines Can Swim',
934+
authorName: 'E.W. Dijkstra',
935+
authorDescription: 'Computer Scientist',
936+
authorWiki: 'https://en.wikipedia.org/wiki/E._W._Dijkstra'
937+
},
938+
{
939+
text: 'Computer science education cannot make anybody an expert programmer any more than studying brushes and pigment can make somebody an expert painter',
940+
authorName: 'Eric S. Raymond',
941+
authorDescription: 'Software Developer',
942+
authorWiki: 'https://en.wikipedia.org/wiki/Eric_S._Raymond'
943+
},
944+
{
945+
text: 'Programming languages, like pizza, come in only two sizes: too big and too small',
946+
authorName: 'Eric S. Raymond',
947+
authorDescription: 'Software Developer',
948+
authorWiki: 'https://en.wikipedia.org/wiki/Eric_S._Raymond'
949+
},
950+
{
951+
text: 'Computer Science is no more about computers than astronomy is about telescopes',
952+
authorName: 'Richard E. Pattis',
953+
authorDescription: 'Computer Scientist',
954+
authorWiki: 'https://en.wikipedia.org/wiki/Richard_E._Pattis'
955+
},
956+
{
957+
text: 'Languages that try to disallow idiocy become themselves idiotic',
958+
authorName: 'Rob Pike',
959+
authorDescription: 'Computer Scientist',
960+
authorWiki: 'https://en.wikipedia.org/wiki/Rob_Pike'
961+
},
962+
{
963+
text: 'Perl: The only language that looks the same before and after RSA encryption',
964+
authorName: 'Keith Bostic',
965+
authorDescription: 'Software Developer',
966+
authorWiki: 'https://en.wikipedia.org/wiki/Keith_Bostic_(software_engineer)'
857967
}
858968
]
859969

0 commit comments

Comments
 (0)