home *** CD-ROM | disk | FTP | other *** search
/ ftp.whtech.com / ftp.whtech.com.tar / ftp.whtech.com / articles / Sughrue / bluebery.txt < prev    next >
Text File  |  2006-10-19  |  6KB  |  127 lines

  1. .IF DSK1.C3
  2.  
  3. ^^^^^^^^^^^^^TEXTWARE, SOFTWARE, and ELSEWHERE
  4.  
  5. ^^^^^^^^^^^^^^^^^^^^TI Articles and Reviews
  6.  
  7.  
  8. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^by  Jack  Sughrue
  9.  
  10.                     My daughter Suzi went blueberry picking yesterday, and I
  11. decided to get up early this morning and make some fresh blueberry muffins for
  12. the five of us for breakfast.  I went digging through the recipe box for my
  13. favorite recipe.  Wasn't there!  (It was.  I just didn't find it until much
  14. later this afternoon.)  
  15. First, I panicked.
  16. How can I make my favorite recipe when the recipe has disappeared?
  17. Then, I paused and thought.  As a teacher I should know better.  I don't teach
  18. in the hope that the "recipe" will always be at hand for problem-solving.
  19. Hopefully, I teach problem-solving.
  20. Next, I asked myself What do I know? and What do I need to know?
  21. I discovered that I knew how to make the muffins: baking soda, flour, milk,
  22. blueberries, sugar, eggs, oil.  And I remembered the logical amounts: 2
  23. teaspoons, two cups, one-and-a-quarter cups, lots, one-half cup, three, and
  24. one-quarter cup, respectively.  And as I was remembering and doing, I kept
  25. recalling more and more of the process.  Sift the dry stuff into a bowl.  Make
  26. a well.  Separate the whites and slightly beat them.  Add the oil and milk.
  27. Stir until lumpy damp (my expression).  Add the blueberries.  Stir gently.
  28. Make dabs into pre-greased cupcake tins.  Put on 4250 for about 20 minutes.
  29. Make coffee meanwhile.  When done, wake family.  Have good time with butter
  30. melting all over them.  When all 18 are eaten, clean up.
  31.                                               
  32.  
  33. All of which brings me to a book I've had for a few months and have found
  34. useful, exciting, and full of fun: THE TI-99/4A IN BITS & BYTES edited by Remo
  35. A. Loreto ($14.95 from Remo A. Loreto, P.O. Box 14781, Cincinnati, Ohio,
  36. 45214).  It's a book that's loaded with recipes (programs) but so full of other
  37. kinds of ideas that you will come away from the experience (if you put a lot of
  38. yourself into it) a baker (programmer).  You'll learn so many logical, useful,
  39. delightful things about your TI that you will be able to create without the
  40. recipes and share your goodies with family and friends.
  41.  
  42.  
  43.             Ten different programmers put their best digits
  44.           forward in this large (8X11, 142 pages) book.  The
  45.           claim is that there are 50 programs in BITS & BYTES.
  46.           Well, that's not quite true.  First, they send you an
  47.           extra program not in the book (which is quite good);
  48.           then they don't count the small tutorial programs.
  49.           There are 37 of these.  So, though I bought the book
  50.           expecting 50 programs, I ended up with 88! Pleasant
  51.           surprise.
  52.             Before discussing the 50 (51?) programs for which you
  53.           buy the book, I'd like to talk about those other 37.
  54.             The first 21 pages of the book take up these minis.
  55.           Section 1 is a rather odd tutorial about programming
  56.           commands made simple.  I say "odd" because this is not
  57.           a rehash of the manual which comes with the console.
  58.           The tutorial assumes you're intelligent and that you've
  59.           probably already read the manual.  This section shows
  60.           you ways to use CALL COLOR, CALL GCHAR, CALL JOYST,
  61.           CALL KEY, CALL HCHAR & VCHAR, DIM, FOR-NEXT-STEP,
  62.           GOSUB, GOTO, READ-DATA-RESTORE, and even PRINT in ways
  63.           you may not have thought about.
  64.             Section 2 is a really simple and good examination of
  65.           flowcharting, including a more elaborate chart for a
  66.           program in the back part of the book.    
  67.             Section 3 is a series of hints and tips.  I was
  68.           fascinated by this section and wished there were whole
  69.           books devoted to this type of thing.
  70.             Section 4 contains the 50 ready-to-run programs: 28
  71.           are in BASIC, 23 are in Extended or require TEII.  (If
  72.           you noticed the mathematical disparity in the sentence
  73.           above, I am including "Black Hole," the extra program.)
  74.             These programs give you your money back many times
  75.           over in pleasure.  Although there are some practical
  76.           programs for you serious types (such as Loan
  77.           Calculating, Household Inventory, Curve Plot, Message
  78.           Board) most of this wonderful book is full of games -
  79.           GAMES!  Oh, sure!  Educational games are here, too, and
  80.           there is nothing wrong with that.  I'm a teacher, after
  81.           all.  But this book is mostly fun.  Things like Space
  82.           Fury, Trap, Skydiving, Eviel-Eyevil, Byteman, Death
  83.           Mobile, Baseball, account for most of the 51 programs.
  84.             If you enjoy typing in programs (which is one of the
  85.           best ways of learning programming, so I suppose that -
  86.           at least - is educational) then this book is for you. I
  87.           thought the programs ran well and were quite good.  They were also
  88. very easy to modify to your own purposes or tastes.  I am very happy I bought
  89. this book, which, unfortunately, is not the case with some of the books I've
  90. purchased.
  91.  
  92. Section 5 is an appendix that contains things programmers are always looking
  93. at: ASCII character codes, conversion tables, music frequencies, reproducible
  94. TI graph paper, and even a place for notes (which I find very handy).
  95.  
  96. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  97. Here's a small example from the book that shows you how to DISPLAY AT using
  98. BASIC:
  99. 100 CALL CLEAR
  100. 110 A=12
  101. 120 B=1
  102. 130 A$="TEXAS INSTRUMENTS HOME COMPUTER"
  103. 140 GOSUB 160
  104. 150 GOTO 150
  105. 160 FOR C=1 TO LEN(A$)
  106. 170 CALL HCHAR(A,B,ASC(SEG$(A$,C,1)))
  107. 180 B=B+1
  108. 190 NEXT C
  109. 200 RETURN
  110. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  111.  
  112.              But now for you non-typists, a super special treat.  All the
  113. programs are available as a package book/disk or book/tape from some of the
  114. main suppliers of 99 stuff.
  115.  
  116. While you're waiting for the book to come it, try my muffin recipe.  You might
  117. enjoy that, too.
  118.  
  119. [Jack Sughrue, Box 459, E.Douglas, MA 01516]
  120.  
  121. ***********
  122.  
  123. If any newsletter editor prints these articles, please put me on your mailing
  124. list.  Thanks - JS
  125.  
  126. ÇåÇ╒åïÉòƒ⌐│╜╟╒╒╒╒╒╒╒Çå
  127.