-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquotes.js
602 lines (602 loc) · 19.6 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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
const localQuotes = [
{
"text": "Today is the tomorrow we worried about yesterday.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "It's easier to see the mistakes on someone else's paper.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Every man dies. Not every man really lives.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "The day is already blessed, find peace within it.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "From small beginnings come great things.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "It takes both sunshine and rain to make a rainbow.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "A beautiful thing is never perfect.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Every new day is another chance to change your life.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Some pursue happiness, others create it.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "We do what we do because we believe.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "The harder you fall, the higher you bounce.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Everyone smiles in the same language.",
"author": "Anonymousk",
"tag": ""
},
{
"text": "You can do what's reasonable or you can decide what's possible.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Friendship isn't a big thing. It's a million little things.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "A good plan today is better than a perfect plan tomorrow.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Someone remembers, someone cares; your name is whispered in someone's prayers.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Don't be pushed by your problems; be led by your dreams.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Change your thoughts, change your life!",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Today is the tomorrow you worried about yesterday.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "The day always looks brighter from behind a smile.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "A stumble may prevent a fall.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Put your future in good hands your own.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "What you see depends on what you're looking for.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Worry gives a small thing a big shadow.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "To get something you never had, you have to do something you never did.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Be thankful when you don't know something for it gives you the opportunity to learn.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Letting go is not the end of the world; it is the beginning of a new life.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Our greatest glory is not in never failing but rising everytime we fall.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Being right is highly overrated. Even a stopped clock is right twice a day.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Love is not blind; it simply enables one to see things others fail to see.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "If you get up one more time than you fall, you will make it through.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Don't focus on making the right decision, focus on making the decision the right one.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Love is just a word until someone comes along and gives it meaning.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "We all have problems. The way we solve them is what makes us different.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Invent your world. Surround yourself with people, color, sounds, and work that nourish you.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Every day may not be good, but there's something good in every day.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Some people think it's holding that makes one strong sometimes it's letting go.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Why worry about things you cannot control when you can keep yourself busy controlling the things that depend on you?",
"author": "Anonymous",
"tag": "general"
},
{
"text": "It is better to take many small steps in the right direction than to make a great leap forward only to stumble backward.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "As the rest of the world is walking out the door, your best friends are the ones walking in.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Why compare yourself with others? No one in the entire world can do a better job of being you than you.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "A good teacher is like a candle it consumes itself to light the way for others.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Life is not measured by the breaths we take, but by the moments that take our breath.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "The real measure of your wealth is how much youd be worth if you lost all your money.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Though no one can go back and make a brand new start, anyone can start from now and make a brand new ending.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "A friend is someone who understands your past, believes in your future, and accepts you just the way you are.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Giving up doesn't always mean you are weak. Sometimes it means that you are strong enough to let go.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Never miss an opportunity to make others happy, even if you have to leave them alone in order to do it.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Yesterday is history. Tomorrow is a mystery. And today? Today is a gift that's why they call it the present.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "When you don't know what you believe, everything becomes an argument. Everything is debatable. But when you stand for something, decisions are obvious.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Every sixty seconds you spend angry, upset or mad, is a full minute of happiness you will never get back.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "If we are facing in the right direction, all we have to do is keep on walking.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Peace of mind is not the absence of conflict from life, but the ability to cope with it.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "An obstacle may be either a stepping stone or a stumbling block.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "I've never seen a smiling face that was not beautiful.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Kindness is the greatest wisdom.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Don't miss all the beautiful colors of the rainbow looking for that pot of gold.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "You don't drown by falling in water. You drown by staying there.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Never be afraid to try, remember... Amateurs built the ark, Professionals built the Titanic.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "A smile is a light in the window of your face to show your heart is at home.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "You may only be someone in the world, but to someone else, you may be the world.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "A bend in the road is not the end of the road...unless you fail to make the turn.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "One who asks a question is a fool for five minutes; one who does not ask a question remains a fool forever.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Courage is the discovery that you may not win, and trying when you know you can lose.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "A good rest is half the work.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "All the flowers of all the tomorrows are in the seeds of today.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "A man is not where he lives but where he loves.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "The world does not happen to you it happens from you.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "More powerful than the will to win is the courage to begin.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "What we see is mainly what we look for.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Don't wait for people to be friendly. Show them how.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Don't let today's disappointments cast a shadow on tomorrow's dreams.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Never let lack of money interfere with having fun.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "He who has health has hope, and he who has hope has everything.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "The difficulties of life are intended to make us better, not bitter.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Change your words. Change your world.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Open minds lead to open doors.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Each time we face a fear, we gain strength, courage, and confidence in the doing.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "If you come to a fork in the road, take it.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Nobody can do everything, but everybody can do something.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Why worry about tomorrow, when today is all we have?",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Most smiles are started by another smile.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "When you lose, don't lose the lesson.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "If I could reach up and hold a star for every time you've made me smile, the entire evening sky would be in the palm of my hand.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "The steeper the mountain the harder the climb the better the view from the finishing line",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Don't let what you can't do stop you from doing what you can do.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "You can never cross the ocean unless you have the courage to lose sight of the shore.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "The best place to find a helping hand is at the end of your own arm.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Don't fear failure so much that you refuse to try new things. The saddest summary of life contains three descriptions: could have, might have, and should have.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "We cannot direct the wind but we can adjust the sails.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Giving up doesn't always mean you are weak; sometimes it means that you are strong enough to let go.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Many people have gone further than they thought they could because someone else thought they could.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Never tell me the sky is the limit when there are footprints on the moon.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Count your joys instead of your woes. Count your friends instead of your foes.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Beware of the half truth. You may have gotten hold of the wrong half.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "It's not who you are that holds you back, it's who you think you're not.",
"author": "Anonymous",
"tag": "general"
},
{
"text": "Choosing to be positive and having a grateful attitude is going to determine how you're going to live your life.",
"author": "Joel Osteen",
"tag": "attitude"
},
{
"text": "My attitude is that if you push me towards something that you think is a weakness, then I will turn that perceived weakness into a strength.",
"author": "Michael Jordan",
"tag": "attitude"
},
{
"text": "Weakness of attitude becomes weakness of character.",
"author": "Albert Einstein",
"tag": "attitude"
},
{
"text": "Nothing can stop the man with the right mental attitude from achieving his goal nothing on earth can help the man with the wrong mental attitude.",
"author": "Thomas Jefferson",
"tag": "attitude"
},
{
"text": "Attitude is a little thing that makes a big difference.",
"author": "Winston Churchill",
"tag": "attitude"
},
{
"text": "Your attitude, not your aptitude, will determine your altitude.",
"author": "Zig Ziglar",
"tag": "attitude"
},
{
"text": "There is little difference in people, but that little difference makes a big difference. The little difference is attitude. The big difference is whether it is positive or negative.",
"author": "W. Clement Stone",
"tag": "attitude"
},
{
"text": "Develop an attitude of gratitude, and give thanks for everything that happens to you, knowing that every step forward is a step toward achieving something bigger and better than your current situation.",
"author": "Brian Tracy",
"tag": "attitude"
},
{
"text": "Everything can be taken from a man but one thing: the last of human freedoms - to choose one's attitude in any given set of circumstances, to choose one's own way.",
"author": "Viktor E. Frankl",
"tag": "attitude"
},
{
"text": "A positive attitude causes a chain reaction of positive thoughts, events and outcomes. It is a catalyst and it sparks extraordinary results.",
"author": "Wade Boggs",
"tag": "attitude"
},
{
"text": "Morality is simply the attitude we adopt towards people whom we personally dislike.",
"author": "Oscar Wilde",
"tag": "attitude"
},
{
"text": "It is not the body's posture, but the heart's attitude that counts when we pray.",
"author": "Billy Graham",
"tag": "attitude"
},
{
"text": "People may hear your words, but they feel your attitude.",
"author": "John C. Maxwell",
"tag": "attitude"
},
{
"text": "But the attitude of faith is to let go, and become open to truth, whatever it might turn out to be.",
"author": "Alan Watts",
"tag": "attitude"
},
{
"text": "Character is the result of two things: mental attitude and the way we spend our time.",
"author": "Elbert Hubbard",
"tag": "attitude"
},
{
"text": "Our attitude towards others determines their attitude towards us.",
"author": "Earl Nightingale",
"tag": "attitude"
},
{
"text": "Adopting the right attitude can convert a negative stress into a positive one.",
"author": "Hans Selye",
"tag": "attitude"
},
{
"text": "Take the attitude of a student, never be too big to ask questions, never know too much to learn something new.",
"author": "Og Mandino",
"tag": "attitude"
},
{
"text": "The reactionary is always willing to take a progressive attitude on any issue that is dead.",
"author": "Theodore Roosevelt",
"tag": "attitude"
},
{
"text": "Ability is what you're capable of doing. Motivation determines what you do. Attitude determines how well you do it.",
"author": "Raymond Chandler",
"tag": "attitude"
},
{
"text": "Cock your hat - angles are attitudes.",
"author": "Frank Sinatra",
"tag": "attitude"
},
{
"text": "When you pray for anyone you tend to modify your personal attitude toward him.",
"author": "Norman Vincent Peale",
"tag": "attitude"
},
{
"text": "If you are going to achieve excellence in big things, you develop the habit in little matters. Excellence is not an exception, it is a prevailing attitude.",
"author": "Colin Powell",
"tag": "attitude"
},
{
"text": "I'm only going to stand before God and give an account for my life, not for somebody else's life. If I have a bad attitude, then I need to say there's no point in me blaming you for what's wrong in my life.",
"author": "Joyce Meyer",
"tag": "attitude"
}
];