Skip to content

Commit ae554cf

Browse files
committed
Added 47 new quotes
1 parent 546d951 commit ae554cf

File tree

1 file changed

+277
-0
lines changed

1 file changed

+277
-0
lines changed

src/quotes.ts

Lines changed: 277 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,10 @@ export type AuthorDescription =
55
'Computer Scientist' |
66
'Director' |
77
'Entrepreneur' |
8+
'Hacker' |
89
'Historian' |
910
'Inventor' |
11+
'Linguist' |
1012
'Journalist' |
1113
'Mathematician' |
1214
'Military Officer' |
@@ -577,6 +579,281 @@ const quotes: RawQuote[] = [
577579
text: 'Debugging is like being the detective in a crime movie where you are also the murderer',
578580
authorName: 'Filipe Fortes',
579581
authorDescription: 'Software Developer'
582+
},
583+
{
584+
text: 'Computing is kind of a mess. Your computer doesn\'t know where you are. It doesn\'t know what you\'re doing. It doesn\'t know what you know',
585+
authorName: 'Larry Page',
586+
authorDescription: 'Computer Scientist',
587+
authorWiki: 'https://en.wikipedia.org/wiki/Larry_Page'
588+
},
589+
{
590+
text: 'JavaScript is the world\'s most misunderstood programming language',
591+
authorName: 'Douglas Crockford',
592+
authorDescription: 'Software Developer',
593+
authorWiki: 'https://en.wikipedia.org/wiki/Douglas_Crockford'
594+
},
595+
{
596+
text: 'The cleaner and nicer the program, the faster it\'s going to run. And if it doesn\'t, it\'ll be easy to make it fast',
597+
authorName: 'Joshua Bloch',
598+
authorDescription: 'Software Developer',
599+
authorWiki: 'https://en.wikipedia.org/wiki/Joshua_Bloch'
600+
},
601+
{
602+
text: 'Often, the most striking and innovative solutions come from realizing that your concept of the problem was wrong',
603+
authorName: 'Eric S. Raymond',
604+
authorDescription: 'Software Developer',
605+
authorWiki: 'https://en.wikipedia.org/wiki/Eric_S._Raymond'
606+
},
607+
{
608+
text: 'It is often easier to ask for forgiveness than to ask for permission',
609+
authorName: 'Grace Hopper',
610+
authorDescription: 'Computer Scientist',
611+
authorWiki: 'https://en.wikipedia.org/wiki/Grace_Hopper'
612+
},
613+
{
614+
text: 'You can divide our industry into two kinds of people: those who want to go work for a company to make it successful, and those who want to go work for a successful company',
615+
authorName: 'Jamie Zawinski',
616+
authorDescription: 'Software Developer',
617+
authorWiki: 'https://en.wikipedia.org/wiki/Jamie_Zawinski'
618+
},
619+
{
620+
text: 'A language that doesn\'t affect the way you think about programming is not worth knowing',
621+
authorName: 'Alan Perlis',
622+
authorDescription: 'Software Developer',
623+
authorWiki: 'https://en.wikipedia.org/wiki/Alan_Perlis'
624+
},
625+
{
626+
text: 'In the practical world of computing, it is rather uncommon that a program, once it performs correctly and satisfactorily, remains unchanged forever',
627+
authorName: 'Niklaus Wirth',
628+
authorDescription: 'Software Developer',
629+
authorWiki: 'https://en.wikipedia.org/wiki/Niklaus_Wirth'
630+
},
631+
{
632+
text: 'Much of my work has come from being lazy',
633+
authorName: 'John Backus',
634+
authorDescription: 'Computer Scientist',
635+
authorWiki: 'https://en.wikipedia.org/wiki/John_Backus'
636+
},
637+
{
638+
text: 'For much of the Internet, the shortest path between two points doesn\'t exist',
639+
authorName: 'Kevin Poulsen',
640+
authorDescription: 'Hacker',
641+
authorWiki: 'https://en.wikipedia.org/wiki/Kevin_Poulsen'
642+
},
643+
{
644+
text: 'Creativity comes from applying things you learn in other fields to the field you work in',
645+
authorName: 'Aaron Swartz',
646+
authorDescription: 'Software Developer',
647+
authorWiki: 'https://en.wikipedia.org/wiki/Aaron_Swartz'
648+
},
649+
{
650+
text: 'In JavaScript, there is a beautiful, elegant, highly expressive language that is buried under a steaming pile of good intentions and blunders',
651+
authorName: 'Douglas Crockford',
652+
authorDescription: 'Software Developer',
653+
authorWiki: 'https://en.wikipedia.org/wiki/Douglas_Crockford'
654+
},
655+
{
656+
text: 'This is why I loved technology: if you used it right, it could give you power and privacy',
657+
authorName: 'Cory Doctorow',
658+
authorDescription: 'Author',
659+
authorWiki: 'https://en.wikipedia.org/wiki/Cory_Doctorow'
660+
},
661+
{
662+
text: 'Fools ignore complexity. Pragmatists suffer it. Some can avoid it. Geniuses remove it.',
663+
authorName: 'Alan Perlis',
664+
authorDescription: 'Software Developer',
665+
authorWiki: 'https://en.wikipedia.org/wiki/Alan_Perlis'
666+
},
667+
{
668+
text: 'If you can\'t understand the spec for a new technology, don\'t worry: nobody else will understand it either, and the technology won\'t be that important',
669+
authorName: 'Joel Spolsky',
670+
authorDescription: 'Software Developer',
671+
authorWiki: 'https://en.wikipedia.org/wiki/Joel_Spolsky'
672+
},
673+
{
674+
text: 'Just because something is a standard doesn\'t mean it is the right choice for every application. Like XML, for example',
675+
authorName: 'Douglas Crockford',
676+
authorDescription: 'Software Developer',
677+
authorWiki: 'https://en.wikipedia.org/wiki/Douglas_Crockford'
678+
},
679+
{
680+
text: 'To solve an interesting problem, start by finding a problem that is interesting to you',
681+
authorName: 'Eric S. Raymond',
682+
authorDescription: 'Software Developer',
683+
authorWiki: 'https://en.wikipedia.org/wiki/Eric_S._Raymond'
684+
},
685+
{
686+
text: 'If you\'re not doing some things that are crazy, then you\'re doing the wrong things',
687+
authorName: 'Larry Page',
688+
authorDescription: 'Computer Scientist',
689+
authorWiki: 'https://en.wikipedia.org/wiki/Larry_Page'
690+
},
691+
{
692+
text: 'We have to stop optimizing for programmers and start optimizing for users',
693+
authorName: 'Jeff Atwood',
694+
authorDescription: 'Software Developer',
695+
authorWiki: 'https://en.wikipedia.org/wiki/Jeff_Atwood'
696+
},
697+
{
698+
text: 'Prolific programmers contribute to certain disaster',
699+
authorName: 'Niklaus Wirth',
700+
authorDescription: 'Software Developer',
701+
authorWiki: 'https://en.wikipedia.org/wiki/Niklaus_Wirth'
702+
},
703+
{
704+
text: 'Any application that can be written in JavaScript, will eventually be written in JavaScript',
705+
authorName: 'Jeff Atwood',
706+
authorDescription: 'Software Developer',
707+
authorWiki: 'https://en.wikipedia.org/wiki/Jeff_Atwood'
708+
},
709+
{
710+
text: 'Software is getting slower more rapidly than hardware becomes faster',
711+
authorName: 'Niklaus Wirth',
712+
authorDescription: 'Software Developer',
713+
authorWiki: 'https://en.wikipedia.org/wiki/Niklaus_Wirth'
714+
},
715+
{
716+
text: 'Unix was not designed to stop you from doing stupid things, because that would also stop you from doing clever things',
717+
authorName: 'Douglas Gwyn',
718+
authorDescription: 'Software Developer'
719+
},
720+
{
721+
text: 'The most damaging phrase in the language is: "It\'s always been done that way"',
722+
authorName: 'Grace Hopper',
723+
authorDescription: 'Computer Scientist',
724+
authorWiki: 'https://en.wikipedia.org/wiki/Grace_Hopper'
725+
},
726+
{
727+
text: 'Peers can be the best teachers, because they\'re the ones that remember what it\'s like to not understand',
728+
authorName: 'Peter Norvig',
729+
authorDescription: 'Computer Scientist',
730+
authorWiki: 'https://en.wikipedia.org/wiki/Peter_Norvig'
731+
},
732+
{
733+
text: 'From then on, when anything went wrong with a computer, we said it had bugs in it',
734+
authorName: 'Grace Hopper',
735+
authorDescription: 'Computer Scientist',
736+
authorWiki: 'https://en.wikipedia.org/wiki/Grace_Hopper'
737+
},
738+
{
739+
text: 'Many people tend to look at programming styles and languages like religions: if you belong to one, you cannot belong to others. But this analogy is another fallacy',
740+
authorName: 'Niklaus Wirth',
741+
authorDescription: 'Software Developer',
742+
authorWiki: 'https://en.wikipedia.org/wiki/Niklaus_Wirth'
743+
},
744+
{
745+
text: 'It is hard to write even the smallest piece of code correctly',
746+
authorName: 'Joshua Bloch',
747+
authorDescription: 'Software Developer',
748+
authorWiki: 'https://en.wikipedia.org/wiki/Joshua_Bloch'
749+
},
750+
{
751+
text: 'It isn\'t enough to think outside the box. Thinking is passive. Get used to acting outside the box',
752+
authorName: 'Tim Ferriss',
753+
authorDescription: 'Author',
754+
authorWiki: 'https://en.wikipedia.org/wiki/Tim_Ferriss'
755+
},
756+
{
757+
text: 'Once you get to naming your laptop, you know that you\'re really having a deep relationship with it',
758+
authorName: 'Cory Doctorow',
759+
authorDescription: 'Author',
760+
authorWiki: 'https://en.wikipedia.org/wiki/Cory_Doctorow'
761+
},
762+
{
763+
text: 'Common programmer thought pattern: there are only three numbers: 0, 1, and n',
764+
authorName: 'Joel Spolsky',
765+
authorDescription: 'Software Developer',
766+
authorWiki: 'https://en.wikipedia.org/wiki/Joel_Spolsky'
767+
},
768+
{
769+
text: 'There\'s a good part of Computer Science that\'s like magic. Unfortunately there\'s a bad part of Computer Science that\'s like religion',
770+
authorName: 'Hal Abelson',
771+
authorDescription: 'Computer Scientist',
772+
authorWiki: 'https://en.wikipedia.org/wiki/Hal_Abelson'
773+
},
774+
{
775+
text: 'Smart data structures and dumb code works a lot better than the other way around',
776+
authorName: 'Eric S. Raymond',
777+
authorDescription: 'Software Developer',
778+
authorWiki: 'https://en.wikipedia.org/wiki/Eric_S._Raymond'
779+
},
780+
{
781+
text: 'No computer is ever going to ask a new, reasonable question. It takes trained people to do that',
782+
authorName: 'Grace Hopper',
783+
authorDescription: 'Computer Scientist',
784+
authorWiki: 'https://en.wikipedia.org/wiki/Grace_Hopper'
785+
},
786+
{
787+
text: 'Start out by making 100 users really happy, rather than a lot more users only a little happy',
788+
authorName: 'Paul Buchheit',
789+
authorDescription: 'Software Developer',
790+
authorWiki: 'https://en.wikipedia.org/wiki/Paul_Buchheit'
791+
},
792+
{
793+
text: 'What is the most important thing you could be working on in the world right now? ... And if you\'re not working on that, why aren\'t you?',
794+
authorName: 'Aaron Swartz',
795+
authorDescription: 'Software Developer',
796+
authorWiki: 'https://en.wikipedia.org/wiki/Aaron_Swartz'
797+
},
798+
{
799+
text: 'Teaching peers is one of the best ways to develop mastery',
800+
authorName: 'Jeff Atwood',
801+
authorDescription: 'Software Developer',
802+
authorWiki: 'https://en.wikipedia.org/wiki/Jeff_Atwood'
803+
},
804+
{
805+
text: 'No one should do a job he can do in his sleep',
806+
authorName: 'Cory Doctorow',
807+
authorDescription: 'Author',
808+
authorWiki: 'https://en.wikipedia.org/wiki/Cory_Doctorow'
809+
},
810+
{
811+
text: 'Nobody is going to pour truth into your brain. It\'s something you have to find out for yourself',
812+
authorName: 'Noam Chomsky',
813+
authorDescription: 'Linguist',
814+
authorWiki: 'https://en.wikipedia.org/wiki/Noam_Chomsky'
815+
},
816+
{
817+
text: 'The computer revolution is a revolution in the way we think and in the way we express what we think',
818+
authorName: 'Hal Abelson',
819+
authorDescription: 'Computer Scientist',
820+
authorWiki: 'https://en.wikipedia.org/wiki/Hal_Abelson'
821+
},
822+
{
823+
text: 'When you choose a language, you\'re choosing more than a set of technical trade-offs, you\'re choosing a community',
824+
authorName: 'Joshua Bloch',
825+
authorDescription: 'Software Developer',
826+
authorWiki: 'https://en.wikipedia.org/wiki/Joshua_Bloch'
827+
},
828+
{
829+
text: 'JavaScript is the only language that I\'m aware of that people feel they don\'t need to learn before they start using it',
830+
authorName: 'Douglas Crockford',
831+
authorDescription: 'Software Developer',
832+
authorWiki: 'https://en.wikipedia.org/wiki/Douglas_Crockford'
833+
},
834+
{
835+
text: 'Almost everyone who has had an idea that\'s somewhat revolutionary or wildly successful was first told they\'re insane',
836+
authorName: 'Larry Page',
837+
authorDescription: 'Computer Scientist',
838+
authorWiki: 'https://en.wikipedia.org/wiki/Larry_Page'
839+
},
840+
{
841+
text: 'One can steal ideas, but no one can steal execution or passion',
842+
authorName: 'Tim Ferriss',
843+
authorDescription: 'Author',
844+
authorWiki: 'https://en.wikipedia.org/wiki/Tim_Ferriss'
845+
},
846+
{
847+
text: 'If everything you do works, then you\'re not taking many risks and probably aren\'t innovating either',
848+
authorName: 'Paul Buchheit',
849+
authorDescription: 'Software Developer',
850+
authorWiki: 'https://en.wikipedia.org/wiki/Paul_Buchheit'
851+
},
852+
{
853+
text: 'It turns out the Internet is this amazing resource for everyone who has access to it',
854+
authorName: 'Alexis Ohanian',
855+
authorDescription: 'Entrepreneur',
856+
authorWiki: 'https://en.wikipedia.org/wiki/Alexis_Ohanian'
580857
}
581858
]
582859

0 commit comments

Comments
 (0)