forked from nikhilmufc7/Quote-Machine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
1196 lines (945 loc) · 30 KB
/
script.js
File metadata and controls
1196 lines (945 loc) · 30 KB
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
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//Declare global variables
var africanQuotes;
var bookQuotes;
var sportsQuotes;
var startupQuotes;
var lifeQuotes;
var relationshipQuotes;
var christianityQuotes;
var movieQuotes;
//Quotes Containers
startupQuotes = [
{
quote: "If you make the Internet, live on the internet.",
author: "Matthew Mullenweg, WordPress"
},
{
quote: "Find something you love and do it better than everyone else.",
author: "Gurbaksh Chahal, RadiumOne"
},
{
quote: "I find it best to dive right in and learn the hard way.",
author: "Pete Cashmore, Mashable"
},
{
quote: "If you do the things that are easier first, then you can actually make a lot of progress.",
author: "Mark Zuckerberg, Facebook"
},
{
quote: "A hard thing is done by figuring out how to start.",
author: "Rand Fishkin, SEOmoz"
},
{
quote: "To any entrepreneur: if you want to do it, do it now. If you don’t, you’re going to regret it.",
author: "Catherine Cook, MyYearbook"
},
{
quote: "Everything started as nothing.",
author: "Ben Weissenstein, Grand Slam Garage Sales"
},
{
quote: "I don’t have big ideas. I sometimes have small ideas, which seem to work out.",
author: "Matt Mullenweg, WordPress"
},
{
quote: "I think I was very naïve early on, but that also meant I didn’t know what couldn’t be done.",
author: "Matt Mickiewicz, 99 Designs"
},
{
quote: "It’s not about how many years of experience you have. It’s about the quality of your years of experience.",
author: "Jacob Cass, Logo of the Day"
},
{
quote: "Every single person I know who is successful at what they do is successful because they love doing it.",
author: "Joe Penna, Mystery Guitar Man"
},
{
quote: "My number one piece of advice is: you should learn how to program.",
author: "Mark Zuckerberg, Facebook"
},
{
quote: "Focusing on one thing and doing it really, really well can get you very far.",
author: "Kevin Systrom, Instagram"
},
{
quote: "Success is defined in units of fun. It’s all about being happy.",
author: "Jake Nickell, Threadless"
},
{
quote: "Solving specific problems is what drives me. I am not interested in having a career. I never have been.",
author: "Sean Parker, Napster"
},
{
quote: "I’m here to build something for the long-term. Anything else is a distraction.",
author: "Mark Zuckerberg, Facebook"
},
{
quote: "One can get anything if he is willing to help enough others get what they want.",
author: "Zig Ziglar, Motivational Speaker"
},
{
quote: "Brilliant thinking is rare, but courage is in even shorter supply than genius.",
author: "Peter Thiel, Zero to One"
},
{
quote: "All failed companies are the same: they failed to escape competition.",
author: "Peter Thiel, Zero to One"
},
{
quote: "Don't worry about failure; you only have to be right once.",
author: "Drew Houston"
},
{
quote: "As long as your going to be thinking anyway, think big.",
author: "Donald Trump"
},
{
quote: "Chase the vision, not the money; the money will end up following you.",
author: "Tony Hsieh"
},
{
quote: "Always deliver more than expected.",
author: "Larry Page, Co-Founder, Google"
},
{
quote: "If you’re not a risk taker, you should get the hell out of business.",
author: "Ray Kroc, McDonald’s Founder"
},
{
quote: "Ideas are commodity. Execution of them is not.",
author: "Michael Dell, Dell Computers"
},
];
bookQuotes = [
{
quote: "There are five billion people living on this planet. But you fall in love with one particular person, and you won't swap her for any other.",
author: "Jostein Gaarder, The Solitaire Mystery"
},
{
quote: "People generally see what they look for and hear what they listen for.",
author: "Harper Lee, To Kill a Mockingbird"
},
{
quote: "You don't get to choose if you get hurt in this world...but you do have some say in who hurts you.",
author: "John Green, The Fault In Our Stars"
},
{
quote: "The world is not a wish-granting factory",
author: "John Green, The Fault In Our Stars"
},
{
quote: "Destroying things is much easier than making them.",
author: "Suzanne Collins, The Hunger Games"
},
{
quote: "To be successful you need friends and to be very successful you need enemies.",
author: "Sidney Sheldon, The Other Side of Midnight"
},
{
quote: "Life is like a novel. It's filled with suspense. You have no idea what is going to happen until you turn the page.",
author: "Sidney Sheldon"
},
{
quote: "It's much better to do good in a way that no one knows anything about it.",
author: "Leo Tolstoy, Anna Karenina"
},
{
quote: "There comes a time when you have to choose between turning the page and closing the book.",
author: "Josh Jameson"
},
{
quote: "I think of life as a good book. The further you get into it, the more it begins to make sense.",
author: "Harold Kushner"
},
{
quote: "If you only read the books that everyone else is reading, you can only think what everyone else is thinking.",
author: "Haruki Murakami"
},
{
quote: "There are many little ways to enlarge your child’s world. Love of books is the best of all.",
author: "Jacqueline Kennedy Onassis"
},
{
quote: "Great books help you understand, and they help you feel understood.",
author: "John Green"
},
{
quote: "A book is a version of the world. If you do not like it, ignore it or offer your own version in return.",
author: "Salman Rushdie"
},
{
quote: "Keep reading books, but remember that a book is only a book, and you should learn to think for yourself.",
author: "Maxim Gorky"
},
{
quote: "There are perhaps no days of our childhood we lived so fully as those we spent with a favorite book.",
author: "Marcel Proust"
},
{
quote: "A book is the only place in which you can examine a fragile thought without breaking it.",
author: "Edward P. Morgan"
},
{
quote: "If one cannot enjoy reading a book over and over again, there is no use in reading it at all.",
author: "Oscar Wilde"
},
{
quote: "Read the best books first, or you may not have a chance to read them at all.",
author: "Henry David Thoreau"
},
{
quote: "Make it a rule never to give a child a book you would not read yourself.",
author: "George Bernard Shaw"
},
{
quote: "I can’t imagine a man really enjoying a book and reading it only once.",
author: "C.S. Lewis"
},
{
quote: "One always has a better book in one’s mind than one can manage to get onto paper.",
author: "Michael Cunningham"
},
{
quote: "There are worse crimes than burning books. One of them is not reading them.",
author: "Joseph Brodsky"
},
{
quote: "You know you’ve read a good book when you turn the last page and feel a little as if you have lost a friend.",
author: "Paul Sweeney"
},
{
quote: "A good book has no ending.",
author: "R.D. Cumming"
},
];
africanQuotes = [
{
quote: "The fool speaks, the wise man listens.",
author: "Ethiopian proverb"
},
{
quote: "Marriage is like a groundnut; you have to crack it to see what is inside.",
author: "Ghanaian proverb"
},
{
quote: "Patience can cook a stone.",
author: "African proverb"
},
{
quote: "However long the night, the dawn will break.",
author: "African proverb"
},
{
quote: "He who eats another mans food will have his own food eaten by others.",
author: "Swahili proverb"
},
{
quote: "Water is colourless and tasteless but you can live on it longer than eating food.",
author: "African proverb"
},
{
quote: "If you want to go fast, go alone. If you want to go far, go together.",
author: "African proverb"
},
{
quote: "A man who makes trouble for others is also making trouble for himself.",
author: "Chinua Achebe"
},
{
quote: "If you think you are too small to make a difference, you haven’t spent a night with a mosquito.",
author: "African proverb"
},
{
quote: "Education is the most powerful weapon which you can use to change the world.",
author: "Nelson Mandela"
},
{
quote: "If you are filled with pride, then you will have no room for wisdom.",
author: "African proverb"
},
{
quote: "Do not try to fight a lion if you are not one yourself.",
author: "African proverb"
},
{
quote: "A good thing sells itself, a bad one advertises itself.",
author: "African proverb"
},
{
quote: "It is better to be loved than feared.",
author: "African proverb"
},
{
quote: "Whether the knife falls on the melon or the melon on the knife, the melon suffers.",
author: "African proverb"
},
{
quote: "Not to know is bad. Not to wish to know is worse.",
author: "African proverb"
},
{
quote: "Ears that do not listen to advice, accompany the head when it is chopped off.",
author: "African proverb"
},
{
quote: "A happy man marries the girl he loves, but a happier man loves the girl he marries.",
author: "African proverb"
},
{
quote: "The wise create proverbs for fools to learn, not to repeat.",
author: "African proverb"
},
{
quote: "Brothers love each other when they are equally rich.",
author: "African proverb"
},
{
quote: "He who earns calamity, eats it with his family.",
author: "African proverb"
},
{
quote: "When the mouse laughs at the cat, there is a hole nearby",
author: "African proverb"
},
{
quote: "Knowledge without wisdom is like water in the sand.",
author: "African proverb"
},
{
quote: "When brothers fight to the death, a stranger inherits their father’s estate.",
author: "African proverb"
},
{
quote: "To get lost is to learn the way.",
author: "African proverb"
},
];
lifeQuotes = [
{
quote: "Don't cry because it's over, smile because it happened.",
author: "Dr. Seuss"
},
{
quote: "You only live once, but if you do it right, once is enough.",
author: "Mae West"
},
{
quote: "To live is the rarest thing in the world. Most people exist, that is all.",
author: "Oscar Wilde"
},
{
quote: "It is better to be hated for what you are than to be loved for what you are not.",
author: "Andre Gide"
},
{
quote: "In three words I can sum up everything I've learned about life: it goes on.",
author: "Robert Frost"
},
{
quote: "On most days, the biggest thing you can do is a small act of kindness, decency or love.",
author: "Cory Booker"
},
{
quote: "In the end, it's not the years in your life that count. It's the life in your years.",
author: "Abraham Lincoln"
},
{
quote: "We do not remember days, we remember moments.",
author: "Cesare Pavese"
},
{
quote: "Life's most persistent and urgent question is, 'What are you doing for others?'",
author: "Martin Luther King, Jr."
},
{
quote: "Life is really simple, but we insist on making it complicated.",
author: "Confucius"
},
{
quote: "Beware the barrenness of a busy life.",
author: "Socrates"
},
{
quote: "You have enemies? Good. That means you've stood up for something, sometime in your life.",
author: "Winston Churchill"
},
{
quote: "Growth is the only evidence of life.",
author: "John Henry Newman"
},
{
quote: "Sometimes the questions are complicated and the answers are simple.",
author: "Dr. Seuss"
},
{
quote: "Things change. And friends leave. Life doesn't stop for anybody.",
author: "Stephen Chbosky"
},
{
quote: "The fear of death follows from the fear of life. A man who lives fully is prepared to die at any time.",
author: "Mark Twain"
},
{
quote: "We are what we pretend to be, so we must be careful about what we pretend to be.",
author: "Kurt Vonnegut"
},
{
quote: "The one you love and the one who loves you are never, ever the same person.",
author: "Chuck Palahniuk"
},
{
quote: "If you don't know where you're going, any road'll take you there.",
author: "George Harrison"
},
{
quote: "A life spent making mistakes is not only more honorable, but more useful than a life spent doing nothing.",
author: "George Bernard Shaw"
},
{
quote: "The most important thing is to enjoy your life—to be happy—it's all that matters.",
author: "Audrey Hepburn"
},
{
quote: "Life is a book and there are a thousand pages I have not yet read.",
author: "Cassandra Clare"
},
{
quote: "Nobody realizes that some people expend tremendous energy merely to be normal",
author: "Albert Camus"
},
{
quote: "If you love somebody, let them go, for if they return, they were always yours. If they don't, they never were.",
author: "Kahlil Gibran"
},
{
quote: "Do I not destroy my enemies when I make them my friends?",
author: "Abraham Lincoln"
},
];
relationshipQuotes = [
{
quote: "When you stop expecting people to be perfect, you can like them for who they are.",
author: "Donald Miller"
},
{
quote: "No road is long with good company.",
author: "Turkish Proverb"
},
{
quote: "Shared joy is a double joy; shared sorrow is half a sorrow.",
author: "Swedish Proverb"
},
{
quote: "We are afraid to care too much, for fear that the other person does not care at all.",
author: "Eleanor Roosevelt"
},
{
quote: "Lots of people want to ride with you in the limo, but what you want is someone who will take the bus with you when the limo breaks down.",
author: "Oprah Winfrey"
},
{
quote: "What love we’ve given, we’ll have forever. What love we fail to give, will be lost for all eternity",
author: "Leo Buscaglia"
},
{
quote: "Life is partly what we make it, and partly what it is made by the friends we choose.",
author: "Tennessee Williams"
},
{
quote: "Everything that irritates us about others can lead us to an understanding of ourselves.",
author: "Carl Jung"
},
{
quote: "Intimacy is the capacity to be rather weird with someone – and finding that that’s ok with them.",
author: "Alain de Botton"
},
{
quote: "An eye for eye only ends up making the whole world blind.",
author: "Mahatma Gandhi"
},
{
quote: "What you do not want done to yourself, do not do to others.",
author: "Confucius"
},
{
quote: "Having someone wonder where you are when you don’t come home at night is a very old human need.",
author: "Margaret Mead"
},
{
quote: "I like to listen. I have learned a great deal from listening carefully. Most people never listen.",
author: "Ernest Hemingway"
},
{
quote: "Forgiveness does not change the past, but it does enlarge the future.",
author: "Paul Boose"
},
{
quote: "If you live to be 100, I hope I live to be 100 minus 1 day, so I never have to live without you.",
author: "Winnie the Pooh"
},
{
quote: "If you would be loved, love, and be loveable.",
author: "Benjamin Franklin"
},
{
quote: "People are lonely because they build walls instead of bridges.",
author: "Joseph F. Newton"
},
{
quote: "Assumptions are the termites of relationships.",
author: "Henry Winkler"
},
{
quote: "Love is when you meet someone who tells you something new about yourself.",
author: "Andre Breton"
},
{
quote: "A woman knows the face of the man she loves as a sailor knows the open sea.",
author: "Honore de Balzac"
},
{
quote: "When a woman is talking to you, listen to what she says with her eyes.",
author: "Victor Hugo"
},
{
quote: "We can improve our relationships with others by leaps and bounds if we become encouragers instead of critics.",
author: "Joyce Meyer"
},
{
quote: "Don’t smother each other. No one can grow in the shade.",
author: "Leo Buscaglia"
},
{
quote: "The royal road to a man’s heart is to talk to him about the things he treasures most.",
author: "Dale Carnegie"
},
{
quote: "When dealing with people, remember you are not dealing with creatures of logic, but creatures of emotion.",
author: "Dale Carnegie"
},
];
movieQuotes = [
{
quote: "May the Force be with you",
author: "Star Wars, 1977"
},
{
quote: "There’s no place like home",
author: "The Wizard of Oz, 1939"
},
{
quote: "The first rule of Fight Club is you do not talk about Fight Club",
author: "Fight Club, 1999"
},
{
quote: "Keep your friends close, but your enemies closer.",
author: "The Godfather Part II, 1974"
},
{
quote: "They may take our lives, but they'll never take our freedom!",
author: "Braveheart, 1995"
},
{
quote: "The greatest trick the devil ever pulled was convincing the world he didn't exist.",
author: "The Usual Suspects, 1995"
},
{
quote: "Hello. My name is Inigo Montoya. You killed my father. Prepare to die.",
author: "The Princess Bride, 1987"
},
{
quote: "Get busy living, or get busy dying.",
author: "The Shawshank Redemption, 1994"
},
{
quote: "I'll be back.",
author: "The Terminator, 1984"
},
{
quote: "I'm also just a girl standing in front of a boy asking him to love her.",
author: "Notting Hill, 1999"
},
{
quote: "To call you stupid would be an insult to stupid people",
author: "A Fish Called Wanda, 1988"
},
{
quote: "Well, what if there is no tomorrow? There wasn't one today.",
author: "Groundhog Day, 1993"
},
{
quote: "You're not an asshole, Mark. You're just trying so hard to be.",
author: "The Social Network, 2010"
},
{
quote: "You're gonna need a bigger boat.",
author: "Jaws, 1975"
},
{
quote: "That’s what makes me sad: Life is so different from books.",
author: "Pierrot Le Fou, 1965"
},
{
quote: "Say what you like about the Nazis... they had style.",
author: "Outpost, 2007"
},
{
quote: "Old age. It's the only disease, Mr. Thompson, that you don't look forward to being cured of.",
author: "Citizen Kane, 1941"
},
{
quote: "Nobody's perfect.",
author: "Some Like It Hot, 1959"
},
{
quote: "Life is a box of chocolates, Forrest. You never know what you're gonna get.",
author: "Forrest Gump, 1994"
},
{
quote: "Louis, I think this is the beginning of a beautiful friendship.",
author: "Casablanca, 1942"
},
{
quote: "Man who catch fly with chopstick accomplish anything.",
author: "The Karate Kid, 1984"
},
{
quote: "In case I don't see ya, good afternoon, good evening, and good night!",
author: "The Truman Show, 1998"
},
{
quote: "I'll have what she's having.",
author: "When Harry Met Sally, 1989"
},
{
quote: "I'm gonna make him an offer he can't refuse.",
author: "The Godfather, 1972"
},
{
quote: "It’s a fool looks for logic in the chambers of the human heart.",
author: "Where Art Thou?, 2000"
},
];
sportsQuotes = [
{
quote: "It’s hard to beat a person who never gives up.",
author: "Babe Ruth, Baseball Legend"
},
{
quote: "If you even dream of beating me, you'd better wake up and apologize",
author: "Muhammad Ali"
},
{
quote: "If you only ever give 90% in training then you will only ever give 90% when it matters.",
author: "Michael Owen"
},
{
quote: "If you are afraid of failure you don’t deserve to be successful!",
author: "Charles Barkley"
},
{
quote: "The best motivation always comes from within.",
author: "Michael Johnson"
},
{
quote: "The more I practice, the luckier I get.",
author: "Gary Player"
},
{
quote: "One man practicing sportsmanship is far better than 50 preaching it.",
author: "Knute Rockne"
},
{
quote: "Winning is not everything – but making the effort to win is.",
author: "Vince Lombardi"
},
{
quote: "A good coach will make his players see what they can be rather than what they are.",
author: "Ara Paraeghian"
},
{
quote: "You miss 100 percent of the shots you don’t take",
author: "Wayne Gretzky"
},
{
quote: "Gold medals aren't really made of gold. They're made of sweat, determination and a hard-to-find alloy called guts",
author: "Dan Gable"
},
{
quote: "Everybody has a plan until they get punched in the face",
author: "Mike Tyson"
},
{
quote: "Most talented players don’t always succeed. Some don’t even make the team. It’s more what’s inside.",
author: "Brett Favre"
},
{
quote: "If you can’t outplay them, outwork them.",
author: "Ben Hogan"
},
{
quote: "You can't put a limit on anything. The more you dream, the farther you get.",
author: "Michael Phelps"
},
{
quote: "It is not the size of a man but the size of his heart that matters.",
author: "Evander Holyfield"
},
{
quote: "You have to believe in yourself when no one else does - that makes you a winner right there.",
author: "Venus Williams"
},
{
quote: "I skate to where the puck is going to be, not where it has been.",
author: "Wayne Gretzy, Hockey Star"
},
{
quote: "One man can be a crucial ingredient on a team, but one man cannot make a team.",
author: "Kareem Abdul-Jabbar"
},
{
quote: "The more difficult the victory, the greater the happiness in winning.",
author: "Pele"
},
{
quote: "Experience is a hard teacher because she gives the test first, the lesson afterward.",
author: "Vernon Law"
},
{
quote: "Today I will do what others won’t, so tomorrow I can accomplish what others can’t.",
author: "Jerry Rice"
},
{
quote: "I think it’s the mark of a great player to be confident in tough situations.",
author: "John McEnroe"
},
{
quote: "You’re never a loser until you quit trying.",
author: "Mike Dikta"
},
{
quote: "Sometimes the biggest problem is in your head. You’ve got to believe.",
author: "Jack Nicklaus"
},
];
christianityQuotes = [
{
quote: "He is no fool who gives what he cannot keep, to gain what he cannot lose.",
author: "Jim Elliot"
},
{
quote: "With God all things are possible",
author: "Mark 10:27, The Holy Bible"
},
{
quote: "Worrying is arrogant because God knows what He's doing.",
author: "Barbara Cameron"
},
{
quote: "If you are too busy to pray, you are busier than God wants you to be.",
author: "Wanda E. Brunstetter"
},
{
quote: "As long as you do things for God, you are a Hall of Famer in Heaven's list.",
author: "Rick Warren"
},
{
quote: "I have never met the man I could despair of after discerning what lies in me apart from the grace of God.",
author: "Oswald Chambers"
},
{
quote: "Worry does not empty tomorrow of its sorrows; it empties today of its strength.",
author: "Corrie Ten Boom"
},
{
quote: "For by grace are ye saved through faith; and that not of yourselves: it is the gift of God",
author: "Ephesians 2:8, The Holy Bible"
},
{
quote: "For the wages of sin is death; but the gift of God is eternal life through Jesus Christ our Lord.",
author: "Romans 6:23, The Holy Bible"
},
{
quote: "Worry is the darkroom in which negatives can develop.",
author: "Wanda E. Brunstetter"
},
{
quote: "True faith means holding nothing back. It means putting every hope in God's fidelity to His Promises.",
author: "Francis Chan"
},
{
quote: "If God called us to a task, He will then qualify us for the job.",
author: "Jack Hyles"
},
{
quote: "God loves each of us as if there were only one of us.",
author: "Augustine"
},
{
quote: "Outside of Christ, I am weak; in Christ, I am strong.",
author: "Watchmen Nee"
},
{
quote: "We have a God who delights in impossibilities.",
author: "Billy Sunday"
},
{
quote: "You are the only Bible some unbelievers will ever read.",
author: "John MacArthur"