What is K3b? It is a free CD/DVD/Bluray burning program for Linux (it can be compiled for the Mac as well). For the last little while, even before the last upgrade to the current version of Mint, I was having some trouble with the program. At first it no longer wanted to verify data disks. […]
Category: Tips
This article is a variation/enhancement to a post I found at http://sourceforge.net/apps/phpbb/freenas/viewtopic.php?f=49&t=9289 for a FreeNAS server. Of course purely Mac folks would likely want to stick with the AFP protocol. In terms of generalities the NFS server does not necessarily have to be running FreeNAS. It just has to work. FreeNAS is basically a “Swiss […]
The Mac has a unique way of setting up its $PATH variable. These are the locations the BSD portion of OS X looks at to find programs to run. In this case the list of paths can be found in the file /etc/paths. To edit it the administrator needs to sudo their favourite editor since […]
Apple and the BSD folks have included two of the four editors as part of the base install packages. The first goes by two names and is accessed via the terminal (Applications –> Utilities –> Terminal). They are either pico or nano (note the lowercase). These are almost as basic as one can get and […]
Text by Dave. Lingwood Programs by Brian Matthews (Action-Research NW) BASIC COMPARISONS Most Apple /// Business BASIC users also work with Applesoft, either from earlier ][ days, or through emulation mode. Business BASIC (hereafter “BB”) has all the professional features you need, but it lacks the flexibility provided by the openness of the ][. This […]
100 CALL -93.6 :PRINT ” (insert your name, address and phone)” 200 PRINT “THIS DISK CONTAINS INTEGER BASIC PROGRAMS” (or game programs, etc.) 300 FOR 1=1 TO 1000:. NEXT I: CALL -936 400 PRINT “Dc CATALOG’:END Note: In line 400 after the first quote, hit the Control key and the “D” key at the same […]
by Darrell Aldrich This is a brief description of the use of the color mask byte (Location 81210) for high re solution graphics in Apple Integer Basic. This mask specifies an 8 bit pattern of plottable X coordinates, with the pattern repeating itself every eight coordinates, going from left to right. The bits in this […]
This handy little subroutine can be used in two manners; to fill a screen page with repetitive material or to determine the length of a screen page of print statements. Assume line 100 is a print statement with which you wish to fill the page. 100 PRINT” “:GOSUB 400 400 IF PEEK(37) < 18 THEN […]
If you have a newer Apple with the silent keyboard, Don Williams has written a short and sweet machine language routine to solve your problem. 0300: 48 PHA 0301 : A9 20 LDA #$20 0303: 8D 30 CO STA $C030 0306: 20 A8 FC JSR $FCA8 0309: 8D 30 CO STA $C030 030C: 68 PLA […]
By Darrell Aldrich While written for Applesoft II, this article is also applicable to Integer Basic HIRES graphics mode. The High Resolution Graphics screen is composed of 280 vertical bars (X coordinates), by 160 units high (Y coordinates). The even-numbered bars are violet in color, while the odd-numbered bars are green. The color white is […]
By Val J. Golding Here are simple routines that will allow you to append programs in both version of Applesoft. While appending can be done under program control in App. II, it is really simpler to do it without. The routines are the same in both versions; only the pointers have been changed (to protect […]
By Bob Huelsdonk I wrote this simple program to test new memory chips I bought. Just store the correct end address for your Apple in locations 4 and 5, run 300G and display 800 to the end. 300.32A 0300- A0 00 A9 55 91 02 D1 02 0308- D0 1D A9 AA 91 02 D1 […]
By Don Williams One of the minor deficiencies in Apple Integer BASIC is the omission of the Data statement. In search of a remedy for this, I wrote a program to save memory in a BASIC string assignment. This is listed as program lines 1020 through 1190. Upon embarking on the first routine, I quickly […]