From f554f769be4d06efb632828938bfe5fc214d0c42 Mon Sep 17 00:00:00 2001 From: Daniel Fulop Date: Wed, 8 Oct 2014 17:01:25 -0700 Subject: [PATCH 01/95] Added Darwin quote about Catasetum pollinarium expulsion. --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d21500c..ccb7a75 100644 --- a/README.md +++ b/README.md @@ -34,4 +34,10 @@ John Keats > Live as if you were to die tomorrow. Learn as if you were to live forever. -Mahatma Gandhi \ No newline at end of file +Mahatma Gandhi + +--- + +> I carefully described to Huxley the shooting of the pollinia in Catasetum, and received for an answer, 'Do you really think I can believe all that? + +Charles Darwin \ No newline at end of file From ea13397b7773b4975eab2787f275508b78940f09 Mon Sep 17 00:00:00 2001 From: Tiffany Ho Date: Wed, 8 Oct 2014 17:15:52 -0700 Subject: [PATCH 02/95] added a quote --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ccb7a75..83dd981 100644 --- a/README.md +++ b/README.md @@ -40,4 +40,10 @@ Mahatma Gandhi > I carefully described to Huxley the shooting of the pollinia in Catasetum, and received for an answer, 'Do you really think I can believe all that? -Charles Darwin \ No newline at end of file +Charles Darwin + +--- + +> If government were a product, selling it would be illegal. + +P. J. O'Rourke From 569e79847b5e271dd1f47caff0549ae3cf8f73fb Mon Sep 17 00:00:00 2001 From: Mike Covington Date: Wed, 8 Oct 2014 17:18:26 -0700 Subject: [PATCH 03/95] Add Julin's quote --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ccb7a75..faadecc 100644 --- a/README.md +++ b/README.md @@ -40,4 +40,10 @@ Mahatma Gandhi > I carefully described to Huxley the shooting of the pollinia in Catasetum, and received for an answer, 'Do you really think I can believe all that? -Charles Darwin \ No newline at end of file +Charles Darwin + +--- + +> I like the quote thing. Are people updating the quotes? + +Julin Maloof From 816270b21840abb28098a4a5fe46ee3ed90c1c5d Mon Sep 17 00:00:00 2001 From: Kaisa Kajala Date: Wed, 8 Oct 2014 17:20:09 -0700 Subject: [PATCH 04/95] preliminary testing of git --- ColourMap.R | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 ColourMap.R diff --git a/ColourMap.R b/ColourMap.R new file mode 100644 index 0000000..11e1205 --- /dev/null +++ b/ColourMap.R @@ -0,0 +1,35 @@ +#script to identify colors +#julin maloof Oct 27, 2010 + +console=T #should colors be printed to the console? +plotText=T #should color names be printed onto the graph? + +#need to convert named colors to hex representaion +colorhex <- rgb(t(col2rgb(colors())),max=255) + +#create a matrix of colornames. This will have the same dimensions as the plot +colorNames <- matrix(colors(),ncol=25) + +#adjust graphic parameters to reduce margin size. Store original parameters in op +op <- par(mar=c(2,2,4,2)) + +#plot an image of all named colors +image(x=0:27,y=0:25,z=matrix(1:length(colorhex),ncol=25), + col=colorhex,ylab="",xlab="",xaxt="n",yaxt="n", + main="Click a color to find its name\n Click in the margin to finish") + +#repeatedly check for mouse click and report color +repeat { + location <- locator(n=1) #get mouse click location + + if (location$x < 0 | #check to see if outide plot area + location$x > 27 | + location$y < 0 | + location$y > 25) break #if outside plot area then quit + + if (console) print(colorNames[ceiling(location$x),ceiling(location$y)]) + + if (plotText) text(location,labels=colorNames[ceiling(location$x),ceiling(location$y)],cex=.75) +} + +par(op) # restore graphic parameters \ No newline at end of file From b79c25c8fdac5a0bdefa6f5d81ac4078d779a2de Mon Sep 17 00:00:00 2001 From: Daniel Fulop Date: Wed, 8 Oct 2014 17:21:44 -0700 Subject: [PATCH 05/95] Added 2 more quotes --- README.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ccb7a75..f21bc24 100644 --- a/README.md +++ b/README.md @@ -40,4 +40,18 @@ Mahatma Gandhi > I carefully described to Huxley the shooting of the pollinia in Catasetum, and received for an answer, 'Do you really think I can believe all that? -Charles Darwin \ No newline at end of file +Charles Darwin + +--- + +> Why should you call me to account for eating decently? + +George Bernard Shaw + +--- + +> Just when I discovered the meaning of life, they changed it. + +George Carlin + +--- From c3bdbc61d0b70a15ae1ea0ddfc6352cffd146606 Mon Sep 17 00:00:00 2001 From: Kaisa Kajala Date: Wed, 8 Oct 2014 17:22:28 -0700 Subject: [PATCH 06/95] Removed colour map --- ColourMap.R | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 ColourMap.R diff --git a/ColourMap.R b/ColourMap.R deleted file mode 100644 index 11e1205..0000000 --- a/ColourMap.R +++ /dev/null @@ -1,35 +0,0 @@ -#script to identify colors -#julin maloof Oct 27, 2010 - -console=T #should colors be printed to the console? -plotText=T #should color names be printed onto the graph? - -#need to convert named colors to hex representaion -colorhex <- rgb(t(col2rgb(colors())),max=255) - -#create a matrix of colornames. This will have the same dimensions as the plot -colorNames <- matrix(colors(),ncol=25) - -#adjust graphic parameters to reduce margin size. Store original parameters in op -op <- par(mar=c(2,2,4,2)) - -#plot an image of all named colors -image(x=0:27,y=0:25,z=matrix(1:length(colorhex),ncol=25), - col=colorhex,ylab="",xlab="",xaxt="n",yaxt="n", - main="Click a color to find its name\n Click in the margin to finish") - -#repeatedly check for mouse click and report color -repeat { - location <- locator(n=1) #get mouse click location - - if (location$x < 0 | #check to see if outide plot area - location$x > 27 | - location$y < 0 | - location$y > 25) break #if outside plot area then quit - - if (console) print(colorNames[ceiling(location$x),ceiling(location$y)]) - - if (plotText) text(location,labels=colorNames[ceiling(location$x),ceiling(location$y)],cex=.75) -} - -par(op) # restore graphic parameters \ No newline at end of file From b40efee5a05fbd4aa7c518660d40890e70a62ecb Mon Sep 17 00:00:00 2001 From: sharonbgray Date: Wed, 8 Oct 2014 17:30:52 -0700 Subject: [PATCH 07/95] Create Mark Twain --- Mark Twain | 1 + 1 file changed, 1 insertion(+) create mode 100644 Mark Twain diff --git a/Mark Twain b/Mark Twain new file mode 100644 index 0000000..25cb3b6 --- /dev/null +++ b/Mark Twain @@ -0,0 +1 @@ +I have never let my schooling interfere with my education From bfb79c6e5750a0e6296a37923f860b6b4dc0d864 Mon Sep 17 00:00:00 2001 From: Julin Maloof Date: Wed, 8 Oct 2014 17:43:58 -0700 Subject: [PATCH 08/95] Added EO Wilson quote --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index b96c9fc..eed4514 100644 --- a/README.md +++ b/README.md @@ -53,3 +53,9 @@ P. J. O'Rourke > I like the quote thing. Are people updating the quotes? Julin Maloof + +--- + +> If all mankind were to disappear, the world would regenerate back to the rich state of equilibrium that existed ten thousand years ago. If insects were to vanish, the environment would collapse into chaos. + +E\. O. Wilson \ No newline at end of file From cce62ad0d9c2a7e8136ba378c8b940e6a7b7d0e0 Mon Sep 17 00:00:00 2001 From: Kaisa Kajala Date: Wed, 8 Oct 2014 17:49:36 -0700 Subject: [PATCH 09/95] Added a KK quote --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 735b667..05d2ca4 100644 --- a/README.md +++ b/README.md @@ -65,3 +65,8 @@ P. J. O'Rourke > I like the quote thing. Are people updating the quotes? Julin Maloof +--- + +> I think I finally understand how some of this works! + +Kaisa Kajala \ No newline at end of file From 21447b8c197fc5bb92d11d3a2fb07dd5f7e07ca5 Mon Sep 17 00:00:00 2001 From: Mike Covington Date: Wed, 8 Oct 2014 17:59:09 -0700 Subject: [PATCH 10/95] Delete Mark Twain Sharon cheated --- Mark Twain | 1 - 1 file changed, 1 deletion(-) delete mode 100644 Mark Twain diff --git a/Mark Twain b/Mark Twain deleted file mode 100644 index 25cb3b6..0000000 --- a/Mark Twain +++ /dev/null @@ -1 +0,0 @@ -I have never let my schooling interfere with my education From 7da8151e72dc38295daa39bd266511bc251c8128 Mon Sep 17 00:00:00 2001 From: Kaisa Kajala Date: Wed, 8 Oct 2014 18:01:59 -0700 Subject: [PATCH 11/95] quote --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 05d2ca4..3077792 100644 --- a/README.md +++ b/README.md @@ -67,6 +67,6 @@ P. J. O'Rourke Julin Maloof --- -> I think I finally understand how some of this works! +> I think I finally understand how some of this works! Maybe. Kaisa Kajala \ No newline at end of file From ec8c6a3ba729dc45b79a9fd4271a190ffe6e3e47 Mon Sep 17 00:00:00 2001 From: Cody Markelz Date: Wed, 8 Oct 2014 18:02:20 -0700 Subject: [PATCH 12/95] added Mark Twain quote --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 83dd981..a4b3f28 100644 --- a/README.md +++ b/README.md @@ -47,3 +47,10 @@ Charles Darwin > If government were a product, selling it would be illegal. P. J. O'Rourke + +--- + +> I have never let my schooling interfere with my education + +Mark Twain + From 62477ccbc5aabc094f473a70ea4efbe375f694a1 Mon Sep 17 00:00:00 2001 From: Gina Turco Date: Wed, 8 Oct 2014 18:03:24 -0700 Subject: [PATCH 13/95] gina quote --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d819f57..83582d8 100644 --- a/README.md +++ b/README.md @@ -70,4 +70,11 @@ Julin Maloof > If all mankind were to disappear, the world would regenerate back to the rich state of equilibrium that existed ten thousand years ago. If insects were to vanish, the environment would collapse into chaos. -E\. O. Wilson \ No newline at end of file +E\. O. Wilson + +--- + +> Hello World +Computer + +--- From d63abec016623a89a920a57de072d9dbecd69d71 Mon Sep 17 00:00:00 2001 From: sharonbgray Date: Wed, 8 Oct 2014 18:04:28 -0700 Subject: [PATCH 14/95] Delete Mark Twain --- Mark Twain | 1 - 1 file changed, 1 deletion(-) delete mode 100644 Mark Twain diff --git a/Mark Twain b/Mark Twain deleted file mode 100644 index 25cb3b6..0000000 --- a/Mark Twain +++ /dev/null @@ -1 +0,0 @@ -I have never let my schooling interfere with my education From 3e82763faed1b6755ae2c96d2af7c5f8360e68e4 Mon Sep 17 00:00:00 2001 From: Kaisa Kajala Date: Wed, 8 Oct 2014 18:05:12 -0700 Subject: [PATCH 15/95] modified quote --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 3077792..94f2f2a 100644 --- a/README.md +++ b/README.md @@ -65,6 +65,7 @@ P. J. O'Rourke > I like the quote thing. Are people updating the quotes? Julin Maloof + --- > I think I finally understand how some of this works! Maybe. From 894be15ee736420ecefc14542f8b83b155d2b3d0 Mon Sep 17 00:00:00 2001 From: Mike Covington Date: Wed, 8 Oct 2014 18:05:54 -0700 Subject: [PATCH 16/95] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 83582d8..e8e56f9 100644 --- a/README.md +++ b/README.md @@ -75,6 +75,7 @@ E\. O. Wilson --- > Hello World + Computer --- From d18c6b2d61f43c38ed6ee7d40d0dd4aa2718bcf7 Mon Sep 17 00:00:00 2001 From: Greg Smaldone Date: Wed, 8 Oct 2014 18:20:37 -0700 Subject: [PATCH 17/95] Added einstein quote --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 92a82d5..141dec0 100644 --- a/README.md +++ b/README.md @@ -84,6 +84,15 @@ Computer Mark Twain +--- + > I think I finally understand how some of this works! Maybe. Kaisa Kajala + +--- + +> I thought of that while riding my bicycle. + +Albert Einstein on the theory of relativity + From 1a8ee36ee3eb84d7e83f051b61e958d8df7216ae Mon Sep 17 00:00:00 2001 From: Greg Smaldone Date: Thu, 9 Oct 2014 10:24:14 -0700 Subject: [PATCH 18/95] Feynman Quote, practice from home... --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 141dec0..463d4a7 100644 --- a/README.md +++ b/README.md @@ -96,3 +96,8 @@ Kaisa Kajala Albert Einstein on the theory of relativity +--- + +> Hell, if I could explain it to the average person, it wouldn't have been worth the Nobel prize. + +Richard Feynman From 8e7e664a4f68e117848b5da0a7aa589c9098d4db Mon Sep 17 00:00:00 2001 From: Greg Smaldone Date: Thu, 9 Oct 2014 11:05:49 -0700 Subject: [PATCH 19/95] Added break line --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 463d4a7..67ec07d 100644 --- a/README.md +++ b/README.md @@ -101,3 +101,6 @@ Albert Einstein on the theory of relativity > Hell, if I could explain it to the average person, it wouldn't have been worth the Nobel prize. Richard Feynman + +--- + From f6b3911e1fe3357bc3619edfe839d7f82c78d5c7 Mon Sep 17 00:00:00 2001 From: PeterEtchells Date: Wed, 15 Oct 2014 13:03:30 -0700 Subject: [PATCH 20/95] Add orwell quote --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 67ec07d..4beb29c 100644 --- a/README.md +++ b/README.md @@ -104,3 +104,8 @@ Richard Feynman --- +> When I see an actual flesh-and-blood worker in conflict with his natural enemy, the policeman, I do not have to ask myself which side I am on. + +George Orwell, Homage to Catalonia + +--- \ No newline at end of file From 8178e0ffc53487227d79cbd6190603a40bc97459 Mon Sep 17 00:00:00 2001 From: James Ta Date: Wed, 15 Oct 2014 16:24:57 -0700 Subject: [PATCH 21/95] Quote. --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 4beb29c..0afdccc 100644 --- a/README.md +++ b/README.md @@ -108,4 +108,10 @@ Richard Feynman George Orwell, Homage to Catalonia +--- + +> Music is the shorthand of emotion. + +Leo Tolstoy + --- \ No newline at end of file From 46c91684bea8773697771f6a329f4a3fbb7666de Mon Sep 17 00:00:00 2001 From: bulksoil Date: Wed, 22 Oct 2014 15:51:31 -0700 Subject: [PATCH 22/95] Hagrid's Contribution --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0afdccc..1a09bcd 100644 --- a/README.md +++ b/README.md @@ -114,4 +114,10 @@ George Orwell, Homage to Catalonia Leo Tolstoy ---- \ No newline at end of file +--- + +> Yer a wizard 'arry + +Hagrid + +--- From c2260a735e2be4f4f19b01fc6af1bdcc2e81a3a6 Mon Sep 17 00:00:00 2001 From: Victor Missirian Date: Tue, 28 Oct 2014 10:45:45 -0700 Subject: [PATCH 23/95] added quote by Neil Gaiman --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 1a09bcd..31dedcc 100644 --- a/README.md +++ b/README.md @@ -121,3 +121,9 @@ Leo Tolstoy Hagrid --- + +> Fairy tales are more than true: not because they tell us that dragons exist, but because they tell us that dragons can be beaten. + +Neil Gaiman, Coraline + +--- From 3fb881c76bc540fc392ed554ac2e45c4de3c88e8 Mon Sep 17 00:00:00 2001 From: Ciera Martinez Date: Mon, 25 May 2015 12:44:56 -0700 Subject: [PATCH 24/95] Updated the about section. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 31dedcc..f4f5079 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ##About -This is a collection of favorite quotes from member of the infamous Coding Collective. Add as many as you like. +This is a collection of favorite quotes from members of the infamous Coding Collective. This repository is built for anyone to practice collaborating using git. Add as many quotes as you like! ##Add From cd36c1a3035cc12e15fe6380cd902a5d51cd053f Mon Sep 17 00:00:00 2001 From: rthacku1 Date: Tue, 2 Jun 2015 14:36:05 +0000 Subject: [PATCH 25/95] Added Emily Dickinson quote --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f4f5079..c42ad09 100644 --- a/README.md +++ b/README.md @@ -10,11 +10,11 @@ To add to the list of quotes: 1. Fork repository to your personal Github repository. 2. Add your quote either directly on Github or clone to your computer and make changes -3. Create Pull Request. +3. Create Pull Request. ##The Quotes -> Something unknown is doing we don't know what - that is what our knowledge amounts to. +> Something unknown is doing we don't know what - that is what our knowledge amounts to. Sir Arthur Eddington, 1927 @@ -127,3 +127,7 @@ Hagrid Neil Gaiman, Coraline --- + +> Crumbling is not an Instant's act. + +Emily Dickinson From 3209a4e7ca1c5f9e6254c1b451351657f78dc508 Mon Sep 17 00:00:00 2001 From: nsvitek Date: Tue, 2 Jun 2015 11:10:48 -0400 Subject: [PATCH 26/95] add Pasternak quote --- README.bak | 133 +++++++++++++++++++++++++++++++++++++++++++++++++++++ README.md | 8 ++++ 2 files changed, 141 insertions(+) create mode 100644 README.bak diff --git a/README.bak b/README.bak new file mode 100644 index 0000000..c42ad09 --- /dev/null +++ b/README.bak @@ -0,0 +1,133 @@ +#Curated Quote List + +##About + +This is a collection of favorite quotes from members of the infamous Coding Collective. This repository is built for anyone to practice collaborating using git. Add as many quotes as you like! + +##Add + +To add to the list of quotes: + +1. Fork repository to your personal Github repository. +2. Add your quote either directly on Github or clone to your computer and make changes +3. Create Pull Request. + +##The Quotes + +> Something unknown is doing we don't know what - that is what our knowledge amounts to. + +Sir Arthur Eddington, 1927 + +--- + +> ..from so simple beginning endless forms most beautiful and most wonderful have been, and are being, evolved. + +Charles Darwin + +--- + +> A thing of beauty is a joy for ever. + +John Keats + +--- + +> Live as if you were to die tomorrow. Learn as if you were to live forever. + +Mahatma Gandhi + +--- + +> I carefully described to Huxley the shooting of the pollinia in Catasetum, and received for an answer, 'Do you really think I can believe all that? + +Charles Darwin + +--- + +> Why should you call me to account for eating decently? + +George Bernard Shaw + +--- + +> Just when I discovered the meaning of life, they changed it. + +George Carlin + +--- + +> If government were a product, selling it would be illegal. + +P. J. O'Rourke + +--- + +> I like the quote thing. Are people updating the quotes? + +Julin Maloof + +--- + +> If all mankind were to disappear, the world would regenerate back to the rich state of equilibrium that existed ten thousand years ago. If insects were to vanish, the environment would collapse into chaos. + +E\. O. Wilson + +--- + +> Hello World + +Computer + +--- + +> I have never let my schooling interfere with my education + +Mark Twain + +--- + +> I think I finally understand how some of this works! Maybe. + +Kaisa Kajala + +--- + +> I thought of that while riding my bicycle. + +Albert Einstein on the theory of relativity + +--- + +> Hell, if I could explain it to the average person, it wouldn't have been worth the Nobel prize. + +Richard Feynman + +--- + +> When I see an actual flesh-and-blood worker in conflict with his natural enemy, the policeman, I do not have to ask myself which side I am on. + +George Orwell, Homage to Catalonia + +--- + +> Music is the shorthand of emotion. + +Leo Tolstoy + +--- + +> Yer a wizard 'arry + +Hagrid + +--- + +> Fairy tales are more than true: not because they tell us that dragons exist, but because they tell us that dragons can be beaten. + +Neil Gaiman, Coraline + +--- + +> Crumbling is not an Instant's act. + +Emily Dickinson diff --git a/README.md b/README.md index c42ad09..4ac8b87 100644 --- a/README.md +++ b/README.md @@ -131,3 +131,11 @@ Neil Gaiman, Coraline > Crumbling is not an Instant's act. Emily Dickinson + +--- + +> In one corner the piano tuner struck the same chord dozens of times and scattered arpeggios like handfuls of beads. + +Boris Pasternak + +--- From 650f06c11e58f8bb11c205e2a542910868d900ef Mon Sep 17 00:00:00 2001 From: Ciera Martinez Date: Tue, 2 Jun 2015 11:20:14 -0400 Subject: [PATCH 27/95] Delete README.bak --- README.bak | 133 ----------------------------------------------------- 1 file changed, 133 deletions(-) delete mode 100644 README.bak diff --git a/README.bak b/README.bak deleted file mode 100644 index c42ad09..0000000 --- a/README.bak +++ /dev/null @@ -1,133 +0,0 @@ -#Curated Quote List - -##About - -This is a collection of favorite quotes from members of the infamous Coding Collective. This repository is built for anyone to practice collaborating using git. Add as many quotes as you like! - -##Add - -To add to the list of quotes: - -1. Fork repository to your personal Github repository. -2. Add your quote either directly on Github or clone to your computer and make changes -3. Create Pull Request. - -##The Quotes - -> Something unknown is doing we don't know what - that is what our knowledge amounts to. - -Sir Arthur Eddington, 1927 - ---- - -> ..from so simple beginning endless forms most beautiful and most wonderful have been, and are being, evolved. - -Charles Darwin - ---- - -> A thing of beauty is a joy for ever. - -John Keats - ---- - -> Live as if you were to die tomorrow. Learn as if you were to live forever. - -Mahatma Gandhi - ---- - -> I carefully described to Huxley the shooting of the pollinia in Catasetum, and received for an answer, 'Do you really think I can believe all that? - -Charles Darwin - ---- - -> Why should you call me to account for eating decently? - -George Bernard Shaw - ---- - -> Just when I discovered the meaning of life, they changed it. - -George Carlin - ---- - -> If government were a product, selling it would be illegal. - -P. J. O'Rourke - ---- - -> I like the quote thing. Are people updating the quotes? - -Julin Maloof - ---- - -> If all mankind were to disappear, the world would regenerate back to the rich state of equilibrium that existed ten thousand years ago. If insects were to vanish, the environment would collapse into chaos. - -E\. O. Wilson - ---- - -> Hello World - -Computer - ---- - -> I have never let my schooling interfere with my education - -Mark Twain - ---- - -> I think I finally understand how some of this works! Maybe. - -Kaisa Kajala - ---- - -> I thought of that while riding my bicycle. - -Albert Einstein on the theory of relativity - ---- - -> Hell, if I could explain it to the average person, it wouldn't have been worth the Nobel prize. - -Richard Feynman - ---- - -> When I see an actual flesh-and-blood worker in conflict with his natural enemy, the policeman, I do not have to ask myself which side I am on. - -George Orwell, Homage to Catalonia - ---- - -> Music is the shorthand of emotion. - -Leo Tolstoy - ---- - -> Yer a wizard 'arry - -Hagrid - ---- - -> Fairy tales are more than true: not because they tell us that dragons exist, but because they tell us that dragons can be beaten. - -Neil Gaiman, Coraline - ---- - -> Crumbling is not an Instant's act. - -Emily Dickinson From e49e00129067a3c349f4599616291cd78505a062 Mon Sep 17 00:00:00 2001 From: Kirstie Whitaker Date: Wed, 23 Sep 2015 13:07:50 +0100 Subject: [PATCH 28/95] Update README.md Added in a quote --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 4ac8b87..a3f83c0 100644 --- a/README.md +++ b/README.md @@ -139,3 +139,7 @@ Emily Dickinson Boris Pasternak --- + +> The future cannot be predicted, but futures can be invented. + +Dennis Gabor, Inventing the Future, 1963 From dabc92a8102f7d57a6e99331264a19455e48add9 Mon Sep 17 00:00:00 2001 From: Noah Vaillancourt Date: Wed, 23 Sep 2015 17:44:06 -0400 Subject: [PATCH 29/95] Added a Walt Disney quote We keep moving forward, opening new doors, and doing new things, because we're curious and curiosity keeps leading us down new paths. --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index a3f83c0..7af3da7 100644 --- a/README.md +++ b/README.md @@ -143,3 +143,9 @@ Boris Pasternak > The future cannot be predicted, but futures can be invented. Dennis Gabor, Inventing the Future, 1963 + +--- + +> We keep moving forward, opening new doors, and doing new things, because we're curious and curiosity keeps leading us down new paths. + +Walt Disney From 76101ad0a6f9d2d7a82e5d86cff2b352fff4df7d Mon Sep 17 00:00:00 2001 From: Ben Stockwell Date: Wed, 23 Sep 2015 21:27:52 -0400 Subject: [PATCH 30/95] Adding Vonnegut Quote --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 7af3da7..cd8ae62 100644 --- a/README.md +++ b/README.md @@ -149,3 +149,9 @@ Dennis Gabor, Inventing the Future, 1963 > We keep moving forward, opening new doors, and doing new things, because we're curious and curiosity keeps leading us down new paths. Walt Disney + +--- + +> Everything was beautiful and nothing hurt. + +Vonnegut \ No newline at end of file From 497775f5fe25810be9e905a61f8c55fe5f9ebf3f Mon Sep 17 00:00:00 2001 From: Saul Goodman Date: Thu, 24 Sep 2015 16:58:51 -0700 Subject: [PATCH 31/95] Added my quote. --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index cd8ae62..c9ed137 100644 --- a/README.md +++ b/README.md @@ -154,4 +154,10 @@ Walt Disney > Everything was beautiful and nothing hurt. -Vonnegut \ No newline at end of file +Vonnegut + +--- + +>Don't drink and drive. But if you do, call me. + +Saul Goodman From 27697183e34d70854406b83e822e6d743dac1c72 Mon Sep 17 00:00:00 2001 From: Noah Vaillancourt Date: Thu, 24 Sep 2015 21:38:51 -0400 Subject: [PATCH 32/95] Added an Albert Einstein quote "you have to learn the rules of the game. and then you have to play better than anyone else." Also fixed spacing on the Saul Goodman quote (Line 163) --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c9ed137..59778cb 100644 --- a/README.md +++ b/README.md @@ -158,6 +158,12 @@ Vonnegut --- ->Don't drink and drive. But if you do, call me. +> Don't drink and drive. But if you do, call me. Saul Goodman + +--- + +> you have to learn the rules of the game. and then you have to play better than anyone else. + +Albert Einstein From fd67df3c3e53649553f89e12fe0f036f2646830c Mon Sep 17 00:00:00 2001 From: Matthew Stingel Date: Fri, 25 Sep 2015 13:59:31 -0500 Subject: [PATCH 33/95] Update README.md --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 59778cb..01126de 100644 --- a/README.md +++ b/README.md @@ -167,3 +167,9 @@ Saul Goodman > you have to learn the rules of the game. and then you have to play better than anyone else. Albert Einstein + +--- + +> It has been said that man is a rational animal. All my life I have been searching for evidence which could support this. + +Bertrand Russell From 656d885173b8e9fcf0e23676fa2c34f125299a6c Mon Sep 17 00:00:00 2001 From: Allen May Date: Sun, 27 Sep 2015 10:30:16 -0400 Subject: [PATCH 34/95] Add quote from Confcious --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 01126de..bc9ed3c 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,13 @@ To add to the list of quotes: ##The Quotes + +> No matter where you go - there you are. + +Confucious 551-479 BC + +--- + > Something unknown is doing we don't know what - that is what our knowledge amounts to. Sir Arthur Eddington, 1927 From e3cbb7a43d4dd1dbfa626496dd2f2b69c0a7166a Mon Sep 17 00:00:00 2001 From: "Todd M. Guerra" Date: Wed, 30 Sep 2015 15:51:30 -0400 Subject: [PATCH 35/95] added Oderus's quote from Holliston. --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index bc9ed3c..e6ae6b8 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,10 @@ To add to the list of quotes: ##The Quotes +> Fine. Sell out. Get a job. A nice nine to five one. Sit in front of the idiot box all night and watch some stupid sitcom...all the while wondering what it might have been like if you'd hung in there for just one...more...day. + +Oderus Urungus, 2013 + > No matter where you go - there you are. From 5e8d395603e962c32f019fada2a4a84e9f8242e7 Mon Sep 17 00:00:00 2001 From: Rich Keyzor Date: Thu, 1 Oct 2015 14:58:26 +0100 Subject: [PATCH 36/95] Added Lewis Carroll any road quote. --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index e6ae6b8..b6399dd 100644 --- a/README.md +++ b/README.md @@ -184,3 +184,9 @@ Albert Einstein > It has been said that man is a rational animal. All my life I have been searching for evidence which could support this. Bertrand Russell + +--- + +> If you don't know where you are going, any road will get you there. + +Lewis Carroll From 4f095bdef211da77f7814de5902cf68772b659c8 Mon Sep 17 00:00:00 2001 From: msimmond Date: Thu, 1 Oct 2015 10:20:08 -0700 Subject: [PATCH 37/95] added aldo leopold quote --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index b6399dd..a63b5c4 100644 --- a/README.md +++ b/README.md @@ -190,3 +190,9 @@ Bertrand Russell > If you don't know where you are going, any road will get you there. Lewis Carroll + +--- + +> An atom at large in the biota is too free to know freedom; an atom back in the sea has forgotten it. For every atom lost to the sea, the prairie pulls another out of the decaying rocks. The only certain truth is that its creatures must suck hard, live fast, and die often, lest its losses exceed its gains. + +Aldo Leopold From 05b35c7b9558e56989537c0af43b86cd293870a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20Dur=C3=A3es?= Date: Sat, 3 Oct 2015 18:07:25 +0100 Subject: [PATCH 38/95] added St. Augustine quote --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index a63b5c4..3c8f880 100644 --- a/README.md +++ b/README.md @@ -196,3 +196,9 @@ Lewis Carroll > An atom at large in the biota is too free to know freedom; an atom back in the sea has forgotten it. For every atom lost to the sea, the prairie pulls another out of the decaying rocks. The only certain truth is that its creatures must suck hard, live fast, and die often, lest its losses exceed its gains. Aldo Leopold + +--- + +> The world is a book and those who do not travel read only one page. + +St. Augustine From 3982a1956414dc56f33bf73d82e52a1b4e4fc5f7 Mon Sep 17 00:00:00 2001 From: tashrafy Date: Mon, 5 Oct 2015 16:53:53 -0400 Subject: [PATCH 39/95] Added quote by Bjarne Stroustrup --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 3c8f880..ca4c86f 100644 --- a/README.md +++ b/README.md @@ -202,3 +202,10 @@ Aldo Leopold > The world is a book and those who do not travel read only one page. St. Augustine + +--- + +> Far too often, "software engineering" is neither engineering nor about software. + +Bjarne Stroustrup + From e6a5e77ab9243b671c8be44703f14c5d7e8746de Mon Sep 17 00:00:00 2001 From: Ciera Martinez Date: Tue, 6 Oct 2015 23:57:14 -0700 Subject: [PATCH 40/95] added a line break --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index ca4c86f..3de7165 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,7 @@ To add to the list of quotes: Oderus Urungus, 2013 +--- > No matter where you go - there you are. From 7134b4aef160211eed7e8370cc045b763c839daf Mon Sep 17 00:00:00 2001 From: matt Date: Thu, 8 Oct 2015 12:14:04 +1100 Subject: [PATCH 41/95] new quote added --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 3de7165..ee801c2 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,9 @@ To add to the list of quotes: ##The Quotes +> Love has a tide! --Helen Hunt Jackson + +--- > Fine. Sell out. Get a job. A nice nine to five one. Sit in front of the idiot box all night and watch some stupid sitcom...all the while wondering what it might have been like if you'd hung in there for just one...more...day. Oderus Urungus, 2013 From de0a79a998728738e03f25190ac752fbed6ab242 Mon Sep 17 00:00:00 2001 From: Ciera Martinez Date: Wed, 7 Oct 2015 18:44:35 -0700 Subject: [PATCH 42/95] fixed line spacing --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ee801c2..e0f581d 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,9 @@ To add to the list of quotes: ##The Quotes -> Love has a tide! --Helen Hunt Jackson +> Love has a tide! + +Helen Hunt Jackson --- > Fine. Sell out. Get a job. A nice nine to five one. Sit in front of the idiot box all night and watch some stupid sitcom...all the while wondering what it might have been like if you'd hung in there for just one...more...day. From 967578edac9c2cd6ccf107e71610da475b04ec0c Mon Sep 17 00:00:00 2001 From: "Bartlomiej \"Yoggy\"" Date: Mon, 12 Oct 2015 13:02:59 +0200 Subject: [PATCH 43/95] Update README.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index e0f581d..6f18f90 100644 --- a/README.md +++ b/README.md @@ -215,3 +215,8 @@ St. Augustine Bjarne Stroustrup +--- + +> First solve the problem. Than write the code. + +John Johnson From 01ae5c4d39049566636e1df3cbd34efd730323aa Mon Sep 17 00:00:00 2001 From: Stephen Sauceda Date: Wed, 28 Oct 2015 10:29:08 -0400 Subject: [PATCH 44/95] Update README.md Add Chris Coyier quote. --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 6f18f90..3a88e36 100644 --- a/README.md +++ b/README.md @@ -220,3 +220,8 @@ Bjarne Stroustrup > First solve the problem. Than write the code. John Johnson + +--- +> Web design for me is a perfect blend of arty and nerdy. + +Chris Coyier From 898b40b4a1d919eec4a5cd6f7519db65d8ee4968 Mon Sep 17 00:00:00 2001 From: Holly Tancredi Date: Fri, 30 Oct 2015 14:15:06 -0400 Subject: [PATCH 45/95] update README.md --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 3a88e36..af8a067 100644 --- a/README.md +++ b/README.md @@ -225,3 +225,9 @@ John Johnson > Web design for me is a perfect blend of arty and nerdy. Chris Coyier + +--- + +> Mystery is the source of all true art and science. + +Albert Einstein From aaf814ea9b318749f0c104d0441f25d1cd7b0a15 Mon Sep 17 00:00:00 2001 From: Mike Covington Date: Sat, 31 Oct 2015 20:13:58 -0700 Subject: [PATCH 46/95] horse chestnuts --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index af8a067..79f0206 100644 --- a/README.md +++ b/README.md @@ -231,3 +231,9 @@ Chris Coyier > Mystery is the source of all true art and science. Albert Einstein + +--- + +> Every time someone asked me why I was walking around with crab apples in my cheeks, I’d just open my hands and show them it was rubber balls I was walking around with, not crab apples, and that they were in my hands, not my cheeks. + +Orr (Catch-22) From e7fe37242416d0664f3bd0cba43d62708ec5f890 Mon Sep 17 00:00:00 2001 From: melletang Date: Mon, 9 Nov 2015 12:36:25 -0800 Subject: [PATCH 47/95] Create new --- new | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 new diff --git a/new b/new new file mode 100644 index 0000000..ad3d812 --- /dev/null +++ b/new @@ -0,0 +1,2 @@ +Be less curious about people and more curious about ideas +-Marie Curie From cc00c69a6d7a4c834d8bce56e7cb6fea14bbe561 Mon Sep 17 00:00:00 2001 From: melletang Date: Mon, 9 Nov 2015 12:37:54 -0800 Subject: [PATCH 48/95] Delete new --- new | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 new diff --git a/new b/new deleted file mode 100644 index ad3d812..0000000 --- a/new +++ /dev/null @@ -1,2 +0,0 @@ -Be less curious about people and more curious about ideas --Marie Curie From 3f5568937dbedde808401dbc2a3ddd8f3f8e59ee Mon Sep 17 00:00:00 2001 From: melletang Date: Mon, 9 Nov 2015 12:38:33 -0800 Subject: [PATCH 49/95] Update README.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 79f0206..5cae4e9 100644 --- a/README.md +++ b/README.md @@ -237,3 +237,8 @@ Albert Einstein > Every time someone asked me why I was walking around with crab apples in my cheeks, I’d just open my hands and show them it was rubber balls I was walking around with, not crab apples, and that they were in my hands, not my cheeks. Orr (Catch-22) + +--- +> Be less curious about people and more curious about ideas. + +Marie Curie From 751200925efc1cc46e0b5a0ab8e8350dee41620b Mon Sep 17 00:00:00 2001 From: KaraMarck Date: Sat, 5 Dec 2015 14:49:22 +0000 Subject: [PATCH 50/95] One more quote --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 5cae4e9..e02ba44 100644 --- a/README.md +++ b/README.md @@ -242,3 +242,9 @@ Orr (Catch-22) > Be less curious about people and more curious about ideas. Marie Curie + +--- + +> Brevity is the Soul of Wit + +Shakespeare From ea8230e2cbee9b928c4180ad7e1b06d42975fa1a Mon Sep 17 00:00:00 2001 From: "Elisha C. Thomas" Date: Sat, 5 Dec 2015 15:12:00 +0000 Subject: [PATCH 51/95] Add new quote --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 5cae4e9..5814a21 100644 --- a/README.md +++ b/README.md @@ -242,3 +242,9 @@ Orr (Catch-22) > Be less curious about people and more curious about ideas. Marie Curie + +--- + +> Liberate the minds of men and ultimately you will liberate the bodies of men + +Marcus Garvey \ No newline at end of file From d7adf05a339c0dde9f9fe853935da816db4ca967 Mon Sep 17 00:00:00 2001 From: KaraMarck Date: Sat, 5 Dec 2015 15:15:17 +0000 Subject: [PATCH 52/95] Another new quote --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index e02ba44..68f3939 100644 --- a/README.md +++ b/README.md @@ -248,3 +248,9 @@ Marie Curie > Brevity is the Soul of Wit Shakespeare + +--- +> But he who kisses the joy as it flies +Lives in eternity's sun rise. + +William Blake From d0e59c68235d96170229e1cf87e9778b60f0457d Mon Sep 17 00:00:00 2001 From: KaraMarck Date: Sat, 5 Dec 2015 16:22:09 +0000 Subject: [PATCH 53/95] Yet Another Quote --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 5cae4e9..fc6ec3b 100644 --- a/README.md +++ b/README.md @@ -242,3 +242,8 @@ Orr (Catch-22) > Be less curious about people and more curious about ideas. Marie Curie + +--- +> Hope is the thing with feathers + +Emily Dickinson \ No newline at end of file From 32e4de42c36959865e5b6c38feb9e58c087f2bcf Mon Sep 17 00:00:00 2001 From: freya-m Date: Wed, 24 Feb 2016 15:50:40 +1100 Subject: [PATCH 54/95] Added two quotes: line 270, line 276 --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index ba8527b..e9760e6 100644 --- a/README.md +++ b/README.md @@ -265,3 +265,15 @@ Marcus Garvey Emily Dickinson +--- + +> Always forgive your enemies; nothing annoys them so much. + +Oscar Wilde + +--- + +> There is no greater agony than bearing an untold story inside you. + +Maya Angelou + From 12748bd7c8564d3473aa1e4949f2702e3f481ccf Mon Sep 17 00:00:00 2001 From: KineBlom Date: Thu, 26 May 2016 10:27:29 +0200 Subject: [PATCH 55/95] Added my quote --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index e9760e6..cdf62c8 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,10 @@ To add to the list of quotes: ##The Quotes +> Trust in God, but make sure you tie up your camel. + +Bedouin saying + > Love has a tide! Helen Hunt Jackson From 52e30061c356f836a6cd114df940e2b53c1e107b Mon Sep 17 00:00:00 2001 From: KineBlom Date: Thu, 26 May 2016 10:27:54 +0200 Subject: [PATCH 56/95] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index cdf62c8..83be394 100644 --- a/README.md +++ b/README.md @@ -14,10 +14,12 @@ To add to the list of quotes: ##The Quotes +--- > Trust in God, but make sure you tie up your camel. Bedouin saying +--- > Love has a tide! Helen Hunt Jackson From 8f394055a6bf422517c2c03c61a8e0e0cad2df6a Mon Sep 17 00:00:00 2001 From: VADIRAJ JAHAGIRDAR Date: Thu, 15 Sep 2016 19:24:31 +0530 Subject: [PATCH 57/95] Update README.md --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 83be394..e1b160d 100644 --- a/README.md +++ b/README.md @@ -283,3 +283,9 @@ Oscar Wilde Maya Angelou +--- +> You have to dream before your dreams can come true. + +A. P. J. Abdul Kalam + +--- From fccfe91e57dfafac9113439e1753e9ca5e6583c3 Mon Sep 17 00:00:00 2001 From: Kunal Date: Tue, 1 Nov 2016 00:13:01 +0530 Subject: [PATCH 58/95] Added another quote! :) --- README.md | 6 ++ README.md~ | 291 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 297 insertions(+) create mode 100644 README.md~ diff --git a/README.md b/README.md index e1b160d..2735c39 100644 --- a/README.md +++ b/README.md @@ -289,3 +289,9 @@ Maya Angelou A. P. J. Abdul Kalam --- + +>Life is lived on the edge. + +Will Smith + +--- diff --git a/README.md~ b/README.md~ new file mode 100644 index 0000000..e1b160d --- /dev/null +++ b/README.md~ @@ -0,0 +1,291 @@ +#Curated Quote List + +##About + +This is a collection of favorite quotes from members of the infamous Coding Collective. This repository is built for anyone to practice collaborating using git. Add as many quotes as you like! + +##Add + +To add to the list of quotes: + +1. Fork repository to your personal Github repository. +2. Add your quote either directly on Github or clone to your computer and make changes +3. Create Pull Request. + +##The Quotes + +--- +> Trust in God, but make sure you tie up your camel. + +Bedouin saying + +--- +> Love has a tide! + +Helen Hunt Jackson + +--- +> Fine. Sell out. Get a job. A nice nine to five one. Sit in front of the idiot box all night and watch some stupid sitcom...all the while wondering what it might have been like if you'd hung in there for just one...more...day. + +Oderus Urungus, 2013 + +--- + +> No matter where you go - there you are. + +Confucious 551-479 BC + +--- + +> Something unknown is doing we don't know what - that is what our knowledge amounts to. + +Sir Arthur Eddington, 1927 + +--- + +> ..from so simple beginning endless forms most beautiful and most wonderful have been, and are being, evolved. + +Charles Darwin + +--- + +> A thing of beauty is a joy for ever. + +John Keats + +--- + +> Live as if you were to die tomorrow. Learn as if you were to live forever. + +Mahatma Gandhi + +--- + +> I carefully described to Huxley the shooting of the pollinia in Catasetum, and received for an answer, 'Do you really think I can believe all that? + +Charles Darwin + +--- + +> Why should you call me to account for eating decently? + +George Bernard Shaw + +--- + +> Just when I discovered the meaning of life, they changed it. + +George Carlin + +--- + +> If government were a product, selling it would be illegal. + +P. J. O'Rourke + +--- + +> I like the quote thing. Are people updating the quotes? + +Julin Maloof + +--- + +> If all mankind were to disappear, the world would regenerate back to the rich state of equilibrium that existed ten thousand years ago. If insects were to vanish, the environment would collapse into chaos. + +E\. O. Wilson + +--- + +> Hello World + +Computer + +--- + +> I have never let my schooling interfere with my education + +Mark Twain + +--- + +> I think I finally understand how some of this works! Maybe. + +Kaisa Kajala + +--- + +> I thought of that while riding my bicycle. + +Albert Einstein on the theory of relativity + +--- + +> Hell, if I could explain it to the average person, it wouldn't have been worth the Nobel prize. + +Richard Feynman + +--- + +> When I see an actual flesh-and-blood worker in conflict with his natural enemy, the policeman, I do not have to ask myself which side I am on. + +George Orwell, Homage to Catalonia + +--- + +> Music is the shorthand of emotion. + +Leo Tolstoy + +--- + +> Yer a wizard 'arry + +Hagrid + +--- + +> Fairy tales are more than true: not because they tell us that dragons exist, but because they tell us that dragons can be beaten. + +Neil Gaiman, Coraline + +--- + +> Crumbling is not an Instant's act. + +Emily Dickinson + +--- + +> In one corner the piano tuner struck the same chord dozens of times and scattered arpeggios like handfuls of beads. + +Boris Pasternak + +--- + +> The future cannot be predicted, but futures can be invented. + +Dennis Gabor, Inventing the Future, 1963 + +--- + +> We keep moving forward, opening new doors, and doing new things, because we're curious and curiosity keeps leading us down new paths. + +Walt Disney + +--- + +> Everything was beautiful and nothing hurt. + +Vonnegut + +--- + +> Don't drink and drive. But if you do, call me. + +Saul Goodman + +--- + +> you have to learn the rules of the game. and then you have to play better than anyone else. + +Albert Einstein + +--- + +> It has been said that man is a rational animal. All my life I have been searching for evidence which could support this. + +Bertrand Russell + +--- + +> If you don't know where you are going, any road will get you there. + +Lewis Carroll + +--- + +> An atom at large in the biota is too free to know freedom; an atom back in the sea has forgotten it. For every atom lost to the sea, the prairie pulls another out of the decaying rocks. The only certain truth is that its creatures must suck hard, live fast, and die often, lest its losses exceed its gains. + +Aldo Leopold + +--- + +> The world is a book and those who do not travel read only one page. + +St. Augustine + +--- + +> Far too often, "software engineering" is neither engineering nor about software. + +Bjarne Stroustrup + +--- + +> First solve the problem. Than write the code. + +John Johnson + +--- +> Web design for me is a perfect blend of arty and nerdy. + +Chris Coyier + +--- + +> Mystery is the source of all true art and science. + +Albert Einstein + +--- + +> Every time someone asked me why I was walking around with crab apples in my cheeks, I’d just open my hands and show them it was rubber balls I was walking around with, not crab apples, and that they were in my hands, not my cheeks. + +Orr (Catch-22) + +--- +> Be less curious about people and more curious about ideas. + +Marie Curie + +--- + +> Brevity is the Soul of Wit + +Shakespeare + +--- +> But he who kisses the joy as it flies +Lives in eternity's sun rise. + +William Blake + +--- +> Liberate the minds of men and ultimately you will liberate the bodies of men + +Marcus Garvey + +--- +> Hope is the thing with feathers + +Emily Dickinson + +--- + +> Always forgive your enemies; nothing annoys them so much. + +Oscar Wilde + +--- + +> There is no greater agony than bearing an untold story inside you. + +Maya Angelou + +--- +> You have to dream before your dreams can come true. + +A. P. J. Abdul Kalam + +--- From 8724e0cad7e99bff9015c279cd2d53c9c2900dfb Mon Sep 17 00:00:00 2001 From: Ciera Martinez Date: Mon, 31 Oct 2016 12:05:26 -0700 Subject: [PATCH 59/95] removed erroneous file --- README.md~ | 291 ----------------------------------------------------- 1 file changed, 291 deletions(-) delete mode 100644 README.md~ diff --git a/README.md~ b/README.md~ deleted file mode 100644 index e1b160d..0000000 --- a/README.md~ +++ /dev/null @@ -1,291 +0,0 @@ -#Curated Quote List - -##About - -This is a collection of favorite quotes from members of the infamous Coding Collective. This repository is built for anyone to practice collaborating using git. Add as many quotes as you like! - -##Add - -To add to the list of quotes: - -1. Fork repository to your personal Github repository. -2. Add your quote either directly on Github or clone to your computer and make changes -3. Create Pull Request. - -##The Quotes - ---- -> Trust in God, but make sure you tie up your camel. - -Bedouin saying - ---- -> Love has a tide! - -Helen Hunt Jackson - ---- -> Fine. Sell out. Get a job. A nice nine to five one. Sit in front of the idiot box all night and watch some stupid sitcom...all the while wondering what it might have been like if you'd hung in there for just one...more...day. - -Oderus Urungus, 2013 - ---- - -> No matter where you go - there you are. - -Confucious 551-479 BC - ---- - -> Something unknown is doing we don't know what - that is what our knowledge amounts to. - -Sir Arthur Eddington, 1927 - ---- - -> ..from so simple beginning endless forms most beautiful and most wonderful have been, and are being, evolved. - -Charles Darwin - ---- - -> A thing of beauty is a joy for ever. - -John Keats - ---- - -> Live as if you were to die tomorrow. Learn as if you were to live forever. - -Mahatma Gandhi - ---- - -> I carefully described to Huxley the shooting of the pollinia in Catasetum, and received for an answer, 'Do you really think I can believe all that? - -Charles Darwin - ---- - -> Why should you call me to account for eating decently? - -George Bernard Shaw - ---- - -> Just when I discovered the meaning of life, they changed it. - -George Carlin - ---- - -> If government were a product, selling it would be illegal. - -P. J. O'Rourke - ---- - -> I like the quote thing. Are people updating the quotes? - -Julin Maloof - ---- - -> If all mankind were to disappear, the world would regenerate back to the rich state of equilibrium that existed ten thousand years ago. If insects were to vanish, the environment would collapse into chaos. - -E\. O. Wilson - ---- - -> Hello World - -Computer - ---- - -> I have never let my schooling interfere with my education - -Mark Twain - ---- - -> I think I finally understand how some of this works! Maybe. - -Kaisa Kajala - ---- - -> I thought of that while riding my bicycle. - -Albert Einstein on the theory of relativity - ---- - -> Hell, if I could explain it to the average person, it wouldn't have been worth the Nobel prize. - -Richard Feynman - ---- - -> When I see an actual flesh-and-blood worker in conflict with his natural enemy, the policeman, I do not have to ask myself which side I am on. - -George Orwell, Homage to Catalonia - ---- - -> Music is the shorthand of emotion. - -Leo Tolstoy - ---- - -> Yer a wizard 'arry - -Hagrid - ---- - -> Fairy tales are more than true: not because they tell us that dragons exist, but because they tell us that dragons can be beaten. - -Neil Gaiman, Coraline - ---- - -> Crumbling is not an Instant's act. - -Emily Dickinson - ---- - -> In one corner the piano tuner struck the same chord dozens of times and scattered arpeggios like handfuls of beads. - -Boris Pasternak - ---- - -> The future cannot be predicted, but futures can be invented. - -Dennis Gabor, Inventing the Future, 1963 - ---- - -> We keep moving forward, opening new doors, and doing new things, because we're curious and curiosity keeps leading us down new paths. - -Walt Disney - ---- - -> Everything was beautiful and nothing hurt. - -Vonnegut - ---- - -> Don't drink and drive. But if you do, call me. - -Saul Goodman - ---- - -> you have to learn the rules of the game. and then you have to play better than anyone else. - -Albert Einstein - ---- - -> It has been said that man is a rational animal. All my life I have been searching for evidence which could support this. - -Bertrand Russell - ---- - -> If you don't know where you are going, any road will get you there. - -Lewis Carroll - ---- - -> An atom at large in the biota is too free to know freedom; an atom back in the sea has forgotten it. For every atom lost to the sea, the prairie pulls another out of the decaying rocks. The only certain truth is that its creatures must suck hard, live fast, and die often, lest its losses exceed its gains. - -Aldo Leopold - ---- - -> The world is a book and those who do not travel read only one page. - -St. Augustine - ---- - -> Far too often, "software engineering" is neither engineering nor about software. - -Bjarne Stroustrup - ---- - -> First solve the problem. Than write the code. - -John Johnson - ---- -> Web design for me is a perfect blend of arty and nerdy. - -Chris Coyier - ---- - -> Mystery is the source of all true art and science. - -Albert Einstein - ---- - -> Every time someone asked me why I was walking around with crab apples in my cheeks, I’d just open my hands and show them it was rubber balls I was walking around with, not crab apples, and that they were in my hands, not my cheeks. - -Orr (Catch-22) - ---- -> Be less curious about people and more curious about ideas. - -Marie Curie - ---- - -> Brevity is the Soul of Wit - -Shakespeare - ---- -> But he who kisses the joy as it flies -Lives in eternity's sun rise. - -William Blake - ---- -> Liberate the minds of men and ultimately you will liberate the bodies of men - -Marcus Garvey - ---- -> Hope is the thing with feathers - -Emily Dickinson - ---- - -> Always forgive your enemies; nothing annoys them so much. - -Oscar Wilde - ---- - -> There is no greater agony than bearing an untold story inside you. - -Maya Angelou - ---- -> You have to dream before your dreams can come true. - -A. P. J. Abdul Kalam - ---- From e1d8d61b7786460639bf6f0f13d951a352dc0a84 Mon Sep 17 00:00:00 2001 From: aberrocal Date: Mon, 31 Oct 2016 14:57:07 -0700 Subject: [PATCH 60/95] I added a quote --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 2735c39..07080bc 100644 --- a/README.md +++ b/README.md @@ -295,3 +295,9 @@ A. P. J. Abdul Kalam Will Smith --- +>Every man's life ends the same way. It is only the details of how he lived and how he died that distinguish one man from another. + +Ernest Hemingway + +--- + From 362a051a6878716744356e7b15655e8116a3b8ed Mon Sep 17 00:00:00 2001 From: jennahaines Date: Mon, 31 Oct 2016 14:59:32 -0700 Subject: [PATCH 61/95] added quote --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 2735c39..18e4cd2 100644 --- a/README.md +++ b/README.md @@ -295,3 +295,9 @@ A. P. J. Abdul Kalam Will Smith --- + +> In God We Trust, All Others Must Bring Data + +William E. Deming + + From 6aa8119c94ec3ca30678dce5b513e254f02b6ef1 Mon Sep 17 00:00:00 2001 From: Radhika Dua Date: Thu, 6 Jul 2017 12:23:19 +0530 Subject: [PATCH 62/95] Update README.md quote --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 07080bc..c2dcc55 100644 --- a/README.md +++ b/README.md @@ -300,4 +300,9 @@ Will Smith Ernest Hemingway --- +> All Birds find shelter during a rain. But eagle avoids rain by flying above the cloud. + +Dr. A. P. J. Abdul Kalam + +--- From b5a1f7a6e1c2f558d03b46280ac855ce6cf41107 Mon Sep 17 00:00:00 2001 From: Who23 <40632266+Who23@users.noreply.github.com> Date: Tue, 2 Oct 2018 19:39:35 -0400 Subject: [PATCH 63/95] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index c2dcc55..41b5027 100644 --- a/README.md +++ b/README.md @@ -305,4 +305,8 @@ Ernest Hemingway Dr. A. P. J. Abdul Kalam --- +>To confine our attention to terrestrial matters would be to limit the human spirit. +Stephen Hawking + +-- From 53d45b1bb81c918d2b9b75c6bfed4eb1389cffb6 Mon Sep 17 00:00:00 2001 From: Who23 <40632266+Who23@users.noreply.github.com> Date: Tue, 2 Oct 2018 19:39:59 -0400 Subject: [PATCH 64/95] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 41b5027..1e292a6 100644 --- a/README.md +++ b/README.md @@ -309,4 +309,4 @@ Dr. A. P. J. Abdul Kalam Stephen Hawking --- +--- From f9612f53ae05bd8e3ccf3d8932d13cead39f4ee1 Mon Sep 17 00:00:00 2001 From: Minkush <31859249+minkushjain@users.noreply.github.com> Date: Wed, 17 Oct 2018 17:58:38 +0530 Subject: [PATCH 65/95] add quote --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 1e292a6..b607319 100644 --- a/README.md +++ b/README.md @@ -61,6 +61,12 @@ Mahatma Gandhi --- +> Things work out best for those who make the best of how things work out. + +John Wood + +--- + > I carefully described to Huxley the shooting of the pollinia in Catasetum, and received for an answer, 'Do you really think I can believe all that? Charles Darwin From 76bca9580402f3a6295d562d027daca7f7aa81e1 Mon Sep 17 00:00:00 2001 From: Minkush <31859249+minkushjain@users.noreply.github.com> Date: Wed, 17 Oct 2018 17:59:46 +0530 Subject: [PATCH 66/95] add quote --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 1e292a6..fa0df56 100644 --- a/README.md +++ b/README.md @@ -61,6 +61,12 @@ Mahatma Gandhi --- +> Learn from yesterday, live for today, hope for tomorrow. The important thing is not to stop questioning. + +ALbert Einstein + +--- + > I carefully described to Huxley the shooting of the pollinia in Catasetum, and received for an answer, 'Do you really think I can believe all that? Charles Darwin From 64285f391537dbd1a189176f33731be0dd9996bc Mon Sep 17 00:00:00 2001 From: Minkush <31859249+minkushjain@users.noreply.github.com> Date: Wed, 17 Oct 2018 18:00:53 +0530 Subject: [PATCH 67/95] add quote --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 1e292a6..0371b3c 100644 --- a/README.md +++ b/README.md @@ -157,6 +157,12 @@ Emily Dickinson --- +> All our dreams can come true if we have the courage to pursue them. + +Walt Disney + +--- + > In one corner the piano tuner struck the same chord dozens of times and scattered arpeggios like handfuls of beads. Boris Pasternak From 83cb4ade3c6db4cb7edb7923cfe2c0d49e11eb0b Mon Sep 17 00:00:00 2001 From: Patrizia Date: Wed, 24 Oct 2018 14:45:05 -0700 Subject: [PATCH 68/95] Update README.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 8820064..79abafd 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,11 @@ To add to the list of quotes: ##The Quotes +--- +> To live is the rarest thing in the world. Most people exist, that is all. + +Oscar Wilde + --- > Trust in God, but make sure you tie up your camel. From c7857b667e873c07e85b1562cd6316782a8317b4 Mon Sep 17 00:00:00 2001 From: Ciera Martinez Date: Thu, 25 Oct 2018 10:33:38 +0100 Subject: [PATCH 69/95] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 79abafd..e56157f 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ -#Curated Quote List +# Curated Quote List -##About +## About This is a collection of favorite quotes from members of the infamous Coding Collective. This repository is built for anyone to practice collaborating using git. Add as many quotes as you like! -##Add +## Add To add to the list of quotes: From 3815a32c3a42bd0b7fd3109726145f4d19c0343e Mon Sep 17 00:00:00 2001 From: Ciera Martinez Date: Thu, 25 Oct 2018 10:33:52 +0100 Subject: [PATCH 70/95] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e56157f..32e3210 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ To add to the list of quotes: 2. Add your quote either directly on Github or clone to your computer and make changes 3. Create Pull Request. -##The Quotes +## The Quotes --- > To live is the rarest thing in the world. Most people exist, that is all. From 55b553bf82fa6aa7c0911b371a73cd7371ddc729 Mon Sep 17 00:00:00 2001 From: Ciera Martinez Date: Thu, 25 Oct 2018 10:34:23 +0100 Subject: [PATCH 71/95] Update README.md --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 32e3210..aa6f8f9 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,6 @@ To add to the list of quotes: ## The Quotes ---- > To live is the rarest thing in the world. Most people exist, that is all. Oscar Wilde From 41dfd10a7125f7d4211b1d93689bea1f910b4d37 Mon Sep 17 00:00:00 2001 From: "Franklin U.O. Ohaegbulam" Date: Mon, 19 Oct 2020 00:44:40 +0100 Subject: [PATCH 72/95] update the quotes --- README.md | 166 ++++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 155 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index aa6f8f9..841ff26 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ## About -This is a collection of favorite quotes from members of the infamous Coding Collective. This repository is built for anyone to practice collaborating using git. Add as many quotes as you like! +This is a collection of favorite quotes from members of the infamous Coding Collective. This repository is built for anyone to practice collaborating using git. Add as many quotes as you like! ## Add @@ -14,21 +14,24 @@ To add to the list of quotes: ## The Quotes -> To live is the rarest thing in the world. Most people exist, that is all. +> To live is the rarest thing in the world. Most people exist, that is all. Oscar Wilde --- + > Trust in God, but make sure you tie up your camel. Bedouin saying --- -> Love has a tide! -Helen Hunt Jackson +> Love has a tide! + +Helen Hunt Jackson --- + > Fine. Sell out. Get a job. A nice nine to five one. Sit in front of the idiot box all night and watch some stupid sitcom...all the while wondering what it might have been like if you'd hung in there for just one...more...day. Oderus Urungus, 2013 @@ -43,7 +46,7 @@ Confucious 551-479 BC > Something unknown is doing we don't know what - that is what our knowledge amounts to. -Sir Arthur Eddington, 1927 +Sir Arthur Eddington, 1927 --- @@ -215,7 +218,7 @@ Albert Einstein --- -> It has been said that man is a rational animal. All my life I have been searching for evidence which could support this. +> It has been said that man is a rational animal. All my life I have been searching for evidence which could support this. Bertrand Russell @@ -250,6 +253,7 @@ Bjarne Stroustrup John Johnson --- + > Web design for me is a perfect blend of arty and nerdy. Chris Coyier @@ -267,6 +271,7 @@ Albert Einstein Orr (Catch-22) --- + > Be less curious about people and more curious about ideas. Marie Curie @@ -278,17 +283,20 @@ Marie Curie Shakespeare --- -> But he who kisses the joy as it flies -Lives in eternity's sun rise. + +> But he who kisses the joy as it flies +> Lives in eternity's sun rise. William Blake --- + > Liberate the minds of men and ultimately you will liberate the bodies of men Marcus Garvey --- + > Hope is the thing with feathers Emily Dickinson @@ -306,29 +314,165 @@ Oscar Wilde Maya Angelou --- + > You have to dream before your dreams can come true. A. P. J. Abdul Kalam --- ->Life is lived on the edge. +> Life is lived on the edge. Will Smith --- ->Every man's life ends the same way. It is only the details of how he lived and how he died that distinguish one man from another. + +> Every man's life ends the same way. It is only the details of how he lived and how he died that distinguish one man from another. Ernest Hemingway --- + > All Birds find shelter during a rain. But eagle avoids rain by flying above the cloud. Dr. A. P. J. Abdul Kalam --- ->To confine our attention to terrestrial matters would be to limit the human spirit. + +> To confine our attention to terrestrial matters would be to limit the human spirit. Stephen Hawking --- + +> A drop of honey catches more flies than a gallon of gall. + +Abraham Lincoln + +--- + +> A foolish consistency is the hobgoblin of little minds + +Ralph Waldo Emerson + +--- + +> Leadership is the capacity to translate vision into reality. + +Warren Benni + +--- + +> A person can succeed at anything for which there is enthusiasm. + +Charles M. Schwab + +--- + +> Acting on a good idea is better than just having a good idea. + +Robert Half + +--- + +> All mankind is divided into three classes: those that are immovable, those that are movable, and those that move. + +Benjamin Franklin + +--- + +> Attitudes are more important than facts. + +Dr. Karl Menninger + +--- + +> Do what you can, with what you have, where you are. + +Theodore Roosevelt + +--- + +> Don’t be afraid to take a big step if one is indicated. You can’t cross a chasm in two small jumps. + +David Lloyd George + +--- + +> If you would not be forgotten, as soon as you are dead and rotten, either write things worth reading, or do things worth the writing. + +Benjamin Franklin + +--- + +> Experience is the name everyone gives to their mistakes. + +Oscar Wilde + +--- + +> Efforts and courage are not enough without purpose and direction. + +John F. Kennedy + +--- + +> Give every man thy ear, but few thy voice. + +William Shakespeare + +--- + +> I cannot teach anybody anything, I can only make them think. + +Socrates + +--- + +> I will go anywhere, as long as it is forward. + +David Livingstone + +--- + +> Nothing in life is to be feared. It is only to be understood. + +Marie Curie + +--- + +> Nurture your mind with great thoughts. + +Benjamin Disraeli + +--- + +> Only those who dare to fail greatly can ever achieve greatly. + +Robert F. Kennedy + +--- + +> Imagination is more important than knowledge. + +Albert Einstein + +--- + +> The man who does not read good books has no advantage over the man who can’t read them. + +Mark Twain + +--- + +> The most rewarding things you do in life are often the ones that look like they cannot be done. + +Arnold Palme + +--- + +> Our problem is not the lack of knowing; it is the lack of doing. Most people know far more than they think they do. + +Mark Hatfield + +--- From abcde9f1fbb53225f88a97db3013658c84322862 Mon Sep 17 00:00:00 2001 From: DSommerfeld <162390500+DSommerfeld@users.noreply.github.com> Date: Tue, 5 Mar 2024 17:14:39 -0800 Subject: [PATCH 73/95] Update README.md --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 841ff26..74fc02b 100644 --- a/README.md +++ b/README.md @@ -476,3 +476,9 @@ Arnold Palme Mark Hatfield --- + +> I think this is how you do it. + +Dorian Sommerfeld + +--- From b3a24b67791f4bc7869a8ea3e24bfd46a693ca49 Mon Sep 17 00:00:00 2001 From: Yee Mey <4806863+yeemey@users.noreply.github.com> Date: Tue, 5 Mar 2024 17:15:05 -0800 Subject: [PATCH 74/95] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 841ff26..1806adf 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,10 @@ To add to the list of quotes: ## The Quotes +> All models are wrong, but some are useful. + +George Box, statistician + > To live is the rarest thing in the world. Most people exist, that is all. Oscar Wilde From 3b3399b50f32e732809350ecfe3dd9dab34fcccc Mon Sep 17 00:00:00 2001 From: Mileszlewis <162390445+Mileszlewis@users.noreply.github.com> Date: Tue, 5 Mar 2024 17:15:09 -0800 Subject: [PATCH 75/95] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 841ff26..4cc4ec9 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,10 @@ To add to the list of quotes: ## The Quotes +> You miss 100% of the shots you don't take. + +Wayne Gretzky + > To live is the rarest thing in the world. Most people exist, that is all. Oscar Wilde From a90fe1aa8849b7adb04400f226888571226e81af Mon Sep 17 00:00:00 2001 From: mackomick <162390731+mackomick@users.noreply.github.com> Date: Tue, 5 Mar 2024 17:15:41 -0800 Subject: [PATCH 76/95] Update README.md --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 841ff26..077789b 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,12 @@ To add to the list of quotes: ## The Quotes +> To achieve great things, two things are needed: a plan, and not enough time. + +Leonard Bernstein + +--- + > To live is the rarest thing in the world. Most people exist, that is all. Oscar Wilde From 782639f263de0a0703e1f47c65c3a15888228ff6 Mon Sep 17 00:00:00 2001 From: moffetty <162390430+moffetty@users.noreply.github.com> Date: Tue, 5 Mar 2024 17:17:11 -0800 Subject: [PATCH 77/95] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 841ff26..86ef483 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,10 @@ To add to the list of quotes: ## The Quotes +> Don't be afraid to give up the good to go for the great + +John D. Rockefeller + > To live is the rarest thing in the world. Most people exist, that is all. Oscar Wilde From 4d50385c604e38fbe9a9095d3863677bce450ab2 Mon Sep 17 00:00:00 2001 From: JayinJeon <162390512+JayinJeon@users.noreply.github.com> Date: Tue, 5 Mar 2024 17:18:50 -0800 Subject: [PATCH 78/95] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 841ff26..a18abd5 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,12 @@ # Curated Quote List -## About +## About -This is a collection of favorite quotes from members of the infamous Coding Collective. This repository is built for anyone to practice collaborating using git. Add as many quotes as you like! +This is a collection of favorite quotes from members of the infamous Coding Collective. This repository is built for anyone to practice collaborating using git. Add as many quotes as you like! ## Add - -To add to the list of quotes: + +To add to the list of quotes: EDIT 1. Fork repository to your personal Github repository. 2. Add your quote either directly on Github or clone to your computer and make changes @@ -30,7 +30,7 @@ Bedouin saying Helen Hunt Jackson ---- +--- I > Fine. Sell out. Get a job. A nice nine to five one. Sit in front of the idiot box all night and watch some stupid sitcom...all the while wondering what it might have been like if you'd hung in there for just one...more...day. From 627321f641364290dee9dd90fd3e1ad11636c084 Mon Sep 17 00:00:00 2001 From: ArciniegaA Date: Tue, 12 Nov 2024 17:25:49 -0800 Subject: [PATCH 79/95] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 265aa01..5b5d316 100644 --- a/README.md +++ b/README.md @@ -508,3 +508,7 @@ Mark Hatfield Dorian Sommerfeld --- + +If you dont risk anything, you risk everything + +Angela A From 35da36cd6f06360c228ff6d9ca691bcbbfb2b22c Mon Sep 17 00:00:00 2001 From: yasefa0 <93231652+yasefa0@users.noreply.github.com> Date: Tue, 12 Nov 2024 17:26:47 -0800 Subject: [PATCH 80/95] Insert Quote README.md --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 265aa01..b6a9a8a 100644 --- a/README.md +++ b/README.md @@ -508,3 +508,11 @@ Mark Hatfield Dorian Sommerfeld --- + +--- + +> If I’m not back in five minutes, just wait longer. + +Ace Ventura + +--- From dc21e98b0d83aeadff5922187eb3210a086713d2 Mon Sep 17 00:00:00 2001 From: yasefa0 <93231652+yasefa0@users.noreply.github.com> Date: Tue, 12 Nov 2024 17:27:11 -0800 Subject: [PATCH 81/95] Update README.md --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index b6a9a8a..054fd28 100644 --- a/README.md +++ b/README.md @@ -509,8 +509,6 @@ Dorian Sommerfeld --- ---- - > If I’m not back in five minutes, just wait longer. Ace Ventura From 38f83a9aec70b3caee089c4f41fdc043bf6fb1aa Mon Sep 17 00:00:00 2001 From: WilliamKluck <92551689+WilliamKluck@users.noreply.github.com> Date: Tue, 12 Nov 2024 17:28:09 -0800 Subject: [PATCH 82/95] added quote --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 265aa01..ec388ea 100644 --- a/README.md +++ b/README.md @@ -508,3 +508,9 @@ Mark Hatfield Dorian Sommerfeld --- + +> All that I can advise is not to attempt the impossible. + +Mahatma Gandhi + +--- From d036963308f4febe48c01af2a83e76e08a276635 Mon Sep 17 00:00:00 2001 From: jaysonramos11 Date: Tue, 12 Nov 2024 19:06:38 -0800 Subject: [PATCH 83/95] added a tom waits quote --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 265aa01..4ea320e 100644 --- a/README.md +++ b/README.md @@ -508,3 +508,7 @@ Mark Hatfield Dorian Sommerfeld --- + +> There’s always free cheese in the mousetrap, baby. + +Tom Waits From 4ceb2afed8824efa41111a33cee0449c92401c48 Mon Sep 17 00:00:00 2001 From: erikalee3 <131489593+erikalee3@users.noreply.github.com> Date: Thu, 14 Nov 2024 15:36:57 -0800 Subject: [PATCH 84/95] Update README.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 265aa01..64c7227 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,11 @@ To add to the list of quotes: EDIT ## The Quotes +> One good thing about music, when it hits you feel no pain. + +Bob Marley + +--- > Don't be afraid to give up the good to go for the great From 03abb138b2ad7b158d0154deffa10148eee6f327 Mon Sep 17 00:00:00 2001 From: SarahK2026 Date: Thu, 14 Nov 2024 15:37:36 -0800 Subject: [PATCH 85/95] Added Yoda quote --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 265aa01..f069768 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,8 @@ To add to the list of quotes: EDIT ## The Quotes +> Do or do not. There is no try. +Yoda > Don't be afraid to give up the good to go for the great From 7da527ae30c4a17e5ee97fc835a7bb7b7199d9e4 Mon Sep 17 00:00:00 2001 From: Yee Mey <4806863+yeemey@users.noreply.github.com> Date: Thu, 14 Nov 2024 15:37:37 -0800 Subject: [PATCH 86/95] Add Wurman quote. --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 265aa01..33d1182 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,9 @@ To add to the list of quotes: EDIT ## The Quotes +> Everyone spoke of an information overload, but what there was in fact was a non-information overload. +Richard Saul Wurman +--- > Don't be afraid to give up the good to go for the great From 9aa87f291039cc856faf275dd0b40ec1ef15a801 Mon Sep 17 00:00:00 2001 From: ArciniegaA Date: Thu, 14 Nov 2024 15:37:38 -0800 Subject: [PATCH 87/95] Add my own quote --- README.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5b5d316..551efb5 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,11 @@ To add to the list of quotes: EDIT ## The Quotes +> +If you dont risk anything, you risk everything +Angela +--- + > Don't be afraid to give up the good to go for the great @@ -509,6 +514,6 @@ Dorian Sommerfeld --- -If you dont risk anything, you risk everything +If you dont risk anything, you risk everything. -Angela A +Angela From b794004700037c639ebd4033b2539363a485988d Mon Sep 17 00:00:00 2001 From: romanmokhnatkin Date: Thu, 14 Nov 2024 15:38:09 -0800 Subject: [PATCH 88/95] added a quote --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 265aa01..22cc4fa 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,9 @@ To add to the list of quotes: EDIT ## The Quotes +> Whoever is happy will make others happy too. +Mark Twain +--- > Don't be afraid to give up the good to go for the great From bafbec828e79d67d808202f00219a226ec18b515 Mon Sep 17 00:00:00 2001 From: Yee Mey <4806863+yeemey@users.noreply.github.com> Date: Thu, 14 Nov 2024 15:38:27 -0800 Subject: [PATCH 89/95] Fix formatting. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 33d1182..b32e7e0 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,9 @@ To add to the list of quotes: EDIT ## The Quotes > Everyone spoke of an information overload, but what there was in fact was a non-information overload. + Richard Saul Wurman + --- > Don't be afraid to give up the good to go for the great From a8db07ea45bc5ab95549169700ba1d036692604c Mon Sep 17 00:00:00 2001 From: erikalee3 <131489593+erikalee3@users.noreply.github.com> Date: Thu, 14 Nov 2024 15:38:27 -0800 Subject: [PATCH 90/95] Update, add Bob Marley quote --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 64c7227..60fe4ec 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ To add to the list of quotes: EDIT ## The Quotes -> One good thing about music, when it hits you feel no pain. +> One good thing about music, when it hits you feel no pain. Bob Marley From fc4358876101c7f0d23992c9710d45c0c974fc11 Mon Sep 17 00:00:00 2001 From: jaysonramos11 Date: Thu, 14 Nov 2024 15:38:31 -0800 Subject: [PATCH 91/95] added a kikuyu proverb --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 4ea320e..efd0f81 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,11 @@ To add to the list of quotes: EDIT ## The Quotes +> When elephants fight, it is the grass that suffers. + +Kikuyu Proverb + +---- > Don't be afraid to give up the good to go for the great From 7ca6a870a7f40aa6ef08297babd922b2822fb24e Mon Sep 17 00:00:00 2001 From: ArciniegaA Date: Thu, 14 Nov 2024 15:38:34 -0800 Subject: [PATCH 92/95] fixed formating --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 551efb5..59b0422 100644 --- a/README.md +++ b/README.md @@ -15,8 +15,10 @@ To add to the list of quotes: EDIT ## The Quotes > -If you dont risk anything, you risk everything +If you dont risk anything, you risk everything +> Angela + --- From 0e345c1f742b41cfeef3ce1feb64cb19793bb9d6 Mon Sep 17 00:00:00 2001 From: SarahK2026 Date: Thu, 14 Nov 2024 15:38:42 -0800 Subject: [PATCH 93/95] Changed Yoda quote --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index f069768..88a6851 100644 --- a/README.md +++ b/README.md @@ -15,8 +15,11 @@ To add to the list of quotes: EDIT ## The Quotes > Do or do not. There is no try. + Yoda +--- + > Don't be afraid to give up the good to go for the great John D. Rockefeller From f246067ccaad7339c445245a3c3372cff1342fbc Mon Sep 17 00:00:00 2001 From: romanmokhnatkin Date: Thu, 14 Nov 2024 15:42:45 -0800 Subject: [PATCH 94/95] fixed my formatting --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 22cc4fa..548c704 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,9 @@ To add to the list of quotes: EDIT ## The Quotes > Whoever is happy will make others happy too. + Mark Twain + --- > Don't be afraid to give up the good to go for the great From 325376599335dcd7499b27d404172baf1509d642 Mon Sep 17 00:00:00 2001 From: Ciera Martinez Date: Thu, 14 Nov 2024 16:26:07 -0800 Subject: [PATCH 95/95] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a7b6511..abddae7 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,7 @@ Bedouin saying Helen Hunt Jackson ---- I +--- > Fine. Sell out. Get a job. A nice nine to five one. Sit in front of the idiot box all night and watch some stupid sitcom...all the while wondering what it might have been like if you'd hung in there for just one...more...day. @@ -174,7 +174,7 @@ Julin Maloof > If all mankind were to disappear, the world would regenerate back to the rich state of equilibrium that existed ten thousand years ago. If insects were to vanish, the environment would collapse into chaos. -E\. O. Wilson +E. O. Wilson ---