Skip to content

Commit cca06a7

Browse files
committed
Added more quotes
1 parent 5f13cf3 commit cca06a7

File tree

1 file changed

+166
-4
lines changed

1 file changed

+166
-4
lines changed

src/quotes.ts

Lines changed: 166 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export type AuthorDescription =
1212
'Military Officer' |
1313
'Physicist' |
1414
'Scientist' |
15-
'Software developer'
15+
'Software Developer'
1616

1717
export interface RawQuote {
1818
text: string
@@ -170,7 +170,7 @@ const quotes: RawQuote[] = [
170170
{
171171
text: 'Software is like sex: It\'s better when it\'s free',
172172
authorName: 'Linus Torvalds',
173-
authorDescription: 'Software developer',
173+
authorDescription: 'Software Developer',
174174
authorWiki: 'https://en.wikipedia.org/wiki/Linus_Torvalds'
175175
},
176176
{
@@ -199,7 +199,7 @@ const quotes: RawQuote[] = [
199199
{
200200
text: 'The function of good software is to make the complex appear to be simple',
201201
authorName: 'Grady Booch',
202-
authorDescription: 'Software developer',
202+
authorDescription: 'Software Developer',
203203
authorWiki: 'https://en.wikipedia.org/wiki/Grady_Booch'
204204
},
205205
{
@@ -217,7 +217,7 @@ const quotes: RawQuote[] = [
217217
{
218218
text: 'To iterate is human, to recurse divine',
219219
authorName: 'L. Peter Deutsch',
220-
authorDescription: 'Software developer',
220+
authorDescription: 'Software Developer',
221221
authorWiki: 'https://en.wikipedia.org/wiki/L._Peter_Deutsch'
222222
},
223223
{
@@ -357,6 +357,168 @@ const quotes: RawQuote[] = [
357357
authorName: 'John Brunner',
358358
authorDescription: 'Author',
359359
authorWiki: 'https://en.wikipedia.org/wiki/John_Brunner'
360+
},
361+
{
362+
text: 'Technology is best when it brings people together',
363+
authorName: 'Matt Mullenweg',
364+
authorDescription: 'Entrepreneur',
365+
authorWiki: 'https://en.wikipedia.org/wiki/Matt_Mullenweg'
366+
},
367+
{
368+
text: 'The Web as I envisaged it, we have not seen it yet. The future is still so much bigger than the past',
369+
authorName: 'Tim Berners-Lee',
370+
authorDescription: 'Computer Scientist',
371+
authorWiki: 'https://en.wikipedia.org/wiki/Tim_Berners-Lee'
372+
},
373+
{
374+
text: 'It\'s not a faith in technology. It\'s faith in people',
375+
authorName: 'Steve Jobs',
376+
authorDescription: 'Entrepreneur',
377+
authorWiki: 'https://en.wikipedia.org/wiki/Steve_Jobs'
378+
},
379+
{
380+
text: 'Technology is a useful servant but a dangerous master',
381+
authorName: 'Christian Lous Lange',
382+
authorDescription: 'Historian',
383+
authorWiki: 'https://en.wikipedia.org/wiki/Christian_Lous_Lange'
384+
},
385+
{
386+
text: 'Programming is the art of algorithm design and the craft of debugging errant code',
387+
authorName: 'Ellen Ullman',
388+
authorDescription: 'Computer Scientist',
389+
authorWiki: 'https://en.wikipedia.org/wiki/Ellen_Ullman'
390+
},
391+
{
392+
text: 'If we want users to like our software, we should design it to behave like a likable person',
393+
authorName: 'Alan Cooper',
394+
authorDescription: 'Software Developer',
395+
authorWiki: 'https://en.wikipedia.org/wiki/Alan_Cooper'
396+
},
397+
{
398+
text: 'Everybody should learn to program a computer because it teaches you how to think',
399+
authorName: 'Steve Jobs',
400+
authorDescription: 'Entrepreneur',
401+
authorWiki: 'https://en.wikipedia.org/wiki/Steve_Jobs'
402+
},
403+
{
404+
text: 'Software and cathedrals are much the same — first we build them, then we pray',
405+
authorName: 'Sam Redwine',
406+
authorDescription: 'Computer Scientist'
407+
},
408+
{
409+
text: 'Most good programmers do programming not because they expect to get paid or get adulation by the public, but because it is fun to program',
410+
authorName: 'Linus Torvalds',
411+
authorDescription: 'Software Developer',
412+
authorWiki: 'https://en.wikipedia.org/wiki/Linus_Torvalds'
413+
},
414+
{
415+
text: 'You might not think that programmers are artists, but programming is an extremely creative profession. It’s logic-based creativity',
416+
authorName: 'John Romero',
417+
authorDescription: 'Software Developer',
418+
authorWiki: 'https://en.wikipedia.org/wiki/John_Romero'
419+
},
420+
{
421+
text: 'Programming is learned by writing programs',
422+
authorName: 'Brian Kernighan',
423+
authorDescription: 'Computer Scientist',
424+
authorWiki: 'https://en.wikipedia.org/wiki/Brian_Kernighan'
425+
},
426+
{
427+
text: 'The most important property of a program is whether it accomplishes the intention of its user',
428+
authorName: 'C.A.R. Hoare',
429+
authorDescription: 'Computer Scientist',
430+
authorWiki: 'https://en.wikipedia.org/wiki/C._A._R._Hoare'
431+
},
432+
{
433+
text: 'The best error message is the one that never shows up',
434+
authorName: 'Thomas Fuchs',
435+
authorDescription: 'Software Developer'
436+
},
437+
{
438+
text: 'There is always one more bug to fix',
439+
authorName: 'Ellen Ullman',
440+
authorDescription: 'Computer Scientist',
441+
authorWiki: 'https://en.wikipedia.org/wiki/Ellen_Ullman'
442+
},
443+
{
444+
text: 'Sometimes it pays to stay in bed on Monday, rather than spending the rest of the week debugging Monday\'s code',
445+
authorName: 'Dan Salomon',
446+
authorDescription: 'Software Developer'
447+
},
448+
{
449+
text: 'If, at first, you do not succeed, call it version 1.0',
450+
authorName: 'Khayri R.R. Woulfe',
451+
authorDescription: 'Author'
452+
},
453+
{
454+
text: 'The best performance improvement is the transition from the nonworking state to the working state',
455+
authorName: 'J. Osterhout',
456+
authorDescription: 'Computer Scientist',
457+
authorWiki: 'https://en.wikipedia.org/wiki/John_Ousterhout'
458+
},
459+
{
460+
text: 'The most important single aspect of software development is to be clear about what you are trying to build',
461+
authorName: 'Bjarne Stroustrup',
462+
authorDescription: 'Computer Scientist',
463+
authorWiki: 'https://en.wikipedia.org/wiki/Bjarne_Stroustrup'
464+
},
465+
{
466+
text: 'Perfection is achieved not when there is nothing more to add, but rather when there is nothing more to take away.',
467+
authorName: 'Antoine de Saint-Exupery',
468+
authorDescription: 'Author',
469+
authorWiki: 'https://en.wikipedia.org/wiki/Antoine_de_Saint-Exup%C3%A9ry'
470+
},
471+
{
472+
text: 'When to use iterative development? You should use iterative development only on projects that you want to succeed',
473+
authorName: 'Martin Fowler',
474+
authorDescription: 'Software Developer',
475+
authorWiki: 'https://en.wikipedia.org/wiki/Martin_Fowler_(software_engineer)'
476+
},
477+
{
478+
text: 'The best way to predict the future is to invent it',
479+
authorName: 'Alan Kay',
480+
authorDescription: 'Computer Scientist',
481+
authorWiki: 'https://en.wikipedia.org/wiki/Alan_Kay'
482+
},
483+
{
484+
text: 'The most disastrous thing that you can ever learn is your first programming language',
485+
authorName: 'Alan Kay',
486+
authorDescription: 'Computer Scientist',
487+
authorWiki: 'https://en.wikipedia.org/wiki/Alan_Kay'
488+
},
489+
{
490+
text: 'Make it work, make it right, make it fast',
491+
authorName: 'Kent Beck',
492+
authorDescription: 'Software Developer',
493+
authorWiki: 'https://en.wikipedia.org/wiki/Kent_Beck'
494+
},
495+
{
496+
text: 'Java is to JavaScript what car is to Carpet',
497+
authorName: 'Chris Heilmann',
498+
authorDescription: 'Software Developer'
499+
},
500+
{
501+
text: 'Experience is the name everyone gives to their mistakes',
502+
authorName: 'Oscar Wilde',
503+
authorDescription: 'Author',
504+
authorWiki: 'https://en.wikipedia.org/wiki/Oscar_Wilde'
505+
},
506+
{
507+
text: 'First, solve the problem. Then, write the code',
508+
authorName: 'John Johnson',
509+
authorDescription: 'Software Developer'
510+
},
511+
{
512+
text: 'Optimism is an occupational hazard of programming: feedback is the treatment',
513+
authorName: 'Kent Beck',
514+
authorDescription: 'Software Developer',
515+
authorWiki: 'https://en.wikipedia.org/wiki/Kent_Beck'
516+
},
517+
{
518+
text: 'Simple things should be simple, complex things should be POSSIBLE',
519+
authorName: 'Alan Kay',
520+
authorDescription: 'Computer Scientist',
521+
authorWiki: 'https://en.wikipedia.org/wiki/Alan_Kay'
360522
}
361523
]
362524

0 commit comments

Comments
 (0)