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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626
|
.TH GEEKCODE 1 "August 12, 2001" geekcode "Geek User's Manual"
.SH NAME
geekcode \- generate geek code block
.SH SYNOPSIS
.B geekcode
.SH DESCRIPTION
So you think you are a geek, eh? The first step is to admit to
yourself your geekiness. No matter what anyone says, geeks are people
too; geeks have rights. So take a deep breath and announce to the
world that you are a geek. Your courage will give you strength that
will last you forever.
How to tell the world you are a geek, you ask? Use the universal Geek
code! Using this special code will allow you to let other un-closeted
geeks know who you are in a simple, codified statement.
The single best way to announce your geekhood is to add your geek code
to your signature file or plan and announce it far and wide. But be
careful, you may give other geeks the courage to come out of the
closet. You might want to hang on to your copy of the code in order to
help them along.
.SH USAGE
The geek code consists of several categories. Each category is labeled
with a letter and some qualifiers. Go through each category and
determine which set of qualifiers best describes you in that category.
By stringing all of these 'codes' together, you are able to construct
your overall geek code. It is this single line of code that will
inform other geeks the world over of what a great geek you actually
are.
Some of the qualifiers will very probably not match with you exactly.
It is impossible to cover all possibilities in each category. Simply
choose that qualifier that most closely matches you. Also, some
activities described in a specific qualifier you may not engage in,
while you do engage in others. Each description of each qualifier
describes the wide range of activities that apply, so as long as you
match with one, you can probably use that qualifier.
After you have determined each of your qualifiers, you need to the
construct your GEEK CODE BLOCK. Instructions are provided on how to do
this towards the end of this file.
Also, pay particular attention to case-sensitivity, there can be a big
difference between a \fIw\fR and a \fRW\fR.
.SH Variables
Geeks can seldom be strictly quantified. To facilitate the fact that
within any one category the geek may not be able to determine a
specific rating, variables have been designed to allow this range to
be included.
.TP
.B @
for this variable, said trait is not very rigid, may change with time
or with individual interaction. For example, Geeks who happen to very
much enjoy Star Trek: The Next Generation, but dislike the old 60's
series might list themselves as \fIt++@\fR.
.TP
.B ()
for indicating "cross-overs" or ranges. Geeks who go from \fIC+\fR to
\fIC---\fR depending on the situation (i.e. mostly \fIC+\fR) could use
\fIC+(---)\fR. \fI@\fR is different from \fI()\fR in that \fI()\fR has
finite limits within the category, while \fI@\fR ranges all over.
.TP
.B >
for 'wannabe' ratings. Indicating that while the geek is currently at
one rating, they are striving to reach another. For example,
\fIC++>$\fR indicating a geek that is currently computer savvy, but
wants to someday make money at it.
.TP
.B $
Indicates that this particular category is done for a living. For
example, \fIUL+++$\fR indicates that the person utilizes Unix and gets
paid for it. Quite a lucky geek, for sure.
.TP
.B ?
Unless stated otherwise within the specific category, the \fI?\fR is
placed after the category identifier and indicates that the geek has
no knowledge about that specific category. For example, a person that
has never even heard of Babylon 5, would list their Babylon 5 category
as \fI5?\fR
.TP
.B !
Placed BEFORE the category. Unless stated otherwise, indicates that
the person refuses to participate in this category. This is unlike the
\fI?\fR variable as the \fI?\fR indicates lack of knowledge, while the
\fI!\fR indicates stubborn refusal to participate. For example,
\fI!E\fR would be a person that just plain refuses to have anything to
do with Emacs, while \fIE?\fR would be a person that doesn't even know
what Emacs is.
.SH "Types of Geeks"
Geeks come in many flavors. The flavors relate to the vocation (or, if
a student, what they are training in) of the particular geek. To start
a code, a geek must declare himself or herself to be a geek. To do
this, we start the code with a "G" to denote "GEEK", followed by one
or two letters to denote the geek's occupation or field of study.
Multi-talented geeks with more than one vocational training should
denote their myriad of talents with a slash between each vocation
(example: GCS/MU/TW).
.TP
.TP
.B GB
Geek of Business
.TP
.B GC
Geek of Classics
.TP
.B GCA
Geek of Commercial Arts
.TP
.B GCM
Geek of Computer Management
.TP
.B GCS
Geek of Computer Science
.TP
.B GCC
Geek of Communications
.TP
.B GE
Geek of Engineering
.TP
.B GED
Geek of Education
.TP
.B GFA
Geek of Fine Arts
.TP
.B GG
Geek of Government
.TP
.B GH
Geek of Humanities
.TP
.B GIT
Geek of Information Technology
.TP
.B GJ
Geek of Jurisprudence (Law)
.TP
.B GLS
Geek of Library Science
.TP
.B GL
Geek of Literature
.TP
.B GMC
Geek of Mass Communications
.TP
.B GM
Geek of Math
.TP
.B GMD
Geek of Medicine
.TP
.B GMU
Geek of Music
.TP
.B GPA
Geek of Performing Arts
.TP
.B GP
Geek of Philosophy
.TP
.B GS
Geek of Science (Physics, Chemistry, Biology, etc.)
.TP
.B GSS
Geek of Social Science (Psychology, Sociology, etc.)
.TP
.B GTW
Geek of Technical Writing
.TP
.B GO
Geek of Other. Some types of geeks deviate from the normal geek
activities. This is encouraged as true geeks come from all walks of
life.
.TP
.B GU
Geek of 'Undecided'. This is a popular vocation with incoming
freshmen.
.TP
.B G!
Geek of no qualifications. A rather miserable existence, you would
think.
.TP
.B GAT
Geek of All Trades. For those geeks that can do anything and
everything. GAT usually precludes the use of other vocational
descriptors.
.SH Appearance
They say you never get a second chance to make a first impression.
That seems to be ample justification to invent a time machine; just to
play with the minds of the people that make up these silly sayings.
Nevertheless, until we completely understand temporal mechanics and
can get both a DeLorean and a Flux Capacitor in the same place at the
same time at 88 miles an hour, we need to understand that how we look
is a mark that will effect us for the rest of our lives, or at least
until we change clothes.
The Geek, of course, doesn't believe any of that crap. How we look has
little to do with what we are inside, and who we are as people. Yet,
people still want to know what we look like. Thus, this section allows
you to list out all the relevant traits about what you look like on a
normal geeky day.
.SS Dress
It is said that "clothes make the man". Well, I understood that I was
made by a mommy and a daddy (and there's even a category to describe
the process below!). Maybe the people who made up that saying aren't
being quite that literal...
.TP
.B d++
I tend to wear conservative dress such as a business suit or worse, a
tie.
.TP
.B d+
Good leisure-wear. Slacks, button-shirt, etc. No jeans, tennis shoes,
or t-shirts.
.TP
.B d
I dress a lot like those found in catalog ads. Bland, boring, without
life or meaning.
.TP
.B d-
I'm usually in jeans and a t-shirt.
.TP
.B d--
My t-shirts go a step further and have a trendy political message on
them.
.TP
.B d---
Punk dresser, including, but not limited to, torn jeans and shirts,
body piercings, and prominent tattoos.
.TP
.B dx
Cross Dresser
.TP
.B d?
I have no idea what I am wearing right now, let alone what I wore
yesterday.
.TP
.B !d
No clothing. Quite a fashion statement, don't you think?
.TP
.B dpu
I wear the same clothes all the time, no matter the occasion,
forgetting to do laundry between wearings.
.SS Shape
Geeks come in many shapes and sizes. Shape code is divided into two
parts. The first indicates height, while the second indicates
roundness. Mix each section to fit yourself. Examples include:
\fIs:++\fR, \fIs++:\fR, \fIs++:--\fR.
.TP
.B s+++:+++
I usually have to duck through doors/I take up three movie
seats.
.TP
.B s++:++
I'm a basketball/linebacker candidate.
.TP
.B s+:+
I'm a little taller/rounder than most.
.TP
.B s:
I'm an average geek
.TP
.B s-:-
I look up to most people. Everyone tells me to gain a few pounds.
.TP
.B s--:--
I look up to damn near everybody. I tend to have to fight against a
strong breeze.
.TP
.B s---:---
I take a phone book with me when I go out so I can see to eat
dinner. My bones are poking through my skin.
.SS Age
The only way to become a true geek is through practice and experience.
To this end, your age becomes an important part of your geekiness. Use
the qualifiers below to show your age (in Terran years). Also, please
use BASE 10 numbers.
In addition, if you wish to give your exact age, you can place the
number after the 'a' identifier. For example: a42
.TP
.B a+++
60 and up
.TP
.B a++
50-59
.TP
.B a+
40-49
.TP
.B a
30-39
.TP
.B a-
25-29
.TP
.B a--
20-24
.TP
.B a---
15-19
.TP
.B a----
10-14
.TP
.B a-----
9 and under (Geek in training?)
.TP
.B a?
immortal
.TP
.B !a
it's none of your business how old I am
.SH COMPUTERS
There is a record of geeks that don't use computers. Unfortunately,
they are all dead, having lived in an era of no computers. All modern
geeks have some exposure to computers. If you don't know what a
computer is, you need to go back into your shell.
.SS Computers
Most geeks identify themselves by their use of computers and computer
networks. In order to quantify your geekiness level on computers,
consult the following (consider the term 'computers' synonymous
with 'computer network'). This category represents "general" computer
aptitude. Categories below will get into specifics.
.TP
.B C++++
I'll be first in line to get the new cybernetic interface installed
into my skull.
.TP
.B C+++
You mean there is life outside of Internet? You're shittin' me! I
haven't dragged myself to class in weeks.
.TP
.B C++
Computers are a large part of my existence. When I get up in the
morning, the first thing I do is log myself in. I play games or mud on
weekends, but still manage to stay off of academic probation.
.TP
.B C+
Computers are fun and I enjoy using them. I play a mean game of DOOM!
and can use a word processor without resorting to the manual too
often. I know that a 3.5\(dq disk is not a hard disk. I also know that
when it says 'press any key to continue', I don't have to look for a
key labeled 'ANY'.
.TP
.B C
Computers are a tool, nothing more. I use it when it serves my
purpose.
.TP
.B C-
Anything more complicated than my calculator and I'm screwed.
.TP
.B C--
Where's the on switch?
.TP
.B C---
If you even mention computers, I will rip your head off!
.SH UNIX
It seems that a Unix-based operating system is the OS of choice among
most geeks. In addition to telling us about your Unix abilities, you
can also show which specific Unix OS you are using. To accomplish
this, you include a letter showing the brand with your rating. For
example: UL++++ would indicate a sysadmin running Linux.
.TP
.B B
BSD (use this unless your BSDish system is mentioned below)
.TP
.B L
Linux
.TP
.B U
Ultrix
.TP
.B A
AIX
.TP
.B V
SysV
.TP
.B H
HPUX
.TP
.B I
IRIX
.TP
.B O
OSF/1 (aka Digital Unix)
.TP
.B S
Sun OS/Solaris
.TP
.B C
SCO Unix
.TP
.B X
NeXT
.TP
.B *
Some other one not listed
.SH ""
.TP
.B U++++
I am the sysadmin. If you try and crack my machine don't be surprised
if the municipal works department gets an "accidental"
computer-generated order to put start a new landfill on your front
lawn or your quota is reduced to 4K.
.TP
.B U+++
I don't need to crack /etc/passwd because I just modified su so that
it doesn't prompt me. The admin staff doesn't even know I'm here. If
you don't understand what I just said, this category does NOT apply to
you!
.TP
.B U++
I've get the entire admin ticked off at me because I am always using
all of the CPU time and trying to run programs that I don't have
access to. I'm going to try cracking /etc/passwd next week, just don't
tell anyone.
.TP
.B U+
I not only have a Unix account, but I slam VMS any chance get.
.TP
.B U
I have a Unix account to do my stuff in
.TP
.B U-
I have a VMS account.
.TP
.B U--
I've seen Unix and didn't like it. DEC rules!
.TP
.B U---
Unix geeks are actually nerds in disguise.
.SS Perl
If you enjoy at least \fIU++\fR status you have to know about Perl, so
you might as well rate yourself in this sub-category. Non-Unix geeks
don't know what they're missing.
.TP
.B P+++++
I am Larry Wall, Tom Christiansen, or Randal Schwartz.
.TP
.B P++++
I don't write Perl, I speak it. Perl has superseded all other
programming languages. I firmly believe that all programs can be
reduced to a Perl one-liner. I use Perl to achieve \fIU+++\fR status.
.TP
.B P+++
Perl is a very powerful programming tool. Not only do I no longer
write shell scripts, I also no longer use awk or sed. I use Perl for
all programs of less than a thousand lines.
.TP
.B P++
Perl is a powerful programming tool. I don't write shell scripts
anymore because I write them in Perl.
.TP
.B P+
I know of Perl. I like Perl. I just haven't learned much Perl, but it
is on my agenda.
.TP
.B P
I know Perl exists, but that's all.
.TP
.B P-
What's Perl got that awk and sed don't have?
.TP
.B P--
Perl users are sick, twisted programmers who are just showing
off.
.TP
.B P---
Perl combines the power of sh, the clarity of sed, and the performance
of awk with the simplicity of C. It should be banned.
.TP
.B P!
Our paranoid admin won't let us install Perl! Says it's a "hacking
tool".
.SS Linux
Linux is a hacker-written operating system virtually identical to
Unix. It was written for and continues to run on your standard
386/486/Pentium PC, but has also been ported to other systems. Because
it is still a young OS, and because it is continually evolving from
hacker changes and support, it is important that the geek list his
Linux ability.
.TP
.B L+++++
I am Linus, grovel before me.
.TP
.B L++++
I am a Linux wizard. I munch C code for breakfast and have enough room
left over for a kernel debugging. I have so many patches installed
that I lost track about ten versions ago. Linux newbies consider me a
net.god.
.TP
.B L+++
I use Linux exclusively on my system. I monitor comp.os.linux.* and
even answer questions sometimes.
.TP
.B L++
I use Linux ALMOST exclusively on my system. I've given up trying to
achieve Linux.God status, but welcome the OS as a replacement for
DOS. I only boot to DOS to play games.
.TP
.B L+
I've managed to get Linux installed and even used it a few times. It
seems like it is just another OS.
.TP
.B L
I know what Linux is, but that's about all
.TP
.B L-
I have no desire to use Linux and frankly don't give a rats patootie
about it. There are other, better, operating systems out there. Like
Mac, DOS, or Amiga-OS. Or, better yet even, would be another free Unix
OS like FreeBSD.
.TP
.B L--
Unix sucks. Because Linux = Unix. Linux Sucks. I worship Bill Gates.
.TP
.B L---
I am Bill Gates.
.SS Emacs
GNU Emacs is the do-all be-everything editor/operating system
available for just about every computer architecture out there.
.TP
.B E+++
Emacs is my login shell!! M-x doctor is my psychologist! I use emacs
to control my TV and toaster oven! All you vi people don't know what
you're missing! I read alt.religion.emacs, alt.sex.emacs, and
comp.os.emacs.
.TP
.B E++
I know and use elisp regularly!
.TP
.B E+
Emacs is great! I read my mail and news with it!
.TP
.B E
Yeah, I know what emacs is, and use it as my regular editor.
.TP
.B E-
Emacs is too big and bloated for my tastes
.TP
.B E--
Emacs is just a fancy word processor
.TP
.B E---
Emacs sucks! vi forever!!!
.TP
.B E----
Emacs sucks! pico forever!!!
.SS World Wide Web
It's relatively new. It's little understood. Everybody's doing it. How
much of a web-surfer are you?
.TP
.B W+++
I am a WebMaster . Don't even think about trying to view my homepage
without the latest version of Netscape. When I'm not on my normal net
connection, I surf the web using my Newton and a cellular modem.
.TP
.B W++
I have a homepage. I surf daily. My homepage is advertised in
my .signature.
.TP
.B W+
I have the latest version of Netscape, and wander the web only when
there's something specific I'm looking for.
.TP
.B W
I have a browser and a connection. Occasionally I'll use them.
.TP
.B W-
The web is really a pain. Life was so much easier when you could
transfer information by simple ASCII. Now everyone won't even consider
your ideas unless you spiff them up with bandwidth-consuming pictures
and pointless information links.
.TP
.B W--
A pox on the Web! It wastes time and bandwidth and just gives the
uneducated morons a reason to clutter the Internet.
.SS "USENET News"
Usenet, a global collection of flaming opinions and senseless babble,
was designed as a way to eat up precious spool space on a system's
hard drive. It also is a way for people to distribute pornography.
.TP
.B N++++
I am Tim Pierce
.TP
.B N+++
I read so many newsgroups that the next batch of news comes in before
I finish reading the last batch, and I have to read for about 2 hours
straight before I'm caught up on the morning's news. Then there's the
afternoon...
.TP
.B N++
I read all the news in a select handful of groups.
.TP
.B N+
I read news recreationally when I have some time to kill.
.TP
.B N
Usenet News? Sure, I read that once
.TP
.B N-
News is a waste of my time and I avoid it completely
.TP
.B N--
News sucks! 'Nuff said.
.TP
.B N---
I work for Time Magazine.
.TP
.B N----
I am a Scientologist.
.TP
.B N*
All I do is read news
.SS "USENET Oracle"
(Info taken from the Usenet Oracle Help File) Throughout the history
of mankind, there have been many Oracles who have been consulted by
many mortals, and some immortals. The great Hercules was told by the
Gelphic Oracle to serve Eurystheus, king of Mycenae, for twelve years
to atone for the murder of his own children. It was the Oracle of
Ammon who told King Cepheus to chain his daughter Andromeda to the
rocks of jappa to appease the terrible sea monster that was ravaging
the coasts. That solution was never tested, though, as Perseus saved
the girl in the nick of time.
With the advent of the electronic age, and especially high-speed
e-mail communication, the spirit of the Oracles found a new outlet,
and we now recognize another great Oracle, the Usenet Oracle.
For more information, check out the newsgroups \fIrec.humor.oracle\fR
and \fIrec.humor.oracle.d\fR or the FTP archives at
\fIcs.indiana.edu:/pub/oracle\fR. Additional information and
instructions can be found by sending an e-mail message with the
subject of 'help' to \fIoracle@cs.indiana.edu\fR.
.TP
.B o+++++
I am Steve Kinzler
.TP
.B o++++
I am an active Priest
.TP
.B o+++
I was a Priest, but have retired.
.TP
.B o++
I have made the Best Of Oracularities.
.TP
.B o+
I have been incarnated at least once.
.TP
.B o
I've submitted a question, but it has never been incarnated.
.TP
.B o-
I sent my question to the wrong group and got flamed.
.TP
.B o--
Who needs answers from a bunch of geeks anyhow?
.SS Kibo
Kibo is. That is all that can be said. If you don't understand, read
alt.religion.kibology
.TP
.B K++++++
I am Kibo
.TP
.B K+++++
I've had sex with Kibo
.TP
.B K++++
I've met Kibo
.TP
.B K+++
I've gotten mail from Kibo
.TP
.B K++
I've read Kibo
.TP
.B K+
I like Kibo
.TP
.B K
I know who Kibo is
.TP
.B K-
I don't know who Kibo is
.TP
.B K--
I dislike Kibo
.TP
.B K---
I am currently hunting Kibo down with the intent of ripping his
still-beating heart out of his chest and showing it to him as he dies
.TP
.B K----
I am Xibo
.SS "Microsoft Windows"
A good many geeks suffer through the use of various versions of
Microsoft's Windows running on or as a replacement for DOS. Rate your
Windows Geekiness.
.TP
.B w+++++
I am Bill Gates
.TP
.B w++++
I have Windows, Windows 95, Windows NT, and Windows NT Advanced Server
all running on my SMP RISC machine. I haven't seen daylight in six
months.
.TP
.B w+++
I am a MS Windows programming god. I wrote a VxD driver to allow MS
Windows and DOS to share the use of my waffle iron. P.S. Unix sux.
.TP
.B w++
I write MS Windows programs in C and think about using C++
someday. I've written at least one DLL.
.TP
.B w+
I have installed my own custom sounds, wallpaper, and screen savers so
my PC walks and talks like a fun house. Oh yeah, I have a hundred
TrueType(tm) fonts that I've installed but never used. I never lose
Minesweeper and Solitaire
.TP
.B w
Ok, so I use MS Windows, I don't have to like it.
.TP
.B w-
I'm still trying to install MS Windows and have at least one
peripheral that never works right
.TP
.B w--
MS Windows is a joke operating system. Hell, it's not even an
operating system. NT is Not Tough enough for me either. 95 is how may
times it will crash an hour.
.TP
.B w---
Windows has set back the computing industry by at least 10 years. Bill
Gates should be drawn, quartered, hung, shot, poisoned, disembowelled,
and then REALLY hurt.
.SS "OS/2"
The operating system that looks a lot like Windows, acts a lot like
Windows, but is much better than Windows.
.TP
.B O+++
I live, eat and breathe OS/2. All of my hard drives are HPFS. I
am the Anti-Gates.
.TP
.B O++
I use OS/2 for all my computing needs. I use some DOS and Windows
programs, but run them under OS/2. If the program won't run under
OS/2, then obviously I don't need it.
.TP
.B O+
I keep a DOS partition on my hard drive "just in case". I'm afraid to
try HPFS.
.TP
.B O
I finally managed to get OS/2 installed but wasn't too terribly
impressed.
.TP
.B O-
Tried it, didn't like it.
.TP
.B O--
I can't even get the thing to install!
.TP
.B O---
Windows RULES!!! Long live Bill Gates. (See w++++)
.TP
.B O----
I am Bill Gates of Borg. OS/2 is irrelevant.
.SS Macintosh
Many geeks have abandoned the character-based computer altogether and
moved over to the Macintosh. It in important to give notification of
your Mac rating.
.TP
.B M++
I am a Mac guru. Anything those DOS putzes and Unix nerds can do, I
can do better, and if not, I'll write the damn software to do it.
.TP
.B M+
A Mac has it's uses and I use it quite often.
.TP
.B M
I use a Mac, but I'm pretty indifferent about it.
.TP
.B M-
Macs suck. All real geeks have a character prompt.
.TP
.B M--
Macs do more than suck. They make a user stupid by allowing them to
use the system without knowing what they are doing. Mac weenies have
lower IQs than the fuzz in my navel.
.SS VMS
Many geeks use the VMS operating system by DEC for all of their
mainframe and network activity.
.TP
.B V+++
I am a VMS sysadmin. I wield far more power than those UNIX admins,
because UNIX can be found on any dweeb's desktop. Power through
obscurity is my motto.
.TP
.B V++
Unix is a passing fad compared to the real power in the universe, my
VMS system.
.TP
.B V+
I tend to like VMS better than Unix
.TP
.B V
I've used VMS.
.TP
.B V-
Unix is much better than VMS for my computing needs.
.TP
.B V--
I would rather smash my head repeatedly into a brick wall than suffer
the agony of working with VMS. It's reminiscent of a dead and decaying
pile of moose droppings. Unix rules the universe.
.SH POLITICS
The last few years has seen the rise of the political geek. This
phenomena is little understood, but some theorize that it has come
about because of the popular media's attempts to demonize the Internet
and computer use in general, and the government's willingness to go
along with it. Others propose that the aging geek population has
simply started taking an interest in the world around them. Some
support the "Sun Spot" theory.
.SS "Political and Social Issues"
We live is a society where everyone not only has a right to, but is
expected to, whine and complain about everyone else. Rate where, in
general, your political views on different social issues fall.
.TP
.B PS+++
Legalize drugs! Abolish the government. "Fuck the draft!"
.TP
.B PS++
I give to liberal causes. I march for gay rights. I'm a card carrying
member of the ACLU. Keep abortion safe and legal.
.TP
.B PS+
My whole concept of liberalism is that nobody has the right to tell
anybody else what to do, on either side of the political fence. If you
don't like it, turn the bloody channel.
.TP
.B PS
I really don't have an opinion; nobody's messing with my freedoms
right now.
.TP
.B PS-
Label records! Keep dirty stuff off the TV and the Internet.
.TP
.B PS--
Oppose sex education, abortion rights, gay rights. Rush Limbaugh is my
spokesman.
.TP
.B PS---
Repent left-wing sinners and change your wicked evil ways.
Buchanan/Robertson in '96.
.SS "Politics and Economic Issues"
Social and economic attitudes are seldom on the same side of the
political fence. Of course, most geeks don't really care much about
economics; having no money left after buying new computer toys.
.TP
.B PE+++
Abolish antitrust legislation. Raise taxes on everyone but the rich so
that the money can trickle-down to the masses.
.TP
.B PE++
Keep the government off the backs of businesses. Deregulate as much as
possible.
.TP
.B PE+
Balance the budget with spending cuts and an amendment.
.TP
.B PE
Distrust both government and business.
.TP
.B PE-
It's ok to increase government spending, so we can help more poor
people. Tax the rich! Cut the defense budget!
.TP
.B PE--
Capitalism is evil! Government should provide the services we really
need. Nobody should be rich.
.SS Cypherpunks
With the birth of the overused buzzword "The Information
Superhighway", concerns over privacy from evil governmental
bad-guys{tm} has led to the formation of of an unofficial, loosely
organized band of civil libertarians who spend much of their time
discussing how to ensure privacy in the information future. This group
is known by some as "cypherpunks" (by others, as anarchistic
subversives). To this end, tell us how punkish you are.
.TP
.B Y+++
I am T.C. May
.TP
.B Y++
I am on the cypherpunks mailing list and active around Usenet. I
never miss an opportunity to talk about the evils of Clipper and ITAR
and the NSA. Orwell's 1984 is more than a story, it is a warning to
our's and future generations. I'm a member of the EFF.
.TP
.B Y+
I have an interest and concern in privacy issues, but in reality I am
not really all that active or vocal.
.TP
.B Y
I'm pretty indifferent on the whole issue.
.TP
.B Y-
It seems to me that all of these concerns are a little extreme. I
mean, the government must be able to protect itself from criminals and
the populace from indecent speech.
.TP
.B Y--
Get a life. The only people that need this kind of protection are
people with something to hide. I think cypherpunks are just a little
paranoid.
.TP
.B Y---
I am L. Detweiler.
.SS PGP
Pretty Good Privacy (aka PGP) is a program available on many platforms
that will encrypt files so that prying eyes (particularly
governmental) can't look at them.
.TP
.B PGP++++
I am Philip Zimmerman
.TP
.B PGP+++
I don't send or answer mail that is not encrypted, or at the very
least signed. If you are reading this without decrypting it first,
something is wrong. IT DIDN'T COME FROM ME!
.TP
.B PGP++
I have the most recent version and use it regularly
.TP
.B PGP+
"Finger me for my public key"
.TP
.B PGP
I've used it, but stopped long ago.
.TP
.B PGP-
I don't have anything to hide.
.TP
.B PGP--
I feel that the glory of the Internet is in the anarchic, trusting
environment that so nurtures the exchange of information. Encryption
just bogs that down.
.TP
.B PGP---
If you support encryption on the Internet, you must be a drug dealer
or terrorist or something like that.
.TP
.B PGP----
Oh, here is something you all can use that is better (insert Clipper
here).
.SH ENTERTAINMENT
Geeks love to play. No matter their age, all geeks enjoy playing. Of
course, the object of this entertainment takes a myriad of different
forms. What is it that pushes a geek to play? Is it simply a desire to
relive their childhood? Or perhaps there is a piece of geeky genetic
code that requires intellectual stimulation. Who knows, maybe it's a
Freudian thing...
.SS "Star Trek"
Most geeks have an undeniable love for the Star Trek television show
(in any of its different incarnations). Because GEEK is often
synonymous with TREKKIE (real geeks aren't so anal as to label
themselves TREKKER), it is important that all geeks list their Trek
rating.
.TP
.B t+++
It's not just a TV show, it's a religion. I know all about warp field
dynamics and the principles behind the transporter. I have memorized
the TECH manual. I speak Klingon. I go to cons with Vulcan ears on. I
have no life.
.TP
.B t++
It's the best show around. I have all the episodes and the movies on
tape and can quote entire scenes verbatim. I've built a few of the
model kits too. But you'll never catch me at one of those
conventions. Those people are kooks.
.TP
.B t+
It's a damn fine TV show and is one of the only things good on
television any more.
.TP
.B t
It's just another TV show
.TP
.B t-
Maybe it is just me, but I have no idea what the big deal with Star
Trek is. Perhaps I'm missing something but I just think it is bad
drama.
.TP
.B t--
Star Trek is just another Space Opera. William Shatner isn't an actor,
he's a poser! And what's with this Jean-Luc Picard? A Frenchman with a
British accent? Come on. Isn't Voyager just a rehash of Lost in Space?
Has Sisko even breathed in the last two seasons? Come on. I'd only
watch this show if my remote control broke.
.TP
.B t---
Star Trek SUCKS! It is the worst crap I have ever seen! Hey, all you
trekkies out there, GET A LIFE! (William Shatner is a t---)
.TP
.B t*
I identify with Barclay, the greatest of the Trek Geeks.
.SS "Babylon 5"
For many years, Sci-Fi geeks have wished for a television show that
would overcome the limitations of Star Trek. For many, a show called
Babylon 5 has met that demand, with a deep storyline, exciting
characters and state-of-the-art computer generated effects.
.TP
.B 5++++
I am J. Michael Straczynski
.TP
.B 5+++
I am a True Worshipper of the Church of Joe who lives eats breathes
and thinks Babylon 5, and has Evil thoughts about stealing Joe's
videotape archives just to see episodes earlier. I am planning to
break into the bank and steal the triple-encoded synopsis of the
5-year arc.
.TP
.B 5++
Finally a show that shows what a real future would look like. None of
this Picardian "Let's talk about it and be friends" crap. And what's
this? We finally get to see a bathroom! Over on that Enterprise,
they've been holding it for over seven years!
.TP
.B 5+
Babylon 5 certainly presents a fresh perspective in the Sci-Fi
universe. I watch it weekly.
.TP
.B 5
I've seen it, I am pretty indifferent to it.
.TP
.B 5-
This show is sub-par. The acting is wooden, the special effects are
obviously poor quality. In general, it seems like a very cheap Star
Trek ripoff.
.TP
.B 5--
You call this Sci-Fi? That is such a load of crap! This show is just a
soap with bad actors, piss-poor effects, and lame
storylines. Puh-leese.
.SS "X-Files"
The Fox Network's Friday evening show The X-Files has become the
staple of Friday geekhood. Any show that has aliens, governmental
conspiracies, aliens, psychic powers, aliens, and other weird stuff
is, by definition, a geeky show.
.TP
.B X++++
I am Chris Carter
.TP
.B X+++
This is the BEST show on TV, and it's about time. I've seen everything
David Duchovny and Gillian Anderson have ever done that been recorded
and I'm a loyal Duchovny/ Gillian Anderson fan. I've Converted at
least 10 people. I have every episode at SP, debate the fine details
on-line, and have a credit for at least 2 YAXAs.
.TP
.B X++
This is one of the better shows I've seen. I wish I'd taped everything
from the start at SP, because I'm wearing out my EP tapes. I'll
periodically debate online. I've Converted at least 5 people. I've
gotten a YAXA.
.TP
.B X+
I've Converted my family and watch the show when I remember. It's
really kinda fun.
.TP
.B X
Ho hum. Just another Fox show.
.TP
.B X-
It's ok if you like paranoia and conspiracy stories, but, let's face
it, it's crap.
.TP
.B X--
If I wanted to watch this kind of stuff, I'd talk to Oliver Stone
.SS "Role Playing"
Role-playing games such as Dungeons & Dragons have long been a part of
the traditional geek life. Because geeks often become so involved in
their role-playing that they lose touch with reality, include one of
the following role-playing codes.
.TP
.B R+++
I've written and published my own gaming materials.
.TP
.B R++
There is no life outside the role of the die. I know all of piddly
rules of (chosen game). _MY_ own warped rules scare the rest of the
players.
.TP
.B R+
I've got my weekly sessions set up and a character that I know better
than I know myself.
.TP
.B R
Role-Playing? That's just something to do to kill a Saturday afternoon
.TP
.B R-
Gosh, what an utter waste of time!
.TP
.B R--
Role-Players are instruments of pure evil.
.TP
.B R---
I work for T$R.
.TP
.B R*
I thought life WAS role-playing?
.SS Television
Many geeks have lives that revolve around television.
.TP
.B tv+++
There's nothing I can experience "out there" that I can't see coming
over my satellite dish. I wish there were MORE channels. I live for
the O.J. Trial.
.TP
.B tv++
I just leave the tv on, to make sure I don't miss anything.
.TP
.B tv+
I watch some tv every day.
.TP
.B tv
I watch only the shows that are actually worthwhile, such as those
found on PBS.
.TP
.B tv-
I watch tv for the news and 'special programming.'
.TP
.B tv--
I turn my tv on during natural disasters.
.TP
.B !tv
I do not own a television.
.SS Books
In addition (or maybe on the other hand), many geeks have lives that
revolve around books.
.TP
.B b++++
I read a book a day. I have library cards in three states. I have
discount cards from every major bookstore. I've ordered books from
another country to get my Favorite Author Fix.
.TP
.B b+++
I consume a few books a week as part of a staple diet.
.TP
.B b++
I find the time to get through at least one new book a month.
.TP
.B b+
I enjoy reading, but don't get the time very often.
.TP
.B b
I read the newspaper and the occasional book.
.TP
.B b-
I read when there is no other way to get the information.
.TP
.B b--
I did not actually READ the geek code, I just had someone tell
me.
.SS Dilbert
Simply the geekiest comic strip in existence.
\fIhttp://www.unitedmedia.com/comics/dilbert/\fR for more information.
.TP
.B DI+++++
I am Scott Adams.
.TP
.B DI++++
I've received mail from Scott Adams. I'm in the DNRC (Dogbert's New
Ruling Class).
.TP
.B DI+++
I am a Dilbert prototype
.TP
.B DI++
I work with people that act a lot like Dilbert and his boss.
.TP
.B DI+
I read Dilbert daily, often understanding it
.TP
.B DI
I read Dilbert infrequently, rarely understanding it
.TP
.B DI-
Is that the comic about the engineers?
.TP
.B DI--
Don't read it, but I think the dog is kinda cute.
.TP
.B DI---
I don't think it's funny to make fun of managers trying their best to
run their organizational units.
.SS "DOOM!"
There is a game out for the PCs and other computers called DOOM. It's
a 3D virtual reality simulation where you race around and blow things
away with large-caliber weaponry. This has led to a series of similar
games such as the Star Wars themed Dark Forces. Tell us about your
abilities with these 3D games. (yes, some of them aren't actually
Doom. Cope!)
.TP
.B D++++
I work for iD Software.
.TP
.B D+++
I crank out PWAD files daily, complete with new monsters, weaponry,
sounds and maps. I'm a DOOM God. I can solve the original maps in
nightmare mode with my eyes closed.
.TP
.B D++
I've played the shareware version and bought the real one and I'm
actually pretty good at the game. I occasionally download PWAD files
and play them too.
.TP
.B D+
It's a fun, action game that is a nice diversion on a lazy afternoon.
.TP
.B D
I've played the game and I'm pretty indifferent.
.TP
.B D-
I've played the game and really didn't think it was all that
impressive.
.TP
.B D--
It's an overly-violent game and pure crap
.TP
.B D---
To hell with Doom, I miss Zork.
.TP
.B D----
I've seen better on my Atari 2600
.SS "The Geek Code"
.TP
.B G+++++
I am Robert Hayden
.TP
.B G++++
I have made a suggestion for future versions of the code (note that
making a suggestion just to get a G++++ rating doesn't count, you also
have to at least qualify for a G+++ rating :-)
.TP
.B G+++
I have memorized the entire geek code, and can decode others' codes in
my head. I know by heart where to find the current version of the code
on the net.
.TP
.B G++
I know what each letter means, but sometimes have to look up the
specifics.
.TP
.B G+
I was once G++ (or higher), but the new versions are getting too long
and too complicated.
.TP
.B G
I know what the geek code is and even did up this code.
.TP
.B G-
What a tremendous waste of time this Geek Code is.
.TP
.B G--
Not only a waste of time, but it obviously shows that this Hayden guy
needs a life.
.SH LIFESTYLE
Geeks, unlike the lower lifeforms known as nerds, have lives. They
have things to do that are in the outside world. Of course, this is
usually done with other geeks, but that's not the point. The point
is,, that geeks are not necessarily the outcasts society often
believes they are. The fact is that society isn't kool enough to be
included in our activities.
.SS Education
All geeks have a varying amount of education.
.TP
.B e+++++
I am Stephen Hawking
.TP
.B e++++
Managed to get my Ph.D.
.TP
.B e+++
Got a Masters degree
.TP
.B e++
Got a Bachelors degree
.TP
.B e+
Got an Associates degree
.TP
.B e
Finished High School
.TP
.B e-
Haven't finished High School
.TP
.B e--
Haven't even entered High School
.TP
.B e*
I learned everything there is to know about life from the
"Hitchhiker's Trilogy".
.SS Housing
Tell us about your geeky home.
.TP
.B h++
Living in a cave with 47 computers and an Internet feed, located near
a Dominoes pizza. See !d.
.TP
.B h+
Living alone, get out once a week to buy food, no more than once a
month to do laundry. All surfaces covered.
.TP
.B h
Friends come over to visit every once in a while to talk about Geek
things. There is a place for them to sit.
.TP
.B h-
Living with one or more registered Geeks.
.TP
.B h--
Living with one or more people who know nothing about being a Geek and
refuse to watch Babylon 5.
.TP
.B h---
Married, (persons living romantically with someone might as well label
themselves h---, you're as good as there already.)
.TP
.B h----
Married with children - Al Bundy can sympathize
.TP
.B h!
I am stuck living with my parents!
.TP
.B h*
I'm not sure where I live anymore. This lab/workplace seems like home
to me.
.SS Relationships
While many geeks are highly successful at having relationships, a good
many more are not. Give us the gritty details.
.TP
.B r+++
Found someone, dated, and am now married.
.TP
.B r++
I've dated my current S.O. for a long time.
.TP
.B r+
I date frequently, bouncing from one relationship to another.
.TP
.B r
I date periodically.
.TP
.B r-
I have difficulty maintaining a relationship.
.TP
.B r--
People just aren't interested in dating me.
.TP
.B r---
I'm beginning to think that I'm a leper or something, the way people
avoid me like the plague.
.TP
.B !r
I've never had a relationship.
.TP
.B r*
signifying membership in the SBCA (Sour Bachelor(ette)'s Club of
America). The motto is 'Bitter, but not Desperate'. First founded at
Caltech.
.TP
.B r%
I was going out with someone, but the asshole dumped me.
.SS Sex
Geeks have traditionally had problems with sex (ie, they never have
any). Because geeks are so wrapped up in their sexuality (or lack of
sexuality for that matter), it is important that the geek be willing
to quantify their sexual experiences.
This code also is used to denote the gender of the geek. Females use
\fIx\fR in this category, while males use \fIy\fR. Those that do not
wish to disclose their gender can use \fIz\fR. For example:
.TP
.B x+
A female who has had sex
.TP
.B y+
A male who has had sex.
.TP
.B z+
A person (gender undisclosed) who has had sex.
.SS ""
For those persons who do not wish to give out any details of their sex
life, the use of \fIz?\fR (where \fIz\fR is the gender code) will
allow you to do so.
.TP
.B z+++++
I am Madonna
.TP
.B z++++
I have a few little rug rats to prove I've been there. Besides, with
kids around, who has time for sex?
.TP
.B z+++
I'm married, so I can get it (theoretically) whenever I want.
.TP
.B z++
I was once referred to as 'easy'. I have no idea where that might have
come from though.
.TP
.B z+
I've had real, live sex.
.TP
.B z
I've had sex. Oh! You mean with someone else? Then no.
.TP
.B z-
Not having sex by choice.
.TP
.B z--
Not having sex because I just can't get any...
.TP
.B z---
Not having sex because I'm a nun or a priest.
.TP
.B z*
I'm a pervert.
.TP
.B z**
I've been known to make perverts look like angels.
.TP
.B !z
Sex? What's that? I've had no sexual experiences.
.TP
.B z?
It's none of your business what my sex life is like (this is used to
denote your gender only).
.TP
.B !z+
Sex? What's that? No experience, willing to learn!
.SH "How to Display Your Code"
Now that you have your ratings for each of the above categories, it's
time to assemble your code for displaying to the world. Take each
category you determined and list them all together with one space
between each one. If you run out space on one line, continue it on the
next. When completed, it will look something like the following:
.I GED/J d-- s:++>: a-- C++(++++) ULU++ P+ L++ E---- W+(-) N+++ o+ K+++
.I w--- O- M+ V-- PS++>$ PE++>$ Y++ PGP++ t- 5+++ X++ R+++>$ tv+
.I b+ DI+++ D+++ G+++++ e++ h r-- y++**
If you are going to place your Geek Code into your .signature or .plan
file (highly recommended), you should create your GEEK CODE BLOCK.
This parody of the output created by the PGP program will attempt to
universalize how you will see the Geek Code around the net. Your GEEK
CODE BLOCK will look like the following:
.B -----BEGIN GEEK CODE BLOCK-----
.br
Version: 3.1
.br
.I GED/J d-- s:++>: a-- C++(++++) ULU++ P+ L++ E---- W+(-) N+++ o+ K+++ w---
.I O- M+ V-- PS++>$ PE++>$ Y++ PGP++ t- 5+++ X++ R+++>$ tv+ b+ DI+++ D+++
.I G+++++ e++ h r-- y++**
.br
.B ------END GEEK CODE BLOCK------
As you can see, the actual code hasn't changed. However, the version
number of the code you are using is displayed along with lines
starting and ending the code. Make sure to duplicate the start and end
lines exactly as the example in order to maintain a net-wide standard
(ie. five dashes front and back for the BEGIN line and six for the END
line, and all capital letters.)
"HELP!" you scream as your mailer or news reader won't let you post
more than four lines in the .signature. That is because some anal
programs limit the size of your signature. Your next best bet, then is
to put your GEEK CODE BLOCK into your .plan file and put something to
the effect of "Finger for Geek Code" into your .signature. That, or
get a better mailer.
.SH VERSION
3.12
.SH "SEE ALSO"
The Geek Code is available at the following official sites. All other
sites are not official:
.I http://geekcode.sourceforge.net
.SH AUTHOR
Robert A. Hayden <rhayden@geekcode.com>
This man-page was written by Jan Schaumann <jschauma@netmeister.org>
as part of "The Missing Man Pages Project". Please see
\fIhttp://www.netmeister.org/misc/m2p2/index.html\fR for details.
|