-
Notifications
You must be signed in to change notification settings - Fork 0
/
Epigrams.dat
3829 lines (3090 loc) · 153 KB
/
Epigrams.dat
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
What is is. Perceive It. Integrate it. Act on it. Idealize it.
-- Leonard Peikoff
%
I/O, I/O,
It's off to disk I go,
a bit or byte to read or write,
I/O, I/O, I/O, I/O
-- Dave Peacock
-- His signature
%
Will: "Roses are red,
Violets are Blue.
Jazz and I are black,
But, Carlton, what are you?"
Excerpt from "The Fresh Prince of Bel-Air"
-- Andy Borowitz (Creator)
-- "The Fresh Prince of Bel-Air" ( http://en.wikipedia.org/wiki/The_Fresh_Prince_of_Bel-Air )
%
And the top story for today: wives live longer than husbands because they are
not married to women.
-- Colin Mochrie
-- "Who's Line is it, Anyway?" ( http://en.wikipedia.org/wiki/Whose_Line_Is_It_Anyway%3F )
%
Let others praise ancient times; I am glad I was born in these.
-- Ovid (43 BC - 18 AD)
%
I'm sexy, I'm cute, I'm popular to boot.
I'm bitchin', great hair, the boys all love to stare!
I'm wanted, I'm hot, I'm everything you're not.
I'm pretty, I'm cool, I dominate this school.
Who am I? Just guess. Guys wanna touch my chest.
I'm rockin', I smile and many think I'm vile.
I'm flying, I jump you can look but don't you hump. Whoo!
I major, I roar. I swear I'm not a whore.
We cheer and we lead - we act like we're on speed.
You hate us cause we're beautiful but we don't like you either.
We're cheerleaders. We are cheerleaders!
Excerpt from "Bring it On"
-- Bring it On (The Original) ( http://en.wikipedia.org/wiki/Bring_It_On_(film) )
%
An algebra teacher is discussing a problem with a student. The teacher says:
"Now, suppose x is the speed at which the train is travelling…". And the
student says "But teacher, what if x is not the speed at which the train is
travelling?"
-- Unknown
-- Re: "A Parody on Aristotle's Organum" ( http://groups.google.com/group/humanities.philosophy.objectivism/msg/e0d0b5a400d47c6b?hl=en )
%
Keep all the grades of the students who passed the test as is, and convert the
grades of all the students who failed to 54%.
-- Shlomi Fish
-- Based on a Technion Legend
%
“God is Dead”
— Nietzsche
“Nietzsche is Dead”
— God
( writing on a toilet's wall )
-- Anonymous toilet's wall writers
-- Writing on a toilet's wall.
%
A serious and good philosophical work could be written that would consist
entirely of jokes.
-- Ludwig Wittgenstein
-- Ludwig Wittgenstein
%
The difference between a bad student and a good student is that a bad student
forgets all the material five minutes before the exam, while a good student
five minutes after it.
-- One of Shlomi Fish's Lecturers
-- Technion Class
%
[Isaac Newton falls off the tree]
Cho-Cho: Did the fall hurt you?
Newton: It wasn't the fall; it was the sudden stop at the end.
-- Tom Ruegger
-- Histeria! ( http://en.wikipedia.org/wiki/Histeria! )
%
Beware of bugs in the above code; I have only proved it correct, not tried it.
-- Donald Knuth
-- Memo to Peter van Emde Boas ( http://www-cs-staff.stanford.edu/~uno/faq.html )
%
<<<
<<<
It's not because they have suddenly converted to Stallmanism.
>>>
Anyone else misread that as "Stalinism"?
>>>
The word "Stalinism" is deprecated, the correct term is "GNU/Communism".
-- Spotted on Slashdot
-- k98sven
-- Slashdot Comment: “Re: Misread” ( http://slashdot.org/comments.pl?sid=34331&cid=3715569 )
%
Personally, I'd have a far better time writing scripts if I had some more
creative shells to script in…
ASMsh: The Assembly shell. Commands include MOV, SHL, SHR, JNE, etc.
shellTM: Turing machine shell. Only four commands. Read, write, move left,
move right. Capable of producing any programming language imaginable, given
enough time and nerves of steel.
GeneSH: Four commands. G, A, T, C. Need I say more?
Qsh: Only uses one environment variable, which contains all possible values
simultaneously. Method of scripting: isolate the universe in which the desired
result is already accomplished, and intersect with it.
Of course, I never said they'd be easy to use. But then, if these shells
existed, and I knew a sysadmin who used any of them, you can believe Sysadmin
Day would be a far more celebrated holiday.
The Night Watchman on a Slashdot Comment
-- The Night Watchman
-- Slashdot comment.
%
We're on a mission from God.
-- The Blues Brothers
-- Dan Aykroyd and John Landis
-- "The Blues Brothers" ( http://en.wikiquote.org/wiki/Blues_brothers )
%
It may look like I'm just sitting here doing nothing, but I'm really actively
waiting for all my problems to go away.
-- Unknown
-- Unknown
%
I'm going to do a routine now, the ones of you that have heard it before may
enjoy hearing it again. The ones of you that have not heard it before - may
enjoy hearing it again next time.
-- Victor Borge
-- Phonetic Punctuation ( http://www.youtube.com/watch?v=lF4qii8S3gw )
%
I guess I really am an optimist. A paranoid optimist, true, but an optimist
nonetheless.
Larry Wall, "The 3rd State of the Onion"
-- Larry Wall
-- 3rd State of the Onion ( http://www.perl.com/pub/a/1999/08/onion/talk1.html )
%
In fact, I think Linus's [= Linus Torvalds'] cleverest and most consequential
hack was not the construction of the Linux kernel itself, but rather his
invention of the Linux development model. When I expressed this opinion in his
presence once, he smiled and quietly repeated something he has often said:
"I'm basically a very lazy person who likes to get credit for things other
people actually do." Lazy like a fox. Or, as Robert Heinlein famously wrote of
one of his characters, too lazy to fail.
Eric Raymond, the "Cathedral and the Bazaar"
-- Eric Raymond
-- The Cathedral and the Bazaar ( http://www.catb.org/~esr/writings/cathedral-bazaar/cathedral-bazaar/ )
%
Democracy is two wolves and a lamb voting on what to have for lunch. Liberty
is a well-armed lamb contesting the vote.
Misattributed to Benjamin Franklin
-- Not clear
-- Quotes about Democracy ( http://en.wikiquote.org/wiki/Democracy )
%
Shlomi Fish: And to think that home desktops can simulate these systems [=
PDP-10's and PDP-11's] much faster than those ancient mainframes.
William Lee Irwin III: Shlomi, and to think the net usefulness of the home
desktops is less than what users got out of those mainframes.
#offtopic on the oftc.net IRC network.
-- William Lee Irwin III
%
I feel much better, now that I've given up hope.
Ashleigh Brilliant
-- Ashleigh Brilliant
-- "I Feel Much Better, Now That I've Given Up Hope ( http://www.amazon.com/Feel-Much-Better-That-Given/dp/0880071478 )
%
I have abandoned my search for truth, and am now looking for a good fantasy.
Ashleigh Brilliant
-- Ashleigh Brilliant
-- "I Have Abandoned My Search for Truth and Am Now Looking for a Good Fantasy" ( http://www.amazon.com/Abandoned-Search-Truth-Looking-Fantasy/dp/0912800909/ref=pd_sim_b_2 )
%
I may not be totally perfect, but parts of me are excellent.
Ashleigh Brilliant
-- Ashleigh Brilliant
-- I May Not Be Totally Perfect, but Parts of Me Are Excellent ( http://www.amazon.com/Totally-Perfect-Excellent-Brilliant-Thoughts/dp/0912800674/ref=pd_sim_b_1 )
%
The question of whether a computer can think is no more interesting than the
question of whether a submarine can swim.
Edsger W. Dijkstra
-- Edsger W. Dijkstra
-- EWD898 - The threats to computing science ( http://www.cs.utexas.edu/users/EWD/transcriptions/EWD08xx/EWD898.html )
%
Sometimes I think the surest sign, that intelligent life exists else where in
our universe is, is that none of it has tried to contact us.
Calvin
-- Bill Watterson
-- Calvin & Hobbes quotes ( http://thinkexist.com/quotation/sometimes_i_think_the_surest_sign_that/8696.html )
%
The more I think about it, the more I think I should think about it some more.
Clarissa in "Clarissa Explains it All"
-- Clarissa Explains it All ( http://en.wikiquote.org/wiki/Clarissa_Explains_It_All )
%
Rusty Russell's signature:
Anyone who quotes me in their sig is an idiot.
-- Rusty Russell
-- Rusty Russell
-- Rusty Russell's Signature ( http://en.wikipedia.org/wiki/Rusty_Russell )
%
The First Law of Thermodynamics: A system with a constant energy, volume and
pressure behaves in any way it wants.
-- Unknown
%
I wrote them (and looking at the original ones, I'm a bit ashamed: the
"toupper()" and "tolower()" macros are so horribly ugly that I wouldn't admit
to writing them if it wasn't because somebody else claimed to have done so.)
Linus Torvalds on the Linux Kernel Mailing List in response to SCO's Linux
Kernel ownership claims.
-- Linus Torvalds
-- Post to the Linux Kernel Mailing List ( http://www.ussg.iu.edu/hypermail/linux/kernel/0312.2/1241.html )
%
Baby making is owned by SCO. Linus's mother never paid royalties.
Also, having a name is a SCO trade secret. By giving Linus a name, they again
ask for being fined.
Best regards,
Iztok
(p.s.: Iztok is owned by SCO, and phrase "Best Regards" as well. LWN is owned
by SCO.)
An LWN comment in regards to the SCO ownership claims of Linux Kernel code.
-- Iztok
-- Linus is "owned by SCO" ( http://lwn.net/Articles/64272/ )
%
The source of my intention
really isn't crime prevention
My intention is prevention of the lie.
Scatman John
"Scatman's World"
-- Scatman John
-- Scatman's World ( http://www.lyricsdownload.com/scatman-scatman-s-world-lyrics.html )
%
To follow the path:
look to the master,
follow the master,
walk with the master,
see through the master,
become the master.
Eric S. Raymond in "How To Become a Hacker"
-- Eric Raymond
-- How to Become a Hacker ( http://www.catb.org/~esr/faqs/hacker-howto.html )
%
<strestout1> Can GIMP save to svg?
<rindolf> strestout1: SVG is a vector graphics format.
<rindolf> strestout1: GIMP manipulates bitmaps.
<strestout1> Yes rindolf, I know.
<strestout1> I just thought it would be nice to have one app for
everything instead of having to use inkscape for svg and
gimp for everything else.
<UnNamed> It could do 3d too.
<schumaml> And Audio processing…
<UnNamed> And Audio mixing…
<UnNamed> And word processing…
<schumaml> And it gotta have a kitchen sink!
<schumaml> So, the real question might be: is there an image editing
mode for Emacs? ;)
-- "GIMP Should Manipulate SVGs"
-- #gimp, GimpNet
%
My God, My God,
May it never, never end.
The sand and the sea,
the jitter of the water,
the shine of the sky,
the prayer of Man.
"A Walk to Caesarea" / Hanah Senesh
( Translated from Hebrew by Shlomi Fish )
-- Hanah Senesh
-- Walk to Caesarea
%
'You must know that I am not without artifice where magic is concerned,' said
Weasel. 'Only last year did I - assisted by my friend there - part the
notoriously powerful Archmage of Ymitury from his staff, his belt of moon
jewels, and his life, in that approximate order.'
-- Terry Pratchett
-- The Colour of Magic ( http://en.wikipedia.org/wiki/The_Colour_of_Magic )
%
If we want to have any kind of confidence that the hash is really unbreakable,
we should make it not just longer than 160 bits, we should make sure that it's
two or more hashes, and that they are based on totally different principles.
And we should all digitally sign every single object too, and we should use
4096-bit PGP keys and unguessable passphrases that are at least 20 words in
length. And we should then build a bunker 5 miles underground, encased in
lead, so that somebody cannot flip a few bits with a ray-gun, and make us
believe that the sha1's match when they don't. Oh, and we need to all wear
aluminum propeller beanies to make sure that they don't use that ray-gun to
make us do the modification _ourselves_.
-- Linus Torvalds
-- Message to the git mailing list ( http://lwn.net/Articles/132513/ )
%
The dictionary definition of capitalism is: An economic system characterized
by private ownership of capital goods and by investments that are determined
by private decision rather than by state control. Prices, production and
distribution of goods are determined by a free market.
…
But most writers and commentators put dishonest altruistic-platonistic
connotations on the meaning of capitalism: A system of exploitation of the
weak by the strong -- devoid of love and good will. A system in which unwanted
goods and services are pushed onto consumers through clever, deceptive
advertising for the sole purpose of profits and greed. Capitalism dominates
most Western governments. Capitalism, big business, and fascism are
synonymous.
Neo-Tech IV / The Neo-Tech Discovery.
-- Frank R. Wallace
-- Neo Tech IV ( http://xrl.us/bmszm )
%
Which mindset is right? Mine, of course. People who disagree with me are by
definition crazy. (Until I change my mind, when they can suddenly become
upstanding citizens. I'm flexible, and not black-and-white.)
-- Linus Torvalds
-- Linus compares Linux and BSDs ( http://www.linux.com/articles/45571 )
%
One bug, two bugs, tar bugs, su bugs,
grep bugs, mew bugs, old bugs, new bugs.
This bug has a little hack,
This bug has a broken stack.
Say! What a lot of bugs to track.
Yes, some are in tar, and some in su.
Some are old. And some are new.
Some in sed, and some in jed.
And some are even in parted.
Why are they in parted, jed and sed?
I do not know. Bugs should be dead!
Some in jpeg, and some in TIFF
This TIFF one has an attached diff.
From there to here, from here to there
Test release bugs are everywhere.
-- Red Hat Inc. Fedora Workers
-- Fedora Core 2 Test 2 available for x86 and x86-64 ( http://linux.derkeiler.com/Newsgroups/linux.redhat.misc/2004-03/0327.html )
%
"I took the sweet life
but I never knew
I'd be bitter from the sweet"
-- Charlene
-- I've Never Been to Me ( http://en.wikipedia.org/wiki/I've_Never_Been_to_Me )
%
Yet, acting on fully integrated honesty (Neo-Tech), not reason itself, is the
basic moral act. When Genghis Khan, for example, chose to use reasoning for a
specific military move, then in an out-of-context sense, he chose to act
morally by protecting himself and his troops (thus filling human biological
needs). But in the larger sense of fully integrated honesty, Khan's total
actions were grossly immoral in choosing to use aggressive force in becoming a
mass murderer (thus negating human biological needs). The highly destructive,
irrational immorality of Genghis Khan's overall dictatorial military actions
far outweighed any narrow, out-of-context "moral" actions. …Genghis Khan was
enormously evil as were Stalin, Hitler, Mao, Castro, Pol Pot.
[Neo-Tech Orientation and Definitions](http://www.neo-tech.com/orientation/)
-- Frank R. Wallace
-- Neo Tech Orientation and Definitions ( http://www.shlomifish.org/n-t-/neo-tech/Neo-Tech/orientation.html )
%
Why are there so many unmaintainable applications written in PHP and Perl?
Because PHP and Perl let undisciplined, inexperienced programmers write useful
code. So does Ruby -- but give it the popularity and longevity of PHP and Perl
(at least in English-speaking circles) and I bet you'll see plenty of bad code
written in Ruby too.
This seems like a variant of the Hackers and Painters fallacy. (Paul Graham is
rich. Paul Graham writes Lisp. Therefore everyone who writes Lisp will get
rich.) "All of the good, smart programmers I know are using Ruby. They write
good code. Therefore you can't write bad code in Ruby!"
It feels like there's another fallacy in there somewhere. I want to call it
the Pre-Post-Java Blindspot, where Java was the beginning of Serious
Programming Languages and only its successor will unseat it. (Like any good
fallacy, you have to ignore history, such as the fact that Ruby's between 10
and 12 years old.)
(I mean, if you really just can't read regular expressions, why not admit it?
You could start a twelve-step program or something.)
-- chromatic
-- Blog Post for 17-Novemeber-2005 ( http://www.advogato.org/person/chromatic/diary.html?start=237 )
%
I have upgraded the plot device's hard-drive, soft-drive and squishy drive,and
it is now being the world's most powerful super-computer!
The Angry Scientist in "Sheep in the Big City"
-- Mo Willems
-- Sheep in the Big City ( http://en.wikipedia.org/wiki/Sheep_in_the_Big_City )
%
Do not meddle in the affairs of Dragons, for you are crunchy and taste good
with ketchup.
Source unknown.
-- Unknown Author
-- Internet Meme
%
Much of the relative simplicity of Java is - like for most new languages -
partly an illusion and partly a function of its incompleteness. As time
passes, Java will grow significantly in size and complexity. It will double or
triple in size and grow implementation-dependent extensions or libraries. That
is the way every commercially successful language has developed. Just look at
any language you consider successful on a large scale. I know of no
exceptions, and there are good reasons for this phenomenon. [I wrote this
before 2000; now see a preview of Java 1.5 -
[http://xrl.us/kb3a](http://developers.slashdot.org/article.pl?sid=03/05/30/1942259&mode=thread&tid=108&tid=126&tid=156)
]
-- Bjarne Stroustrup
-- F.A.Q. Entry about Java ( http://public.research.att.com/~bs/bs_faq.html#Java )
%
"I simply hate, detest, loathe, despise, and abhor redundancy."
An Oscar Wilde quote, that quotes Oscar Wilde on his views on Redundancy in a
quote.
-- Uncyclopedia
-- Uncyclopedia entry about Redundancy ( http://uncyclopedia.org/wiki/Redundancy )
%
In yesterday's post (Bitten by the Enterprise Bug), we learned how vital
enterprise application are for proactive organizations leveraging collective
synergy to think outside the box and formulate their key objectives into a
win-win game plan with a quality-driven approach that focuses on empowering
key players to drive-up their core competencies and increase expectations with
an all-around initiative to drive up the bottom-line.
[http://thedailywtf.com/forums/64833/ShowPost.aspx](http://thedailywtf.com/forums/64833/ShowPost.aspx)
-- The Daily WTF
-- The Daily WTF - Enterprise SQL ( http://thedailywtf.com/forums/64833/ShowPost.aspx )
%
He says "One and one and one is three".
Got to be good-looking 'cause he's so hard to see.
Excerpt from "Come Together" by the Beatles.
-- The Beatles
-- Come Together ( http://en.wikipedia.org/wiki/Come_Together )
%
Isolde: Any museum has a certain Americana factor. But the Smithsonian… This
is the one place you can find the very essence of America, distilled.
Millie: Ooh.. do they let you drink it, and then take on mutant American
superpowers, and then go around unilaterally dispensing frontier-style justice
in the name of "Freedom"?
Isolde: No, not usually.
Millie: Museums would be a lot more fun if they'd actually *read* what I put
in their suggestion boxes.
-- D.C. Simpson
-- Ozy and Millie - "The Essence of America" ( http://www.ozyandmillie.org/2006/om20060417.html )
%
Version 7? [of Vim]
GNU Emacs is at version 21.4. Can we really trust such an immature editor?
"yet another coward" in a Slashdot comment for the announcement of the release
of Vim version 7. [Slashdot
comment](http://it.slashdot.org/comments.pl?sid=185216&cid=15286781)
-- yet another coward
-- Comment on the release of Vim version 7 ( http://it.slashdot.org/comments.pl?sid=185216&cid=15286781 )
%
<deadchip> Computer: Remove characters 'nenolod' and 'sxpert'.
<deadchip> *beeepbeepbeebeeep*
<deadchip> Computer: Resume program.
<sxpert> "Program cannot run without characters 'nenolod' and
'sxpert'. restoring instances.
<deadchip> Computer: Command override, command code Lt. Cmdr. Milosz
Derezynski omega-3-3-9-alpha zero. Remove instances 'nenolod'
and 'sxpert'.
<deadchip> "Unable to comply."
<deadchip> "Computer: Is it possible to at least, _alter_ the
subprograms nenolod and sxpert?"
<deadchip> "Specify parameters."
<deadchip> hmm i take that as a "yes"
<sxpert> lol
<deadchip> "Computer: Please remove 'nonsense' component from 'sxpert'
character."
<deadchip> "Affirmative."
<sxpert> "unable to comply. "
<deadchip> bah
<deadchip> yeah
<nenolod> grr
<deadchip> you're truly un-nonsensifiable
<deadchip> hahaha
<sxpert> "the intellectual subroutines are not alterable"
<deadchip> "Computer: Is it possible to alter the _look_ of the
character 'sxpert'?"
<deadchip> "Affirmative."
<deadchip> "Computer: Please dress character 'sxpert' in a clown's
costume."
<deadchip> "Specify parameters."
<deadchip> "Mid-20th-century Earth, Balkan area."
<deadchip> "Processing. Character alteration complete."
<deadchip> sxpert: bah
<deadchip> yeah i knew you would delete the whole databank first
<sxpert> lol
<geekoe> "Computer, can we …. finally… simply remover the characters
'sxpert'?"
<sxpert> "computer, here's arlequin costume. apply to character
deadchip"
<sxpert> "character parameters changed"
<sxpert> "woop"
<geekoe> :D
<deadchip> o_O
-- Star Trek-Like Plot
-- #bmp, Freenode
%
I'd love to change the world, but they won't give me the source code.
— Unknown
-- Unknown Author
-- Unknown
%
Pumbaa: Timon, ever wonder what those sparkly dots are up there?
Timon: Pumbaa, I don't wonder; I know.
Pumbaa: Oh. What are they?
Timon: They're fireflies. Fireflies that, uh… got stuck up on that big
bluish-black thing.
Pumbaa: Oh, gee. I always thought they were gigantic balls of gas burning
billions of miles away.
Timon: Pumbaa, with you, everything's gas.
-- Walt Disney Corp
-- "The Lion King" ( http://www.imdb.com/title/tt0110357/ )
%
>That's the nice thing about UNIX, it gives you so many >ways to shoot
yourself in the foot. :)
At least it does allow you to shoot yourself in the foot.
It doesn't say "shooting feet isn't supported"
Or you can shoot yourself in the foot by writing a management console plugin
that will pass the data to Word using VBA and then call Excel via com to split
it into columns and then write an activeX control to get the columns back as
-- Martin
-- Comment in the JoS Forum ( http://discuss.joelonsoftware.com/default.asp?joel.3.351421 )
%
[21:10] *** dazjorz changed nick to We
[21:10] * We are the Borg.
[21:10] *** We changed nick to Lower
[21:10] * Lower your shields and power down your weapons.
[21:11] *** Lower changed nick to We
[21:11] * We will add your biological and technological distinctiveness to our own.
[21:11] *** We changed nick to Resistance
[21:11] * Resistance is futile.
[21:11] *** Resistance changed nick to __You
[21:11] * __You will be assimilated.
[21:11] *** __You changed nick to dazjorz
-- Sjors (Dazjorz)
-- Freenode on IRC
%
"(God) is my favourite fictional character." - Homer Simpson
-- Matt Groening
-- The Simpsons ( http://en.wikipedia.org/wiki/The_Simpsons )
%
You should learn several new words everyday--eventually you will forget how to
speak so others can understand you.
Yaakov on Freenode's #perl
-- Yaakov
-- Freenode's #perl Conversation.
%
For thousands of years, we have been plagued by mathematicians insisting that
two plus two equals four. Who elected them? I, Stevie-O, am promoting an
entirely new system, where two plus two equals FIVE. Eventually, it will be
extended to provide other stuff these power-hungry madmen kept hidden away for
themselves, such as division by zero, cold fusion, the ability to solve the
halting problem, and the secret to attracting hot chicks.
Stevie-O on the Acme::NewMath POD document.
[Acme-NewMath](http://search.cpan.org/dist/Acme-NewMath/)
-- Stevie-O
-- Acme::NewMath POD document ( http://search.cpan.org/dist/Acme-NewMath/ )
%
> Should Perl do the same? [= Drop SCO Support]
Absolutely not. Perl supports defunct operating systems, buggy operating
systems, commercial operating systems, and poorly marketed operating systems.
It would be inappropriate to drop SCO just because it happens to be all of the
above.
-- Kurt Starsinic
-- [email protected] Email ( http://www.mail-archive.com/advocacy%40perl.org/msg01815.html )
%
<jkauffman> Lynx_: you do seem to do a lot of climbing
<jkauffman> Lynx_: you'll have the last laugh when the apocalypse comes
<jkauffman> you'll be physically fit
<jkauffman> climbing over the mountains of sulfurous ash
<jkauffman> bounding over rivers of lava
<Lynx_> sounds great
<Lynx_> but what will i eat?
<jkauffman> those who didn't bother to practice climbing
<Lynx_> eww
<Lynx_> those will be all fatty
<Lynx_> but maybe sulfurous ash is not so bad with some salt
<jkauffman> perhaps
-- Climbing for the Apocalypse
-- #perlcafe, Freenode
%
In Soviet Russia, every time you kill a kitten, god masturbates
GyroTech on [a Slashdot
comment](http://linux.slashdot.org/comments.pl?sid=195378&cid=16009070)
-- GyroTech
-- Slashdot Comment ( http://linux.slashdot.org/comments.pl?sid=195378&cid=16009070 )
%
<jagerman> dooky: A coworker used to like to say things like "I wrote
this much code" while holding his hands a couple feet apart
<mofino> hahaha
<jagerman> Once I asked him "At what font size?"
<mofino> +30
<q[ender]> hahah
<jagerman> He never said it any more
-- "I Wrote This Much Code"
-- #perlcafe, Freenode
%
Recently, Richard Stallman gave a speech in which he illustrated an academic
point about programming history by quoting a guy who described vi as 'an
editor spread at sword-point and which is really hard to use'.
I think I speak for all moderate vi(m) users when I say -- DEATH and DAMNATION
(in that order) to this Cardinal of the CTRL key! Needless to say my own local
vim user group has dispatched assassins to kill Mr. Stallman, but this is
hardly the end of the story. The fact is that a man has referred to another
man who in turn expressed some often-voiced reservations about OUR EDITOR! On
behalf of all editors of text everywhere, I implore EMACS users to return to
the true path, lest you be burned at the stake and then go to hell, the Buffer
From Which There Is No Unloading. We'll see how productive you are then, with
your ctrl-meta-alt and your ELISP and your 'ring buffer', whatever THAT is.
Peace and love to all.
^C
^X
quit
q
QUIT
exit :exit
zz
ZZ
kahei on
[Slashdot](http://linux.slashdot.org/comments.pl?sid=196931&cid=16136657)
-- kahei
-- Slashdot Comment ( http://linux.slashdot.org/comments.pl?sid=196931&cid=16136657 )
%
The thing is, I don't actually enjoy debugging my own machines. I _much_
prefer having other people debug _their_ machines, and fixing my machine in
the process. So I didn't want just something that worked on the Mac Mini, I
wanted something that works _universally_, so that hopefully people who are
even crazier than me will waste _their_ time trying to get these machines
working.
Linus Torvalds in [an Email message](http://lwn.net/Articles/188123/)
-- Linus Torvalds
-- Email Message ( http://lwn.net/Articles/188123/ )
%
Re:Silly Iranians… ALWAYS!
First, they came for the newspapers, and I did nothing because the Farsi Side
comic was just re-prints now.
Next, they came for the books, and I looked the other way because the Death to
America Book of the Month Club was only recommending books to burn anyway.
Then, they came for the Satellite Dishes, and I said nothing because I still
had a year left on my Infidelphia Cable contract.
Finally, they came for my Internet Service, and no one was left to hear my
ululation!
patrixmyth on
[Slashdot](http://yro.slashdot.org/comments.pl?sid=201413&cid=16490111)
-- patrixmyth
-- Slashdot Comment ( http://yro.slashdot.org/comments.pl?sid=201413&cid=16490111 )
%
I don't guarantee that I always change my mind, but I _can_ guarantee that if
most of the people I trust tell me I'm a dick-head, I'll at least give it a
passing thought.
[ Chorus: "You're a dick-head, Linus" ]
Linus Torvalds in [an E-mail message](http://lwn.net/Articles/201440/).
-- Linus Torvalds
-- Email Message ( http://lwn.net/Articles/201440/ )
%
Review of the Oxford English Dictionary on Amazon.com:
[One Star]
"an epic work that has trouble holding the interest"
By: a customer
I'm at the ABs, and I still can't get a grip on the plot. Characters enter,
are introduced in exhausting detail -- and then disappear again! Very
frustrating. The only time an old character shows up again is in another's
history! A lot like _A Dance to the Music of Time_, I suppose.
Perhaps things will become clearer when we meet Oxford, English or Dictionary
-- clearly three key figures. Some kind of menage a trois?
-- Amazon.com: Oxford English Dictionary ( http://www.amazon.com/Oxford-English-Dictionary-20-Set/dp/0198611862 )
%
Although the contents of her book, The Virtue of Selfishness, are precisely
accurate and widely integrated, Ayn Rand committed an error by distorting the
word "selfishness" in fashioning a dramatic statement. The word "selfishness"
does have valuable, precise denotations of "an irrational, harmful disregard
for others". Rand could have strengthened her work by selecting accurate
wording such as rational self-growth. Instead, she unnecessarily bent and
undermined the precise, valuable meaning of selfishness. …As with
selflessness, selfishness is a form of immature, destructive, irrational
behavior -- a form of stupid behavior.
[Neo-Tech Advantage No. 14 - "Self-Growth vs. Selfless
View"](http://www.neo-tech.com/neotech/advantages/advantage14.html)
-- Frank R. Wallace
-- Neo-Tech Advantage No. 14 - "Self-Growth vs. Selfless View" ( http://www.neo-tech.com/neotech/advantages/advantage14.html )
%
I invented the term Object-Oriented, and I can tell you I did not have C++ in
mind.
Alan Kay (Attributed)
-- Alan Kay
%
<ew73> VB.NET is all of the fun of enforced privacy OO with all of the
power of BASIC.
<ew73> java.sun.os.device.videocard.screen.pixel.dance.a.jig.and.turn.red('true')
-- VB.NET and Java
-- #perl, Freenode
%
Extra Peculiar
Did you watch Uri Geller's show last night? He said that if anything
extraordinary happened at home during the show, people should phone in, or
report it at his website. During the entire show I was installing Hebrew
Windows XP for my mother-in-law, and something extraordinary did happen. The
operating system got installed, came up, ran without a glitch. Should I report
this to Uri?
khatul's comment:
Without a glitch, huh? Apparently you (and Uri) managed to install Linux from
a Windows XP installation CD. This is much more than telekinesis. It smells
like pure alien intervention. Report immediately!
-- wildernesscat
-- wildernesscat : Extra Peculiar (Blog Entry) ( http://wildernesscat.livejournal.com/530346.html )
%
It's one of those rare "perfect" kernels. So if it doesn't happen to compile
with your config (or it does compile, but then does unspeakable acts of
perversion with your pet dachshund), you can rest easy knowing that it's all
your own d*mn fault, and you should just fix your evil ways.
You could send me and the kernel mailing list a note about it anyway, of
course. (And perhaps pictures, if your dachshund is involved. Not that we'd be
interested, of course. No. Just so that we'd know to avoid it next time).
Linus Torvalds announcing the 2.6.19 Linux kernel.
[Email message](http://lwn.net/Articles/211904/)
-- Linus Torvalds
-- Email Message ( http://lwn.net/Articles/211904/ )
%
<castoff> merlyn: is it true that array iteration is better performance
wise than hash iteration?
* avar would guess that array iter is faster than hash iter
<merlyn> what is "hash iter"?
<merlyn> with "each()"?
<castoff> foreach key…
<avar> yeah, or keys
<merlyn> I don't see those as comparable
<merlyn> when you have a hash, and you need to iterate, you do.
<merlyn> when you have an array, and you need to iterate, you do
<merlyn> what is there to choose between?
<castoff> the hash has no real value stored other than the key so i
converted to arrays
<avar> merlyn: you can compare the speed of the two operations
<avar> well duh
<merlyn> Why would you compare the speed of unrelated events?
<merlyn> "let's time baking this bread compared to driving to seattle"
<merlyn> it's pointless
<ides> merlyn: heh, yes, but I think it would make a funny
performance comparison article! :)
<merlyn> "always optimize for baking bread!"
* avar eats merlyn
<ides> merlyn: I was thinking more along the lines of "Performance
comparison on Perl vs RoR vs Ice Fishing"
<merlyn> "I repeated baking bread 5000 times to get the average"
<merlyn> "It took me six years"
<ides> merlyn: too bad there isn't a Benchmark module for my oven…
<merlyn> Ovenmark
-- Not comparable
-- #perl, Freenode
%
<Teratogen> Two atoms are walking down the street when one of them says
"I think I've lost an electron." The second one says "are
you sure?", to which the first one replies "Yes, I'm
positive".
<mpeg4codec> So officer Schroedinger pulls over this quantum particle
and he says ``Do you know how fast you were going?''
<mpeg4codec> the particle says, ``No, but I know exactly where I am.''
<Teratogen> everybody has heard of Schroedinger's cat experiment
<Teratogen> but very few people know that Schroedinger hated cats
<Teratogen> with a passion
<Teratogen> and actually experimented on them
<Teratogen> he even owned a set of cat-fur gloves
<Teratogen> cats mysteriously disappeared around Schroedinger's
laboratory
<Teratogen> and there was no Chinese restaurant close by to explain the
disappearances
<mpeg4codec> Schroedinger's cat: wanted dead AND alive
-- Jokes about Particle Physics
-- #perl, Freenode
%
Tel Aviv - a functional definition:
Free parking space free space.
Shachar Shemesh
[Blog Post](http://blog.shemesh.biz/?p=435)
-- Shachar Shemesh
-- "Tel Aviv - a Functional Definition" (Blog Post) ( http://blog.shemesh.biz/?p=435 )
%
<Botje> tecloSolaris: that's an irssi script. you can't run it
outside irssi.
<tecloSolaris> but it fails in irssi
<Botje> why does it fail?
<merlyn> it fails because of its parents!
<merlyn> I blame its parents
<merlyn> It fails because of society.
<merlyn> it fails as a fundamental shortcoming of Perl
<merlyn> it fails at succeeding
<Teratogen> I blame society!
<merlyn> I blame Teratogen's society.
<merlyn> I'll blame the blamer
-- Always find someone to blame
-- #perl, Freenode
%
In a widely anticipated move, Linux "headcase" Torvalds today announced the
immediate availability of the most advanced Linux kernel to date, version
2.6.20.
Before downloading the actual new kernel, most avid kernel hackers have been
involved in a 2-hour pre-kernel-compilation count-down, with some even
spending the preceding week doing typing exercises and reciting PI to a
thousand decimal places.
The half-time entertainment is provided by randomly inserted trivial syntax
errors that nerds are expected to fix at home before completing the compile,
but most people actually seem to mostly enjoy watching the compile warnings,
sponsored by Anheuser-Busch, scroll past.
As ICD head analyst Walter Dickweed put it: "Releasing a new kernel on
Superbowl Sunday means that the important 'pasty white nerd' constituency
finally has something to do while the rest of the country sits comatose in
front of their 65" plasma screens".
Walter was immediately attacked for his racist and insensitive remarks by
Geeks without Borders representative Marilyn vos Savant, who pointed out that
not all of their members are either pasty nor white. "Some of them even
shower!" she added, claiming that the constant stereotyping hurts nerds'
standing in society.
Geeks outside the US were just confused about the whole issue, and were heard
wondering what the big hoopla was all about. Some of the more culturally aware
of them were heard snickering about balls that weren't even round.
-- Linus Torvalds announcing kernel 2.6.20 ( http://lwn.net/Articles/220544/ )
-- Linus Torvalds
-- Announcement of Kernel 2.6.20 ( http://lwn.net/Articles/220544/ )
%
Sesquipedallianism:
Making excessive use of long words.
http://www.urbandictionary.com/define.php?term=sesquipedallian
-- Definition for Sesquipedallian ( http://www.urbandictionary.com/define.php?term=sesquipedallian )
%
<TimToady> TimToady's Lament: The pain in reign falls mainly in the
'splain. --
-- TimToady's Lament
-- #perl6, Freenode
%
You fool. Why did you tell him the Spanish Inquisition is coming. Now he's
going to expect it.
niconorsk on a [Slashdot
Comment](http://politics.slashdot.org/comments.pl?sid=224312&cid=18164404)
-- niconorsk
-- Slashdot Comment ( http://politics.slashdot.org/comments.pl?sid=224312&cid=18164404 )