home *** CD-ROM | disk | FTP | other *** search
/ Big Blue Disk 23 / bbd23.zip / DESK.TXT < prev    next >
Text File  |  1988-06-21  |  7KB  |  102 lines

  1. |D╔══════════════════════╗════════════════════════════════════════════════════════
  2. |D║ |5On the Editor's Desk |D║════════════════════════════════════════════════════════
  3. |D╚══════════════════════╝════════════════════════════════════════════════════════
  4.  
  5. ^C^1On the Editor's Desk
  6. ^Cby
  7. ^CDaniel Tobias
  8.  
  9.    In this column, I give news and reviews of products and developments that
  10. have reached my desk.
  11.  
  12.    In a few earlier columns, I have mentioned Ted Nelson and his visionary
  13. Xanadu project.  Now, it looks like a version of this system may actually come
  14. out as a product in the near future: a company called Autodesk, Inc. has just
  15. purchased an 80% interest in the Xanadu Operating Co., which is presently
  16. readying a commercial version of this hypertext-based system.  Xanadu is
  17. basically a system for storing massive quantities of documents (letters, books,
  18. program code, etc.), and allowing interlinkings to be made between any part of
  19. any document.  Documents can also be created that contain "windows" quoting
  20. parts, large or small, from previously-created documents.  This can be used, for
  21. instance, to produce a new version of a document without erasing the old
  22. version; the new version would "window" to all unchanged portions of the old,
  23. and this unchanged text would hence only have to be stored once, saving disk
  24. space.  Anthologies can be made of previously-stored material by simply linking
  25. to the desired portions, adding whatever new introductory or transitional text
  26. is desired.  The whole process can be made transparent to the user, who can read
  27. through a document without regard to the origins of the separate parts (unless
  28. he's curious, in which case he can press a key to see the original context of
  29. any "quoted" material, then press another key to get right back where he was in
  30. the original document).
  31.  
  32.    Nelson has dreams of turning this system into a publicly-accessible network
  33. that would ultimately replace the printed word as the major repository of human
  34. knowledge.  This is still the ultimate plan for the project.  However, it is
  35. being initially marketed in its narrower application as strictly a system for
  36. office automation, which would be licenced to various corporations for use in
  37. their inhouse systems.  There, Xanadu would have many obvious applications in
  38. handling the office tasks normally performed using reams of paperwork.  For
  39. instance, memos can be sent electronically with linkages to earlier memos and
  40. other documents to which they refer.  This office version of Xanadu is expected
  41. to be released sometime next year.
  42.  
  43.    Should Xanadu catch on in the office environment, the project will gain much
  44. respectability and money that can be used to launch the global network Ted
  45. Nelson has been dreaming of for all these years.  I hope it does; I can't wait
  46. to see it.
  47.  
  48.  
  49.    Another company to watch:  Activision, which was started as a video game
  50. cartridge manufacturer and later expanded to entertainment software for
  51. personal computers, is now diversifying to include productivity-oriented
  52. software products as well.  To reflect this change, they're renaming themselves
  53. "Mediagenic."  The Activision name will still be used as a trademark on their
  54. entertainment products.  Mediagenic has recently pulled itself out of a rut they
  55. were in following the collapse of the video game craze, and are showing profits
  56. again.  They have acquired several other software companies, including Infocom,
  57. makers of some of the best interactive fiction products around.  With all these
  58. acquisitions, they have some very talented programming staff working for them.
  59. With a new name dispelling their "game" image, it will be interesting to see if
  60. Mediagenic can make it in the productivity arena in addition to their successes
  61. in entertainment software.  They certainly seem to be a company to watch.
  62.  
  63.    One productivity-oriented program I hope they decide to market is
  64. Cornerstone, a database program released a few years ago by Infocom.  It flopped
  65. in the market, mostly because Infocom had no experience marketing non-game
  66. programs, and their name was mostly associated with adventure games.  (Actually,
  67. writing adventure parsers has much in common with devising database query
  68. handlers.)  I haven't seen a copy of Cornerstone (they're not presently giving
  69. review copies, since they're officially not marketing it anymore), but everyone
  70. I speak to who's heard of it at all thinks it's very well done.  I've run a demo
  71. of it, and its features seem impressive for such a low-priced package.  (The
  72. demo itself is rather slow and tedious, but that's the fault of the demo
  73. presentation, which doesn't actually use the Cornerstone program itself.)  It's
  74. a full relational database, letting you link different data files together in
  75. various ways, like to link the people in your personal address book to the
  76. companies they work for in a database of companies, and to link your personal
  77. notes on the outcome of phone calls to both the person called and the company
  78. represented.  I suppose Xanadu (mentioned above) will let you do all that stuff
  79. and more, but Cornerstone is available now at low cost for the PC.  You can buy
  80. it from Infocom, but they're not making any effort at all to sell it.  I hope
  81. that Mediagenic picks it up and re-releases it under the umbrella of their
  82. productivity software division.  It could be a real hot product if marketed
  83. right.  (Write to Infocom, 125 Cambridge Park Drive, Cambridge, MA 02140 or call
  84. them at (617) 576-3190, to request more information about this product.)
  85.  
  86.  
  87.    Update department:  Last month, I reported a few bugs in the script language
  88. of Procomm+ from Datastorm Technologies.  Here's another.  I used the following
  89. sequence of commands in a script file:
  90.  
  91.            dos "if exist cis.obk del cis.obk"
  92.            dos "if exist cis.out rename cis.out cis.obk"
  93.  
  94. What they should do is call DOS twice, first to delete any file named CIS.OBK
  95. that may exist, then second to rename the current CIS.OUT to CIS.OBK.  What it
  96. actually does is to ignore the first line entirely, then fail at the second
  97. command because CIS.OBK exists, and you can't rename a file to a duplicate name.
  98. The funny part is that sometimes this sequence of commands works fine, but other
  99. times, when I've made some trivial change at a completely different part of the
  100. script, it fails.  I can't find any rhyme or reason.  Can somebody at Datastorm
  101. explain this one?
  102.