home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / SIMTEL / CPMUG / CPMUG080.ARK / ABSTRACT.080 < prev    next >
Text File  |  1984-04-29  |  5KB  |  114 lines

  1. The programs on volume 80 were contributed by:
  2.  
  3.     David E. Trachtenbarg
  4.         120 W. Arcadia
  5.         Peoria, IL  61604
  6.         309 688-9742
  7.  
  8. Here are a few comments extracted from his very complete
  9. submittal forms:
  10.  
  11. * They all require Cromemco 32K Structured Basic
  12.  
  13. * Most have hardware dependency on a Hazeltine 1500 terminal.
  14. The statistical programs have optional plotting routines that
  15. require a dot matrix printer.
  16.         ---------------
  17. The remaining is directly from the author:
  18.  
  19. This disk contains a set of programs that I wish to donate to
  20. the CPMUG for noncommercial use.  Most of the  programs are
  21. entirely original programs that I wrote from scratch.  Others
  22. are based on algorithms that have been described by others. 
  23. None have been published as Structured Basic programs before to
  24. my knowledge. 
  25.  
  26.   Although all of the programs work, some still have minor bugs
  27. in them that I know about.  All of the programs could be
  28. improved upon.  I considered waiting until all of the programs
  29. were in the best possible condition before sending them into
  30. the CPMUG. However, if I did that I never would get around to
  31. submitting any programs.  Therefore, I have sent in this set as
  32. is.  Perhaps in the future newer better verions will be
  33. included on this disk.
  34.  
  35.   Files SMENU.STB, SPELL.STB, CEDIT.STB, DEDIT.STB, CHECK.DAT,
  36. TRANSFER.STB, DICTION.DAT and WORDLIST.TXT are all parts of a
  37. spelling checking program.  The program was written before the
  38. commercial spelling checkers were first marketed.  Unlike the
  39. commercial checkers it is very slow since each word is  checked
  40. in a ISAM dictionary file.  Also unlike other spelling checkers
  41. it costs less than ten dollars.
  42.   A text file containing a short list of common words is also
  43. included. The program will scan a text file and place all of
  44. the words not in the dictionary in another file to be checked. 
  45. After all of the words in the check file have been reviewed
  46. they may be added to the dictionary.  The writer must use an
  47. editor to correct any misspelled words.  Some other limitations
  48. of the program are that words longer than 15 characters are
  49. automatically put in the check file since the dictionary won't
  50. store them properly and that proper nouns may be stored in the
  51. dictionary capitalized, but the spelling checker does not check
  52. the text for capitalization.
  53.  
  54.  
  55.   DATE.STB, MMENU.STB, REC-EDIT.STB, REC-PRN.STB, ZIPSORT.STB
  56. and BACKUP.STB are all parts of a mailing list program.  It
  57. allows names to be entered, modified and deleted.  Printouts
  58. may be made of all the entered data, mailing labels sorted by
  59. zip code or alphabetically and in a membership list format. 
  60. The program should be easy to customize.
  61.  
  62.  
  63.   CONV-ASC.STB and CONV-BAS.STB were written to help convert
  64. Microsoft and C-Basic programs into structured BASIC programs.
  65. I have used them to help convert most of the CPMUG games. Some
  66. limitations are that String functions and disk I/O usually
  67. still need additional work.  Also C-Basic programs that do not
  68. have sequential line number or line numbers that are too close
  69. together will not convert.  I found that about 2/3 of the
  70. programs will run properly after being "put through" the
  71. conversion programs and the others require some additional
  72. modification.
  73.  
  74.  
  75.   STAT.STB, X2.STB and SPEAR.STB are all statistics programs
  76. using standard algorithms.
  77.  
  78.  
  79.   TREK.STB and TRK-HELP.STB are part of a new Startrek program
  80. that I wrote that is based on every other Startrek program that
  81. I have ever used.
  82.  
  83.  
  84.   GRADER.STB uses the algorithm published by Donald Goodman and
  85. Sandra Schwab published in Creative Computing to calculate the
  86. Fog Index and the Flesch readability scale.  The program itself
  87. has been rewritten to operate on text files rather than having
  88. someone type in text manually in a special format.
  89.  
  90.  
  91.   SORTS.STB was inspired the the 2 part article in August and
  92. September 1981 Interface Age by Gene cotton comparing different
  93. sorting routines.  It lets the users compare different standard
  94. sorting routines done on an array of random numbers.  The
  95. procedures may also be used in other programs.
  96.  
  97.  
  98.   UTILITY.STB is a program that will "strip" the line numbers
  99. off of a Cromemco Basic program and latter add them again.  I
  100. have found it useful to use in combination with a text editor
  101. if blocks of a program need to be rearranged.  Unfortunately it
  102. does not take GOTOs into account.  If you need to alter a
  103. program that uses GOTOs I would suggest using labels instead of
  104. numbers.
  105.  
  106.  
  107.   TRADE.STB is a Structured Basic version of an old CPMUG game
  108. from volume 21. The game has been rewritten to follow a
  109. structured format.  There is not one Goto in the entire
  110. program!
  111.  
  112.  
  113.   PRN-TEST.STB is a simple printer testing program.
  114.