forked from fike/fortunes-mario-deb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmario.computadores
1798 lines (1661 loc) · 65.4 KB
/
mario.computadores
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
Gostaria de criar homepages, mas não sei o que elas comem...
%
O computador surgiu para resolver problemas que antes não existiam.
%
Troco 286 com monitor por um pacote de bolacha Maria. Pago a
diferença em dinheiro!
%
Alf^H^Hgué,^Hm sag^Hbe como fas^Hzer funcu^Hionar o backspace
nestt^He terminal?
%
Tem coisas, BUM! Que só o Windows 98 apaga pra você!
%
640K é suficiente para qualquer um.
-- Bill Gates, 1981
%
Windows 98: quanto mais bonito é o espetáculo, maior é a confusão
nos bastidores...
%
Windows 98. A graça de quem vê, a desgraça de quem usa!
%
Windows? What's Windows? I use OS/2!
-- Bill Gates
%
Dica de micreiro: se seu carro pifar, tente sair e entrar de novo.
%
Jamais deixe seu computador saber que você está com pressa!
%
Windows for Workgroups: Why crash 1 when you can crash 6?
%
Eu cnsigo diigtar 400 caractreres pro minuo1.
%
Windows NT=Nice Try!
%
Tenho Windows há um ano e nunca deu pau. Qualquer dia eu instalo no HD.
%
Acho que existe um mercado mundial para cerca de cinco computadores.
Thomas J Watson -- Diretor da IBM, em 1958
%
I don't know why, but first C programs tend to look a lot worse than
first programs in any other language (maybe except for fortran, but then
I suspect all fortran programs look like `firsts')
-- Olaf Kirch
%
I've run DOOM more in the last few days than I have the last few
months. I just love debugging ;-)
-- Linus Torvalds
%
If you want to travel around the world and be invited to speak at a lot
of different places, just write a Unix operating system.
-- Linus Torvalds
%
[In 'Doctor' mode], I spent a good ten minutes telling Emacs what I
thought of it. (The response was, 'Perhaps you could try to be less
abusive.')
-- Matt Welsh
%
Linux is obsolete
-- Andrew Tanenbaum
%
> > Other than the fact Linux has a cool name, could someone explain why I
> > should use Linux over BSD?
>
> No. That's it. The cool name, that is. We worked very hard on
> creating a name that would appeal to the majority of people, and it
> certainly paid off: thousands of people are using linux just to be able
> to say "OS/2? Hah. I've got Linux. What a cool name". 386BSD made the
> mistake of putting a lot of numbers and weird abbreviations into the
> name, and is scaring away a lot of people just because it sounds too
> technical.
-- Linus Torvalds' follow-up to a question about Linux
%
...Unix, MS-DOS, and Windows NT (also known as the Good, the Bad, and
the Ugly).
-- Matt Welsh
%
We all know Linux is great...it does infinite loops in 5 seconds.
-- Linus Torvalds about the superiority of Linux on
the Amterdam Linux Symposium
%
What's this script do?
unzip ; touch ; finger ; mount ; gasp ; yes ; umount ; sleep
Hint for the answer: not everything is computer-oriented. Sometimes you're
in a sleeping bag, camping out.
-- Contributed by Frans van der Zande.
%
When you say "I wrote a program that crashed Windows", people just stare
at you blankly and say "Hey, I got those with the system, *for free*".
-- Linus Torvalds
%
Why use Windows, since there is a door?
-- [email protected], Andre Fachat
%
Se você não o fizer bom, pelo menos tente fazê-lo parecer bom.
-- Bill Gates sobre a sólida estrutura de código do
Win9X
%
Emacs não só é um estilo de vida, mas um completo desperdício de espaço
em disco.
-- Alan Cox
%
Keep me informed on the behaviour of this kernel.. As the "BugFree(tm)"
series didn't turn out too well, I'm starting a new series called the
"ItWorksForMe(tm)" series, of which this new kernel is yet another
shining example.
-- Linus, in the announcement for 1.3.29
%
You cannot really understand recursion until you understand
recursion.
%
Before you put a really dark background on your web page, ask yourself
this: Why is it so much harder to drive at night than in the
daytime?
-- Henri de Toulouse-LaTech
%
Hyperlinks are the GOTOs of the '90s.
-- Vincent van Gui
%
There are two ways of constructing a software design. One way is to make
it so simple that there are obviously no deficiencies and the other is to
make it so complicated that there are no obvious deficiencies.
-- C.A.R. Hoare
%
The first very basic rule is to avoid interfaces.
-- Linus Torvalds em ``Open Sources: Voices from the
Open Source Revolution'', sobre o desenvolvimento
de kernels.
%
``... A number of then [GNU softwares] I hate with a passion; the
Emacs editor is horrible, for example. While Linux is larger than Emacs,
at least Linux has the excuse that it needs to be''.
-- Linus Torvalds em ``Open Sources: Voices from the
Open Source Revolution'', sobre os softwares do
projeto GNU e seu carinho pelo Emacs.
%
FORTRAN is not a flower but a weed -- it is hardy,
occasionally blooms, and grows in every computer.
-- A.J. Perlis
%
Abençoados sejam os pessimistas por terem incitado a criação dos
mecanismos para ``backup''.
%
In most countries selling harmful things like drugs is punishable.
Then howcome people can sell Microsoft software and go unpunished?
-- Hasse Skrifvars, [email protected],
%
How should I know if it works? That's what beta testers are for. I
only coded it.
-- Attributed to Linus Torvalds, somewhere in a posting
%
Besides, I think Slackware sounds better than 'Microsoft,' don't you?
-- Patrick Volkerding
%
Whip me. Beat me. Make me maintain AIX.
-- Stephan Zielinski
%
Your job is being a professor and researcher: That's one hell of a good
excuse
for some of the brain-damages of minix.
-- Linus Torvalds to Andrew Tanenbaum
%
And 1.1.81 is officially BugFree(tm), so if you receive any bug-reports
on it, you know they are just evil lies.
-- Linus Torvalds
%
Dijkstra probably hates me.
-- Linus Torvalds, in kernel/sched.c
%
Linux: the operating system with a CLUE... Command Line User Environment.
-- seen in a posting in comp.software.testing
%
/*
* [...] Note that 120 sec is defined in the protocol as the maximum
* possible RTT. I guess we'll have to use something other than TCP
* to talk to the University of Mars.
* PAWS allows us longer timeouts and large windows, so once implemented
* ftp to mars will work nicely.
*/
-- from /usr/src/linux/net/inet/tcp.c, concerning RTT
[round trip time]
%
DOS: n., A small annoying boot virus that causes random spontaneous system
crashes, usually just before saving a massive project. Easily cured
by UNIX. See also MS-DOS, IBM-DOS, DR-DOS.
-- David Vicker's .plan
%
LILO, you've got me on my knees!
-- David Black, [email protected], with apologies
to Derek and the Dominos, and Werner Almsberger
%
After watching my newly-retired dad spend two weeks learning how to make a
new folder, it became obvious that "intuitive" mostly means "what the
writer or speaker of intuitive likes".
-- Bruce Ediger, [email protected], on X the
intuitiveness of a Mac interface
%
How do I type "for i in *.dvi do xdvi $i done" in a GUI?
-- Discussion in comp.os.linux.misc on the
intuitiveness of interfaces
%
>Ever heard of .cshrc?
That's a city in Bosnia. Right?
-- Discussion in comp.os.linux.misc on the
intuitiveness of commands
%
Who wants to remember that escape-x-alt-control-left shift-b puts you into
super-edit-debug-compile mode?
-- Discussion on the intuitiveness of commands,
especially Emacs
%
As usual, this being a 1.3.x release, I haven't even compiled this
kernel yet. So if it works, you should be doubly impressed.
-- Linus Torvalds, announcing kernel 1.3.3
%
Never trust an operating system you don't have sources for.
%
> Linux is not user-friendly.
It _is_ user-friendly. It is not ignorant-friendly and idiot-friendly.
-- Seen somewhere on the net
%
(I tried to get some documentation out of Digital on this, but as far as
I can tell even _they_ don't have it ;-)
-- Linus Torvalds, in an article on a dnserver
%
Convention organizer to Linus Torvalds: "You might like to come with us
to some licensed[1] place, and have some pizza."
Linus: "Oh, I did not know that you needed a license to eat pizza".
[1] Licenced - refers in Australia to a restaurant which has government
licence to sell liquor.
-- Linus at a talk at the Melbourne University
%
The new Linux anthem will be "He's an idiot, but he's ok", as performed by
Monthy Python. You'd better start practicing.
-- Linus Torvalds, announcing another kernel patch
%
Whoa...I did a 'zcat /vmlinuz > /dev/audio' and I think I heard God...
-- mikecd on #Linux
%
> What does ELF stand for (in respect to Linux?)
ELF is the first rock group that Ronnie James Dio performed with back in
the early 1970's. In constrast, a.out is a misspelling of the French
word for the month of August. What the two have in common is beyond me,
but Linux users seem to use the two words together.
-- seen on c.o.l.misc
%
> I get the following error messages at bootup, could anyone tell me
> what they mean?
> fcntl_setlk() called by process 51 (lpd) with broken flock() emulation
They mean that you have not read the documentation when upgrading the
kernel.
-- seen on c.o.l.misc
%
Only wimps use tape backup: _real_ men just upload their important stuff
on ftp, and let the rest of the world mirror it ;)
-- Linus Torvalds, about his failing hard drive on
linux.cs.helsinki.fi
%
<SomeLamer> what's the difference between chattr and chmod?
<SomeGuru> SomeLamer: man chattr > 1; man chmod > 2; diff -u 1 2 | less
-- Seen on #linux on irc
%
I'm telling you that the kernel is stable not because it's a kernel,
but because I refuse to listen to arguments like this.
-- Linus Torvalds
%
You can tell how far we have to go, when FORTRAN is the language of
supercomputers.
-- Steven Feiner
%
You can measure a programmer's perspective by noting his attitude on
the continuing viability of FORTRAN.
-- Alan Perlis
%
Testing? What's that? If it compiles, it is good, if it boots up it is
perfect.
-- Linus Torvalds
%
Software is like sex: It's better when it's free.
-- Linus Torvalds, from FSF T-shirt
%
Security-wise, NT is a server with a "Kick me" sign taped to it.
-- Peter Gutmann
%
How much net work could a network work, if a network could net work?
%
The use of COBOL cripples the mind; its teaching should, therefore, be
regarded as a criminal offence.
-- Edsger W. Dijkstra, SIGPLAN Notices, Volume 17,
Number 5
%
Windows
M!uqoms
%
Beware of bugs in the above code; I have only proved
it correct, not tried it.
-- Donald Knuth
%
login: yes
password: I don't know, please tell me
password is incorrect
login: yes
password: incorrect
%
The question of whether computers can think is just like the question of
whether submarines can swim.
-- Edsger W. Dijkstra
%
Um computador sem COBOL e Fortran é como um bolo de chocolate sem catchup
e mostarda.
%
An algorithm must be seen to be believed.
-- D.E. Knuth
%
/*
* Please skip to the bottom of this file if you ate lunch recently
* -- Alan
*/
-- from Linux kernel pre-2.1.91-1
%
... if you find bugs as easily as using Windows, you have bad RAM, bad
CPU, bad cable, bad cooling, VIA chipset with PCI quirks turned on, or other
hardware or other software layer bugs. ReiserFS is stable.
-- ReiserFS FAQ
%
A LISP programmer knows the value of
everything, but the cost of nothing.
-- Alan Perlis
%
f u cn rd ths, u cn gt a gd jb n cmptr prgrmmng.
%
f u cn rd ths, u r prbbly a lsy spllr.
%
C:\> WIN
Bad command or filename
C:\> LOSE
Loading Microsoft Windows ...
%
And the next time you consider complaining that running Lucid Emacs
19.05 via NFS from a remote Linux machine in Paraguay doesn't seem to
get the background colors right, you'll know who to thank.
-- Matt Welsh
%
Actually, typing random strings in the Finder does the equivalent of
filename completion.
-- Discussion on file completion vs. the Mac Finder
%
A is for awk, which runs like a snail, and
B is for biff, which reads all your mail.
C is for cc, as hackers recall, while
D is for dd, the command that does all.
E is for emacs, which rebinds your keys, and
F is for fsck, which rebuilds your trees.
G is for grep, a clever detective, while
H is for halt, which may seem defective.
I is for indent, which rarely amuses, and
J is for join, which nobody uses.
K is for kill, which makes you the boss, while
L is for lex, which is missing from DOS.
M is for more, from which less was begot, and
N is for nice, which it really is not.
O is for od, which prints out things nice, while
P is for passwd, which reads in strings twice.
Q is for quota, a Berkeley-type fable, and
R is for ranlib, for sorting ar table.
S is for spell, which attempts to belittle, while
T is for true, which does very little.
U is for uniq, which is used after sort, and
V is for vi, which is hard to abort.
W is for whoami, which tells you your name, while
X is, well, X, of dubious fame.
Y is for yes, which makes an impression, and
Z is for zcat, which handles compression.
-- THE ABC'S OF UNIX
%
The game, anoraks.2.0.0.tgz, will be available from sunsite until somebody
responsible notices it and deletes it, and shortly from
ftp.mee.tcd.ie/pub/Brian, though they don't know that yet.
-- Brian O'Donnell, [email protected]
%
I code in vi because I don't want to learn another OS. :)
-- Robert Love, em entrevista a kerneltrap.org.
%
Software engineering, statistics, and even queue theory turn out to have
practical value. Admittedly, Cobol85 hasn't proved useful except for
humour value.
-- Alan Cox, em entrevista a kerneltrap.org
%
Nós trabalhamos com o propósito de tornar nossos produtos obsoletos, antes
que outros o façam.
-- Bill Gates
%
Programar, hoje, é uma disputa entre engenheiros de software, que se
empenham em produzir programas maiores e à prova de idiotas, e o Universo,
que tenta produzir maiores e melhores idiotas. Até agora, o Universo está
ganhando.
-- Rich Cook
%
...
Thus, starting with Linux 3.0 (to be released hopefully by next
summer), the kernel will be completely rewritten in the easy-to-use
Visual Basic language. This will eliminate all issues involving buffer
overruns, as well as streamlining porting of Windows programs to
Linux, since Microsoft (who will now assume ownership of Linux) assure
me that Windows is written entirely in VB as well.
Microsoft has also stated that they intend to incorporate Windows
features, such as the RRS (Rapid Random Shutdown) in Windows 95, into
Linux 3.0.
-- Linus Torvalds, 1o. de abril na LKML
%
If you have a procedure with 10 parameters, you probably missed some.
-- Alan Perlis, SIGPLAN Notices Vol. 17, No. 9
%
> The change prevents use of stale data, and is a good one. mtools was a
> hack from the days when some operating systems didn't speak DOS file
> format, and reliability is more important than performance.
Folks, could you please read the fucking source before discussing the
change that was not?
-- Alexander Viro
%
I would suggest re-naming "rmbdd()". I _assume_ that "dd" stands for
"data dependent", but quite frankly, "rmbdd" looks like the standard
IBM "we lost every vowel ever invented" kind of assembly lanaguage to
me.
-- Linus Torvalds
%
I'm sure that having programmed PPC assembly language, you find it
very natural (IBM motto: "We found five vowels hiding in a corner, and
we used them _all_ for the 'eieio' instruction so that we wouldn't
have to use them anywhere else").
But for us normal people, contractions that have more than 3 letters
are hard to remember. I wouldn't mind making the other memory barriers
more descriptive either, but with something like "mb()" at least you
don't have to look five times to make sure you got all the letters in
the right order..
(IBM motto: "If you can't read our assembly language, you must be
borderline dyslexic, and we don't want you to mess with it anyway").
-- Linus Torvalds
%
> (or if it segfaults. Usually that means that filesystem contains
> corruption not expected by reiserfsck)
Is the fact that reiserfsck can segfault a bug or a feature?
-- Vladimir V. Saveliev
%
In short: just say NO TO DRUGS, and maybe you won't end up like the
Hurd people.
-- Linus Torvalds
%
Subject: [reiserfs-list] "core dumping fscks tend to make me nervous"
%
4.2BSD may not be a complete disaster, but it does a good job of
emulating one.
%
Se idiotas pudessem voar, canais de IRC seriam aeroportos.
%
We definitively do not want Linux distributors to redistribute
developer versions as 'stable' ones and refuse to further comment on
questions such as "why does DOSEMU shipped with Linux-Colored-Cap not
run".
-- From the DOSEMU homepage
%
Linux is only free if your time has no value.
-- Jamie Zawinski
%
I was going to compile a list of innovations that could be
attributed to Microsoft. Once I realized that Ctrl-Alt-Del
was handled in the BIOS, I found that there aren't any.
%
/*---.
| ? |
`---*/
-- comment found in the source for gnu-tar
%
> Can someone say this in a way that doesn't claim precognition?
Simply add "we believe" at appropriate points.
-- Joe Buck, while talking about how to formulate the
gcc-3.0 press release
%
Hlade's Law:
If you have a difficult task, give it to a lazy person -- they
will find an easier way to do it.
%
/* So there I am, in the middle of my `netfilter-is-wonderful'
talk in Sydney, and someone asks `What happens if you try
to enlarge a 64k packet here?'. I think I said something
eloquent like `fuck'. */
-- linux/net/ipv4/netfilter/ip_nat_ftp.c
%
Many sites use Sun's Network Failure System (NFS), presumably because
the operating system vendor does not offer anything else.
-- from qmail's maildir(5)
%
> tar cvpf - foo | ( cd reiserfs; tar xvpf - )
> Halfway through it gets a kernel oops and
How fast does it oops?
-- Vladimir V. Saveliev
%
VBScript is designed to be a secure programming environment. It
lacks various commands that can be potentially damaging if used in
a malicious manner. This added security is critical in enterprise
solutions.
http://support.microsoft.com/support/kb/articles/Q167/1/38.ASP
[Despite this "added security", however, VBscript still can modify,
rename, delete files, modify windows registry entries and send email in
the background]
%
Physicists write FORTRAN in any language.
%
The Doghouse: Microsoft Windows CE
Microsoft encrypts your Windows NT password when stored on a Windows CE
device. But if you look carefully at their encryption algorithm, they
simply XOR the password with "susageP", Pegasus spelled backwards. Pegasus
is the code name of Windows CE. This is so pathetic it's staggering.
http://www.cegadgets.com/artsusageP.htm
-- CRYPTO-GRAM, November 15, 1999
%
Date: Mon, 17 Oct 94 16:48:04 -0700
From: Larry Wall <[email protected]>
Subject: It's soup.
Okay, it's there.
ftp://ftp.netlabs.com/pub/outgoing/perl5.0/perl5.000.tar.gz
The first one who tells me about a bug in it gets shot.
-- Larry, the release of perl 5.000
%
From: Linus Torvalds <[email protected]>
Date: Fri, 6 Aug 1999 11:42:19 -0700 (PDT)
On Fri, 6 Aug 1999, Hubert Mantel wrote:
>
> So the huge ISDN update in proposed-2.2.11 will be removed from the final
> 2.2.11 release?
[ Irritated mode: FULL BLAST ]
Are you being stupid on purpose, or were you born that way?
Go back and read the thread. Read why I'm irritated. READ. THINK.
%
Advantages of Windows NT over Linux:
* It's easier to explain the crash was not your fault.
* You've to remember only one solution all to your problems: Reboot.
* You can use your mouse to type an email-message.
%
We will encourage you to develop the three great virtues of a
programmer: laziness, impatience and hubris
-- From "Programming Perl"
%
> And what's wrong with being named Peter?
If linus was peter, Linux would be called penix? (just guessing) ;)
%
C combines the power of assembly language
with the flexibility of assembly language.
%
> Hello I'm wondering if there's a lower traffic mailing list that exists
> that's strictly important kernel announcements and not general chat. I
> need to stay informed but I can't handle 250 messages in a 24 hour
> period.
>
> Sorry for the insignificant post..
> Nic
Thank you for contributing to the problem.
-hpa
%
Unix *is* Perl's IDE!
-- Tom Christiansen
%
> So what comes first the chicken or the egg? :)
The egg. Always. By definition.
%
By the standards of the novice / intermediate developer accustomed to
VB/VS/VC/VJ, these tools are incredibly primitive.
-- M$ about unix development tools like GCC
%
Is there any truth to the rumor that the number appearing
after the words "Microsoft Windows" is the minimum amount of memory,
in megabytes, required for execution?
-- Craig Milo Rogers
%
Real programmers can write assembly code in any language. :-)
-- Larry Wall
%
Perl combines all of the worst aspects of BASIC, C and line noise.
-- Keith Packard
%
Einstein himself said that God doesn't roll dice. But he was wrong. And
in fact, anyone who has played role-playing games knows that God
probably had to roll quite a few dice to come up with a character like
Einstein.
-- Larry Wall
%
The X server has to be the biggest program I've ever seen that doesn't
do anything for you.
-- Ken Thompson
%
printk("autofs: trying to recover, but prepare for Armageddon\n");
-- linux-2.1.92/fs/autofs/root.c:
%
> Macintosh.
> Think different.
Think Again.
%
Lazy people never bother to actually read the manual. Instead they (like
kids) pick something with big, colorful buttons.
-- Eugene Tyurin <[email protected]>
%
"SPARC" is "CRAPS" backwards.
-- Rob Pike
%
"Nobody will ever need more than 640k RAM!"
-- Bill Gates
"Windows 95 needs at least 8 MB RAM."
-- Bill Gates
"Nobody will ever need Windows 95."
-- logical conclusion
%
Acentua^A0, um problema que j# foi superado.
%
Premature optimization is the root of all evil.
-- D.E. Knuth
%
> Prezados
>
> Seria importante respeito às pessoas para manter o debate em nível
> adequado.
Seria mais respeitoso ainda não reproduzir uma longa mensagem inteira
para acrescentar uma única frase.
-- Arnaldo Mandel, na lista de discussão da Sociedade
Brasileira de Computação
%
Unix is very simple, but it takes a genius to understand the
simplicity.
-- Dennis Ritchie
%
My suggestion for an Official Usenet Motto: 'If you have nothing to
say, then come on in, this is the place for you, tell us all
about it!'
-- Hevard Fosseng
%
A distributed system is one in which the failure of a computer you
didn't even know existed can render your own computer unusable.
-- Leslie Lamport in CACM, June 1992
%
That's what's cool about working with computers. They don't argue,
they remember everything and they don't drink all your beer.
-- Paul Learylead, Butthole Surfers guitarist, in
Guitar World, September 1991, p70
%
It would appear that we have reached the limits of what it is possible
to achieve with computer technology, although one should be
careful with such statements, as they tend to sound pretty silly in 5
years.
-- John Von Neumann (ca. 1949)
%
Artificial Intelligence: the art of making computers that behave like
the ones in movies.
-- Bill Bulko
%
Computers make it easier to do a lot of things, but most of the things
they make it easier to do don't need to be done.
-- Andy Rooney
%
While modern technology has given people powerful new communication
tools, it apparently can do nothing to alter the fact that many
people have nothing useful to say.
-- Lee Gomes, San Jose Mercury News
%
Existem apenas duas maneiras de se contruir programas sem
erros. Apenas a terceira funciona.
%
Se a depuração é a arte de eliminar erros, a programação deve ser a
arte de inserí-los.
%
The most important thing in the programming language is the name. A
language will not succeed without a good name. I have recently
invented a very good name and now I am looking for a suitable
language.
-- D. E. Knuth
%
It is practically impossible to teach good programming style to
students that have had prior exposure to BASIC; as potential
programmers they are mentally mutilated beyond hope of regeneration.
-- Edsger Dijkstra
%
Do not expose your LaserWriter to fire or intense heat.
-- Apple Corporation, Apple LaserWriter manual
%
All parts should go together without forcing. You must remember that
the parts you are reassembling were disassembled by you.
Therefore, if you can't get them together again, there must be a
reason. By all means, do not use a hammer.
-- IBM maintenance manual, 1925
%
USER, n.: The word computer professionals use when they mean 'idiot.'
-- Dave Barry
%
Beware of programmers who carry screw drivers.
-- Leonard Brandwein
%
Controlling complexity is the essence of computer programming.
-- Kernigan
%
If builders built buildings they way computer programmers write
programs, the first woodpecker that came along would have destroyed
all civilization.
-- Weinberg's Law
%
Programming is like sex, one mistake and you have to support it for
the rest of your life.
-- Michael Sinz, Commodore-Amiga Inc.
%
If you sat a monkey down in front of a keyboard, the first thing typed
would be a UNIX command.
-- Bill Lye
%
If it's there and you can see it - it's real. If it's not there and
you can see it - it's virtual. If it's there and you can't see
it - it's transparent. If it's not there and you can't see it - you
erased it!
-- Scott Hammer an old IBM VM statement
%
The best way to accelerate a Macintosh is at 9.8 m/sec/sec.
-- Dolengo, Marcus
%
Eu adoraria mudar o mundo, mas não tenho o código fonte.
%
COBOL programs are an exercise in Artificial Inelegance.
%
BUGS
The man page is longer than the source.
-- ogginfo manpage
%
A primeira impressão é a que fica, mas só se o toner for bom.
%
Eu acredito que o OS/2 está predestinado a ser o sistema operacional,
e possivelmente o programa mais importante de todos os tempos. Como o
sucessor do DOS, que tem mais de 10000000 de sistemas em operação.
Ele cria oportunidades incríveis para todo mundo envolvido com PCs.
-- Bill Gates, no prefácio de ``OS/2 Programmer's
Guide''
%
Há pessoas que não gostam do capitalismo, e pessoas que não
gostam de PCs. Mas não há ninguem que goste de PCs que não
goste da Microsoft
-- Bill Gates, Mercados Livres e o LA Times
%
Nova interface lembra o Presentation Manager, preparando você para
as maravilhas do OS/2!
-- Propaganda Microsoft na caixa do Windows 2.11 para
286
%
Programas da Microsoft são geralmente livres de bug. Se você visitar a
Microsoft Hotline você terá que literalmente esperar semanas , senão
meses até alguém ligar com um bug em nossos programas. 99.99% das
ligações acabam sendo por erros do usuário. Eu não conheço uma razão
mais irrelevante para uma atualização do que correção de bugs. A razão
para atualizações é apresentar novas características.
-- Bill Gates, sobre a estabilidade de código, na
Focus Magazine
%
Mario Domenech Goulart wrote (on Jun 6, 2002):
>
> Por que não utilizar um formato de especificação aberta e acessível
> para qualquer plataforma? (Nem todos usam Linux ou Windows).
Porque isso facilitaria a vida de todos, o que vai contra o Princípio
Fundamental da Burocracia.
-- Arnaldo Mandel, lista da Sociedade Brasileira de
Computação
%
What you see is all you get.
-- Brian Kernighan
%
Sniffing the glue that holds the Internet together
-- Ethereal homepage <http://www.ethereal.com>
%
BUGS
The man page is longer than the source.
-- ogginfo man page
%
From: Huberto Gastal Mayer <[email protected]>
Subject: Re: [PortoLivre] Microsoft expõe Windows XP no LinuxWorld
Date: Thu, 4 Jul 2002 21:59:55 +0000
> Mas eu quero ver eles fazerem um marketing como o que existe hoje,
> entre a gurizada, só utilizando bonés, camisetas, óculos, sungas, gorros,
> canetas, chaveiros, relogios, cuecas e preservativos com um "Linux" e um
> [pinguin] estampado! :-)
Onde é que tem camisinha com o tux estampado?! É uma boa, se a guria
perguntar, dá pra dizer: "Esse não trava nunca"
--
/****************************
Huberto Gastal Mayer
ICQ# 43761791
http://betogm.cjb.net
****************************/
%
Give a man an installer and he can handle a problem once, document the
problem and he can handle it lots of times ;)
-- Andy Arbon, sobre os instaladores, lista da
distribuição Gentoo.
%
In fact it's probably easier to write a virus for Linux because it's
open source and the code is available. So we will be seeing more Linux
viruses as the OS becomes more common and popular.
-- Wishful thinking from McAfee
%
...these operating systems will not find widespread use in mainstream
commercial applications in the next three years, nor will there be
broad third-party application support.
-- The Gartner Group says there is little hope for free
software, June 1998.
%
...if there's one thing about Linux users, they're do-ers, not
whiners.
-- Andy Patrizio
%
I'm a bastard. I have absolutely no clue why people can ever think
otherwise. Yet they do. People think I'm a nice guy, and the fact is
that I'm a scheming, conniving bastard who doesn't care for any hurt
feelings or lost hours of work if it just results in what I consider
to be a better system.
-- Linus Torvalds trying to change his image
%
Nils Ohlmeier <[email protected]> writes:
> Hello gentoos,
>
> exists any tool which can clean up /usr/portage/distfiles?
'rm'
-- Terje Kvernes, gentoo mailing list
%
Remember, C sharp is harmonically equivalent to D flat!
-- Phroggy ([email protected] minus caffeine)
(http://phroggy.com/)
%
List: openbsd-misc
Subject: Re: new snapshots
From: Theo de Raadt <[email protected]>
Date: 2002-07-30 8:42:50
The kernel contains this code:
if (db_print_position() != 0)
db_printf("\n");
db_printf("RUN AT LEAST 'trace' AND 'ps' AND INCLUDE "
"OUTPUT WHEN REPORTING THIS PANIC!\n");
db_printf("DO NOT EVEN BOTHER REPORTING THIS WITHOUT "
"INCLUDING THAT INFORMATION!\n");
When the system panics, it prints that.
If you don't follow those instructions, and you come to our list and
post such bad bug reports, you WILL get insulted and called a loser.
You're getting off easy, when I say so. You look entirely stupid to
everyone on the list who's seen others do it before.
%
The Proper Etiquette for Flaming
10 - Never forget that the person reading your mail is a person, with
feelings that can be hurt. If you see the opportunity, hurt them.
9 - Behave online as you do in real life. This way, you can act like a
total jerk under all circumstances.
8 - Lurk until you get a feel for what's acceptable in a particular
forum or newsgroup. Then leap in and do the opposite. 7 - Be aware of
others' time and bandwidth. Never post anything shorter than seven
paragraphs. Ensure your sig is at least a screen long.
6 - Make yourself look good online--always post your abuse in
complete, grammatically correct sentences.
5 - Share expert knowledge. If you know how to push someone's buttons
in a forum, send private email to everyone else telling them.
4 - Help keep flame wars under control: lead the charge.
3 - Respect other people's privacy...if you have some dirt about a
member of a newsgroup, spread it only via private email.
2 - Don't abuse your power. Flame only those who disagree with you.
1 - Remember: You were a network newbie once, too. You deserved all
the flaming you got then. The current batch deserves no less.
%
From: Linus Torvalds
Subject: Re: Security question: "Text file busy" overwriting
executables but not shared libraries?
To: Jamie Lokier
CC: "Eric W. Biederman" ,
On Sat, 13 Oct 2001, Jamie Lokier wrote:
>
> I can think of an efficiency-related use for MAP_COPY, and it has
> nothing to do with shared libraries:
>
> - An editor using mmap() to read a file.
No, you're thinking the wrong way.
Trust me, MAP_COPY really _is_ stupid, and the Hurd is a piece of
crap.
%
From: Linus Torvalds
Subject: Re: [Lse-tech] Re: RFC: patch to allow lock-free traversal
of lists with insertion
To: Paul McKenney
CC: , , Rusty Russell
On Sat, 13 Oct 2001, Linus Torvalds wrote:
>
> In short, RCU seems to be a case of "hey, that's cool", but it's a
> solution in search of a problem so severe that it is worth it.
Oh, and before people start telling me that RCU was successfully used in
AIX/projectX/xxxx/etc, you have to realize that I don't give a rats *ss
about the fact that there are OS's out there that are "more scalable".
The last time I looked, Solaris and AIX and all the rest of the "scalable"
systems were absolute pigs on smaller hardware, and the "scalability" in
them often translates into "we scale linearly to many CPU's by being
really bad even on one".
Linus
%
From: Linus Torvalds
Subject: Re: Coding style - a non-issue
> > And I will go further and claim that _no_ major software project that has
> > been successful in a general marketplace (as opposed to niches) has ever
> > gone through those nice lifecycles they tell you about in CompSci classes.
>
> That's classic:
> A) "trust me"
> B) now here's a monster bit of misdirection for you to choke on.
>
> Does anyone believe in those stupid software lifcycles?
> No.
> So does it follow that this has anything to do with design?
> No.
Hey, the whole _notion_ of "design" is that you know what you're going to
write, and you design for it.
Or do you have some other meaning of the word "design" that I haven't
heard about.
Linus
%
Subject: Re: Availability of kdb
From: Linus Torvalds ([email protected])
<...>
And quite frankly, for most of the real problems (as opposed to the stupid
bugs - of which there are many, as the latest crap with "truncate()" has
shown us) a debugger doesn't much help. And the real problems are what I
worry about. The rest is just details. It will get fixed eventually.
I do realize that others disagree. And I'm not your Mom. You can use a
kernel debugger if you want to, and I won't give you the cold shoulder
because you have "sullied" yourself. But I'm not going to help you use
one, and I wuld frankly prefer people not to use kernel debuggers that