home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / cpm / zcprnews / z-news.804 < prev    next >
Text File  |  1994-07-13  |  12KB  |  192 lines

  1. EI                            Z-NEWS 804                     14 September 1987
  2. ==============================================================================
  3. Of  Significance.  "Big news for the brave few of you who started  this  whole 
  4. thing."   MicroPro  ships  WordStar, CP/M Edition, Release 4.   Echelon  is  a 
  5. dealer for this outstanding product.  Only 50k-byte TPA, user program  memory, 
  6. required for full functionality.  (At 49k you lose mergeprint capability,  but 
  7. all  other  features are still available including math and macros.)   Can  be 
  8. installed both as a standard CP/M program that knows user areas and as a ZCPR3 
  9. shell  that uses the environmental descriptor to know not only user areas  but 
  10. named  directories and paths, and executes all the Z-System commands from  its 
  11. "R" command.  If you don't presently own WordStar here's your chance to become 
  12. a  registered  user for special price of $195; that's $100 less  than  retail.
  13. WordStar, it's Item 68 on our Price List.  Order today with your credit  card.
  14. We handle just about any CP/M disk format.  Try us!
  15.      "You, the CP/M user, are a significant part of our heritage and  success.
  16. You represent our roots in word processing software, and without you, we would 
  17. not  be  where we are today."--Leon Williams, President  and  Chief  Executive 
  18. Officer, MicroPro International.
  19.      Jim  Spickard, a remote/contributing editor of Profiles Magazine,  writes 
  20. Test Driving Turbo Modula-2 article in October 1987 issue.  Very  interesting, 
  21. shows  TM2 to be nearly three times faster than Turbo Pascal--don't miss  this 
  22. informative piece!
  23. ------------------------------------------------------------------------------
  24. Z-User's  Corner.  You know, facilities of ZCPR v3.3 (we call it Z33)  aid  to 
  25. speed file operations.  To find out how much, we measured program (a  Z-System 
  26. alias  in  this case) execution time using  various  command-line  techniques: 
  27. using  command search path, declaration of file location by DU and DIR  forms, 
  28. and  by  using  forward slash, "/", flag to indicate  direct  access  to  ECP, 
  29. Extended Command Processor.  We use workhorse Ampro Bookshelf Z80 computer and 
  30. its SCSI 65-millisecond 20-megabyte hard disk.  File is public domain TPA.COM, 
  31. on  SUS diskette #7, made into an alias and placed in ALIAS.CMD as  "tpa  echo 
  32. TPA  S%>hows  memory available in bytes.;root:lx tpa".  ALIAS.CMD is  in  ROOT 
  33. directory,  A15  in  our  case.  Default path is "$$  A0  A15"  (remember,  $$ 
  34. indicates current drive and current user number (area).  We are logged onto C0 
  35. for  tests.  Timing starts at pressing <cr> and stops at  command-line  prompt 
  36. return.  Our results:
  37.  
  38.          Command Line        Duration, seconds
  39.          tpa                       5.12
  40.          /tpa                      3.64                (Timing accuracy
  41.          a15:cmdrun tpa            3.52                    estimated at
  42.          root:cmdrun tpa           3.48                      0.2 second.)
  43.  
  44. We, for long time now, have used directory declaration preceding filenames  in 
  45. alias  scripts not knowing speed-up results, if any.  We now know.  About  1.5 
  46. seconds  are saved by using either / or directory, either DU or DIR  form,  in 
  47. front  of file to be found.  Additionally, using / saves  usually  much-needed 
  48. character space, as the shortest directory or drive/user declaration  requires 
  49. two spaces, three or four in most cases.
  50.      Recently,  we used ARUNZ's recursive ability to continue  development  of 
  51. TLF, Z-News 803-4.  Recursion occurs whenever an object uses itself more  than 
  52. once,  calls  itself in a conditional loop.  Because  of  finite  command-line 
  53. buffer lengths, about 200 characters in most Z-System installations, recursive 
  54. commands quickly overflow buffer space.  Z-Team member, Jay Sage, has provided 
  55. solutions  to overflow problem with his ARUNZ- and VALIAS-tool  offerings  (as 
  56. has Rob Friefeld with his recent completion of SALIAS, combination BALIAS  and 
  57. VALIAS).
  58.      A "$z" following alias name in line of ALIAS.CMD script file indicates to 
  59. ARUNZ, usually renamed to CMDRUN (the default name of ZCPR3's Extended Command 
  60. Processor,  the ECP), to overwrite command buffer and start at  buffer  begin-
  61. ning.   So when called by itself, from within itself, buffer  is  flushed--now 
  62. empty--ready  to receive up to another 200 or so characters to  be  processed.
  63. Process  can  be repeated without limit.  Jay uses a short line  to  test  the 
  64. workings:
  65.  
  66.   recurse $z zif;if in L%>oop again (y/n)? ;$0;else;                        <<
  67.    echo T%>he loop is now complete.;fi
  68.  
  69. RECURSE is a line in ALIAS.CMD contained in CMD.LBR on SUS #12.  But it's easy 
  70. enough to type into your present CMD file and try.
  71.      As  a final example of using "$z" to effectively extend the  command-line 
  72. buffer--aliases can be made up of two or more command lines, as needed to  get 
  73. the  job  done  in each of 200 characters or less--we  show  a  recursive  GLF 
  74. (actually  a nested alias using $z flush-buffer operator), Get  Library  Files 
  75. alias developed in Z-News 508-4.
  76.  
  77.   glf if //=$1;or nu $1;echo $0 - G%>et%< L%>ibrary%< F%>iles;              <<
  78.    echo S%>yntax: $0 [du:]libname<cr>;else;ROOT:quiet s;/glf2 $1;fi
  79.  
  80.   glf2 $z zif;ROOT:zldir $d1$u1:$:1;ROOT:getvar glf files to extract:;      <<
  81.    ROOT:resolve ROOT:lget $1 %glf;ROOT:quiet r
  82.  
  83. If  other than built-in help is indicated, GLF2 is called by GLF.  As it  gets 
  84. processed,  the  original GLF command-line buffer is  fully  overwritten  with 
  85. GLF2's  parsed and expanded script.  Now, spend some time, but  after  running 
  86. GLF  with  first  only a <cr> to get help, using SHOW.   Use  the  M,  Memory, 
  87. command to see your command-line buffer entry.  Buffer address is shown on  #1 
  88. menu  entry of SHOW.  Next, run GLF and actually get a file out of a  library.
  89. Then  run  SHOW again to see the command-line buffer and how it  has  changed.
  90. From there you get a feel for what $z is about.
  91.      Remember, in those cases where you use Z3 utilities as tools, e.g., LGET,
  92. you  can use wildcards (? and *) and file lists (full filenames  separated  by 
  93. commas)  as your response to prompts, to type (LT handles  wildcards,  cancels 
  94. present file and types next by you entering ^x) or extract more than one  file 
  95. at  at  time.  Also, a value (text, characters entered by you in  response  to 
  96. prompt)  placed into a variable name with GETVAR stays until changed--it's  on 
  97. disk  in  file SH.VAR.  A <cr> at the GETVAR prompt uses the old  value.   Use 
  98. SHDEFINE  or  SHVAR  to  see (and change) value  of  each  variable  you  have 
  99. previously used.
  100.  
  101.    Notice  Z33  handles IN(put) as it does ECHO, provides ability  to  pass 
  102.    lower-case  characters  to  the console (and printer  in  ECHO's  case).  
  103.    Z33's  ZIF  operator makes sure there are no pending IF  states,  either 
  104.    true  or  false, at the start of alias execution.  XIF  resets  true  IF 
  105.    states  to  zero.  And IFQ shows know many states are pending,  if  any, 
  106.    both  "trues"  and  "falses";  IFSTAT shows only  trues.   Yes,  Z33  is 
  107.    advanced!
  108.  
  109.      Have you ordered your copy of Jay's ZCPR 3.3 User's Guide yet?  Please do 
  110. it now...its usefulness is worth its $14.95 price tag.  It's one way partially 
  111. to compensate Jay for his splendid public domain work.  Thanks.
  112.  
  113. Software  Beat.  Less we forget...does anyone, and we address  especially  you 
  114. hackers  out there, have or wish to write a Backgrounder II screen driver  for 
  115. ANSI/VT100 terminals?  Such a driver would be welcomed by a growing number  of 
  116. users in BG II community.  Let's show that the old public domain spirit  still 
  117. lives--contribute a driver.
  118.  
  119. In Other Words.  "In any weather, at any hour of the day or night, I have been 
  120. anxious  to improve the nick of time, and notch it on my [walking] stick  too; 
  121. to  stand  on  the meeting of two eternities, the past and  future,  which  is 
  122. precisely  the present moment; to toe that line.  You will pardon some  obscu-
  123. rities, for there are more secrets in my trade than in most men's, and yet not 
  124. voluntarily  kept, but inseparable from its very nature.  I would gladly  tell 
  125. all that I know about it, and never paint "No Admittance" on my gate.
  126.      "I long ago lost a hound, a bay horse, and a turtle-dove, and am still on 
  127. their trail.  Many are the travellers I have spoken concerning them,  describ-
  128. ing  their tracks and what calls they answered to.  I have met one or two  who 
  129. had heard the hound, and the tramp of the horse, and even seen the dove disap-
  130. pear behind a cloud, and they seemed as anxious to recover them as if they had 
  131. lost them themselves."--from Walden, Economy chapter, by Henry David  Thoreau, 
  132. American writer and naturalist, 1817-1862.
  133. ==============================================================================
  134. Of  Angels  and Eagles.  Much has been written about what's  wrong  with  USA: 
  135. "It's  hard to sit tall-in-the-saddle when you owe money to everyone."   Anni-
  136. versary  of  the signing of US Constitution, September 1787,  prompts  writing 
  137. about what's right, and how we can get more Right.
  138.      Sons  and  daughters  with liberty in their bones  put  their  lives  and 
  139. fortunes on the line to bring forth principles embodied in that document.  The 
  140. imperative "Carry that torch!" received "We will!" as a response from them and 
  141. from  us.   We  still have that vision, a vision handed down to  us  from  our 
  142. ancestors.  We still have the determination, the will to continue in that same 
  143. vain, to protect that vision, that vision just beneath the surface of  consci-
  144. ousness--to  overcome  all obstacles in our way, bringing the fruits  of  free 
  145. thinking to free people, becoming what we and they are capable of becoming.
  146.      This we all know.  The Liberty Tree grows through us, because of us, will 
  147. not  die  under our tender care.  Ascending world culture uses us,  with  some 
  148. reservations, as models of freedom, as the way human relations should  evolve.
  149. Are  we  so timid to think any less of ourselves: models of  freedom?   Do  we 
  150. know...who  we are and what we are to become without such a spirit  that  con-
  151. tinues  what  our  fore fathers began long ago.   We  will...to  overcome,  to 
  152. succeed.  It's urgent!
  153.      We  wind  down  now  wanting about three  fingers  of  Jack  Daniels  but 
  154. Magdalena  wishes  us  to have but a sip of white  Zinfandel.   Magdalena,  as 
  155. usual, has her way with us.  See you down the lines...
  156.  
  157. Echelon, Inc.       885 North San Antonio Road         Los Altos, CA 94022 USA 
  158. Telephone: 415/948-3820    Telex: 4931646   Z-Node Central (RAS): 415/948-6656
  159.  
  160. Trademarks:  Little Board, Bookshelf, Ampro Computers; SB180, SB180FX,  GT180, 
  161. Micromint; ON!, Oneac; The SemiDisk, Deep Thought 42, SemiDisk Systems;  XLR8, 
  162. M.A.N.  Systems;  VAX,  Digital Equipment;  Macintosh,  Apple;  HD63484/64180, 
  163. Hitachi;  Z-System,  ZOS,  Z-Com, ZCPR3, ZRDOS, Z-Tools,  Zas,  Zlink,  Z-Msg, 
  164. Term3, Quick-Task, NuKey, Z80 Turbo Modula-2, Lasting-Value Software, Echelon; 
  165. CP/M,  Digital Research; Unix, AT&T; TurboROM, Advent; Graphix Toolbox,  Turbo 
  166. Pascal,  Borland  Int'l; WordStar, Newword, MicroPro Int'l;  JetFind,  Bridger 
  167. Mitchell.
  168.  
  169.  
  170.                   *                                        *
  171.  
  172.      We The People of the United States, in order to form a more  perfect 
  173.      union, establish justice, insure domestic tranquillity, provide  for 
  174.      the  common  defense, promote the general welfare,  and  secure  the 
  175.      blessings  of liberty to ourselves and our posterity, do ordain  and 
  176.      establish this constitution for the United States of America.
  177.  
  178.               Preamble, Constitution of the United States, 1787.
  179.  
  180.  
  181.                                  Fly with Z!
  182.  
  183.  
  184.  
  185.                   *                                        *
  186.  
  187.  
  188.  
  189. Z-News  804  is  Copyright  MCMLXXXVII Echelon,  Inc.   All  Rights  Reserved.
  190. Permission  to reprint, wholly or partially, automatically granted  if  source 
  191. credit is given to Echelon.
  192.