home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / INFO / BASIC / MDUTIL.ZIP / TIMEFIND.BAS (.txt) < prev    next >
Encoding:
GW-BASIC  |  1986-12-01  |  12.6 KB  |  275 lines

  1. 1  REM
  2. 3  KEY OFF:SCREEN 0,1:WIDTH 40:COLOR 14,0,0:CLS:LOCATE 5,19:PRINT "MDS"
  3. 5  LOCATE 7,8,0:PRINT "Micro Development Software"
  4. 6  LOCATE 8,8:COLOR 12,0,0:PRINT STRING$(26,196)
  5. 7  COLOR 10,0:LOCATE 10,9,0:PRINT CHR$(201)+STRING$(21,205)+CHR$(187)
  6. 9  LOCATE 11,9:PRINT CHR$(186)+"TIME-FIND MANAGEMENT "+CHR$(186)
  7. 11  LOCATE 12,9:PRINT CHR$(186)+STRING$(21,32)+CHR$(186)
  8. 13  LOCATE 13,9:PRINT CHR$(186)+"    Version 2.0      "+CHR$(186)
  9. 15  LOCATE 14,9:PRINT CHR$(200)+STRING$(21,205)+CHR$(188)
  10. 17  LOCATE 17,10:PRINT"Written By M.D. Smith"
  11. 19  COLOR 14,0:LOCATE 19,7:PRINT "         Circa 1985"
  12. 21  COLOR 9,0:LOCATE 23,7:PRINT "Press space bar to continue"
  13. 23  POKE 106,0:REM CLEAR KYBD BUFFER
  14. 25  A$ = INKEY$:IF A$="" THEN GOTO 25
  15. 27  REM
  16. 29  REM
  17. 31  REM
  18. 32  REM
  19. 34  REM ***************************************************************
  20. 36  REM *                                                             *
  21. 38  REM *   TIMEFIND.BAS    A program on improving time management    *
  22. 40  REM *                                                             *
  23. 42  REM *   Written by M.D. Smith, Manager of WAAY-TV                 *
  24. 44  REM *   1000 Monte Sano Blvd., S.E.,  Huntsville, AL  35801       *
  25. 46  REM *   M.D. Smith is also an Instructor of the Dale Carengie     *
  26. 48  REM *   Management Seminar(c).   First version: July 9, 1985      *
  27. 50  REM *                                                             *
  28. 52  REM *               Version 2.6   July 12, l985                   *
  29. 54  REM *                                                             *
  30. 56  REM ***************************************************************
  31. 58  REM
  32. 60  REM
  33. 100  WIDTH 80:COLOR 14,0,0:CLS
  34. 110  DIM Q$(30),B$(30),B(30)
  35. 400  CLS:PRINT:PRINT:PRINT"This program is designed to help you find out where all your time is going."
  36. 410  PRINT:PRINT"It should also help you make more profitable use of your time...if that"
  37. 420  PRINT:PRINT"is what you want to do. This short program will give you some extra tools."
  38. 430  PRINT:PRINT"Use them often if you want to squeeze much more results from an X-hour day !"
  39. 450  GOSUB 48000
  40. 500  CLS:LOCATE 3,10:PRINT"*** TIME-FIND EVALUATION QUESTIONNAIRE ***"
  41. 505  LOCATE 25,5:COLOR 12,0,0:PRINT"ENTER 1-5  1=NEVER, 2=OCASIONALLY, 3=USUALLY, 4=OFTEN, 5=ALWAYS":COLOR 14,0,0:LOCATE 5,1
  42. 510  FOR I = 1 TO 20:READ Q$(I):NEXT I
  43. 550  FOR I = 1 TO 20
  44. 560     PRINT "#";I;Q$(I);
  45. 570     INPUT B$(I):B(I) = VAL(B$(I))
  46. 580     IF B(I) <1 OR B(I) >5 THEN GOTO 560
  47. 590     TOT = TOT+B(I): C = C+1
  48. 595     PRINT
  49. 600  NEXT I
  50. 610  GOSUB 48000
  51. 700  CLS: PRINT:PRINT SPC(10);"*** RESULTS OF TIME QUESTIONNAIRE ***"
  52. 710  PRINT:PRINT"YOU SCORED A TOTAL OF ";TOT;" POINTS OUT OF 100"
  53. 720  PRINT:PRINT SPC(15);"RANKING BY RANGE OF SCORE"
  54. 730  PRINT:PRINT SPC(25);"80-100   Excellent time manager"
  55. 740        PRINT SPC(25);"60-80    Good use of time"
  56. 750        PRINT SPC(25);"40-60    Average use of time"
  57. 760        PRINT SPC(25);"20-40    Below average use of time"
  58. 770        PRINT SPC(25);" 0-20    Poor use and control of time"
  59. 780  PRINT:PRINT:PRINT"If you are not satisfied with your time usage and would like to find more"
  60. 790  PRINT"minutes and/or hours in the day, print out a copy of the questionnaire and"
  61. 800  PRINT"refer to it every day for a month, then repeat the program on the computer."
  62. 810  PRINT"If you can raise your average by 20 points, you should find that you are"
  63. 820  PRINT"having the results of an extra 1-2 hours per working day.  GREAT, HUH?"
  64. 840  GOSUB 48000
  65. 900  REM
  66. 910  REM **********  THIS IS THE PRINTER PROGRAM ******************
  67. 920  REM
  68. 930  CLS:PRINT:PRINT:PRINT:INPUT "DO YOU WANT A HARDCOPY OF QUESTIONNAIRE ON PRINTER (Y/N)";P$
  69. 940  IF P$ <> "Y" AND P$ <> "y" THEN GOTO 1200
  70. 950  REM
  71. 960  REM ** PRINTING BEGINS **
  72. 970  REM
  73. 980  LPRINT:LPRINT "*****  THIS IS THE PRINTOUT OF THE 20 ITEMS FROM THE TIME-FIND PROGRAM *****"
  74. 985  LPRINT SPC(7);"ENTER 1-5  1=NEVER, 2=OCASIONALLY, 3=USUALLY, 4=OFTEN, 5=ALWAYS":COLOR 14,0,0:LOCATE 5,1
  75. 990  LPRINT:LPRINT
  76. 1000  FOR I = 1 TO 20
  77. 1010      LPRINT "#";I;Q$(I);"  :";B(I)
  78. 1020      LPRINT
  79. 1030  NEXT I
  80. 1040  LPRINT:LPRINT "YOU SCORED A TOTAL OF ";TOT;" POINTS OUT OF 100"
  81. 1050  LPRINT:LPRINT SPC(15);"RANKING BY RANGE OF SCORE"
  82. 1060  LPRINT:LPRINT SPC(25);"80-100   Excellent time manager"
  83. 1070      LPRINT SPC(25);"60-80    Good use of time"
  84. 1080      LPRINT SPC(25);"40-60    Average use of time"
  85. 1090      LPRINT SPC(25);"20-40    Below average use of time"
  86. 1100      LPRINT SPC(25);" 0-20    Poor use and control of time"
  87. 1110  LPRINT:LPRINT:LPRINT "If you are not satisfied with your time usage and would like to find more"
  88. 1120  LPRINT"minutes and/or hours in the day, print out a copy of the questionnaire and"
  89. 1130  LPRINT"refer to it every day for a month, then repeat the program on the computer."
  90. 1140  LPRINT"If you can raise your average by 20 points, you should find that you are"
  91. 1150  LPRINT"having the results of an extra 1-2 hours per working day.  GREAT, HUH?"
  92. 1200  PRINT:PRINT:PRINT:INPUT "DO YOU WANT TO END THE SESSION WITH AN INSPIRATIONAL MESSAGE";M$
  93. 1210  IF M$ <> "Y" AND M$ <> "y" THEN GOTO 49999: REM END OF PROGRAM
  94. 1250  REM
  95. 1260  REM ************* THIS IS THE RANDOM MESSAGE SECTION *********
  96. 1270  REM
  97. 1280  RANDOMIZE TIMER
  98. 1290  MESS = INT(RND(1)*6)+1
  99. 1300  ON MESS GOSUB 2000,2300,2600,2900,3200,3500
  100. 1304  PRINT:PRINT:INPUT "DO YOU WANT ANOTHER INSPIRATIONAL MESSAGE (Y/N)";N$
  101. 1306  IF N$ <> "Y" AND N$ <> "y" THEN GOTO 49999: REM END OF PROGRAM
  102. 1308  GOTO 1290
  103. 1310  REM
  104. 1320  REM
  105. 1330  REM
  106. 2000  REM
  107. 2010  REM ****************** THIS IS TIME MESSAGE 1 ********************
  108. 2020  REM
  109. 2030  CLS:PRINT:PRINT CHR$(34);"Time is the inexplicable raw material of everything. With it, all is possible;"
  110. 2040  PRINT "without it, nothing. The supply of time is truly a daily miracle, an affair"
  111. 2050  PRINT "genuinely astonishing when one examines it."
  112. 2060  PRINT:PRINT "You wake up in the morning, and lo! your purse is magically filled with"
  113. 2070  PRINT "twenty-four hours of the unmanufactured tissue of the universe of your life!"
  114. 2080  PRINT "It is yours. It is the most precious of possessions....."
  115. 2090  PRINT:PRINT "You have to live on this twenty-four hours of daily time. Out of it you have"
  116. 2100  PRINT "to spin health, pleasure, money, content, respect, and use, is a matter of the"
  117. 2110  PRINT "highest urgency and of the most thrilling actuality. All depends on that."
  118. 2120  PRINT "Your happiness....depends on that....
  119. 2130  PRINT:PRINT "We never shall have any more time. We have, and we have always had,"
  120. 2140  PRINT "all the time there is.";CHR$(34)
  121. 2150  PRINT:PRINT:PRINT:PRINT SPC(52);"ARNOLD BENNETT"
  122. 2160  GOSUB 48000
  123. 2170  RETURN
  124. 2180  REM
  125. 2190  REM
  126. 2200  REM
  127. 2300  REM
  128. 2310  REM ********************** TIME MESSAGE 2 ***************************
  129. 2320  REM
  130. 2330  CLS:COLOR 9,0,0:PRINT:PRINT:PRINT CHR$(34);"KNOW THE TRUE VALUE OF TIME. SNATCH, SEIZE AND ENJOY EVERY MOMENT OF IT."
  131. 2340  PRINT "NO IDLENESS, NO LAZINESS, NO PROCRASTINATION. NEVER PUT OFF TILL TOMORROW"
  132. 2350  PRINT "WHAT YOU CAN DO TODAY.";CHR$(34)
  133. 2360  COLOR 14,0,0:PRINT:PRINT:PRINT SPC(52);"Lord Chesterfield"
  134. 2370  PRINT:PRINT:PRINT "This is very good advice. Sometimes we look at a big project  and don't know"
  135. 2380  PRINT "where to get started. Often this delays the start and the finish of the job."
  136. 2390  PRINT "The old Chinese Proverb states that a trip of a thousand miles begins with the"
  137. 2400  PRINT "first step.  Often when we take the first few steps the job looks smaller"
  138. 2410  PRINT "than it first did. Set out the things to be done in order of importance. Then,"
  139. 2420  PRINT "no matter how big the first item appears, jump right in and get started."
  140. 2430  PRINT "This way, the only things you put off until tomorrow are the truly lesser"
  141. 2440  PRINT "things to be done. The important things will get done today."
  142. 2450  REM
  143. 2460  GOSUB 48000
  144. 2470  RETURN
  145. 2480  REM
  146. 2490  REM
  147. 2500  REM
  148. 2600  REM
  149. 2610  REM ******************* TIME MESSAGE 3 ********************************
  150. 2620  REM
  151. 2630  REM
  152. 2640  CLS:COLOR 9,0,0:PRINT:PRINT CHR$(34);"YOU WILL NEVER `FIND' TIME FOR ANYTHING."
  153. 2650  PRINT "IF YOU WANT TIME YOU MUST MAKE IT.";CHR$(34)
  154. 2660  COLOR 14,0,0:PRINT SPC(40);"Charles Buxton"
  155. 2670  COLOR 9,0,0:PRINT:PRINT:PRINT CHR$(34);"MOST TIME IS WASTED, NOT IN HOURS, BUT IN MINUTES.  A BUCKET WITH A SMALL"
  156. 2680  PRINT "HOLE IN THE BOTTOM GETS JUST AS EMPTY AS A BUCKET THAT IS KICKED OVER.";CHR$(34)
  157. 2690  COLOR 14,0,0:PRINT:PRINT SPC(52);"Paul Meyer"
  158. 2700  PRINT:PRINT:PRINT "If we are really careful of every minute in the day, it is amazing how many"
  159. 2710  PRINT "little minutes can add up. If we are determined to `make time' to get things"
  160. 2720  PRINT "done that we want to do...we can do it. By keeping a time log, minute by "
  161. 2730  PRINT "minute, we will see where all those precious little minutes are leaking out of"
  162. 2740  PRINT "the bucket....until it is empty...the day is gone."
  163. 2750  PRINT:PRINT "Examine your time log carefully and you will discover what you need to do"
  164. 2760  PRINT "to have the extra time each day that you want. "
  165. 2770  REM
  166. 2780  REM
  167. 2790  REM
  168. 2800  REM
  169. 2810  GOSUB 48000
  170. 2820  RETURN
  171. 2830  REM
  172. 2840  REM
  173. 2900  REM
  174. 2910  REM ********************** TIME MESSAGE 4 **************************
  175. 2920  REM
  176. 2930  CLS:COLOR 9,0,0:PRINT:PRINT:PRINT CHR$(34);"He slept beneath the Moon,"
  177. 2940  PRINT:PRINT "   He basked beneath the Sun;"
  178. 2950  PRINT:PRINT "He lived a life of going-to-do,"
  179. 2960  PRINT:PRINT "   And died with nothing done.";CHR$(34):COLOR 14,0,0
  180. 2970  PRINT:PRINT SPC(30);"James Albery"
  181. 2980  PRINT:PRINT:PRINT:PRINT "It's a simple fact that the `road to HE-- is paved with good intentions.' "
  182. 2990  PRINT "To be effective time-managers we have to have direction and motion."
  183. 3000  PRINT "Yes, we have to have a road-map....usually in the form of a `TO-DO' List."
  184. 3010  PRINT "This provides us with the schedule of events to be done in order of importance."
  185. 3020  PRINT "Once we have the `road-map' (To-Do List), we have to get into motion and ..."
  186. 3030  PRINT "GET THINGS DONE !    Effective time management is as simple....or as hard"
  187. 3040  PRINT "as that. "
  188. 3050  REM
  189. 3060  REM
  190. 3070  REM
  191. 3080  GOSUB 48000
  192. 3090  RETURN
  193. 3100  REM
  194. 3110  REM
  195. 3120  REM
  196. 3200  REM ********************** TIME MESSAGE 5 ******************************
  197. 3210  REM
  198. 3220  CLS:COLOR 9,0,0:PRINT:PRINT CHR$(34);"A man that is young in years may be old in hours, if he has lost no time.";CHR$(34):COLOR 14,0,0
  199. 3240  PRINT:PRINT SPC(55);"BACON"
  200. 3250  COLOR 9,0,0:PRINT:PRINT:PRINT CHR$(34);"If time be of all things the most precious, wasting time must be the greatest"
  201. 3260  PRINT "prodigality, since lost time is never found again; and what we call time"
  202. 3270  PRINT "enough always proves little enough. Let us then be up and doing, and doing"
  203. 3280  PRINT "to the purpose; so by diligence shall we do more with less perplexity.";CHR$(34):COLOR 14,0,0
  204. 3290  PRINT:PRINT SPC(50);"Benjamin Franklin"
  205. 3300  PRINT:PRINT:PRINT "Old Ben had a lot of wise sayings. Many of them dealt with effective use of"
  206. 3310  PRINT "time. He accomplished quite a bit in his life-time. The reason is that he was"
  207. 3320  PRINT "always busy...but not just busy-work....busy with a purpose. He stayed busy"
  208. 3330  PRINT "with life, with inventions, with learning, with making life better for mankind."
  209. 3340  PRINT:PRINT "Perhaps none of us will ever be a Franklin, but we can certainly pattern our"
  210. 3350  PRINT "use of time after him. Tackle each job with enthusiasm and vigor. Time will"
  211. 3360  PRINT "fly by, but much will also be accomplished. "
  212. 3370  REM
  213. 3380  REM
  214. 3390  REM
  215. 3400  GOSUB 48000
  216. 3410  RETURN
  217. 3420  REM
  218. 3430  REM
  219. 3500  REM
  220. 3510  REM ******************** THIS IS MESSAGE 6 ************************
  221. 3520  REM
  222. 3530  COLOR 9,0,0
  223. 3540  CLS:PRINT:PRINT:PRINT SPC(10);CHR$(34);"WORK EXPANDS SO AS TO FILL THE TIME AVAILABLE.";CHR$(34):COLOR 12,0,0
  224. 3550  PRINT:PRINT SPC(50);"Parkinson's Law" :COLOR 14,0,0
  225. 3560  PRINT:PRINT:PRINT:PRINT "It is true of a great many people that given a 5-hour task and 8-hours in which"
  226. 3570  PRINT "to complete it...the task will take 8 hours. If not the first few days, before"
  227. 3580  PRINT "too many days have passed.  Many people stay busy all day long, but do not get"
  228. 3590  PRINT "very much done because they are allowing non-important work or details to use"
  229. 3600  PRINT "the time available. If we make a habit of timing each project and trying to get"
  230. 3610  PRINT "it to fit into a shorter time frame, we can usually do it. Thus, have time to"
  231. 3620  PRINT "do other jobs that need doing. Sometimes it is very healthy to be pushed to "
  232. 3630  PRINT "complete a far greater quantity of work than before. If you are able to do it,"
  233. 3640  PRINT "you may find that some trivial things did not get done. Maybe these trivial"
  234. 3650  PRINT "little things should never get done...or at least done as a quick bunch job."
  235. 3660  PRINT "Remembering that all of us are subject to Parkinson's Law, we all must remain"
  236. 3670  PRINT "on guard so that we don't fall prey and thus limit our accomplishments."
  237. 3680  REM
  238. 3690  REM
  239. 3700  GOSUB 48000
  240. 3710  RETURN
  241. 3720  REM
  242. 3730  REM
  243. 4999  STOP
  244. 5000  DATA "At the end of any day, I know exactly where all my time went"
  245. 5010  DATA "I always get the important things done each day"
  246. 5020  DATA "I refuse to allow interruptions to get me sidetracked from work"
  247. 5030  DATA "I rank items to be done in order of importance, each day"
  248. 5040  DATA "I keep a list of things to be done in clear view on my desk"
  249. 5050  DATA "I group like-things together for efficiency (i.e. phone calls)"
  250. 5060  DATA "I schedule rest and recreation as carefully as work"
  251. 5070  DATA "I log my time on paper for a week (and repeat 4/times/year)"
  252. 5080  DATA "I always keep an eye out for jobs that need delegating"
  253. 5090  DATA "I avoid concentrating ONLY on the `FUN' jobs that I like"
  254. 5100  DATA "I examine the time required for each project vs. value of it"
  255. 5110  DATA "I carefully check time used for coffee breaks, phone calls, etc."
  256. 5120  DATA "I stop doing jobs altogether if not absolutely necessary"
  257. 5130  DATA "I try to combine similar jobs and complete them together"
  258. 5140  DATA "I plan my work daily, weekly, and monthly...on paper"
  259. 5150  DATA "I stop to question myself on best-use-of-time 5/times/day"
  260. 5160  DATA "I use a `cooking-timer' to push projects into time-units"
  261. 5170  DATA "I ask for help when it is really needed to finish a job"
  262. 5180  DATA "I find that I can finish and have a clean desk each day"
  263. 5190  DATA "I begin immediately on projects and don't procrastinate"
  264. 48000  REM  ***  THIS IS THE HIT-ANY KEY SUBROUTINE ****
  265. 48005  LOCATE 24,25:COLOR 10,0,0:PRINT"< PRESS ANY KEY TO CONTINUE >";
  266. 48010  A$=INKEY$:IF A$="" THEN GOTO 48010
  267. 48015  COLOR 14,0,0:RETURN
  268. 49999  END
  269. 50000  REM ***** AUTO SAVER BELOW ***********
  270. 50005  SAVE"TIMEFIND.BAS"
  271. 50010  SAVE"B:TIMEFIND.BAS"
  272. 50020  STOP
  273. 50030  REM *******  THIS SETS THE PROGRAMMING KEYS ********************
  274. 50100  KEY 5,"DATA "+CHR$(34):KEY 6,"GOTO ":KEY 7,"PRINT:":KEY 8,"PRINT "+CHR$(34):KEY 9,"LPRINT:":KEY 10,"LPRINT "+CHR$(34)
  275.