-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquotes.js
201 lines (201 loc) · 5.01 KB
/
quotes.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
const localQuote=[
{
"text": "Genius is one percent inspiration and ninety-nine percent perspiration.",
"author": "Thomas Edison"
},
{
"text": "You can observe a lot just by watching.",
"author": "Yogi Berra"
},
{
"text": "A house divided against itself cannot stand.",
"author": "Abraham Lincoln"
},
{
"text": "Difficulties increase the nearer we get to the goal.",
"author": "Johann Wolfgang von Goethe"
},
{
"text": "Fate is in your hands and no one elses",
"author": "Byron Pulsifer"
},
{
"text": "Be the chief but never the lord.",
"author": "Lao Tzu"
},
{
"text": "Nothing happens unless first we dream.",
"author": "Carl Sandburg"
},
{
"text": "Well begun is half done.",
"author": "Aristotle"
},
{
"text": "Life is a learning experience, only if you learn.",
"author": "Yogi Berra"
},
{
"text": "Self-complacency is fatal to progress.",
"author": "Margaret Sangster"
},
{
"text": "Peace comes from within. Do not seek it without.",
"author": "Buddha"
},
{
"text": "What you give is what you get.",
"author": "Byron Pulsifer"
},
{
"text": "We can only learn to love by loving.",
"author": "Iris Murdoch"
},
{
"text": "Life is change. Growth is optional. Choose wisely.",
"author": "Karen Clark"
},
{
"text": "You'll see it when you believe it.",
"author": "Wayne Dyer"
},
{
"text": "Today is the tomorrow we worried about yesterday.",
"author": null
},
{
"text": "It's easier to see the mistakes on someone else's paper.",
"author": null
},
{
"text": "Every man dies. Not every man really lives.",
"author": null
},
{
"text": "To lead people walk behind them.",
"author": "Lao Tzu"
},
{
"text": "Having nothing, nothing can he lose.",
"author": "William Shakespeare"
},
{
"text": "Trouble is only opportunity in work clothes.",
"author": "Henry J. Kaiser"
},
{
"text": "A rolling stone gathers no moss.",
"author": "Publilius Syrus"
},
{
"text": "Ideas are the beginning points of all fortunes.",
"author": "Napoleon Hill"
},
{
"text": "Everything in life is luck.",
"author": "Donald Trump"
},
{
"text": "Doing nothing is better than being busy doing nothing.",
"author": "Lao Tzu"
},
{
"text": "Trust yourself. You know more than you think you do.",
"author": "Benjamin Spock"
},
{
"text": "Study the past, if you would divine the future.",
"author": "Confucius"
},
{
"text": "The day is already blessed, find peace within it.",
"author": null
},
{
"text": "From error to error one discovers the entire truth.",
"author": "Sigmund Freud"
},
{
"text": "Well done is better than well said.",
"author": "Benjamin Franklin"
},
{
"text": "Bite off more than you can chew, then chew it.",
"author": "Ella Williams"
},
{
"text": "Work out your own salvation. Do not depend on others.",
"author": "Buddha"
},
{
"text": "One today is worth two tomorrows.",
"author": "Benjamin Franklin"
},
{
"text": "Once you choose hope, anythings possible.",
"author": "Christopher Reeve"
},
{
"text": "God always takes the simplest way.",
"author": "Albert Einstein"
},
{
"text": "One fails forward toward success.",
"author": "Charles Kettering"
},
{
"text": "From small beginnings come great things.",
"author": null
},
{
"text": "Learning is a treasure that will follow its owner everywhere",
"author": "Chinese proverb"
},
{
"text": "Be as you wish to seem.",
"author": "Socrates"
},
{
"text": "The world is always in movement.",
"author": "V. Naipaul"
},
{
"text": "Never mistake activity for achievement.",
"author": "John Wooden"
},
{
"text": "What worries you masters you.",
"author": "Haddon Robinson"
},
{
"text": "One faces the future with ones past.",
"author": "Pearl Buck"
},
{
"text": "Goals are the fuel in the furnace of achievement.",
"author": "Brian Tracy"
},
{
"text": "Who sows virtue reaps honour.",
"author": "Leonardo da Vinci"
},
{
"text": "Be kind whenever possible. It is always possible.",
"author": "Dalai Lama"
},
{
"text": "Talk doesn't cook rice.",
"author": "Chinese proverb"
},
{
"text": "He is able who thinks he is able.",
"author": "Buddha"
},
{
"text": "A goal without a plan is just a wish.",
"author": "Larry Elder"
},
{
"text": "To succeed, we must first believe that we can.",
"author": "Michael Korda"
}]