home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 32 Periodic / 32-Periodic.zip / mmouga94.zip / mmouga94.txt < prev   
Text File  |  1994-09-30  |  100KB  |  1,929 lines

  1. MMOUG August 1994 Newsletter
  2.  
  3. August 1994
  4. Volume 2 Number 8
  5.  
  6. The views expressed in this newsletter are not necessarily the views held by
  7. the MMOUG or it's members. Don't agree with something you've read here?     
  8. Write and tell us about it!  If you have any contributions, please upload them to area
  9. 18 of the WoodMeister or send them to me via Internet at USDSSKZS@IBMMAIL.COM.  If
  10. you work for the State of Missouri and have access to DISOSS, you can send them to
  11. POOLMWV at DSSHOST.      
  12.  
  13. MMOUG September Minutes
  14.  
  15. Attendees:  Dayton Shepherd, Penny Shepherd, Michelle Wilson, 
  16. Randy Wilkerson, Phillip Wilson, Christopher Walters, Woody Sturges, 
  17. Marilyn Holbrook, Robert Tufts, Mark Espinoza, Scott Brodbeck, David 
  18. Keisker, Brenda Bakota, Ben Hoffman, Gerri Jeffery, Jim Casstevens, 
  19. Noel Bummens, Ken Evans, Steve Gramblin, Gary Pool, Randy Wright, Joe 
  20. Woodwell
  21.  
  22. Business Meeting:
  23.  
  24. Gerri Jeffery reported that DeScribe will be coming to our October 
  25. meeting and Pinnacle to our November meeting.
  26.  
  27. Ben Hoffman reported that IBM is letting us use a phone mail drop for the
  28. MMOUG.  The number is 314-636-0805.  It will be checked by the officers
  29. for messages several times a week.  We need to publish the number.
  30.  
  31. We have $805.89 in the bank.  Gary Pool volunteered to chair a committee
  32. to look for a place for the Christmas Party. (editor's note: Hunh?
  33. I did?)
  34.  
  35. Gary Pool is now Professionally Certified for OS/2 and LAN Server Admin.
  36. He will report on the OS/2 Technical Exchange in the newsletter.
  37.  
  38. Presentations:
  39. Michelle Wilson from IBM demo'ed the OS/2 Warp II beta.  Joe Woodwell
  40. representing Lotus demo'ed the Smartsuite for OS/2.  A user group price
  41. for Smartsuite can be arranged.
  42.  
  43. Information Officer Input/Output
  44.  
  45. Welcome to the Mid-Missouri OS/2 Users Group Newsletter.  I've put
  46. in a welcome because there may be some new readers this time.  Hank
  47. Henderson has agreed to make this available on the OS2BBS.  Thanks,
  48. Hank.
  49.  
  50. One of these days, I'm going to pursue getting a common place where
  51. User Group Newsletters from all over the country can be found.  The 
  52. PCC BBS was an excellent location for a while.  User Groups could
  53. obtain an 800 number for their officers, so there was no direct cost.
  54. Right after I uploaded our first newsletter, they ceased this
  55. practice.  I wonder if it was cause and effect?
  56.  
  57. There are supposed to be a lot of UG Newsletters on CompuServe, but
  58. I'm too poor to afford that.
  59.  
  60. This month you are reading a long newsletter.  I typed
  61. up a report of everything I experienced in Atlanta at the OS/2
  62. Technical Update -- complete with pictures.  If you are reading the
  63. skimpy, one-page, paper version of the newsletter, you need to dial
  64. up a BBS and download the INF version.
  65.  
  66. For those of you who don't like my casual, erratic, conversational
  67. form of writing -- it will seem even longer!
  68.  
  69. The Mid Missouri OS/2 User Group just received a voice-mail number:
  70. 314-636-0805.  Gee, I almost typed vice-mail number.  No, it's not one
  71. of those 900 numbers.  However, we will be trying to make this number
  72. known so that members of the user group can assist folks who are just
  73. starting out with OS/2.  Talk about your public servants!
  74.  
  75. To tell the truth, I am tired of writing.  This issue is 
  76. huge.  So I ain't gonna say nothin' more.
  77.  
  78. gp
  79.  
  80. The Dog House
  81.  
  82. Shoot, I forgot all about the Dog House!  Fortunately I have a
  83. little program tucked away that looked like it was pretty interesting.
  84. I haven't had a chance to test it myself, though.  As you know, a
  85. sorted CONFIG.SYS can sometimes cause your machine to boot a little
  86. faster.  Scott's program will sort your CONFIG.SYS.  Remember --
  87. always back up your CONFIG.SYS and have a bootable floppy disk
  88. ready -- just in case something bad happens!
  89.  
  90. SORTC.CMD
  91. :lines.
  92. /* Created by Scott Trosien of Livonia, MI - 9-1-94                */
  93. /* Tested using the Warp2 beta                                     */
  94. /* Please do not alter the above lines unless authorized by author!*/
  95. /* Please report any problems/bugs to DEV4447 at OS2BBS-IBMLINK.   */
  96.  
  97. /* To use the output of this program, simply redirect it to a file */
  98. /* (i.e. SORTC >CONFIG.NEW)                                        */
  99. /* Please be sure to verify your config.sys was converted properly */
  100. /* before rebooting!                                               */
  101.  
  102. /* WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING */
  103. /* DO NOT redirect it to CONFIG.SYS  (i.e. SORTC >CONFIG.SYS)      */
  104. /* This will likely trash your CONFIG.SYS                          */
  105. /* This will create a backup named CONFIG.SRT which will hold      */
  106. /* a copy of the CONFIG.SYS prior to this utility processing it.   */
  107.  
  108. "@Echo Off"
  109. call RxFuncAdd "SysLoadFuncs", "RexxUtil", "SysLoadFuncs"
  110. call SysLoadFuncs
  111. /* Initialize base variables */
  112.     IFS.0 = 0
  113.     BASEDEV.0 = 0
  114.     DEVICE.0 = 0
  115.     SET.0 = 0
  116.     CALL.0 = 0
  117.     RUN.0 = 0
  118.     IOPL.0 = 0
  119.     DEVINFO.0 = 0
  120.     MMOS2.0 = 0
  121.     TCPIP.0 = 0
  122.     REM.0 = 0
  123.     DOSDEVICE.0 = 0
  124.     MISC.0 = 0
  125.     DO i = 1 to 9
  126.         CONTROL.i = ""
  127.         PERF.i = ""
  128.         ERROR.i = ""
  129.         DOS.i = ""
  130.         END
  131.  
  132. /* Main Code Group */
  133. "Copy C:\CONFIG.SYS C:\CONFIG.SRT >nul"
  134. "TYPE C:\CONFIG.SRT ║RXQUEUE"
  135. DO i = 1 to QUEUED()
  136.     PARSE UPPER PULL currline
  137.     SELECT
  138.         WHEN "IFS" = LEFT(currline,3) then do
  139.             IFS.0 = IFS.0 + 1
  140.             var = VALUE("IFS."IFS.0,currline)
  141.             END
  142.         WHEN "BASEDEV" = LEFT(currline,7) then do
  143.             BASEDEV.0 = BASEDEV.0 + 1
  144.             var = VALUE("BASEDEV."BASEDEV.0,currline)
  145.             END
  146.         WHEN "DEVICE=C:\OS2\MDOS" = LEFT(currline,18) ║ "DEVICEHIGH" =
  147. LEFT(currline,10) then do
  148.             DOSDEVICE.0 = DOSDEVICE.0 + 1
  149.             var = VALUE("DOSDEVICE."DOSDEVICE.0,currline)
  150.             END
  151.         WHEN "DEVICE=C:\MMOS2" = LEFT(currline,15) then do
  152.             MMOS2.0 = MMOS2.0 + 1
  153.             var = VALUE("MMOS2."MMOS2.0,currline)
  154.             END
  155.         WHEN "DEVICE=C:\TCPIP" = LEFT(currline,15) then do
  156.             TCPIP.0 = TCPIP.0 + 1
  157.             var = VALUE("TCPIP."TCPIP.0,currline)
  158.             END
  159.         WHEN "DEVICE" = LEFT(currline,6) then do
  160.             DEVICE.0 = DEVICE.0 + 1
  161.             var = VALUE("DEVICE."DEVICE.0,currline)
  162.             END
  163.         WHEN "SET" = LEFT(currline,3) then do
  164.             SET.0 = SET.0 + 1
  165.             var = VALUE("SET."SET.0,currline)
  166.             END
  167.         WHEN "RUN" = LEFT(currline,3) then do
  168.             RUN.0 = RUN.0 + 1
  169.             var = VALUE("RUN."RUN.0,currline)
  170.             END
  171.         WHEN "CALL" = LEFT(currline,4) then do
  172.             CALL.0 = CALL.0 + 1
  173.             var = VALUE("CALL."CALL.0,currline)
  174.             END
  175.         WHEN "IOPL" = LEFT(currline,4) then do
  176.             IOPL.0 = IOPL.0 + 1
  177.             var = VALUE("IOPL."IOPL.0,currline)
  178.             END
  179.         WHEN "DEVINFO" = LEFT(currline,7) then do
  180.             DEVINFO.0 = DEVINFO.0 + 1
  181.             var = VALUE("DEVINFO."DEVINFO.0,currline)
  182.             END
  183.         WHEN "REM" = LEFT(currline,3) then do
  184.             REM.0 = REM.0 + 1
  185.             var = VALUE("REM."REM.0,currline)
  186.             END
  187.  
  188. /* OS2 Control variables */
  189.         WHEN "PROTSHELL" = LEFT(currline,9) then do
  190.             CONTROL.1 = currline
  191.             END
  192.         WHEN "LIBPATH" = LEFT(currline,7) then do
  193.             CONTROL.2 = currline
  194.             END
  195.         WHEN "SWAPPATH" = LEFT(currline,8) then do
  196.             CONTROL.3 = currline
  197.             END
  198.         WHEN "COUNTRY" = LEFT(currline,7) then do
  199.             CONTROL.4 = currline
  200.             END
  201.         WHEN "BREAK" = LEFT(currline,5) then do
  202.             CONTROL.5 = currline
  203.             END
  204.         WHEN "CODEPAGE" = LEFT(currline,8) then do
  205.             CONTROL.6 = currline
  206.             END
  207.  
  208. /* OS/2 Performance */
  209.         WHEN "THREADS" = LEFT(currline,7) then do
  210.             PERF.1 = currline
  211.             END
  212.         WHEN "PRIORITY_DISK_IO" = LEFT(currline,16) then do
  213.             PERF.2 = currline
  214.             END
  215.         WHEN "TIMESLICE" = LEFT(currline,9) then do
  216.             PERF.3 = currline
  217.             END
  218.         WHEN "BUFFERS" = LEFT(currline,7) then do
  219.             PERF.4 = currline
  220.             END
  221.         WHEN "DISKCACHE" = LEFT(currline,9) then do
  222.             PERF.5 = currline
  223.             END
  224.         WHEN "MAXWAIT" = LEFT(currline,7) then do
  225.             PERF.6 = currline
  226.             END
  227.         WHEN "MEMMAN" = LEFT(currline,6) then do
  228.             PERF.7 = currline
  229.             END
  230.         WHEN "PRINTMONBUFSIZE" = LEFT(currline,15) then do
  231.             PERF.8 = currline
  232.             END
  233.         WHEN "PRIORITY" = LEFT(currline,8) then do
  234.             PERF.9 = currline
  235.             END
  236.  
  237. /* OS/2 Diagnostics and error control */
  238.         WHEN "AUTOFAIL" = LEFT(currline,8) then do
  239.             ERROR.1 = currline
  240.             END
  241.         WHEN "PAUSEONERROR" = LEFT(currline,12) then do
  242.             ERROR.2 = currline
  243.             END
  244.         WHEN "TRAPDUMP" = LEFT(currline,8) then do
  245.             ERROR.3 = currline
  246.             END
  247.         WHEN "TRACEBUF" = LEFT(currline,8) then do
  248.             ERROR.4 = currline
  249.             END
  250.         WHEN "TRACE" = LEFT(currline,5) then do
  251.             ERROR.5 = currline
  252.             END
  253.         WHEN "SUPPRESSPOPUPS" = LEFT(currline,14) then do
  254.             ERROR.6 = currline
  255.             END
  256.         WHEN "DUMPPROCESS" = LEFT(currline,11) then do
  257.             ERROR.7 = currline
  258.             END
  259.         WHEN "REIPL" = LEFT(currline,5) then do
  260.             ERROR.8 = currline
  261.             END
  262.  
  263. /* DOS */
  264.         WHEN "PROTECTONLY" = LEFT(currline,11) then do
  265.             DOS.1 = currline
  266.             END
  267.         WHEN "SHELL" = LEFT(currline,5) then do
  268.             DOS.2 = currline
  269.             END
  270.         WHEN "DOS" = LEFT(currline,3) then do
  271.             DOS.3 = currline
  272.             END
  273.         WHEN "FCBS" = LEFT(currline,4) then do
  274.             DOS.4 = currline
  275.             END
  276.         WHEN "RMSIZE" = LEFT(currline,6) then do
  277.             DOS.5 = currline
  278.             END
  279.         WHEN "FILES" = LEFT(currline,5) then do
  280.             DOS.6 = currline
  281.             END
  282.         WHEN "LASTDRIVE" = LEFT(currline,9) then do
  283.             DOS.7 = currline
  284.             END
  285.         WHEN "BREAK" = LEFT(currline,5) then do
  286.             DOS.8 = currline
  287.             END
  288.  
  289. /* Miscellaneous Commands */
  290.         OTHERWISE
  291.             MISC.0 = MISC.0 + 1
  292.             var = VALUE("MISC."MISC.0,currline)
  293.             END
  294.         END
  295.  
  296. /* Begin ouput of data */
  297. If IFS.0 \= 0 then say "REM *** Installable File Systems ***"
  298. do i = 1 to IFS.0
  299.     say IFS.i
  300.     END
  301. If IFS.0 \= 0 then say
  302. say "REM *** BASE Device Drivers ***"
  303. do i = 1 to BASEDEV.0
  304.     say BASEDEV.i
  305.     END
  306. say
  307. say "REM *** DEVICE Drivers ***"
  308. do i = 1 to DEVICE.0
  309.     say DEVICE.i
  310.     END
  311. say
  312. say "REM *** Environment Variables ***"
  313. do i = 1 to SET.0
  314.     say SET.i
  315.     END
  316. say
  317. say "REM *** OS/2 System Control ***"
  318. do i = 1 to 9
  319.     If CONTROL.i \= "" then say CONTROL.i
  320.     END
  321. do i = 1 to DEVINFO.0
  322.     If DEVINFO.I \= "DEVINFO.I" then say DEVINFO.I
  323.     END
  324. do i = 1 to 9
  325.     If PERF.i \= "" then say PERF.i
  326.     END
  327. do i = 1 to 9
  328.     If ERROR.i \= "" then say ERROR.i
  329.     END
  330. say
  331. say "REM *** DOS Subsystem Control ***"
  332. do i = 1 to 9
  333.     If DOS.i \= "" then say DOS.i
  334.     END
  335. do i = 1 to DOSDEVICE.0
  336.     say DOSDEVICE.i
  337.     END
  338. If RUN.0 \= 0 ║ CALL.0 \= 0 then do
  339.     say
  340.     say "REM *** RUN and CALL Statements ***"
  341.     END
  342. do i = 1 to RUN.0
  343.     say RUN.i
  344.     END
  345. do i = 1 to CALL.0
  346.     If CALL.i \= "" then say CALL.i
  347.     END
  348. If MMOS2.0 \= 0 then do
  349.     say
  350.     say "REM *** Multimedia ***"
  351.     END
  352. do i = 1 to MMOS2.0
  353.     If MMOS2.i \= "" then say MMOS2.i
  354.     END
  355. If MMOS2.0 \= 0 then do
  356.     say
  357.     say "REM *** TCP/IP and/or Internet Access Kit ***"
  358.     END
  359. do i = 1 to TCPIP.0
  360.     If TCPIP.i \= "" then say TCPIP.i
  361.     END
  362. say
  363. If MISC.0 \= 0 then say "REM *** Miscellaneous Statements ***"
  364. do i = 1 to MISC.0
  365.     say MISC.i
  366.     END
  367. say
  368.  
  369. Scott E. Trosien -- Ford PTF - Dearborn, MI    DRBN005--STROSIEN
  370. IBMMAIL:USFMCLN2   OS2BBS:,DEV4447
  371.  
  372. If you have any neat REXX programs, please upload them to area
  373. 18 of the WoodMeister or send them to me via Internet at USDSSKZS@IBMMAIL.COM.  If
  374. you work for the State of Missouri and have access to DISOSS, you can send them to
  375. POOLMWV at DSSHOST.
  376.  
  377. REBOUND -- Off the Boards
  378.  
  379.                      ▄▀▀▀▄ █   █ █▄ ▄█
  380.                      █   █ █ ▄ █ █▀█▀█
  381.                      ▀▄▄▄▀ ▀█▀█▀ █   █
  382.  
  383.        <══════════ The OS/2 Woodmeister ══════════>
  384.                Overview of downloadable files 
  385.                       (314) 446-0016
  386.       FIDO Node 1:289/27    1200/2400/9600/14400 D/S
  387.        <══════════════════════════════════════════>
  388.  
  389.  
  390. (Thu Sep 29 05:30) Last 1 months newest of a total of 2873 files (513 MB)
  391.                    Maximum privilege shown: Disgrace
  392.                    Newest: ANONFTP.ZIP dd  9-28-94 (avail:  9-28-94)
  393.                    Date flag: new on this system since: * = 1 week, + = 1 month
  394.  
  395. Filename     Area  Size   Date    Description
  396. ──────────── ──── ───── ───────── ─────────────────────────────────────────────
  397. 32CSET4.ZIP    12  221K  9-13-94+ BinkleyTerm/2 32bit compiled for 486
  398.                                   computers
  399. AF_SDK.ZIP     24   70K  9-01-94+ AccuFax SDK. Scalable Fax software - this is
  400.                                   single user example/demo (works).
  401. ANONFTP.ZIP    16   15K  9-28-94* INformation on anonymous FTP
  402. ANS000.ZIP     12  221K  9-26-94* Answering machine app for modems with
  403.                                   ROCKWELL chipsets.  This is a beta
  404. AUTOBP.ARJ     21  287K  9-21-94+ Automatically change bitmaps for each  new
  405.                                   boot
  406. BDAYS.ZIP      24    2K  9-06-94+ Paradox sample to calc number of business
  407.                                   days between two dates.
  408. BERNLL.TXT      4    4K  9-16-94+ Instructs how to load Bernoulli drivers from
  409.                                   floppy in ISA and MCA machines
  410. BLUE2SAL.ZIP    9   25K  9-23-94* Blue Diskette to Salmon Diskette conversion
  411.                                   utility.
  412. BORLAND.ZIP    59  128K  9-01-94+ Listing of Borland BBS
  413. CENVI2.ZIP      6  329K  9-16-94+ CEnvi v1.009 - C Interpreter/batch/automater.
  414.                                   CEnvi implements the Cmm advanced scripting
  415.                                   language
  416. CERT94.ZIP     11  859K  9-28-94* OS/2 LEngineer and LAN Server Engineer sample
  417.                                   tests and information.
  418. CHARON40.ZIP   16  482K  9-28-94* Some sort of mail gateway
  419. CI210B.ZIP     12 1131K  9-06-94+ CopyIt/2 for DOS and OS/2: Premier server
  420.                                   control software for BBS Operators.  'ROM
  421.                                   support, fax, archiving, etc
  422. CLRQWK11.ZIP   21  169K  9-01-94+ ***************************** * ColorQWK 1.0
  423.                                   for Windows! * *       LITE version        *
  424.                                   *   Requires VBRUN300.DLL   * * QWK for
  425.                                   Windows
  426. COMM56.ZIP     21    7K  9-21-94+ Windows COMM driver replacement.
  427. CONTROL2.EXE   24  477K  9-01-94+ Chicago (WIN 4.0.will.be.around.someday) code
  428.                                   and EXEs for some control functions.
  429. CRON214.ZIP     9   99K  9-20-94+ Cron/2 for OS/2 - client/server timed
  430.                                   execution of applications
  431. CRYNWARE.ZIP   32  284K  9-06-94+ Clarkson Ethernet TCP/IP drivers
  432. DIAMDEMO.ZIP   15  501K  9-13-94+ Working demo of BMDp/Diamond - 32bit
  433.                                   graphical data analysis program
  434. DOSUP9.EXE     32  494K  9-09-94+ Latest DOS Netware drivers
  435. DTR500.ZIP     24   53K  9-01-94+ Data Table Reporter for PAradox with SOURCE
  436.                                   CODE
  437. DWNSRT60.ZIP   12  236K  9-06-94+ Maximus CBCS DOWNload file SORT and List util
  438.                                   v6.0
  439. ETELR20A.ZIP   15  465K  9-06-94+ Version 2.0 of E-Teller - a bank and credit
  440.                                   card manager
  441. EUROPE.TXT      4    3K  9-20-94+ Announcement of the first European OS/2
  442.                                   Developers Conference
  443. EWAN102.ZIP    16  197K  9-06-94+ E-Mail for Internet
  444. FADE.ZIP       24   13K  9-06-94+ Face from one UiObj to another in Paradox/Win
  445.                                   - WAY COOL
  446. FILEB188.ZIP    9  234K  9-06-94+ FileBar v1.88 - util for OS/2 2.x,
  447.                                   application launch facitily.  Uses less mem
  448.                                   than WPS
  449. FINF096.ZIP     9   25K  9-07-94+ FindINF version 0.96 by Dale Hackemeyer.
  450.                                   FindINF searches for INF files and creates
  451.                                   icons for them using their title. 32-bit PM.
  452. FLEETB90.ZIP   12  393K  9-07-94+ FleetStreet v0.90wb for OS/2 2.x PM. Flexible
  453.                                   and powerful message reader for Squish and
  454.                                   *.MSG bases
  455. FLEETB95.ZIP   12  486K  9-13-94+ FleetStreet beta .95 - Flexible and powerful
  456.                                   message reader for Squish and .MSG formats
  457. FM2_207.ZIP     9  468K  9-28-94* FM/2 v2.00 An OS/2 2.1+ PM 32-bit
  458.                                   file/directory/ archive maintenance package
  459.                                   with plenty of bells and whistles -- a Swiss
  460.                                   army knife for
  461. FOSS10B4.ZIP   12  260K  9-28-94* The latest release of FOSS - an OS/2 based
  462.                                   BBS
  463. FSTAR99D.ZIP    9  695K  9-08-94+ FileStar/2 v0.99d - OS/2 File Maintenance
  464.                                   Util.  Drag and Drop, Point and Click, etc
  465. FW1040.EXE     24   34K  9-21-94+ Paradox for Windows examples from Informant
  466.                                   Mag
  467. GADGET1.EXE    24  436K  9-01-94+ Chicago (Win 4.0.wish.we.had.stuck.with.os/2)
  468.                                   examples of various gadgets with sample code.
  469. GTAK240.ZIP     9  464K  9-16-94+ GTAK v2.40 - great SCSI tape drive backup
  470.                                   software
  471. HANCOCK2.ZIP    1   19K  9-04-94+ Full text of Hancock II amendment and the
  472.                                   Moody Report, an analysis of H2's impact on
  473.                                   Missouri. PLEASE READ!!!
  474. HLPCOL.ZIP     21   21K  9-01-94+ Change your HELP colors in Windows - MUST
  475.                                   HAVE
  476. HNGMN120.ZIP    8  225K  9-15-94+ HangMan v1.20 - reproduces classic hangman
  477.                                   for OS/2 PM
  478. HPDF_103.ZIP    9   15K  9-22-94* OS/2 HPFS defragmentor
  479. IBMRTLGO.ZIP   14  350K  9-15-94+ Raytraced IBM logo 1024x768x(64&256)
  480. IBMWARP.ZIP    14  442K  9-27-94* Very aggresive WarpII logo in several formats
  481. INETTECH.ZIP    1  175K  9-26-94* Highly Technical Internet info: SLIP, PPP,
  482.                                   TCP/IP, UUCP, M.O.U.S.E....
  483. INNDOC.ZIP      1    3K  9-26-94* Discussion about obtaining NetNews feeds
  484. INOTES.ZIP     21  129K  9-26-94* Windows INOTES App. Sort of a super notepad
  485.                                   and cardfiler. Interesting idea
  486. INSTEZ12.ZIP   24  147K  8-30-94+ Another Windows installation PRogram
  487. IPFBLD.ZIP      6  604K  9-09-94+ Full featured demo of IPF Builder.  Cannot
  488.                                   save the IPF files it creates, however.
  489. KONSTR1.ZIP     6  177K  9-20-94+ Programming language (?).  Docs in German.
  490. KWQ12G.ZIP     12  216K  9-13-94+ KWQ Mail/2 v1.2g - 32bit multithreaded QWK
  491.                                   message reader for OS/2 PM.
  492. LORA235S.ZIP   12  886K  9-07-94+ Lora BBS v2.35 - OS/2 BBS and Mailer
  493. LORAINF.ZIP    12  121K  9-07-94+ Lora files from 128/67
  494. LOS240B3.ZIP   12  704K  9-07-94+ Lora BBS v2.35S service update
  495. LOS2DOC.ZIP    12  179K  9-07-94+ Lora BBS documentation in WordPerfect format
  496. LS40DEMO.ZIP    1  591K  9-28-94* Demo of LAN Server version 4.0 (FREE d/l)
  497. ME2_099.ZIP     9  378K  9-20-94+ Editor for OS/2 PM - integrates nicely with
  498.                                   MR/2.  Floating toolbars, uses MR/2's
  499.                                   dictionary, etc
  500. MFILE120.ZIP   12  127K  9-27-94* MaxFile/2 v1.2 0 text based FILES.BBS
  501.                                   manager.  FILE_ID.DIZ import, more
  502. MMOUG994.ZIP    1  254K  8-30-94+ Mid-Missouri OS/2 User Group September
  503.                                   Newsletter in INF and TXT Formats.
  504. MORTBK10.ZIP   15   30K  9-27-94* Mortgage Workbook v1.0
  505. MR2_206.ZIP    12  248K  9-01-94+ Latest version of MR/2 QWK message reader.
  506. MR2_208.ZIP    12  249K  9-09-94+ Latest version of MR2 QWK message reader
  507. MR2_209A.ZIP   12  253K  9-22-94* Latest version of MR2 QWK message reader.
  508. MSDOJ.TXT       1   28K  9-20-94+ Full text of the Microsoft consent decree
  509. NEF200.LZH     12   70K  9-09-94+ NEF: A new echo files distribution system
  510. NMFW12AE.ZIP   21  398K  9-01-94+ New Menus for Windows -- ****EXCELENT****
  511.                                   replacement for Program manger menu. Has
  512.                                   Motif, Openlook-type interface. MUST SEE!
  513. NSUITE1.ZIP    16  921K  9-13-94+ NetSuite for OS/2 - contains LATIMES nntp
  514.                                   newsreader, LA Gopher, LA FTP.  Req's IBM
  515.                                   OS/2 TCP/IP
  516. NSWCH2.ZIP      9   11K  9-28-94* NoSwitch V2.0 - OS/2 Switch-list utility
  517.                                   ----------------------------------------
  518.                                   Allows Alt+Esc to bypass specified programs.
  519.                                   Useful if
  520. OBACK208.ZIP    9  133K  9-13-94+ OBackup - system settings backup - demo that
  521.                                   expires after Jan '95
  522. OP101A.ZIP      4  282K  9-16-94+ OS/2 Personal Hypermedia Magazine - Aug '94.
  523. OP102B.ZIP      4  444K  9-16-94+ OS/2 Personal Hypermedia magazine.  Published
  524.                                   by Allen-Hamilton publishers
  525. OP102C.ZIP      4  589K  9-20-94+ Hypermedia magazine #3
  526. OS2DB2.ZIP      9   20K  9-28-94* A shutdown command that will also disconnect
  527.                                   DB2/2 client server databases.
  528. OWM_ALL.TXT  LIST  323K  9-28-94* All files on the OS/2 Woodmeister
  529. OWM_ALL.ZIP  LIST  117K  9-28-94* All files on the OS/2 Woodmeister
  530. OWM_NEW.TXT  LIST   15K  9-28-94* New files (last 30 days) on the OWM
  531. OWM_NEW.ZIP  LIST    6K  9-28-94* New files (last 30 days) on the OWM
  532. P202.ZIP       12  127K  9-09-94+ Free 32-bit file transfer protocol.
  533.                                   Z/Y/XModem for async, named pipe and Telnet.
  534.                                   Contains a DLL for use in your own apps
  535. P203.ZIP       12  127K  9-27-94* Freeware 32bit file transfer util for OS/2.
  536.                                   Z/Y/YG/X for async/pipes/TCPIP
  537. PCN2LM25.EXE   32   19K  9-06-94+ Drivers for ancient IBM PC Network adapters -
  538.                                   works with faster Netware servers
  539. PFAQ31.ZIP      6  197K  9-16-94+ Programmers FAQ
  540. PITALK21.ZIP   21  382K  9-12-94+ Addition to Plugin.  Adds sounds to ALL
  541.                                   events, talking clock, etc.
  542. PLUGIN21.ZIP   21  446K  9-12-94+ Add-on for Program Manager (win 3.1) Quite
  543.                                   handy if you just need a few extras: easy
  544.                                   icon additions, groups
  545. PMIX11.ZIP      9   57K  9-27-94* A Sound mixer utils for the PAS16
  546. PMSNDX10.ZIP    9  441K  9-08-94+ PMsndX - PM based program to convert sounds.
  547.                                   Includes tools for special effects, editing,
  548.                                   playing of samples, etc
  549. PMZPR12.ZIP     9  596K  9-16-94+ PM Zipper v1.2.  ZIP, UNZIP, drag & drop,
  550.                                   checkout, etc
  551. POPGATE.ZIP    16  141K  9-23-94* POP3 format usenet gateway
  552. PROP_T.ZIP     24   18K  9-06-94+ --- no description available ---
  553. REXXVIM.ZIP    13  142K  9-28-94* A VIM toolkit for REXX!  RexxVIM allows Rexx
  554.                                   to inmteract with VIM enabled apps like
  555.                                   cc:Mail and Lotus Notes
  556. RIBBLE.ZIP      8   90K  9-27-94* PM based Boulderdash type game
  557. RIBBSRC.ZIP     6  177K  9-27-94* Source code for the Ribble game
  558. RMXBETA.ZIP     9  833K  9-27-94* Remote execution for OS/2.  With this
  559.                                   package, an app can be marked so that it's
  560.                                   output may be moved to a different computer
  561. SIO131.ZIP      7  172K  9-06-94+ Latest SIO comm drivers from Ray Gwinn v1.31
  562. SL_FAQ03.ZIP   16    8K  9-28-94* Draft OS/2 and SLIP FAQ
  563. SOUP12.ZIP      1   14K  9-26-94* Document about SOUP, a format for netnews DL
  564. SQED097.ZIP    12  540K  9-15-94+ SquishEditor v.97 Squish/,MSG/etc reader
  565.                                   supports drag&drop, etc
  566. SSOK.ZIP        9  170K  9-16-94+ Additional modules for screen saver
  567.                                   (SSAVER.EXE)
  568. T2BBS501.ZIP   12   32K  9-28-94* TIC to BBS - a Tic manager
  569. TCPBTDSK.ZIP    4    6K  9-20-94+ Instructs for creating boot disks w/ plain
  570.                                   TCP/IP on them
  571. UQWK18.ZIP     12  141K  9-28-94* QWK, SOUP, and ZipNews message manager
  572. VIEWALL.ZIP     9  380K  9-20-94+ Util to view all .INF files in a simple
  573.                                   manner
  574. VL131.ZIP       9   34K  9-08-94+ VLaunch, VIEW launcher for .INF files.  Will
  575.                                   search for INF files and keep them in a
  576.                                   'bookshelf'
  577. WA0725.EXE     24  140K  9-06-94+ Paradox/Win samples from informant magazine
  578. WARPFT01.DSK   97 1840K  9-15-94+ Warp beta-2 Footprint Works - 1 of 4
  579. WARPFT02.DSK   97 1840K  9-15-94+ Warp beta-2 Foorprint Works diskette 2 of 4
  580. WARPFT03.DSK   97 1840K  9-15-94+ Warp beta-2 Footprint Works diskette 3 of 4
  581. WARPFT04.DSK   97 1840K  9-16-94+ Warp beta-2 Footprint Works diskette 4 of 4
  582. WDIR2081.LZH    9   37K  9-08-94+ WackyDir v0.81 is a colorful replacement for
  583.                                   OS/2's plain DIR command.  Allows color,
  584.                                   sorting, extension coloring.  Supports FAT
  585.                                   and HPF
  586. WFWPTP.EXE     21  337K  9-01-94+ Windows for Workgroups Point-to-Point. Remote
  587.                                   control of WFWG. From MS FTP Siet for WFWG
  588.                                   only.
  589. WINELM.ZIP     32  254K  9-22-94* Windows Internet e-mail app with MIME support
  590. WINUP9.EXE     32  631K  9-09-94+ Latest Win Netware drivers
  591. WISESW.EXE     24  350K  9-01-94+ EXCELLENT!! Installation util w/ compression
  592.                                   - gens a single EXE! Script drivem, quite
  593.                                   powerful. Working demo
  594. WMC53.ZIP      21  460K  9-01-94+ Windows Multiple COnfigurations
  595. WN4M110.ZIP    21  772K  9-01-94+ wInformant 1.10:  Uninstall, INIEdit & More!
  596.                                   Improved Uninstall removes DLL's & DOS apps.
  597.                                   Seven powerful Windows utilities in one. Fi
  598. WUBENCH.ZIP    21  233K  9-23-94* Windows USer Mag benchmarks. Worth looking at
  599. XFERP100.ZIP   32  131K  9-22-94* EXCELLENT Internet tools for managing the
  600.                                   myraid variety of compression/encoding apps.
  601.                                   Supports UUCP, MIME, more! A MUST HAVE
  602. YRN2_055.ZIP   16  187K  9-23-94* News reader for Usenet news...maybe more?
  603. YRN2_070.ZIP   16  463K  9-07-94+ PC Yarn v0.70 beta. Suite of programs to use
  604.                                   and store USENET news and mail offline.
  605. ZIPCTL.ZIP      9  350K  9-24-94* zip control; pm front end for freeware
  606.                                   versions of zip and unzip.exe  (very nice)
  607.                                   v2.1
  608. ZOC196B.ZIP    12  529K  9-26-94* Latest ZOC Beta: REGISTERED OWNERS ONLY!!!
  609.                                   Will not work on non-registered versions of
  610.                                   Zoc. Easy upgrade and code runs beautifully.
  611.  
  612.  
  613.   ════════════════════════════════════════════════════════════════════
  614.          List created with DOWNSORT 5.5g by Rob Hamerling
  615.                on Thu Sep 29 05:30 under OS/2 2.9
  616.   ════════════════════════════════════════════════════════════════════
  617.  
  618. Humor
  619.  
  620. Once upon a time, in a kingdom not far from here, a king summoned two of
  621. his advisors for a test. He showed them both a shiny metal box with two
  622. slots in the top, a control knob, and a lever. "What do you think this
  623. is?"
  624.  
  625. One advisor, an engineer, answered first. "It is a toaster," he said. The
  626. king asked, "How would you design an embedded computer for it?" The
  627. engineer replied, "Using a four-bit microcontroller, I would write a
  628. simple program that reads the darkness, from snow white to black. The program
  629. would use that darkness level as the index to a 16-element table of
  630. initial timer values. Then it would turn on the heating elements and
  631. start the timer with the initial value selected from the table. At the
  632. end of the time delay, it would turn off the heat and pop up the toast.
  633. Come back next week, and I'll show you a working prototype."
  634.  
  635. The second advisor, a computer scientist, immediately recognized the
  636. danger of such short-sighted thinking. He said, "Toasters don't just
  637. turn bread into toast, they are also used to warm frozen waffles. What
  638. you see before you is really a breakfast food cooker. As the subjects of
  639. your kingdom become more sophisticated, they will demand more
  640. capabilities. They will need a breakfast food cooker that can also cook
  641. sausage, fry bacon, and make scrambled eggs. A toaster that only makes
  642. toast will soon be obsolete. If we don't look to the future, we will
  643. have to completely redesign the toaster in just a few years."
  644.  
  645. "With this in mind, we can formulate a more intelligent solution to the
  646. problem. First, create a class of breakfast foods. Specialize this class
  647. into subclasses: grains, pork, and poultry. The specialization process
  648. should be repeated with grains divided into toast, muffins, pancakes, and
  649. waffles; pork divided into sausage, links, and bacon; and poultry divided
  650. into scrambled eggs, hard-boiled eggs, poached eggs, fried eggs, and
  651. varous omelet classes."
  652.  
  653. "The ham and cheese omelet class is worth special attention because it
  654. must inherit characteristics from the pork, dairy, and poultry classes.
  655. Thus, we see that the problem cannot be properly solved without multiple
  656. inheritiance. At run time, the program must create the proper object and
  657. send a message to the object that says, 'Cook yourself.' The semantics
  658. of this message depend, of course, on the kind of object, so they have a
  659. different meaning to a piece of toast than to scrambled eggs."
  660.  
  661. "Reviewing the process so far, we see that the analysis phase has
  662. revealed that the primary requirement is to cook any kind of breakfast
  663. food. In the design phase, we have discovered some derived requirements.
  664. Specifically, we need an object-oriented language with multiple
  665. inheritance. Of couse, users don't want the eggs to get cold while the
  666. bacon is frying, so concurrent processing is required, too."
  667.  
  668. "We must not forget the user interface. The lever that lowers the food
  669. lacks versatility, and the darkness knob is confusing. Users won't buy
  670. the product unless it has a user-friendly, graphical interface. When the
  671. breakfast cooker is plugged in, users should see a cowboy boot on the
  672. screen. Users click on it, and the message 'Booting UNIX v. 8.3' appears
  673. on the screen. (UNIX 8.3 should be out by the time the product gets to
  674. the market.) Users can pull down a menu and click on the foods they want
  675. to cook."
  676.  
  677. "Having made the wise decision of specifying the software first in the
  678. design phase, all that remains is to pick an adequate hardware platform
  679. for the implementation phase. An Intel 80386 with 8MB of memory, a 30MB
  680. hard disk, and a VGA monitor should be sufficient. If you select a
  681. multitasking, object-oriented language that supports multiple interitance
  682. and has a built-in GUI, writing the program will be a snap. (Imagine the
  683. difficulty we would have had if we had foolishly allowed a hardware-first
  684. design strategy to lock us into a four-bit microcontroller!)."
  685.  
  686. The king wisely had the computer scientist beheaded, and they all lived
  687. happily ever after.
  688.  
  689. Author - Unknown.
  690.  
  691. OS/2 Tips 'N' Techniques
  692.  
  693. Here's one I picked up in Atlanta while standing in a line.  When your
  694. PC hangs so hard that you can't do a CTRL+ALT+DEL, try a CTRL+ALT+NumLock+NumLock.
  695. The latter is the key combination to do a dump.  When it prompts you for
  696. the dump diskette, you should be able to do a CTRL+ALT+DEL.  It still
  697. leaves the disk dirty, but it saves the power hit.
  698.  
  699. Threads
  700.  
  701. "Threads" are a collection of posts that may be of interest to individual
  702. readers.
  703.  
  704. PM Assistant
  705.  
  706. Utilis Inc. announced that PM Assistant Version 2.0, an integrated
  707. suite of six OS/2 utilities, is now available.
  708.  
  709. PM Assistant Version 2.0 provides hot-key access to your applications,
  710. window placement, keyboard macros, task scheduling, screen saver and
  711. password protection.  All six utilities are fully integrated to provide
  712. execution of complex or routine command sequences from your OS/2
  713. desktop with a single keystroke or the press of a button.
  714.  
  715. The utilities can be used independently or combined to execute powerful
  716. compound macros.  For example, you can launch your favorite word
  717. processor, insert a standard closure in a document, print, save and
  718. forward the document to another user all with a single keystroke.
  719. Using the window placement utility, you can minimize, maximize or move
  720. one or more windows to pre-defined positions.  Several arrangements can
  721. be defined to make your desktop more task oriented.
  722.  
  723. And, speaking of task oriented desktops, PM Assistant makes it
  724. possible for you to set up macros for other users to enable
  725. them to execute complex tasks without really knowing how.  This
  726. ensures proper execution and maximum productivity even by your
  727. employees who are still in a training or transition mode.
  728.  
  729. Using PM assistant's task scheduler, you can execute specific macros
  730. or command sequences at any given or recurring time.  This unattended
  731. program feature is ideal for stress testing applications since it can
  732. execute macros indefinitely and in random sequence.  And, since it is
  733. running under OS/2's pre-emptive, multi-processing framework, PM
  734. Assistant's task scheduler can initiate background processes or
  735. programs while you continue to use PM Assistant macros in the
  736. foreground.
  737.  
  738. PM Assistant is appropriate for all OS/2 users, since it allows each
  739. user to automate and customize OS/2 applications according to
  740. individual preferences.  It is easy to use, as it does not contain
  741. a programming language.  All utilities are configured with dialog boxes
  742. and by pointing to the application to act on.
  743.  
  744. PM Assistant runs on OS/2 versions 2.0 or greater and is available from
  745. Utilis for $129.00 and from resellers.
  746.  
  747. Utilis is a member of the IBM Developer Assistance Program.  For more
  748. information, you may contact them at:
  749.  
  750. Utilis Inc.
  751. P.O Box 367.
  752. Redmond, WA  98052
  753. Contact: Tom Snyder
  754. 73552.2367@compuserve.com
  755. Phone: (206) 467-4025
  756. Sales: 1-800-745-7757
  757.  
  758. PL/I Trivia
  759.  
  760. I know absolutely nothing about the PL/I programming language, but
  761. I thought that this was an interesting post I saw on the OS2BBS:
  762.  
  763. PL/I has _zero_ reserved words.
  764.  
  765.     IF IF = THEN THEN
  766.       ELSE = 0;
  767.     ELSE
  768.       THEN = IF;
  769.  
  770. is a perfectly valid PL/I construct.
  771.  
  772. Weird, ain't it?
  773.  
  774. Personal Netware on OS/2
  775.  
  776. This is a copy of an original message posted on the Internet in the
  777. Newsgroup COMP.OS.OS2.NETWORKING.MISC.  It is provided FYI & FYE.
  778. -----------------------------------------------------------------------
  779. Do you want Personal NetWare on OS/2
  780.  
  781. kbreinho@novell.com                     Keith L. Breinholt at Novell, Inc.
  782.  
  783. Please help.
  784.  
  785. We in Engineering and Support at Novell feel that there is a real need for
  786. Personal NetWare on OS/2.  However, Marketing keeps telling us that there is
  787. not enough market for such a product.  I know better but I need numbers to
  788. prove the point.
  789.  
  790. Please send email to OS2REQ@novell.com with the following information:  Your
  791. Name & phone# or email adress, Your Company name,  Number of potential
  792. licenses in your company, and a Reasonable price to pay
  793.  
  794. Other information that we will be looking for is any features that you
  795. want/need in PNW for OS/2.  Would an update to PNW for DOS fill the need if
  796. you can run PNW in a regular Global DOS session?
  797.  
  798. Thanks for your help.
  799.  
  800. Keith L. Breinholt
  801. ___________________________________________________________________________
  802. kbreinho@novell.com
  803.  
  804. "If you're not part of the solution, you're part of the problem."
  805. "I speak only for me...and then only occasionally."
  806.  
  807. Thoughts on OS/2 Application Development
  808.  
  809. John Schaeffer of AIMs posted the following on the OS2BBS.  AIMs is the company
  810. who is going to bring you Galactic Civilization for OS/2.
  811.  
  812. Because of some of the discussion that has gone on about AIMs doing future
  813. development of OS/2 games, I thought it was time to discuss a plan to help OS/2
  814. become number one by helping OS/2 development. First I need to lay the ground
  815. work as to why OS/2 applications and games suffer from a dearth of development
  816. capital.
  817.  
  818. Every line of code that goes into a possible commercial OS/2  product must be
  819. paid for. This payment can come from three different sources (the term
  820. developer is one or many people or companies):
  821.  
  822. 1) Sweat equity. The developer eats beans and pays for the development
  823.    from past savings.
  824.  
  825. 2) Internal capital. The developer pays for the development from internal
  826.    funds from past successful products. Also termed cash flow.
  827.  
  828. 3) Venture capital. The developer obtains funds from outside his own area to
  829.    fund the project. This can be another part of the same company or from outside.
  830.  
  831. Most OS/2 applications have been financed by the first method. This is usually
  832. the method take by an individual or a small group. This is how Lotus and others
  833. got there start before small income streams from 2 and large investments from 3
  834. kicked in. Many other successful companies in the computer area used only 1 and
  835. 2. It is rare for a startup to receive venture capital. Most venture capital is
  836. invested in companies and people that have a track record.
  837.  
  838. Most new development comes from companies and people that have prior products.
  839. The primary capital for these developments comes from internal capital. OS/2
  840. developers have trouble developing this capital source for a number of reasons:
  841.  
  842. 1) The size of the OS/2 market.
  843.  
  844. 2) The orientation of the OS/2 market towards shareware. Current OS/2 users
  845.    look first to shareware because of the lack of OS/2 retail applications.
  846.  
  847. 3) Piracy. AIMs studies have indicated that the software piracy rate is higher
  848.    in the OS/2 area than any other operating system. UNIX a very close second.
  849.  
  850. 4) Market distortion. IBM Direct (see prior append) and other some other IBM
  851.    sales channel reduce the cash flow to developers.
  852.  
  853. Venture capital is almost nonexistent in the OS/2 area. One of the major reasons
  854. is DeScribe. DeScribe was not a perfect word processor but was and is superior
  855. to the OS/2 offerings of WordPerfect and Lotus. IBM effectively acted as a
  856. venture capital provider to WordPerfect and Lotus. This put the venture people
  857. backing DeScribe in a bad position. Further development could not be financed
  858. internally because of lack of cash flow. Further venture investment would be up
  859. against well financed competition that was also backed by IBM. In this case
  860. venture funds dry up for DeScribe. I am not arguing that DeScribe would have
  861. been a success, I am stating that DeScribe never had a chance to get into the
  862. game because of certain actions by IBM. To top things off, the IBM person
  863. responsible for this disaster in the word processing area for OS/2 was rewarded
  864. for his efforts. The final result for this reward? A company - DeScribe - that
  865. is fighting for its life. An abandoned OS/2 word processor - WordPerfect. And a
  866. poor port of a Windows word processor that is releases behind the company's
  867. window product.
  868.  
  869. AIMs has a number of investors that are begging to invest in games. Please
  870. note I said games not OS/2 games. I has been made very clear to me by investors
  871. that not one penny of their money will be allowed to go into OS/2 games. One year
  872. ago, everyone of these investors were anxious to get into OS/2 games. Now I
  873. must finance all OS/2 development out of cash flow. Because of the reasons
  874. above, I can accept a lower or possibly negative return on internal development
  875. in OS/2 or move to other investments. All OS/2 developers face this problem.
  876. Many that are sticking with OS/2 development will be out of business soon if there
  877. is not a change.
  878.  
  879. What can be done to reverse this trend? Sorry, Wayne, you and other OS/2 true
  880. believers can do very little except for what I outline below. There must first
  881. be a recovery of faith in OS/2 software as a good investment. This can not be
  882. done by OS/2 users, OS/2 developers, OS/2 retails, TeamOS/2 - it must be done by
  883. IBM itself. Some of the steps IBM is already starting - but not all. These first
  884. steps must be carried to completion, not abandoned partially finished. Here are
  885. recommendations to IBM:
  886.  
  887. 1) Reform IBM Direct:
  888.      a) Put IBM Direct on a direct payment basis with developers. This will
  889.           improve cash flow immediately allowing for increased internal
  890.           investment by existing developers.
  891.      b) Make IBM Direct be business like. Sign agreements with developers to
  892.           retain developer's information within a limited - need to know -
  893.           group.
  894.      c) Reform IBM Direct so they can accept OS/2 product before in it is
  895.           shipping.
  896.      d) If a, b, and c all can not be done; remove all OS/2 products, that are
  897.          not IBM's own development, from IBM Direct. Short term this will hurt
  898.          developers but long term it will help developers and hurt IBM
  899.          Direct.
  900.  
  901. 2) Get IBM out of the business of funding ports of existing products. This is
  902.      just money down the rat hole. In games it is even worst. I can speak to
  903.      this from experience since I attempted to port an existing game and lost.
  904.  
  905. 3) Get rid of the people in OS/2 who created this porting nonsense to begin with.
  906.      Their continued presence makes venture investors very nervous. No
  907.      reasonable outside investor will put up money for OS/2 development when
  908.      IBM is sitting on the sidelines looking like a 500 kilo gorilla.
  909.  
  910. 4) Forget about getting the companies that are heavy into DOS and Windows to
  911.      port or produce software for OS/2. They are not going to kick their cash
  912.      cows for the sake of OS/2. You need developers that are hungry to be the
  913.      next big success in the market and have talent. Find them and sell them on
  914.      the idea that OS/2 is the vehicle to do this. Do not sell them on what a
  915.      great technology achievement OS/2 is. This is true but that and 50 cents
  916.      will get you coffee. The developer must be profitable to raise capital.
  917.  
  918. 5) DO NOT FUND ANY OUTSIDE OS/2 DEVELOPMENT. Help them sell and place their
  919.      product,  but do not poor free money into developers. Investors know this.
  920.      Money with no expectation of return produces terrible products.  IBM should
  921.      not be in the game of picking winners and losers. Leave than to the
  922.      professional investor. IBM's job is to provide an environment not investment.
  923.  
  924. 6) Help developers learn how to sell their product. Most good to great OS/2
  925.      developers know how to produce a program. They do not know how to package
  926.      it or sell it. Better skills will help these developers attract investment.
  927.  
  928. 7) Hire some people at all levels that are not afraid to hear or deliver bad
  929.      news. IBM has the reputation, well deserved, of shooting messengers that
  930.      deliver bad news. Investors are not dumb, they know if IBM will not listen
  931.      to bad news, OS/2 is in terminal trouble. If OS/2 is in trouble, investment
  932.      in OS/2 developers is in trouble. Investors know the environment and market
  933.      a company is in is more important than the product.
  934.  
  935. 8) Straighten out the service and support. Investors are not going to invest in
  936.      OS/2 developers if OS/2 is viewed as a problem. Service and support also
  937.      needs to understand that they are in the customer relations business as well
  938.      as service and support. The whole idea is to design this area so that the
  939.      customer has the minimum hassle. There are two things service and support
  940.      need to do:
  941.      a) Find some managers that have dealt with customers. This is no place for
  942.           on the job training. Put people with field experience in positions of
  943.           responsibility. A person who has spent years in a staff position is
  944.           learning the job at the expense of both IBM and the customer.
  945.      b) Stop assuming the customer is dumb. VM, MVS, etc learned years ago the
  946.           customer has some intelligence. Service, support and most importantly
  947.           fix strategy should be based on this principal. To repeat it - the
  948.           customer is not dumb.
  949.  
  950. 9) Establish an OS/2 wholesaler. Some organization that is equivalent of Ingram,
  951.      IE, etc. but does not have the anti OS/2 bias. Because of the current bias
  952.      of just about every wholesaler to non IBM OS/2 applications, this probably
  953.      will have to be a startup. It should not be IBM owned but given the lack
  954.      of other capital to start this IBM would need to be creative.  Not gifts but
  955.      assistance in financing would be the best. The new wholesaler would be
  956.      able to provide type 2 (as above) capital to OS/2 developers.
  957.  
  958. 10) Consider providing financing to establish an OS/2 oriented venture capital
  959.        group. Once again this should not be run be IBM, but IBM would need to
  960.        provide financing assistance - not gifts - to get this started. IBM
  961.        should not be running this. IBM needs to get out of the game of picking
  962.        winners and losers in the OS/2 product areas. Let investors pick.
  963.  
  964. 11) Above all get all of IBM out of the business of picking winners and losers
  965.        in the OS/2 product area. This includes every area of IBM from giving money
  966.        to certain developers to making your developer support people act as
  967.        adults. There have been too many situations where developers have been
  968.        forced to follow IBM's line to obtain support. An investor does not like
  969.        his investment controlled by outsiders.
  970.  
  971. 12) Learn the power of electronic media. BBS, Internet, etc. are very powerful
  972.        forces. If IBM does not learn to work with them constructively, IBM will
  973.        learn their destructive potential. This media, of its very nature, tends
  974.        to move to extremes unless closely monitored. Do not try to hide IBM's
  975.        warts on electronic exchanges. In fact admit to them.  Get the people on
  976.        your side. The best way to do this is to be truthful and honest in all
  977.        electronic dealings. If IBM stinks, say so and say what you will do to
  978.        make it smell better. If you try to call a skunk a rose, you will die as
  979.        road kill on the information highway.  Investors, at least the ones I
  980.        work with, monitor the nets for early warning of potential problems and
  981.        opportunities.  A strong image of IBM as a truthful and honest player on
  982.        the electronic media will encourage investors, at least the ones I know.
  983.  
  984. As I said to begin these recommendations, IBM is working on some but not all.
  985. Confidentiality agreements with IBM prevent me from saying which ones. The
  986. proper people in IBM know what they are doing.
  987.  
  988. OK, IBM, here is the basis of a plan to get OS/2 development moving and kick
  989. Windows95 before it can even get off the ground. IBM be creative forget the old
  990. rules -- use OS/2 technical superiority to start creating new rules.
  991.  
  992. Are there any customers, developers or IBM'ers who believe in doing this? If so
  993. let the IBM executives know. If you don't have time to write your own, copy this
  994. and send it to PSP and IBM corporate executives. Let them know that there are
  995. ways to break the mold of the past and get OS/2 on top. The way is through OS/2
  996. developers.
  997.  
  998. John Schaeffer  Internet:aimgames@xmission.com
  999.                  AIMsBBS:801-572-6353  8-n-1  2400 to 14400
  1000.                      Fax:801-571-8625
  1001.                   OS2BBS:DEV1024@Hone82
  1002.              Information:801-572-4018
  1003.  
  1004. A Completely Subjective Look at the OS/2 Technical Update
  1005.  
  1006. I'd better give a word of warning about what you are about to read.
  1007. For several years, whenever I would go on a trip, I would take
  1008. copious notes about my experiences, thoughts and feelings.  Upon my
  1009. return, I would type up the tale.  I have followed the same pattern for
  1010. this subjective look at the OS/2 Technical Update.  This is NOT your 
  1011. ordinary report of a business trip.  This is the tale of the highlights
  1012. of a business trip as perceived by a warped mind.  You are about to
  1013. enter . . . the Highlight Zone.
  1014.  
  1015. Saturday, September 10, 1994
  1016.  
  1017. I'm preparing to go on my first big trip paid for by the state.  Our
  1018. group usually tries to be pretty tight with the budget when it comes
  1019. to spending the taxpayers' dollars.  We try to make darn sure we get
  1020. our money's worth out of whatever we do.  When I hear of someone else
  1021. from another agency going on a trip for a technical update, I'll jokingly
  1022. say that the Department of Social Services will let me look through the
  1023. window of Computerland -- as long as it's after hours!
  1024.  
  1025. I have a credit card that will give me air miles for so many dollars
  1026. charged -- I think you get 1 mile for every $3,000,000,000 charged,
  1027. judging from my last bill.  I had gotten it originally to help pay
  1028. for going to my son's playoff games.  Benedictine College in Atchison,
  1029. Kansas missed being NAIA Division II national champions by about 2 
  1030. inches his freshman year (1992).  Two inches to the right and the 
  1031. football would have gone through the goalposts.  Findlay of Ohio won.  
  1032. After the 1993 season, even though BC was ranked number 1 for a while,
  1033. I decided we wouldn't need to save air miles for the national playoffs 
  1034. anymore.  Therefore, I had just enough air miles for my wife (Pam) to 
  1035. fly to Atlanta with me.
  1036.  
  1037. We left home at 8:30 Saturday morning.  Pam wasn't too happy with our
  1038. luggage and by leaving so early, we thought we'd have time to stop in
  1039. Independence and buy some.  Our flight was not until 2:30 p.m., and the
  1040. folks at MarkAir recommended being there an hour early.  It ordinarily
  1041. takes about 2.5 hours to get to Kansas City from Jefferson City.  This
  1042. was not ordinary, however.  Road construction at the Rocheport bridge
  1043. and close to Kansas City forced traffic to a crawl.  Although we made
  1044. it to the airport in ample time, there was no time to spare for buying
  1045. luggage.  Thank you Highway Department!
  1046.  
  1047. We travel this way almost every week in the Fall for football games,
  1048. but I noticed a billboard I had never seen before: Catfish Live - Dressed.
  1049. Yeah, but then what would you do?  Take 'em out for a movie?
  1050.  
  1051. We arrived at KCI and parked the car in the cheapest parking lot we
  1052. could find.  Checked in, waited for an hour, and took off for Atlanta.
  1053. The flight was an hour and forty-seven minutes.
  1054.  
  1055. We arrived in Atlanta, went to the train that transports passengers
  1056. from the concourse to the main terminal, and proceeded to the Alamo
  1057. car rental agency, where I had reserved a car.  I was pleased to
  1058. see Jim Crapenhoft there, from the Department of Highway and
  1059. Transportation.  The line was huge.  Apparently all of the other
  1060. rental agencies had run out of cars.  We discussed forgetting the car
  1061. rental and taking the bus to our hotel, but being unfamiliar with the
  1062. layout of Atlanta, decided that it might be imperative to have a car.
  1063. What a mistake.  Our wait in line was 13 minutes longer than our
  1064. flight, the hotel was within walking distance of the convention center,
  1065. and Atlanta has excellent public transportation -- the MARTA.  That
  1066. was a waste of taxpayer money.  If I go to Atlanta again, I won't
  1067. worry about car rental.
  1068.  
  1069. I was rather nervous about driving in Atlanta.  I'm just a country boy,
  1070. and seeing six lanes of traffic coming together, with exits on the
  1071. left and the right was a bit disconcerting.  Pam kept telling me to
  1072. slow down, but trying to be aware of the signs made it difficult for 
  1073. me to keep an eye on the speedometer.  I think the speed limit was 55, 
  1074. but even at 60 it felt like I was crawling with the traffic cruising 
  1075. around me at 70.  We made it to the hotel without incident, however.
  1076.  
  1077. The Hard Rock Cafe was only a couple of blocks from our hotel, and
  1078. since we had only stopped for souvenirs at the one in Honolulu while
  1079. on our honeymoon, we decided to have supper there.  There was a half
  1080. hour wait before we were shown to a table.  I don't mind admitting, I
  1081. was getting very tired of lines by this time!  The menu said you
  1082. hadn't "really" been to the Hard Rock unless you had a "Pig Sandwich",
  1083. so that's what I had.  It was OK.
  1084.  
  1085. We returned to the hotel for the night.  Although I was tired, I
  1086. watched "Rising Sun" on HBO.  We don't have HBO at home, so I figured
  1087. I would take advantage of it at the hotel.
  1088.  
  1089. Sunday, September 11, 1994
  1090.  
  1091. I got up in time to go to church at nearby Sacred Heart.  Pam looked 
  1092. pretty content sleeping, so I figured she could go to a later service
  1093. when she woke up.  I could tell by the address in the phone book that 
  1094. it had to be close, but I wasn't exactly sure where to find it.  I 
  1095. took my best guess, and had about given up, when I looked up and 
  1096. saw the spires.  If I had looked up when I began my journey I would 
  1097. have been there already!  I wasn't too late.
  1098.  
  1099. Although the OS/2 Technical Update was not to begin until 1:30, I
  1100. arrived at the convention center at 10:00 a.m.  After the delays in
  1101. lines I had faced yesterday, I decided that being early would not be
  1102. a handicap.
  1103.  
  1104. Thankfully, because of being early, the line at the registration booth
  1105. was relatively short.  And who was in line in front of me?  Michelle
  1106. Wilson -- IBM's PSP representative from the Jefferson City Office.  I
  1107. knew she was going to be there, but I thought it would be much more
  1108. difficult to run into someone that I knew!
  1109.  
  1110. As we walked away from the registration area, I noticed one fellow
  1111. with distinctive features -- a grey beard, a round belly, wearing an
  1112. OS/2 t-shirt and OS/2 suspenders!  I had never seen OS/2 suspenders
  1113. before and pointed them out to Michelle.  I noticed him several times
  1114. throughout the day.
  1115.  
  1116. We just started down the escalator to pick up the rest of our
  1117. registration materials when we saw Jim Crapenhoft again!  Gee, it's
  1118. easy to find people in here!  After we grabbed our registration
  1119. material, we went outside so I could take a picture.
  1120.  
  1121. Because I was so early, I saw in my map that there was a study hall
  1122. for people to brush up on different areas for the Certification
  1123. testing.  Unfortunately, it was located about as far away from the
  1124. testing area as possible.  When I got there, I was informed that they
  1125. had already begun the certification testing at 9:30 that morning!
  1126.  
  1127. I asked the fellow in the study hall the best way to approach taking
  1128. the test.  He recommended just taking them to see how well I did, and
  1129. if I failed, use the report to concentrate on the areas of weakness.
  1130. In retrospect, I wish I had used another approach.
  1131.  
  1132. It didn't take me long to beat a path to the testing center to sign
  1133. up.  Drat, if I had realized they were starting early, I could have
  1134. possibly had two of the tests under my belt by now!  Without much ado,
  1135. I was soon in the testing center, taking "Installing and supporting OS/2".
  1136.  
  1137. The certification tests are all computerized (developed as a Windows
  1138. program -- yechhh.  Why didn't they use one of the visual REXX programs?).
  1139. There were about 50 machines in the testing room attached to a server,
  1140. which in turn was connected to an external database that tracks who
  1141. has passed what tests.  When the test is completed, you are shown a
  1142. bar graph to show the score needed to pass and your score.  It then
  1143. prints out a graph of which areas were weak.
  1144.  
  1145. A passing grade for the first test was a 73%.  I got (gasp) a 70%.
  1146. Ooooooooh, dang it.  If I had gotten one more question right!  It was
  1147. a hard test.  I had several questions on OS/2 1.3 and OS/2 2.x
  1148. coexistence that I think I probably got wrong.
  1149.  
  1150. The candidates were only allowed to take one test at a time, due to the
  1151. popularity.  I had been under the impression that once you got in there,
  1152. you could test to your heart's content.  So I signed up for the next
  1153. one on the list: "Using and Customizing OS/2".
  1154.  
  1155. While I was waiting to have my name called, Michelle encouraged me to
  1156. sign up to give feedback the next day on the testing process.  A bribe
  1157. of a great t-shirt was offered to the first 100 to sign up.  It was the
  1158. OS/2 logo superimposed above the word Chicago and the Chicago skyline.
  1159. Underneath were the words: OS/2.  Been there.  Done that.  On the back
  1160. it says "Not just up and coming -- up and running!"
  1161.  
  1162. While I was playing around with that and listening for my name, Frank
  1163. McKenney cam up and introduced himself.  Frank and I have exchanged
  1164. a few messages on the OS2BBS, and that was another advantage for going,
  1165. to meet these people I have only met electronically.  Unfortunately,
  1166. at that first meeting, I was still a little shell-shocked from having
  1167. failed a test about OS/2 and probably just mumbled incoherently.  Although
  1168. at some point I was able to get a picture of him and Michelle.
  1169.  
  1170. "Using and Customizing OS/2" put me back in harmony with the world.
  1171. a 76% was needed to pass and I received an 86%.  I found out later
  1172. that some folks didn't like this one because it wanted to know, for
  1173. example, what keystrokes to use to accomplish a function.  Since my
  1174. mouse seems so far away, I've memorized most of the keystrokes to
  1175. navigate OS/2.
  1176.  
  1177.  
  1178. Fortunately I saw Frank again after that test and I was able to say
  1179. say something a little more coherent.
  1180.  
  1181. Unfortunately, the testing caused me to be a few minutes late for the
  1182. first session that I wanted to attend: "Netview DM/2 (Basic)".  Because
  1183. of my lateness and because of test-induced stress, it took me a while
  1184. to settle into what was being discussed.  I must have really been
  1185. stressed because two lines of my notes are indecipherable scrawls (of
  1186. course, my handwriting isn't the easiest to read in the best of times).
  1187.  
  1188. One of the most important things that I learned was that LAD/2 will
  1189. be distributed with LAN Netview DM/2 within the next 18 months.  LAD/2
  1190. (which I will discuss in more detail later) allows easy setup of
  1191. DM/2 distribution disks.  That's pretty exciting, considering that
  1192. LAD/2 lists for about $4000 today!
  1193.  
  1194. Netview DM/2 is supposed to check disk space before it tries to apply
  1195. new software.  I asked the presenter if it were true that if a machine
  1196. had a lockup screen displayed that it would cause a distribution to
  1197. fail on a client machine.  I had heard this from an IBMer whom I
  1198. consider a fairly reliable source.  The presenter said that she had
  1199. never heard of such a problem.  Rats.  I guess when we finally get it
  1200. we will just have to test it out.
  1201.  
  1202. Several of the audience indicated some dissatisfaction because each
  1203. one of IBM's products have a different procedure with CID, DM/2 and
  1204. response files.  The presenter said that they are encouraging all
  1205. development units -- indeed, all developers, to use a product called
  1206. Software Installer, so that they will all have a similar look and feel.
  1207. As one fellow remarked, all the capability of CID and DM/2 is great,
  1208. but you have to be a PhD to use it!
  1209.  
  1210. After this, I proceeded to "LAN Server Tips 'N' Techniques I".  This
  1211. had some very useful information.  I became a little more familiar
  1212. with local logon.  I do not have DB2/2, and so I have never needed to
  1213. worry about local logon.  In fact, we do not have local user-ids
  1214. defined on most machines here.  However, some folks, particularly
  1215. the folks in the Database Administration Group, do have DB2/2, so I
  1216. will have to get together with them to see if I can make their life
  1217. a little easier.
  1218.  
  1219. Another tip is to reduce NetBIOSRetries from the default of 8 to 1.
  1220. This saves 3.5 seconds per NetBIOS name added on each client.
  1221.  
  1222. Other tips for logging on weren't applicable to us.  One was not to
  1223. run the messenger service, but I like to use it to notify folks on the
  1224. LAN if we need to do something drastic in the middle of the day.
  1225. Another is to set multilogon to YES, but we have already made that the
  1226. default.  We can set logonwarnings to none to suppress warnings, and
  1227. we can issue the logon command with a "/r" option so that the PM
  1228. error dialog won't pop up, saying "messenger service will not start"
  1229. when someone logs on at another location.
  1230.  
  1231. Some folks have tried to create icons at our place for network resources.
  1232. The presenters recommended that if someone were doing this, they should 
  1233. make shadows, not copy.
  1234.  
  1235. About halfway through the presentation, a gentleman sitting right in
  1236. front of me made a comment to the presenter.  With a start, I turned
  1237. to the fellow to my left:
  1238.  
  1239. "Who is that?"
  1240. "I don't know.  Some IBMer."
  1241. "Isn't that Tom Gordy?"
  1242. "Yeah, they said it was Tom something."
  1243. "He's the one who developed the CNFGLS30 spreadsheet!!"
  1244. Blank look.
  1245.  
  1246. The fellow to my left was obviously unimpressed.  I, on the other hand,
  1247. was very impressed.  If I knew half of what Tom knows about LAN Server
  1248. tuning . . .
  1249.  
  1250. When time came for a break, I introduced myself to Tom.  We had exchanged
  1251. several messages on the OS2BBS and I was able to take a very unflattering
  1252. picture of him!  After it was developed, I didn't think it was too bad.
  1253.  
  1254. As I strolled down the hall, I wanted to say hi to Janet Gobeille,
  1255. whom I knew would be preparing for the Team OS/2 session that I also
  1256. wanted to attend.  However, I felt I would be doing the state more of
  1257. a service by attending the second session of the LAN Server TNT.  Janet
  1258. is also a frequent poster on the OS2BBS.  In the course of our brief
  1259. conversation, she mentioned that Jack Hiatt (another poster on the
  1260. OS2BBS, the PC BBS, and all around OS/2 guru) had been down at the
  1261. Team OS/2 room.
  1262.  
  1263. I went to the Team OS/2 room and asked if Jack Hiatt were in there.
  1264. No, someone replied, but he's standing right over there in the hall.
  1265. Remember the guy I saw at registration that had the OS/2 suspenders?
  1266. That was Jack Hiatt!  He was busy conversing with someone else at the
  1267. time, and I needed to get back for the next session.  I had already
  1268. seen Jack several times that day, so I knew I'd be able to find him
  1269. again.
  1270.  
  1271. OK, I'm back in session.  Excuse me if the following paragraphs are
  1272. somewhat disjointed, but my notes are disjointed.  If I remember
  1273. correctly, people kept asking various questions that interrupted the
  1274. flow of the presentation.
  1275.  
  1276. In the next session, someone asked about limits under LAN Server.
  1277. Apparently 16,000 users can be defined to NET.ACC.  The DCDB, however,
  1278. only replicates 1000.
  1279.  
  1280. Under LAN Server 4.0, the command line and the GUI will be able to do
  1281. the same things.  In version 3.0, some options are available only at
  1282. the command line, while other options are only available from the
  1283. Full Screen Interface (FSI).  Rexx Support will be included in the
  1284. Productivity Aids.  I'll have much more on LAN Server version 4.0 later.
  1285.  
  1286. After the session, I wandered back to get a picture of Janet for
  1287. inclusion in the newsletter, and ran into a motherlode of famous folks
  1288. from the OS2BBS: Janet, who is the driving force behind team OS/2; Bob
  1289. Holmes, a frequent poster on the OS2BBS and whom InfoWorld and PC Week
  1290. regularly quote whenever anything happens in the world of OS/2; the
  1291. aforementioned Jack Hiatt; and Hank Henderson, a displaced Missourian from
  1292. the St. Charles area, formerly in charge of the OS2BBS and currently
  1293. developing the famous World Wide Web that is the heart of the Internet
  1294. connection that will be available with OS/2 version 3.0.  I was able
  1295. to get some great pictures of these folks.
  1296.  
  1297. I had to accuse Bob Holmes of breaking my camera!  Try as I would, it would 
  1298. not take a picture of him.  I think the batteries were starting to go.  When 
  1299. the shutter finally clicked, I'm afraid it probably looked like something you 
  1300. would see in a post office or on a drivers license.  I guess I'll find out in 
  1301. a day or two when the pictures are developed.
  1302.  
  1303. I had promised Pam that I would go back to the hotel to meet her when
  1304. the meetings were over, so I did.  We went to the store following some
  1305. directions that were printed out from a kiosk.  Very easy to follow.
  1306.  
  1307. Upon our return, I went to the OS/2 awards presented by OS/2 Professional
  1308. Magazine.  There was a very nice buffet provided (I wish I had known there
  1309. were going to be eats before I purchased supper), a jazz band, and a cozy
  1310. atmosphere for 1000 people.
  1311.  
  1312. Edwin Black, the editor of OS/2 Professional, was the Master of Ceremonies.
  1313. There is a media award that they present, usually to someone in the trade
  1314. press who promotes OS/2.  In warming up to announce the winner, he stated
  1315. that this person had taken great pains to promote OS/2, had discovered it
  1316. on his own, had done so much for OS/2... Some wit piped up, "Bill Gates!"
  1317. No, it wasn't Bill Gates, but I had predicted the winner three times to
  1318. the disbelief of everyone at our table until Edwin finally confirmed --
  1319. Howard Stern.
  1320.  
  1321. The award for software marketing went to SoftTouch (Gammatech Utilities).
  1322. The Team OS/2 award went to Timothy Sipples (author of OS/2 Frequently
  1323. Asked Questions, found on all the OS/2 Bulletin Boards).  They played a
  1324. synthesized orchestral arrangement of "Concerto for OS/2" by Peter
  1325. Hayes.  It was OK, but it would have been enhanced by a multimedia
  1326. presentation, rather than just listening to the music.
  1327.  
  1328. The best hardware for OS/2 went to Parallel Storage Solutions, who make
  1329. a parallel port tape backup and using the same machine, can actually do
  1330. a first time install of OS/2.  CA-Realizer took the best development tool
  1331. award.  The best application went to Describe 5.0.  The reader's choice
  1332. award went to Lotus' Ami Pro.  The One-Up Corporation won something, but
  1333. I didn't write down which award it was.
  1334.  
  1335. One of the speakers told a story of a woman who had described her business
  1336. strategy as going from Windows to Windows NT to Windows95 and asked for
  1337. his opinion.  He said it was just like back home where they had a fellow
  1338. who was a veterinarian and taxidermist -- either way, you get your dog
  1339. back.
  1340.  
  1341. Oh gosh, this is embarrassing.  The OS/2 Professional award went to the
  1342. man who had started the OS/2 Vendor Council.  I couldn't quite make out
  1343. the name that was announced.  I believe they said it was Tony Carrera.
  1344. Tony, if you see this and I've butchered your last name -- sorry!
  1345.  
  1346. The IBM Executive Achievement Award ("sometimes known as the oxymoron
  1347. award", quipped one of the presenters) went to Lou Gerstner.
  1348.  
  1349. After the awards, prizes were given away, the most noteworthy being two
  1350. dual-pentium 90 Mhz PCs.  Alas, my name was not drawn.
  1351.  
  1352. Jim Crapenhoft had met some people who were not going to the Six Flags
  1353. night on Monday, and so they gave me their ticket to give to Pam.  However,
  1354. they were parked far, far away under the Omni.  On the way back, I tried
  1355. to take a shortcut and became somewhat bewildered.  Fortunately, I ran into
  1356. Peachtree street and was able to find my way back.  My usual fifteen minute
  1357. walk to the hotel became a thirty minute walk.
  1358.  
  1359. The worst thing about walking in downtown Atlanta is all the panhandlers.
  1360. I felt guilty for not assisting, but I was accosted about a dozen times a
  1361. day.  Finally, after three days, I learned not to look up and not to smile
  1362. in order to avoid a confrontation.
  1363.  
  1364. Monday, September 12, 1994
  1365.  
  1366. Pam had the idea of getting up early enough to go to church again this
  1367. morning.  My notes were at the bottom of the page at this point and it
  1368. looks like I said, "Pillow head back to soone cam idly west to GWCC."
  1369. Oh well, it probably makes as much sense as some of the other things I've
  1370. written.  Ten minutes later . . . Oh, I finally figured part of it out!
  1371. The pillow hurt my back so I didn't sleep well and had to get up at 6:00
  1372. am.  GWCC is the Georgia World Convention Center.  I guess I said I walked
  1373. there.  Listen -- deciphering these notes is not an easy job!
  1374.  
  1375. The first thing I did when I arrived at the Convention Center was to
  1376. "cash in" a receipt for a "fanny pack".  It could have been redeemed at
  1377. the OS/2 awards the night before, but I was in such a rush, I left it
  1378. in my hotel room (as well as my two drink tickets -- two scrawny little
  1379. glasses of soda cost $3.00!).  I thought it would come in handy at the
  1380. Six Flags night.
  1381.  
  1382. I then went to the ballroom to hear the keynote speaker, Ellen M. Hancock,
  1383. IBM Senior VP and Group Executive.  I had the best seat in the house --
  1384. next to the exit.  It wasn't that I didn't want to hear her, but the
  1385. primary reason I received approval to attend was for the certification
  1386. testing, and I wanted to be sure I could get out quickly and be in line
  1387. early.
  1388.  
  1389. The session started off in grand style, there was a short movie talking
  1390. about the future of technology, hosted by none other than Patrick
  1391. Stewart, A.K.A. Jean-Luc Picard, captain of the Enterprise in Star
  1392. Trek, the Next Generation.  At the end of the movie, he said something
  1393. to the effect, "I would now like to introduce you to someone who is
  1394. helping to pave the way to the next generation of technology:  Ellen
  1395. M. Hancock."
  1396.  
  1397. Pretty neat.
  1398.  
  1399. She began by saying that she was happy that everyone got here safely
  1400. and was not delayed in Chicago.  Her presentation was scripted in
  1401. conjunction with a multimedia presentation that would flash pertinent
  1402. information on screens in the background.  Wally Casey (I hope I spelled
  1403. his name right) demoed the Internet product that will be included in
  1404. the new version of OS/2.  I think that's really going to be a big
  1405. boost for OS/2.  In fact, one reviewer in InfoWorld or PC Week stated
  1406. that it would be a bargain just to buy OS/2 for the relatively inexpensive
  1407. Internet Connection and excellent GUI front end to the Internet.
  1408. Everyone is already making the Internet and the Information Superhighway
  1409. synonymous -- that could be a great marketing boost.  The average home
  1410. PC buyer wants to be on the Information Superhighway, but (NO, despite
  1411. my love of puns, I will NOT make one of those stupid "highway" puns)
  1412. doesn't know how to get connected.  IBM is making it very easy.
  1413.  
  1414. I was sitting on pins and needles waiting to get down to the testing
  1415. area, so I left a little early to beat the crowd.  Unfortunately, the
  1416. server had crashed the day before, so everyone who was in the testing
  1417. room at the time would get a chance to go first.  Others had skipped
  1418. the keynote address completely and had already signed up.  So I had
  1419. quite a wait before me.
  1420.  
  1421. At that particular hour, there were no conferences that would be 
  1422. particularly beneficial to me, so I decided to go down and see the
  1423. exhibits at Networld-Interop.  I was afraid that I would not be able
  1424. to make any time to see them.
  1425.  
  1426. My first stop was at the Cabletron exhibit.  They had a virtual 
  1427. reality theater.  Since I had never experienced virtual reality before,
  1428. this seemed like the perfect opportunity, particularly since it was
  1429. early in the morning and there was not much of a wait.  Our leader
  1430. told us that it was the largest virtual reality theater and that it
  1431. had been featured on CNN.  
  1432.  
  1433. The "theater" held about 20 seats.  On the back of each seat was a
  1434. helmet that had a viewing screen and speakers encased within it.
  1435. When we had all been briefed, we were instructed to put on the helmets.
  1436. The virtual reality "experience" was a trip through one of their hubs.
  1437. She had encouraged us to look up, down and to the sides, so I did.  It 
  1438. was neat, but there was a lot more virtual than reality.  When our
  1439. "trip" was over, she said that she always liked to pick the person who
  1440. was most creative in trying to view the experience.  I was the winner.
  1441. That would have been great if I had gotten a prize, or if I hadn't 
  1442. noticed that an 8 year old boy was the winner at another session.  Hey,
  1443. I was just trying to get the full experience.
  1444.  
  1445. I looked around at a few of the other exhibits, but I have to admit,
  1446. I was overwhelmed.  This country boy had never seen so many products
  1447. and vendors at one place!  I wandered around like a bumpkin in a city
  1448. for about an hour, before deciding to check on the status of the testing.
  1449.  
  1450. The server had crashed again!  So the people who had started yesterday
  1451. when the server crashed still were not finished with their tests.  They
  1452. were taking no more sign-ups for testing today.  By the time I had
  1453. gathered this information, the next session had already started.  The
  1454. one that I had penciled in was "LAN Netview Management Utilities".
  1455.  
  1456. I was not as enthused about this, because we already had the product
  1457. and it's fairly easy to use and configure.  However, when the presenter
  1458. said something about editing the user's CONFIG.SYS, my ears picked up!
  1459. We were not able to directly do this!  I asked her to elucidate, and
  1460. was disappointed to find that her solutions for doing this were no
  1461. different than ours -- either run a REXX program to update it, or
  1462. copy it to a shared drive, edit it, copy it back.
  1463.  
  1464. Something I nearly forgot about!  It's possible to create an entry
  1465. in the SYSLEVEL file for non-IBM products.  I've got to look into
  1466. this further.  Currently, in reporting files that it finds on a user's
  1467. machine, it will report the date and time.  It's up to the administrator
  1468. to know what versions those correspond to.  In the third quarter of
  1469. next year, it will apparently add a database, so that it will report
  1470. what version of software, rather than just date and time.  LMU will be 
  1471. shipped with Netview for OS/2.  Hmmm, that might change our purchasing 
  1472. plans.
  1473.  
  1474. There is supposed to be a CSD released for LMU at the end of September
  1475. that will have some enhanced functionality: User defined security by the
  1476. administrator, an Enhanced GUI -- that will allow you to save the
  1477. options you have set up.  If you want, you can add a bitmap to the
  1478. background.  I did that for our print server (added a bitmap of the
  1479. floor plan with the printer icons placed in the appropriate positions)
  1480. but boy, did it slow down that window coming up!  I finally disabled
  1481. the bitmap.  Maybe it'll return if Warp brings it up faster.
  1482.  
  1483. Let's see, there is also supposed to be new hardware supported by the
  1484. Vital Product Data, the number of characters to alert Netview has been
  1485. increased from 44 to 100.  The scheduler is now multi-threaded.
  1486.  
  1487. At noon, I went to check the testing situation again.  The server 
  1488. still was not up.  Since my pace had been slowed down, it seemed like 
  1489. a good time to grab something to eat.  I'm trying to fill my eyes and 
  1490. brain with everything that is available here, so filling my stomach 
  1491. takes on less importance.  I certainly don't want to waste the time to 
  1492. go off-site to find a place to eat, but the prices are exorbitant here!  
  1493. $7.00 for a personal pan pizza and a soda!  And the state only allows 
  1494. $15.00 per day for meals.
  1495.  
  1496. As I was strolling down the hall, I came upon Michelle Wilson, who was
  1497. speaking to someone from the One Up Corporation.  I busted in on the
  1498. conversation and we discussed the Smart program.  I recognized him as 
  1499. being one of the winners of the Lotus SmartSuite on Sunday night.  He 
  1500. said he had given it away to someone else sitting at his table.  Dang.  
  1501. I should have sat there!  Not only that, but the lady sitting next to 
  1502. him was the winner of one of the Pentiums!  That's where I should
  1503. have been sitting!
  1504.  
  1505. My next appointment was one for which I had volunteered.  The folks
  1506. in charge of the testing wanted some feedback on the tests.  Well, I
  1507. always like to get in my 2¢ worth, so I was ready.  I was a little
  1508. disgruntled with the tests, primarily because of the situation with
  1509. the servers, which I knew was beyond their control, and because I was
  1510. still shocked that I had failed any sort of test about OS/2!
  1511.  
  1512. If I was disgruntled, the other folks in my group were downright steamed!
  1513. As I've mentioned, the tests are geared towards what is being taught
  1514. by Drake.  Come to find out, I was not the only one who failed.  A
  1515. large number of people were failing.  Opinions were along the same line --
  1516. it's a trivia contest; it should be open book; it should test real-world
  1517. knowledge, not book-l'arnin'; it should test knowing where to go for
  1518. answers.  Everyone was ripping the test.  
  1519.  
  1520. As I heard their arguments, however, I think they were like me -- 
  1521. shocked at having failed any test about OS/2.  The fact of the matter 
  1522. is, I didn't think the tests were that bad.  The certification tests 
  1523. are there to ensure that there is some sort of standard.  If someone 
  1524. is weak in a particular area because of lack of experience or 
  1525. knowledge, it needs to be exposed.  I, for example, did not know the 
  1526. best configuration for OS/2 1.3 and OS/2 2.x.  There are some folks, I 
  1527. guess, for whom that is a concern, so it's good that this area of
  1528. weakness was exposed.
  1529.  
  1530. On the other hand, I'm pretty fortunate.  I can sit down and read
  1531. something like the class notes, and remember a good chunk of what I read after
  1532. one sitting -- and it will last for a fairly long period of time.  My
  1533. wife is always amazed at how quickly I can learn something for a class.
  1534. On the other hand, there is a penalty for the peculiar type of memory 
  1535. I have -- "Where did I put those keys?"  "What was that name?"  "I was
  1536. supposed to stop by the store!?"  She's pretty amazed by that, too!
  1537.  
  1538. After our feedback session, I approached one of the IBMers and told
  1539. him that I was really distraught.  I had received permission to come
  1540. to this because of the testing offered, and now I was unable to take
  1541. the tests, because of the hardware failures!  He escorted me back to
  1542. the testing room, found me a seat, and told me to go ahead and take
  1543. as many tests as I could.
  1544.  
  1545. Weeeellllll, all right!  I took Advanced OS/2 Support, OS/2 Performance
  1546. and Tuning, and OS/2 LAN Administration I.  I passed Advanced Support.
  1547. 72% was needed to pass.  That's what I got.  I received a 63% on
  1548. Performance and Tuning (needed a 73%) and a 57% on LAN Administration
  1549. (needed a 69%).
  1550.  
  1551. I was discouraged.  Nearly half the time was gone for the week.  I had
  1552. wanted to take a total of 9 tests to become an OS/2 Engineer and a
  1553. LAN Server Engineer.  At this point, I had passed only 2 tests!  Had
  1554. I known in advance how difficult it was going to be, I would have
  1555. changed my strategy and studied before attempting the tests.
  1556.  
  1557. Because of my extended testing, I was unable to get back to the hotel
  1558. at the time I promised Pam, so I called her and told her I would meet
  1559. her as she walked toward the Convention Center.
  1560.  
  1561. After we met, we proceeded to the area near the Georgia Dome where the
  1562. busses were loading.  There was a surprisingly small crowd that went
  1563. to Six Flags.  I saw Jim Crapenhoft and David Moskowicz, but that was
  1564. about it.  Bob Holmes told me the next day that he had seen me there,
  1565. but I had not spotted him.  Of course, I was really impressed by the
  1566. film stars I met there!  That Bugs Bunny -- what an actor!  And the
  1567. angst shown by Wile E. Coyote -- Tim Robbins would be envious!
  1568.  
  1569. The food provided was excellent!  We were talking to some of the 
  1570. employees who asked it how it was, for Six Flags itself provided the
  1571. buffet, whereas usually they had it catered in.  The deserts were
  1572. fantastic.  My favorites were the petite-fours and the little
  1573. cream puffs.
  1574.  
  1575. Pam is a roller-coaster fanatic, and I am roller-coaster frantic!  The
  1576. last time I rode a roller-coaster, I was so scared I used language I
  1577. didn't know I knew.  So, despite her pleading, we rode no rides together.
  1578. She did ride something.  I think it was called "The Wheel".  If it had
  1579. been warmer, we would have done Thunder River.  I like the water rides.
  1580. Because we're primarily soft drinkers, we gave our drink tickets to
  1581. some folks who were brave enough to get soaked riding Thunder River in
  1582. the cool evening.
  1583.  
  1584. There was a pretty silly skit about "Bad Bob" returning to kill the
  1585. sheriff.  My favorite line occurred after Bad Bob spit about 15 feet
  1586. into a spittoon.  The sheriff commented that that was pretty good.  Bob
  1587. replied, "I was a member of the Salivation Army."  OK, I'm a sucker
  1588. for a good pun.  If that's not an oxymoron.
  1589.  
  1590. Since I was sitting in the front row, Bad Bob threatened to shoot
  1591. me.  With my shaved head and beard, I suppose I did have unique
  1592. features which qualified me as a victim.  Now that Fall is here,
  1593. however, I'm letting my fringe return to keep my head at least
  1594. slightly warm.
  1595.  
  1596. The skit was followed by more drawings.  I didn't win anything, but
  1597. neither did Melissa Driver.  Why do I remember that name?  You had
  1598. to be present to win.  Her name was drawn.  She wasn't there.  The
  1599. prize?  Another dual 90 Mhz Pentium.
  1600.  
  1601. We left shortly after the drawing.  I was worn out.
  1602.  
  1603. Tuesday, September 13, 1994
  1604.  
  1605. I got up early so that I could be in the front of the line for testing.
  1606. My morning was pretty straight forward.  After signing up, I went to
  1607. Study Hall to bone up on the Installing Manual.  After only 10 minutes,
  1608. I was called up.  I had barely cracked the notes, but I guess it was
  1609. sufficient.  A 73% was needed and I received a 75%.
  1610.  
  1611. I signed up again and studied for the Performance and Tuning test.  The 
  1612. line had grown, so I had better than an hour to study.  Unfortunately,
  1613. that was a pretty popular manual, so I only got to look at it for about
  1614. half an hour.  The results were exactly the same as the Installing.
  1615.  
  1616. I signed up again for the LAN Server Administration.  Again, I had better
  1617. than an hour to study.  The primary reason I had more time was because the
  1618. server crashed again.  Nothing too serious -- someone tripped
  1619. over the cord and unplugged it!  Since more people were going for OS/2 Engineer
  1620. certification, I had full access to the manual.  A 69% was needed and I
  1621. received a 78%.
  1622.  
  1623. I finished all of these tests a little after 1:00 pm.  Official pins
  1624. had just come in, so I was able to walk away with two pins classifying
  1625. me as a certified OS/2 Engineer and a certified LAN Administrator.  I
  1626. took 8 tests, 3 of which I would not have been able to pass without
  1627. access to the training manuals.  Tests are $100 each, and classes are
  1628. nearly $1000.  I had the manual for one of the tests back at work, so
  1629. I figure it would have cost $2800 to accomplish the same thing in
  1630. Kansas City, not counting meals, transportation and hotel bills.  The
  1631. entire trip to Atlanta, including everything. was about $2000.  So I
  1632. figure this saved the state about $2000.  It would have been more if
  1633. I had not made some bad judgments.  I shouldn't have rented a car in
  1634. Atlanta, and rather than driving my car to the airport and paying
  1635. parking, I should have taken Tiger Express, which costs about $25.
  1636. That would have shaved about another $350 off of the cost.  That's 
  1637. what I'll do the next time!
  1638.  
  1639. I could have taken some more tests to prepare for the LAN Server
  1640. Engineer, but there just was not enough time to complete the
  1641. certification before it would be necessary to leave.  In addition,
  1642. I was pretty stressed out by this time.  Pam was getting tired of
  1643. me coming to the hotel and worrying about those tests!  So, I
  1644. decided for the remaining 24 hours I would go to conferences and
  1645. exhibits!
  1646.  
  1647. There was a little area cordoned off for folks attending the Update
  1648. to relax and smoke.  While I was relaxing during the lunch break,
  1649. I struck up a conversation with a fellow from Germany.  IBM was
  1650. going to have something similar over there, but it was 2000 marks
  1651. more.  Since he worked for Lufthansa (I think that's how it's spelled),
  1652. it was cheaper for him to fly over here.
  1653.  
  1654. I knew that OS/2 was popular over there, because there is a lot of
  1655. shareware that I've seen that's come from there. ZOC and SCHEDULE
  1656. come to mind, and I think ZIPME.  He said that IBM has struck a deal
  1657. with a company similar to our Packard-Bell to preload OS/2.  I wish
  1658. they could strike a deal like that with Packard-Bell here!
  1659.  
  1660. After I left there, I finally ran into Hank Henderson again.  I had
  1661. hoped to see him at Six Flags, but he was at a Spencer F. Katt party.
  1662. Drat, I had hoped to get wind of a Spencer party, just to say that I
  1663. had been there.  Oh well.  I scribbled in that I also got to see
  1664. Jack Hiatt and Bob Holmes again.  I've been seeing Frank McKenney
  1665. all over this place!
  1666.  
  1667. Speaking of the Katt, this might be a good time to spread my own
  1668. rumors.  Let's see... I've heard that the Katt himself is really
  1669. himselves.  A group of 5 or 6 writers handle the gossip duties, one
  1670. of whom is Jim Seymour.  There is talk that a new national LAN
  1671. Systems User Group may be forming that will be able to have input
  1672. to IBM similar to GUIDE or SHARE.  The OS2BBS could be undergoing
  1673. a change in management and saying bye-bye to BEST.  And when OS/2
  1674. version 3.0 is announced in October, a certain captain with a pate
  1675. similar to my own will be making an appearance.  Make it so.
  1676.  
  1677. I felt better about failing tests after talking to Jack Hiatt.  As
  1678. I've mentioned before, Jack is a general all-around OS/2 guru who
  1679. answers many questions on the OS2BBS and the PCC BBS.  One particular
  1680. test, he needed a 72%.  He got a 69%.  Took it again.  69%.  Took it
  1681. again.  69%.  Took it again.  67%.  I'm not lying when I say you have
  1682. to know your stuff in all areas.  Those tests are hard.
  1683.  
  1684. I went down to the Networld-Interop exhibitions and wandered over
  1685. to the IBM exhibit.  They were just getting ready to do a demo of
  1686. LAN Server 4.0, so I grabbed a chair and a PC and prepared to see
  1687. what it would do.  The presentation only lasted half an hour, but
  1688. it was enough to knock my socks off!  Instead of a Public Application
  1689. folder, there is now a Network Application folder, which will handle
  1690. DOS, OS/2 and Windows Applications.  The Domain Icon looks like a
  1691. little castle.  Users, Groups, Network Applications and other
  1692. resources can all be created using Drag and Drop.  Talk about EASY!
  1693. Icons can be associated with a particular Network Application.
  1694. Almost anything that can be done on the screen can be done at the
  1695. command line, and anything that you can do on the command line can
  1696. be done on screen.  This was not the case with LAN Server 3.0.  Some
  1697. options could only be done from the command line, and others could
  1698. only be done from the Full Screen Interface.  In addition, there is
  1699. a NETGUI for DOS, that comes up with a very attractive GUI for the
  1700. DOS interface.  It received Best of Show.  I was knocked out.  We
  1701. have already started rolling out 115 LANs for our MACSS project, but
  1702. I would really, really like to be shipping out 4.0 rather than 3.0.
  1703. On a scale of 1 to 10 for ease of administration, I'd give Netware a
  1704. 1, LAN Server 3.0 a 2, and LAN Server 4.0 a 9!  WOW!
  1705.  
  1706. I hurried from the exhibit hall back upstairs to the conference.  I
  1707. rushed into LAD/2.  There was a lot to like about LAD/2.  Earlier
  1708. I had commented that one person had said a person needed to be a
  1709. PhD to do CID.  LAD/2 eases the CID process, as well as DM/2.  It's
  1710. possible to contract with IBM to install and train LAD/2.  It will
  1711. automatically generate response files for various CID enabled
  1712. products.  It will generate the CID CMD file, it can customize
  1713. desktops.
  1714.  
  1715. My concern is that when an update comes out for a product, LAD/2 has
  1716. to be updated.  They responded that they usually came out with updates
  1717. for LAD/2 about a month after a product was released.  They are
  1718. encouraging IBM and Independent Vendors to use Software Installer so
  1719. that there is a common look and feel for installation for all products.
  1720. During the first year, the upgrades for LAD/2 are free, then it starts
  1721. to cost to upgrade.  LAD/2 is $4995 per server.  Cough Cough.  Whoops,
  1722. I misread a flier.  They had the cost for installing with LAD/2 as
  1723. $695, but they were talking about people hours, compared to trying to
  1724. set up CID or DM/2 by hand.  LAD/2 is supposed to be included with
  1725. DM/2 in about 18 months.  Drat, we're going to be getting DM/2 pretty
  1726. quickly.  To get LAD/2 now or not to get LAD/2 now, that is the
  1727. question.  Whether 'tis nobler to face the slings and arrows of setting
  1728. up DM/2 or to use LAD/2 must give us pause.
  1729.  
  1730. After the LAD/2 presentation, the day was officially over.  All that
  1731. remained was the Birds of a Feather sessions.  I went down to check
  1732. it out.  Hank was going to do a presentation on the World Wide Web,
  1733. but because of technical problems that he had been battling all week,
  1734. he was not going to be able to do a live demo.  I felt like a deserter,
  1735. but I was just so tired, I did not attend, but headed for the hotel.
  1736.  
  1737. Unfortunately, when I got to the hotel, I found there was no rest for
  1738. the wicked.  Pam wanted to go to the "Underground".  Someone had
  1739. mentioned on the OS2BBS that it was one of the places to go.  It was
  1740. interesting, in that there was a streetlamp there with a hole in it,
  1741. caused by a civil war cannonball.  There were a lot of little shops.
  1742. We ate at a fish place there, bought a few souvenirs from the Coke
  1743. plant across the street, and rode the MARTA back to our hotel.
  1744.  
  1745. Wednesday, September 14, 1994
  1746.  
  1747. I had packed my bags the night before, so I took everything but one
  1748. bag to the car.  I also took the car keys, so Pam had to check the
  1749. one bag at the front desk, since we had to be out by 11:00 a.m.  In
  1750. retrospect, I wish I had spent another night so that I wouldn't
  1751. have been so rushed on the last day of the conference and I possibly
  1752. would have had a chance to see a little bit more of Atlanta.
  1753.  
  1754. I went back to the convention center, and as my first stop, I returned
  1755. an evaluation form.  They were bribing folks to return them by
  1756. offering a commemorative t-shirt.  It worked.  I returned mine!  While
  1757. I was standing in line, I heard something of a tip.  Someone was saying
  1758. that if he gets hung up and can't CTRL+ALT+DEL, he'll do a 
  1759. CTRL+ALT+NUMLOCK+NUMLOCK.  When it prompts for the Dump diskette, he'll
  1760. do a CTRL+ALT+DEL.  It still leaves the disk dirty, but it saves the
  1761. power hit.
  1762.  
  1763. After waffling among "Customizing and Using the WorkPlace Shell", "LAN
  1764. Distance", and "Lotus OS/2 Development Directions" I finally decided
  1765. to go to the "LAN Server Administration Hands On Lab".  I was
  1766. disappointed.  I picked up a few more things which I'll discuss
  1767. shortly, but the technical knowledge of the presenter was minimal.  I
  1768. think I had more information imparted in the half hour I spent at the
  1769. exhibit than in the hour and fifteen minutes spent in the lab.
  1770. Unfortunately, I didn't have an evaluation form.
  1771.  
  1772. They were also very paranoid.  I wanted to check out the new configuration 
  1773. tool that is included in LAN Server 4.0.  As soon as I brought it up,
  1774. someone came running up to dissuade me from looking at it, since it
  1775. was partially disabled.  Well heck, can't I even get an idea of what
  1776. it'll look like?
  1777.  
  1778. One tool that I learned about was that in the new version there will
  1779. be a productivity aid that will let you convert the DCDB to a DB2/2
  1780. database, make changes from the DB2/2 database, and import it back
  1781. to the DCDB.  I'm not exactly sure of the advantage of this, unless
  1782. there is something that could be done programmatically against the
  1783. database easier than using the other tools provided.
  1784.  
  1785. I also found out that the Chess game can be played across the network.
  1786. It's too bad I don't care for chess.  How about a scrabble game?
  1787.  
  1788. Something else that I saw (totally unrelated), was that when they
  1789. were at an OS/2 prompt, they'd issue "START EPM", so that they would
  1790. still have the command prompt.  Now I knew you could do that, and I
  1791. had seen someone else doing it recently, but it's just not a habit I
  1792. had formed until after this trip.
  1793.  
  1794. On the whole, I was really disappointed with this session.  Perhaps I
  1795. would not have been if I had not seen the exhibit.
  1796.  
  1797. While I was taking a break, someone came up to me and saw my certification
  1798. pins, which I had proudly attached to my shirt.  "I have new respect
  1799. for you," he said.  "I've had to take one test three times now."  I'll
  1800. admit: I puffed up.
  1801.  
  1802. My next session was "Avoiding Common Problems and Problem 
  1803. Determination with CM/2".  It was awfully informative, but I was
  1804. freezing to death.  Everything has been cold in here.  Before I left,
  1805. I wanted to pack a Mid-Missouri OS/2 User Group sweatshirt.  It is the
  1806. coolest OS/2 sweatshirt I've seen, custom made for us.  The OS/2 logo
  1807. is airbrushed on the front, with 2.1 airbrushed underneath.  On the
  1808. back is the name of our user group done in green with black shading.
  1809. I like showing it off, but I figured, "A sweatshirt, in Atlanta?  No
  1810. way!"  In the Conference Center it felt more like Alaska than Atlanta.
  1811.  
  1812. Back to CM/2.  I've written and re-written this trying to make it
  1813. interesting.  But I can't.  This stuff is dry, I'm just going to
  1814. list every sentence in my notes.  That way, if you're not interested,
  1815. you can just skip over the list.
  1816.  
  1817. With VTAM 4.2, it is possible to do asynch dial-in with CM/2 version 1.11.
  1818. The Message Reference and Problem Determination Guide are not installed by 
  1819. default.
  1820. If the wrong Token-Ring address is given, check the Message Log Formatter.
  1821. Whenever you go into the Message Log Formatter, there is always an ominous
  1822. message: "Warning -- Data May be Lost".  I've never lost any data, but
  1823. I always figured it was a matter of time.  I was relieved to find out
  1824. that message is absolutely meaningless and they want to get it removed.
  1825. If Alert=Yes in the Message Formatter, there will always be a dump.
  1826. The Message Console is like the Netview console.  It is sometimes 
  1827. useful for CMVERIFY, to ensure everything is going OK.
  1828. Routing alerts, refer to chart.
  1829. PMDSPLAY displays the active configuration.  Oh, Oh.  Bad handwriting.  It
  1830. either says "Display will slow everything" or "Display will show
  1831. everything".
  1832. Useful for testing command line utils.
  1833. CMEMUL is on the Productivity Aids Diskette and will start and stop 3270
  1834. and 5250 sessions.
  1835. ACSTRACE starts trace services.
  1836. CMPD gets everything to send to support.
  1837. ACS2501 error usually means to check the Logical Links display.
  1838.  
  1839. Whew, wasn't that interesting?  If you're not into CM/2 -- WAKE UP!!
  1840.  
  1841. After that class, it was time to break until 1:00 pm.  At 1:00 pm, there
  1842. was only one conference that looked interesting: The Lotus Smart Suite
  1843. for OS/2.  Since Pam had been booted from the hotel at 11:00 a.m. (and
  1844. stay out!!), I had made arrangements with someone who was not able 
  1845. to come to the conference at all today to leave me her badge last night.
  1846. That way Pam could be admitted to see all of the Networld-Interop exhibits.
  1847.  
  1848. The identification cards were really neat.  They all looked something
  1849. like a credit card, so if vendors wanted to put you on their mailing
  1850. list, they just ran it through a scanner or made an impression.
  1851.  
  1852. Much easier than business cards.  We threatened our benefactor by telling
  1853. her that Pam was going to go from booth to booth letting vendors run
  1854. her badge!  By November she would be flooded with junk mail!
  1855.  
  1856. At this point, my notes stopped.  So everything from this point on is
  1857. strictly from memory.  So anyway, I told Lou Gerstner, "Lou, I don't 
  1858. care how much you offer me, I like working for the state."  Oh, oh!  
  1859. I could get into trouble relying on my memory.
  1860.  
  1861. As I mentioned earlier, there were so many exhibits, it was overwhelming.
  1862. Pam wanted to stop at almost every exhibit, and I wanted to hurry on to
  1863. see the exhibits I had not yet seen.  Somewhere there was an exhibit
  1864. with folks dressed up like Star Trek characters.  I never did find it.
  1865.  
  1866. We stopped longest at the Lotus booth.  We decided to see the Lotus
  1867. Organizer presentation, although we accidently sat down at first in
  1868. the section that was demonstrating Notes Express.  I wish in retrospect
  1869. that we had stayed there.  Not only because they were giving away a
  1870. copy of Notes Express to everyone who sat through the demo, but
  1871. because it was over about 10 minutes before our presentation and
  1872. was probably more interesting.  Oh well.
  1873.  
  1874. Shortly after that, it was time to head for the airport.  We arrived
  1875. in plenty of time, returned the rental car with no problem, although
  1876. there was quite a line of returning cars, and flew out on time.
  1877.  
  1878. We arrived at KCI at about 7:30 p.m., and made it back to Jefferson
  1879. City about midnight.
  1880.  
  1881. All in all, a successful, informative and tiring trip!
  1882.  
  1883. Next MMOUG Meeting
  1884.  
  1885. Next month's MMOUG meeting will be held in Columbia on Wednesday, 
  1886. October 19, 4 pm at:
  1887.  
  1888. Boone County Electrical Cooperative
  1889. 1414 Range Line
  1890. Columbia, MO 65101
  1891.  
  1892. From Jefferson City:
  1893.  
  1894. Take Highway 63 North to Interstate 70.  Go West on I-70 to the 
  1895. Range Line Exit.  Go South on Range Line less than a block.  Boone
  1896. County Electrical Cooperative is the first building past the
  1897. restaurant.
  1898.  
  1899.                                                    N
  1900.                               I-70              W--|--E
  1901.  __________________________________________________S_________________
  1902. |P                                     |R                          H|
  1903. |R       Boone Co.  Electical Coop.  X |A                          W|
  1904. |O                                     |N                          Y|
  1905. |V                                     |G                           |
  1906. |I                                     |E                          6|
  1907. |D                                     |                           3|
  1908. |E                                     |L                           |
  1909. |N                                     |I                           |
  1910. |C                                     |N                           |
  1911. |E                                     |E                           |
  1912.  
  1913. We will have a representative from Describe show us the latest and
  1914. greatest from version 5.0 of their award-winning word processor.
  1915.  
  1916. Annual membership fee for the Mid Missouri OS/2 Users Group is $30.00 US.  
  1917. Purchase Orders are accepted.  Please make your check payable to MMOUG and mail to:
  1918. MMOUG, P.O. Box 30654, Columbia, MO.  65205-0645
  1919. Thank you for your support.
  1920.  
  1921. The Mid-Missouri OS/2 Users Group is a non-profit corporation who's dedicated purpose is to aid and
  1922. facilitate the education and communication between individual computer users, different computer 
  1923. groups, and the general public.
  1924.  
  1925. The Woodmeister BBS is the official Bulletin Board of the MMOUG.  A copy of the Bylaws is
  1926. available for downloading from the Woodmeister BBS (314-446-0016).
  1927.  
  1928. For assistance with OS/2, call our Voice Mail at 314-636-0805.
  1929.