-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquotes_archive.html
1131 lines (926 loc) · 37.1 KB
/
quotes_archive.html
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="static/layout.css">
</head>
<div>
<body>
<h1>Archive of Quotes from Bitbuckians</h1>
<p>
This an arcive which lists the favorite quotes from any Bitbuckaneer that wants to
contribute. Please don't add your quotes to this page.
</p>
<div class="quote">
<blockquote>Re-examine all that you have been told... dismiss that which insults your soul.
</blockquote>
<cite>Walt Whitman</cite>
</div>
<div class="quote">
<blockquote>Always do your best. What you sow now, you will harvest later.</blockquote>
<cite>Og Mandino</cite>
</div>
<div class="quote">
<blockquote>Read my lips!</blockquote>
<cite>George H. W. Bush</cite>
</div>
<div class="quote">
<blockquote>Better to remain silent and be thought a fool than to speak out and remove all doubt.
</blockquote>
<cite>A. Lincoln</cite>
</div>
<div class="quote">
<img src="http://www.reaganlibrary.gov/cache/preview/825ae36e7d08b2d0b0250021b8e2acb0.jpg"/>
<blockquote>All great change in America begins at the dinner table.</blockquote>
<cite>Ronald Reagan</cite>
</div>
<div class="quote">
<blockquote>Try not. Do or do not. There is no try.</blockquote>
<cite>Yoda</cite>
</div>
<div class="quote">
<blockquote>We're all in the gutter but some of us are looking at the stars.</blockquote>
<cite>Oscar Wilde</cite>
</div>
<div class="quote">
<blockquote>La muerte es solo la suerte con una letra cambiada.</blockquote>
<cite>Joaquin Sabina</cite>
</div>
<div class="quote">
<blockquote>"Try again. Fail again. Fail better.”</blockquote>
<cite>Samuel Beckett</cite>
</div>
<div class="quote">
<blockquote>"I see something of myself in everyone, just at this moment of the world.”</blockquote>
<cite>Joni Mitchell</cite>
</div>
<div class="quote">
<img src="http://soberandawkward.files.wordpress.com/2014/03/serenity-prayer.jpg" width="600">
<blockquote>God, grant me the serenity to accept the things I cannot change, The courage to change the things I can, And wisdom to know the difference.</blockquote>
<cite> Reinhold Niebuhr</cite>
</div>
<div class="quote">
<blockquote>The time only exists to avoid that everything happens at the same time.</blockquote>
<cite>Sam Lefebvre</cite>
</div>
<div class="quote">
<img src="http://soberandawkward.files.wordpress.com/2014/03/serenity-prayer.jpg" width="600">
<blockquote>God, grant me the serenity to accept the things I cannot change, The courage to change the things I can, And wisdom to know the difference.</blockquote>
<cite> Reinhold Niebuhr</cite>
</div>
<div class="quote">
<blockquote>A truly rich man is one whose children run into his arms when his hands are empty</blockquote>
<cite>Unknown</cite>
</div>
<div class="quote">
<img src="http://upload.wikimedia.org/wikipedia/commons/thumb/4/42/Canyon_midday.jpg/220px-Canyon_midday.jpg">
<blockquote>Wilderness is not a luxury but a necessity of the human spirit, and as vital to our lives as water and good bread.</blockquote>
<cite>Edward Abbey</cite>
</div>
<div class="quote">
<blockquote>"Behind every great man is a woman rolling her eyes.”</blockquote>
<cite>Jim Carrey</cite>
<div class="quote">
<blockquote>"Nusance quote”</blockquote>
<cite>The troll</cite>
</div>
<div class="quote">
<blockquote>"Strive on, the control of nature is won, not given.”</blockquote>
<cite>University of Wyoming Engineering</cite>
<div class="quote">
<blockquote>"Seni hic sevmedim sutoglan. Babani da sevmezdim zaten.”</blockquote>
<cite>Sener Sen</cite>
</div>
<div class="quote">
<blockquote>"Only in our dreams are we free. The rest of the time we need wages.”</blockquote>
<cite>Terry Pratchett</cite>
</div>
<div class="quote">
<blockquote>Hard-working is the key of success!.</blockquote>
<cite>Anonymous</cite>
</div>
<div class="quote">
<blockquote>I just don't know...</blockquote>
<cite>Anonymous</cite>
</div>
<div class="quote">
<blockquote>"You don't speak Latin? Well that's something we shall have to remedy, isn't it?"</blockquote>
<cite>Argyle Wallace in Braveheart</cite>
</div>
<div class="quote">
<blockquote>"The best way to predict your future is to create it"</blockquote>
<cite>Abraham Lincoln</cite>
</div>
<div class= "quote">
<blockquote>Dogs have masters. Cats have staff.</blockquote>
<cite>Anonymous</cite>
</div>
<div class="quote">
<blockquote>A little sleep, a little slumber,
a little folding of the hands to rest—
and poverty will come on you like a thief
and scarcity like an armed man.</blockquote>
<cite>Proverb 24:33-34</cite>
</div>
<div class="quote">
<blockquote>Great things are done by a series of small things brought together. :-)</blockquote>
<cite>Vincent Van Gogh</cite>
</div>
<div class="quote">
<blockquote>"Life, don't talk to me about life.</blockquote>
<cite>Marvin (Douglas Adams)</cite>
</div>
<div class="quote">
<blockquote>"Research is to see what everybody else has seen, and to think what nobody else has thought"</blockquote>
<cite>Albert Szent-Györgi</cite>
</div>
<div class="quote">
<blockquote>The Doctor:"Got a name?"<br/>Osgood:"Yes."<br/>The Doctor:"Good. I've always wanted to meet someone called Yes."</blockquote>
<cite>Doctor Who</cite>
</div>
<div class="quote">
<blockquote>We accept the love we think we deserve.</blockquote>
<cite>Stephen Chbosky</cite>
</div>
<div class="quote">
<blockquote>"Nusance quote”</blockquote>
<cite>The troll</cite>
</div>
<div class="quote">
<blockquote>I told you I was ill</blockquote>
<cite>Spike Milligan</cite>
</div>
<div class="quote">
<blockquote>Always do your best. What you sow now, you will harvest later.</blockquote>
<cite>Og Mandino</cite>
</div>
<div class="quote">
<blockquote>"Nusance quote”</blockquote>
<cite>The troll</cite>
</div>
<div class="quote">
<blockquote>La muerte es solo la suerte con una letra cambiada.</blockquote>
<cite>Joaquin Sabina</cite>
</div>
<div class="quote">
<blockquote>"Try again. Fail again. Fail better.”</blockquote>
<cite>Samuel Beckett</cite>
</div>
<div class="quote">
<blockquote>"I see something of myself in everyone, just at this moment of the world.”</blockquote>
<cite>Joni Mitchell</cite>
</div>
<div class="quote">
<blockquote>Absence of evidence is not evidence of absence.</blockquote>
<cite>Carl Sagan</cite>
</div>
<div class="quote">
<blockquote>"I did not become a vegetarian for my health, I did it for the health of the chickens.”</blockquote>
<cite>Isaac Bashevis Singer</cite>
</div>
<div class="quote">
<blockquote>No, I am your father.</blockquote>
<cite>Darth Vader</cite>
</div>
<div class="quote">
<img src="http://soberandawkward.files.wordpress.com/2014/03/serenity-prayer.jpg" width="600">
<blockquote>God, grant me the serenity to accept the things I cannot change, The courage to change the things I can, And wisdom to know the difference.</blockquote>
<cite> Reinhold Niebuhr</cite>
</div>
<div class="quote">
<blockquote>The time only exists to avoid that everything happens at the same time.</blockquote>
<cite>Sam Lefebvre</cite>
</div>
<div class="quote">
<img src="http://soberandawkward.files.wordpress.com/2014/03/serenity-prayer.jpg" width="600">
<blockquote>God, grant me the serenity to accept the things I cannot change, The courage to change the things I can, And wisdom to know the difference.</blockquote>
<cite> Reinhold Niebuhr</cite>
</div>
<div class="quote">
<blockquote>A truly rich man is one whose children run into his arms when his hands are empty</blockquote>
<cite>Unknown</cite>
</div>
<div class="quote">
<img src="http://upload.wikimedia.org/wikipedia/commons/thumb/4/42/Canyon_midday.jpg/220px-Canyon_midday.jpg">
<blockquote>Wilderness is not a luxury but a necessity of the human spirit, and as vital to our lives as water and good bread.</blockquote>
<cite>Edward Abbey</cite>
</div>
<div class="quote">
<blockquote>"Behind every great man is a woman rolling her eyes.”</blockquote>
<cite>Jim Carrey</cite>
<div class="quote">
<blockquote>"Strive on, the control of nature is won, not given.”</blockquote>
<cite>University of Wyoming Engineering</cite>
<div class="quote">
<blockquote>"Seni hic sevmedim sutoglan. Babani da sevmezdim zaten.”</blockquote>
<cite>Sener Sen</cite>
</div>
<div class="quote">
<blockquote>"Only in our dreams are we free. The rest of the time we need wages.”</blockquote>
<cite>Terry Pratchett</cite>
</div>
<div class="quote">
<blockquote>Hard-working is the key of success!.</blockquote>
<cite>Anonymous</cite>
</div>
<div class="quote">
<blockquote>I just don't know...</blockquote>
<cite>Anonymous</cite>
</div>
<div class="quote">
<blockquote>Absence of evidence is not evidence of absence.</blockquote>
<cite>Carl Sagan</cite>
</div>
<div class="quote">
<blockquote>"I did not become a vegetarian for my health, I did it for the health of the chickens.”</blockquote>
<cite>Isaac Bashevis Singer</cite>
</div>
<div class="quote">
<blockquote>No, I am your father.</blockquote>
<cite>Darth Vader</cite>
</div>
<div class="quote">
<blockquote>"You don't speak Latin? Well that's something we shall have to remedy, isn't it?"</blockquote>
<cite>Argyle Wallace in Braveheart</cite>
</div>
<div class="quote">
<blockquote>"The best way to predict your future is to create it"</blockquote>
<cite>Abraham Lincoln</cite>
</div>
<div class= "quote">
<blockquote>Dogs have masters. Cats have staff.</blockquote>
<cite>Anonymous</cite>
</div>
<div class="quote">
<blockquote>A little sleep, a little slumber,
a little folding of the hands to rest—
and poverty will come on you like a thief
and scarcity like an armed man.</blockquote>
<cite>Proverb 24:33-34</cite>
</div>
<div class="quote">
<blockquote>Great things are done by a series of small things brought together. :-)</blockquote>
<cite>Vincent Van Gogh</cite>
</div>
<div class="quote">
<blockquote>"Life, don't talk to me about life.</blockquote>
<cite>Marvin (Douglas Adams)</cite>
</div>
<div class="quote">
<blockquote>"Research is to see what everybody else has seen, and to think what nobody else has thought"</blockquote>
<cite>Albert Szent-Györgi</cite>
</div>
<div class="quote">
<blockquote>The Doctor:"Got a name?"<br/>Osgood:"Yes."<br/>The Doctor:"Good. I've always wanted to meet someone called Yes."</blockquote>
<cite>Doctor Who</cite>
</div>
<div class="quote">
<blockquote>We accept the love we think we deserve.</blockquote>
<cite>Stephen Chbosky</cite>
</div>
<div class="quote">
<blockquote>I told you I was ill</blockquote>
<cite>Spike Milligan</cite>
</div>
<div class="quote">
<blockquote>Absence of evidence is not evidence of absence.</blockquote>
<cite>Carl Sagan</cite>
</div>
<div class="quote">
<blockquote>"I did not become a vegetarian for my health, I did it for the health of the chickens.”</blockquote>
<cite>Isaac Bashevis Singer</cite>
</div>
<div class="quote">
<blockquote>No, I am your father.</blockquote>
<cite>Darth Vader</cite>
</div>
<div class="quote">
<img src="http://ts3.mm.bing.net/th?id=HN.608006007298457673&pid=1.7">
<blockquote>Life is like a box of chocolate and you never know what you're gonna get </blockquote>
<cite>Forest Gump</cite>
</div>
<div class="quote">
<blockquote>The Best thing in life is a random act of kindness even in a simpliest form :)...</blockquote>
<cite>Ming Hulio</cite>
</div>
<div class="quote">
<blockquote>Never send a human to do a machine's job. </blockquote>
<cite>The Matrix</cite>
</div>
<div class="quote">
<blockquote>"No matter how fast I swing, I can never travel outside this loop! Maybe space outside it doesn't exist! But I bet it does. This tire came from somewhere."</blockquote>
<cite>XKCD</cite>
</div>
<div class="quote">
<blockquote>There are three kinds of people, thos who can count, those who cannot count...</blockquote>
<cite>The Carpenter</cite>
</div>
<div class="quote">
<blockquote>Live and let live</blockquote>
<cite>Idiom</cite>
</div>
<div class="quote">
<blockquote>Everything we hear is an opinion, not a fact. Everything we see is a perspective, not the truth.</blockquote>
<cite>Marcus Aurelius</cite>
</div>
<div class="quote">
<blockquote>When I die Dublin will be written in my heart</blockquote>
<cite>James Joyce</cite>
</div>
<div class="quote">
<blockquote>Behind every great man is a woman rolling her eyes. </blockquote>
<cite> Jim Carrey</cite>
</div>
<div class="quote">
<img src="http://www.quickmeme.com/img/a2/a20a0adec6f4b2d9822846381f9aa637b8429d3a0464d0a6b7d84d81accb32b5.jpg" />
<blockquote> My code words, I Don't know why </blockquote>
<cite> Many Programmers </cite>
</div>
<div class="quote">
<blockquote> The best programs are written so that computing machines can perform them quickly and so that human beings can understand them clearly. A programmer is ideally an essayist who works with traditional aesthetic and literary forms as well as mathematical concepts, to communicate the way that an algorithm works and to convince a reader that the results will be correct.</blockquote>
<cite> Donald Ervin Knuth</cite>
</div>
<div class="quote">
<blockquote> Only two things are infinite, the universe and human stupidity, and I'm not sure about the former...</blockquote>
<cite>Albert Einstein</cite>
</div>
<div class="quote">
<blockquote>Poetry lies its way to the truth.</blockquote>
<cite>John Ciardi</cite>
</div>
<div class="quote">
<blockquote>Do your duty! Do what is right! Do not worry about rewards!</blockquote>
<cite>Bhagwad Gita</cite>
</div>
<div class="quote">
<blockquote>Nichts ist so gerecht verteilt in der Welt wie der Verstand. Niemand beklagt sich darüber, zuwenig davon zu besitzen.</blockquote>
<cite>Heri Bender</cite>
</div>
<div class="quote">
<img src="http://fingertipsblogdotcom1.files.wordpress.com/2013/11/douglas-adams.jpg" />
<blockquote>Isn't it enough to see that a garden is beautiful without having to believe that there are fairies at the bottom of it too?</blockquote>
<cite>Douglas Adams</cite>
</div>
<div class="quote">
<blockquote>"Walking with a friend in the dark is better than walking alone in the light."</blockquote>
<cite>Helen Keller</cite>
</div>
<div class="quote">
<img src="http://cdn.pastemagazine.com/www/blogs/lists/barney.jpg" />
<blockquote>Think of me like Yoda, but instead of being little and green I wear suits and I'm awesome. I'm your bro - I'm Broda</blockquote>
<cite>Barney Stinson</cite>
</div>
<div class="quote">
<blockquote>"Never grow weeds in your garden"</blockquote>
<cite>D Carpenter</cite>
</div>
<div class="quote">
<blockquote>Everything we hear is an opinion, not a fact. Everything we see is a perspective, not the truth.</blockquote>
<cite>Marcus Aurelius</cite>
</div>
<div class="quote">
<img src="https://d202m5krfqbpi5.cloudfront.net/authors/1207771636p8/25241.jpg" />
<blockquote>Herb is the healing of a nation, alcohol is the destruction.</blockquote>
<cite>Bob Marley</cite>
</div>
<div class="quote">
<blockquote>Every man gotta right to decide his own destiny.</blockquote>
<cite>Bob Marley</cite>
</div>
<div class="quote">
<blockquote>If you can't make it good, at least make it look good.</blockquote>
<cite>Bill Gates</cite>
</div>
<div class="quote">
<blockquote>"To Be or Not To Be."</blockquote>
<cite>William Shakespeare</cite>
</div>
<div class="quote">
<blockquote>"Now is the winter of our discontent, made glorious summer by this sun of York."</blockquote>
<cite>Shakespeare</cite>
</div>
<div class="quote">
<blockquote>"What we obtain too cheap, we esteem to lightly."</blockquote>
<cite>Thomas Paine</cite>
</div>
<div class="quote">
<blockquote>A soul without a body is like a bird deprived of its power to fly.</blockquote>
<cite>BKS Iyengar</cite>
</div>
<div class="quote">
<blockquote>I'll just wander around for a while until I find my way out.</blockquote>
<cite>Andrew Doss</cite>
</div>
<div class="quote">
<blockquote>There are only 10 types of people in the world: those who understand binary, and those who don't.</blockquote>
<cite>Anonymous</cite>
</div>
<div class="quote">
<blockquote>Whatever the mind of man can conceive and believe, it can achieve.</blockquote>
<cite>Napoleon Hill</cite>
</div>
<div class="quote">
<blockquote>TURBLES</blockquote>
<cite>Turbulator - again</cite>
</div>
<div class="quote">
<blockquote>Never put off till tomorrow what you can do the day after tomorrow.</blockquote>
<cite>Mark Twain</cite>
</div>
<div class="quote">
<blockquote>Teamwork - The laughable idea that everyone has the same goal.</blockquote>
<cite>Anonymous</cite>
</div>
<div class="quote">
<blockquote>"Only in our dreams are we free. The rest of the time we need wages.”</blockquote>
<cite>Terry Pratchett</cite>
</div>
<div class="quote">
<blockquote>Everything we hear is an opinion, not a fact. Everything we see is a perspective, not the truth.</blockquote>
<cite>Marcus Aurelius</cite>
</div>
<div class="quote">
<img src="http://uncommonshow.com/wp-content/uploads/2011/12/monty-python-black-knight.jpg" />
<blockquote>'Tis but a scratch!</blockquote>
<cite>The Black Knight</cite>
</div>
<div class="quote">
<blockquote>My favourite poem is the one that starts 'Thirty days hath September' because it actually tells you something.</blockquote>
<cite>Groucho Marx</cite>
</div>
<div class="quote">
<blockquote>Give and it shall be given unto you</blockquote>
<cite>Jesus</cite>
</div>
<div class="quote">
<blockquote>Hope clouds observation.</blockquote>
<cite>Anonymous</cite>
</div>
<div class="quote">
<blockquote>Parting with friends is a sadness. A place is only a place.</blockquote>
<cite>Thufir Hawat, Dune</cite>
</div>
<div class="quote">
<blockquote>"Sorry, I'm not a professional.”</blockquote>
<cite>Un aficionado</cite>
</div>
<div class="quote">
<blockquote>"Worry, I seemed a professional.”</blockquote>
<cite>A not professional last words</cite>
</div>
<div class="quote">
<blockquote>Слава Україні! Героям слава!</blockquote>
<cite>Народ</cite>
</div>
<div class="quote">
<blockquote>My friend asked me if I wanted a frozen banana, I said "No, but I want a regular banana later, so ... yeah".</blockquote>
<cite>Mitch Hedberg</cite>
</div>
<div class="quote">
<blockquote>The are two kinds of people in the world: your kind and not your kind</blockquote>
<cite>Prathamesh Kini</cite>
</div>
<div class="quote">
<blockquote>Everybody is ignorant, only on different subjects.
</blockquote>
<cite>Will Rogers</cite>
</div>
<div class="quote">
<blockquote>When choosing between two evils, I like to try the one I've never tried before.
</blockquote>
<cite>Mae West</cite>
</div>
<div class="quote">
<blockquote>Life is not easy for any of us. But what of that? We must have perseverance and above all confidence in ourselves.
We must believe that we are gifted for something and that this thing must be attained.
</blockquote>
<cite>Marie Curie</cite>
</div>
<div class="quote">
<blockquote>Lady Astor: "Winston, if I were your wife I'd put poison in your coffee."
Winston Churchill: "Nancy, if I were your husband I'd drink it."
</blockquote>
<cite>Winston Churchill</cite>
</div>
<div class="quote">
<blockquote>I have learned over the years that when one's mind is made up, this diminishes fear; knowing what must be done does away with fear.
</blockquote>
<cite>Rosa Parks</cite>
</div>
<div class="quote">
<blockquote>I like big buts, and I cannot lie.</blockquote>
<cite>George Washington</cite>
</div>
<div class="quote">
<blockquote> Bessie Bradock: "Sir, you are drunk." <br>
Churchill: "Madam, you are ugly. In the morning, I shall be sober." </blockquote>
<cite>Winston Churchill </cite>
</div>
<div class="quote">
<blockquote>As usual, there is a great woman behind every idiot.</blockquote>
<cite>John Lennon</cite>
</div>
<div class="quote">
<blockquote>Only two things are infinite: human stupidity and the Universe. But I'm not sure about the latter.</blockquote>
<cite>Albert Einstein</cite>
</div>
<div class="quote">
<blockquote>Data retains its value over time only as long as it is well documented.</blockquote>
<cite>Inigo San Gil</cite>
</div>
<div class="quote">
<blockquote>God, grant me the serenity to accept the things I cannot change, The courage to change the things I can, And wisdom to know the difference.</blockquote>
<cite>Karl Niebuhr</cite>
</div>
<div class="quote">
<blockquote>The worst enemy you'll have to face is yourself</blockquote>
<cite>Just someone passing</cite>
</div>
<div class="quote">
<blockquote>Why is there only one monopolies commission?</blockquote>
<cite>Dr E Conomist</cite>
</div>
<div class="quote">
<blockquote>A day without sunshine is like, you know, night.</blockquote>
<cite>Julia Wong</cite>
</div>
<div class="quote">
<blockquote>If you can't explain it easy enough,You dont understand it well enough!</blockquote>
<cite>Some guy</cite>
</div>
<div class="quote">
<blockquote>"The gods help them that help themselves."</blockquote>
<cite>Aesop in Hercules and the Waggoner (not God)</cite>
</div>
<div class="quote">
<blockquote>The circumstances of ones birth are irrelevant. It is what you do with the gift of life that determines who you are</blockquote>
<cite>Mewtwo</cite>
</div>
<div class="quote">
<blockquote>Science may never come up with a better office communication system than the coffee break.</blockquote>
<cite>Earl Wilson</cite>
</div>
<div class="quote">
<img src="http://media2.apnonline.com.au/img/media/images/2008/09/24/koala-main_t460.jpg">
<blockquote>Koalas need your help!</blockquote>
<cite>people</cite>
</div>
<div class="quote">
<blockquote>Give a man a fish feed him for a day. Teach a man to fish feed him for a lifetime.</blockquote>
<cite>Someone who likes fish</cite>
</div>
<div class="quote">
<blockquote>If you can't eat cow meat, why is it made out of food?</blockquote>
<cite>Some guy</cite>
</div>
<div class="quote">
<img src="http://wiki.tarantino.info/images/Cmonhollywood47-1.jpg" />
<blockquote>He musta thought it was white boy day...it ain't white boy day is it?</blockquote>
<cite>Drexl Spivey</cite>
</div>
<div class="quote">
<blockquote>It worked!</blockquote>
<cite>Paulrus</cite>
</div>
<div class="quote">
<blockquote>Put a shrimp on the barbie!!</blockquote>
<cite>Alright Skippy</cite>
</div>
<div class="quote">
<img src="http://punjapit.files.wordpress.com/2010/08/i-am-your-mother.jpg">
<blockquote>I am your mother!</blockquote>
<cite>Darth Vader</cite>
</div>
<div class="quote">
<img src="http://www.swx.it/databank/images/9/9d/DarthVader_1.jpg">
<blockquote>I am your father!</blockquote>
<cite>Darth Vader</cite>
</div>
<div class="quote">
<img src="http://1.bp.blogspot.com/-pY9gV6IqWs4/Uh_DzA2nzJI/AAAAAAAADVA/1j-tnGlD9cc/s1600/Daniel+Passarella.jpg">
<blockquote>No esten cagados</blockquote>
<cite>Daniel Passarella</cite>
</div>
<div class="quote">
<img src="http://upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Steve_Jobs_Headshot_2010-CROP.jpg/245px-Steve_Jobs_Headshot_2010-CROP.jpg">
<blockquote>set fire to the love song</blockquote>
<cite>test</cite>
</div>
<div class="quote">
<blockquote>Let there be light.</blockquote>
<cite>Multi VAC</cite>
</div>
<div class="quote">
<blockquote>Whatever the mind of man can conceive and believe, it can achieve.</blockquote>
<cite>Napoleon Hill</cite>
</div>
<div class="quote">
<blockquote>Once upon a time there was a boy who loved a girl, and her laughter was a question he wanted to spend his whole life answering.</blockquote>
<cite>Nicole Krauss</cite>
</div>
<div class="quote">
<blockquote>Oh! do not attack me with your watch. A watch is always too fast or too slow. I cannot be dictated to by a watch.</blockquote>
<cite>Jane Austen</cite>
</div>
<div class="quote">
<blockquote> It's not a question of can or can't. There are some things in life you just do.</blockquote>
<cite>Lightning, Final Fantasy XIII</cite>
</div>
<div class="quote">
<blockquote>Attitude is a little thing that makes a big difference.</blockquote>
<cite>Winston Churchill</cite>
</div>
<div class="quote">
<blockquote>Time, Patience and attitude are the best decision makers of our life</blockquote>
<cite>Anonymous</cite>
</div>
<div class="quote">
<blockquote>To live is to suffer, to survive is to find some meaning in the suffering.</blockquote>
<cite>F Nietzsche</cite>
</div>
<div class="quote">
<blockquote>If you can trip together, you can live together.</blockquote>
<cite>R Hontele</cite>
</div>
<div class="quote">
<blockquote>When the going gets weird, the weird turn pro.</blockquote>
<cite>Hunter S. Thompson</cite>
</div>
<div class="quote">
<blockquote>If jesus can walk on water, can he swim on land?</blockquote>
<cite>Bo Burnham</cite>
</div>
<div class="quote">
<blockquote>The harder it is to start or master something the harder it is to quit, in an almost equal measure</blockquote>
<cite>Darrell W Schmidt</cite>
</div>
<div class ="quote">
<blockquote>If you can't explain it simply, you don't understand it well enough.</blockquote>
<cite>Albert Einstein</cite>
</div>
<div class="quote">
<blockquote>I'm sorry I wrote you such a long letter. I did not have time to write a short one.</blockquote>
<cite>Blaise Pascal</cite>
</div>
<div class="quote">
<blockquote>Don't aim for success if you want it; just do what you love and believe in, and it will come naturally.</blockquote>
<cite>David Frost</cite>
</div>
<div class="quote">
<blockquote>“So much depends upon our willingness to make up our minds, collectively and individually, that our present levels of performance are not acceptable, either to ourselves or to the Lord. In saying that, I am not calling for flashy, temporary differences in our performance levels, but rather a quiet resolve to do a better job, to lengthen our stride.”</blockquote>
<cite>Spencer W. Kimball</cite>
</div>
<div class="quote">
<blockquote>"The code2 reaper"</blockquote>
<cite>The code2 reaper</cite>
</div>
<div class="quote">
<blockquote>"The code reaper"</blockquote>
<cite>The code reaper</cite>
</div>
<div class="quote">
<blockquote>"No!"</blockquote>
<cite>Dr. No</cite>
</div>
<div class="quote">
<blockquote>"Open, Sesame!"</blockquote>
<cite>Alibaba</cite>
</div>
<div class="quote">
<img src="http://uncommonshow.com/wp-content/uploads/2011/12/monty-python-black-knight.jpg" />
<blockquote>'Tis but a scratch!</blockquote>
<cite>The Black Knight</cite>
</div>
<div class="quote">
<blockquote>We are all atheists about most of the gods that humanity has ever believed in. Some of us just go one god further.</blockquote>
<cite>Richard Dawkins, The God Delusion</cite>
</div>
<div class="quote">
<blockquote>Every day is a gift..that's why it's called The Present</blockquote>
<cite>Unknown</cite>
</div>
<div class="quote">
<blockquote>You tell 'em I'M coming... and hell's coming with me, you hear? Hell's coming with me!</blockquote>
<cite>Wyatt Earp</cite>
</div>
<div class="quote">
<blockquote>Milk is for babies. When you grow up you have to drink beer.</blockquote>
<cite>Arnold Schwarzenegger</cite>
</div>
<div class="quote">
<blockquote>La educación es el arma más poderosa que puedes usar para cambiar el mundo.</blockquote>
<cite>Nelson Mandela</cite>
</div>
<div class="quote">
<blockquote>Politicians and diapers must be changed often, and for the same reason.</blockquote>
<cite>Mark Twain</cite>
</div>
<div class="quote">
<blockquote>Behind every great man is a woman rolling her eyes.</blockquote>
<cite>Jim Carrey</cite>
</div>
<div class="quote">
<blockquote>Time is an illusion. Lunchtime doubly so.</blockquote>
<cite>Douglas Adams - The Hitchhikers Guide to the Galaxy - spoken by Ford Prefect</cite>
</div>
<div class="quote">
<blockquote>Happiness is not something ready made. It comes from your own actions.
</blockquote>
<cite>Dalai Lama</cite>
</div>
<div class="quote">
<blockquote>What we have done for ourselves alone dies with us; what we have done for others and the world remains and is immortal.</blockquote>
<cite>Albert Pike</cite>
</div>
<div class="quote">
<blockquote>The ultimate inspiration is the deadline. </blockquote>
<cite>Nolan Bushnell</cite>
</div>
<div class="quote">
<blockquote>When in doubt, take the vacation.</blockquote>
<cite>Malcolm Daly, president of Trango, a climbing gear company.</cite>
</div>
<div class="quote">
<blockquote>I'm selfish, impatient, and a little insecure. I make mistakes, I'm out of control, and at times hard to handle. But if you can't handle me at my worst, then you sure as hell don't deserve me at my best.</blockquote>
<cite>Marilyn Monroe</cite>
</div>
<div class="quote">
<blockquote>Don't spur a willing horse.</blockquote>
<cite>Someone</cite>
</div>
<div class="quote">
<blockquote>Good is the enemy of Great.</blockquote>
<cite>Jim Collins</cite>
</div>
<div class="quote">
<blockquote>Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit</blockquote>
<cite>Lorem Ipsum</cite>
</div>
<div class="quote">
<blockquote>Evil will always triumph, because good is dumb</blockquote>
<cite>Dark Helmet - Spaceballs</cite>
</div>
<div class="quote">
<blockquote>"Smile, it's free therapy.”</blockquote>
<cite>Douglas Horton</cite>
</div>
<div class="quote">
<blockquote>I would imagine that if you could understand Morse code, a tap dancer would drive you crazy.</blockquote>
<cite>Mitch Hedberg</cite>
</div>
<div class="quote">
<blockquote>I love deadlines. I like the whooshing sound they make as they fly by.</blockquote>
<cite>Douglas Adams</cite>
</div>
<div class="quote">
<blockquote>“Be who you are and say what you feel, because those who mind don't matter, and those who matter don't mind.”
</blockquote>
<cite>Bernard M. Baruch</cite>
<div class="quote">
<blockquote>I swallowed a bug.</blockquote>
<cite>River Tam - Serenity</cite>
</div>
<div class="quote">
<blockquote>If you want to build a ship, don’t drum up the men to gather wood, divide the work, and give orders. Instead, teach them to yearn for the vast and endless sea.</blockquote>
<cite>Antoine de Saint-Exupery</cite>
</div>
<div class="quote">
<blockquote>There is always more misery among the lower classes than there is humanity in the higher.</blockquote>
<cite>Victor Hugo</cite>
</div>
<div class="quote">
<blockquote>Learn from yesterday, live for today, hope for tomorrow. The important thing is not to stop questioning.
Read more at http://www.brainyquote.com/quotes/keywords/tomorrow.html#skGW8uCFqCZvmb6G.99</blockquote>
<cite>Albert Einstein</cite>
</div>
<div class="quote">
<blockquote>"有志者事竟成”</blockquote>
<cite>後漢書·耿弇傳</cite>
</div>
<div class="quote">
<img src="http://upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Steve_Jobs_Headshot_2010-CROP.jpg/245px-Steve_Jobs_Headshot_2010-CROP.jpg">
<blockquote>Put a dent in the universe.</blockquote>
<cite>Steve Jobs</cite>
</div>
<div class="quote">
<blockquote>"Don't worry, I'm a professional.”</blockquote>
<cite>Someone's last words</cite>
</div>
<div class="quote">
<blockquote>"Bueller?... Bueller?... Bueller?”</blockquote>
<cite>Economics Teacher</cite>
</div>
<div class="quote">
<blockquote>"Please Captain, not in front of the Klingons.”</blockquote>
<cite>Captain Spock, Star Trek V: The Final Frontier</cite>
</div>