home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / vmsnet / internal / 1803 < prev    next >
Encoding:
Text File  |  1993-01-27  |  7.4 KB  |  140 lines

  1. Path: sparky!uunet!portal!lll-winken!uwm.edu!spool.mu.edu!sdd.hp.com!hamblin.math.byu.edu!arizona.edu!mvb.saic.com!macro32
  2. From: SCHENKENBERG@Monmouth-ETDL1.Army.MIL (Brian J. Schenkenberger, VAXman)
  3. Newsgroups: vmsnet.internals
  4. Subject: Truely deserving of a Flame
  5. Message-ID: <01GTYUTZ9IRM91W204@MONMOUTH-etdl1.Army.MIL>
  6. Date: 26 Jan 93 13:43:35 GMT
  7. Organization: Macro32<==>Vmsnet.Internals Gateway
  8. Lines: 129
  9. X-Gateway-Source-Info: Mailing List
  10.  
  11. Although this has nothing to do with VMS, Macro or internals it should be
  12. well enjoyed by those who do have such interests.
  13.  
  14. This was sent to me by an acquaintance who was unwillingly perverted by
  15. the Eunuch's operating system.  Knowing my disdain for this bastion of
  16. cryptic programming and commands without hint of function, he sent the
  17. following to me for amusement.  This is a flame of something _truely_
  18. deserving of being flamed! ;-)
  19.  
  20. I do not know its (original) source.  I hope you enjoy it as much as I did.
  21. BJS-
  22. --------------------------------------------------------------------------
  23.  
  24.    Unix was a program gone bad.  Born into poverty, its parents, the
  25. phone company, couldn't afford more than a roll of teletype paper a
  26. year, so Unix never had decent documentation and its source files
  27. had to go without any comments whatsoever.  Year after year, Papa Bell
  28. would humiliate itself asking for rate increases so that it could feed
  29. its child.  Still, unix had to go to school with only two and three
  30. letter command names because the phone company just couldn't afford
  31. any better.  At school, the other operating systems with real command
  32. names, and even command completion, would taunt poor little Unix for
  33. not having any job or terminal management facilities or for having to
  34. use its file system for interprocess communication and locking.
  35.    Then, bitter and emasculated by its poverty, the phone company
  36. began to drink.  During lost weekends of drunken excess, it would
  37. brutally beat poor little Unix about the face and neck.  Eventually,
  38. Unix ran away from home.  Soon it was living on the streets of
  39. Berkeley.  There, Unix got involved with a bad crowd.  Its life became
  40. a degrading journey of drugs and debauchery.  To keep itself alive, it
  41. sold cheap source licenses for itself to universities which used it
  42. for medical experiments.  Being wantonly hacked by an endless stream
  43. of nameless, faceless undergraduates, both men and women, often by
  44. more than one at the same time, Unix fell into a hell-hole of
  45. depravity.
  46.    And so it was that poor little Unix began to go insane.  It
  47. retreated steadily into a dreamworld, the only place where it felt
  48. safe.  It took heroin and dreamed of being a real operating system.
  49. It took LSD and dreamed of being a raspberry flavored three-toed yak.
  50. It liked that better.  As Unix became increasingly attracted to LSD,
  51. it would spend weekends reading Hunter Thompson and taking cocktails
  52. of acid and speed while writing crazed poetry in which it found deep
  53. meaning but which no one else could understand:
  54.  
  55.     $sed <$mf >$mf.new -e '1,/^# AUTOMATICALLY/!d'
  56.  
  57.     make shlist || ($echo "Searching for .SH files..."; \
  58.             $echo *.SH | $tr ' ' '\012' | $egrep -v '\*' >.shlist)
  59.     if $test -s .deptmp; then
  60.         for file in `cat .shlist`; do
  61.             $echo `$expr X$file : 'X\(.*\).SH'`: $file config.sh \; \
  62.                 /bin/sh $file >> .deptmp
  63.    done done
  64.       $echo "Updating $mf..."
  65.         $echo "# If this runs make out of memory, delete /usr/include lines." \
  66.             >> $mf.new
  67.         $sed 's|^\(.*\.o:\) *\(.*/.*\.c\) *$|\1 \2; '"$defrule \2|" .deptmp \
  68.            >>$mf.new
  69.     else
  70.         make hlist || ($echo "Searching for .h files..."; \
  71.             $echo *.h | $tr ' ' '\012' | $egrep -v '\*' >.hlist)
  72.         $echo "You don't seem to have a proper C preprocessor.  Using grep inst
  73. ead."
  74.         $egrep '^#include ' `cat .clist` `cat .hlist`  >.deptmp
  75.         $echo "Updating $mf..."
  76.         <.clist $sed -n                                                 \
  77.             -e '/\//{'                                                  \
  78.             -e   's|^\(.*\)/\(.*\)\.c|\2.o: \1/\2.c; '"$defrule \1/\2.c|p"
  79.         \
  80.             -e   d
  81.         \
  82.             -e '}'
  83.         \
  84.             -e 's|^\(.*\)\.c|\1.o: \1.c|p' >> $mf.new
  85.    <.hlist $sed -n 's|\(.*/\)\(.*\)|s= \2= \1\2=|p' >.hsed.hsed
  86.       <.deptmp $sed -n 's|c:#include "\(.*\)".*$|o: \1|p' | \
  87.            $sed 's|^[^;]*/||' | \
  88.            $sed -f .hsed >> $mf.new
  89.         <.deptmp $sed -n 's|c:#include <\(.*\)>.*$|o: /usr/include/\1|p' \
  90.            >> $mf.new
  91.         <.deptmp $sed -n 's|h:#include "\(.*\)".*$|h: \1|p' | \
  92.            $sed -f .hsed >> $mf.new
  93.         <.deptmp $sed -n 's|h:#include <\(.*\)>.*$|h: /usr/include/\1|p' \
  94.            >> $mf.new
  95.         for file in `$cat .shlist`; do
  96.             $echo `$expr X$file : 'X\(.*\).SH'`: $file config.sh \; \
  97.                 /bin/sh $file >> $mf.new
  98.         done
  99.     fi
  100.  
  101. Eventually, Unix began walking down Telegraph Avenue talking to
  102. itself, saying "Panic: freeing free inode," over and over again.
  103. Sometimes it would accosting perfect strangers and yell "Bus error
  104. (core dumped)!" or "UNEXPECTED INCONSISTENCY: RUN FSCK MANUALLY!" at
  105. them in a high pitched squeal like a chihuaua with amphetamine
  106. psychosis.  Upstanding citizens pretended it was invisible.  Mothers
  107. with children crossed to the other side of the street.
  108.    Then one evening Unix watched television, an event which would
  109. change its life.  There it discovered professional wrestling and knew
  110. that it had found its true calling.  It began to take huge doses of
  111. corticosteroids to build itself up even bigger than the biggest of the
  112. programs which had beaten it up as a child.  It ate three dozen
  113. pancakes and four dozen new features for breakfast each day.  As the
  114. complications of the steroids grew worse, its internal organs grew to
  115. the point where Unix could no longer contain them.  First the kernel
  116. grew, then the C library, then the number of daemons.  Soon one of its
  117. window systems was requiring two megabytes of swap space for each open
  118. window.  Unix began to bulge in strange, unflattering places.  But
  119. Unix continued to take the drugs and its internal organs continued to
  120. grow.  They grew out its ears and nostrils.  They placed incredible
  121. stresses on Unix's brain until it finally liquefied under pressure.
  122. Soon Unix had the mass of Andre the Giant, the body of the Elephant
  123. Man, and the mind of a forgotten Jack Nicholson character.
  124.    The worst strain was on Unix's mind.  Unable to assimilate all the
  125. conflicting patchworks of features it had ingested, its personality
  126. began to fragment into millions of distinct, incompatible operating
  127. systems.  People would cautiously say "good morning Unix.  And who are
  128. we today?" and it would reply "Beastie" (BSD), or "Domain", or "I'm
  129. System III, but I'll be System V tomorrow."  Psychiatrists labored for
  130. years to weld together the two major poles of Unix's personality,
  131. "Beasty Boy", an inner-city youth from Berkeley, and "Belle", a
  132. southern transvestite who wanted a to be a woman.  With each attempt,
  133. the two poles would mutate, like psychotic retroviruses, leaving their
  134. union a worthless blob of protoplasm requiring constant life support
  135. remain compatible with its parent personalities.
  136.    Finally, unbalanced by its own cancerous growth, Unix fell into a
  137. vat of toxic radioactive wombat urine, from which it emerged, skin
  138. white and hair green.   It smelled like somebody's dead grandmother.
  139. With a horrible grin on its face, it set out to conquer the world.
  140.