←back to thread

286 points spzb | 4 comments | | HN request time: 0s | source
Show context
coreyh14444 ◴[] No.43533429[source]
I definitely had cassette based games on the TRS-80, but most of the "wireless" transmission in my youth was via BASIC printed in the back of computer magazines. You had to type in the entire app yourself. I did this for basically every app they listed. Sometimes it was like tax prep software, but I didn't care, even though I was like 9 at the time. Yes, it took a very long time. Yes, you could easily introduce typos and bugs.
replies(18): >>43533473 #>>43534190 #>>43534420 #>>43534655 #>>43534805 #>>43535259 #>>43535577 #>>43535687 #>>43536185 #>>43537570 #>>43538062 #>>43538702 #>>43539139 #>>43539623 #>>43539720 #>>43541831 #>>43543690 #>>43547857 #
mysterydip ◴[] No.43533473[source]
Sometimes the typos were in the magazine itself, and you wouldn't figure out the problem with the code you triple-checked you typed in properly until the errata in next month's issue :)
replies(3): >>43534839 #>>43535117 #>>43539196 #
jonwinstanley ◴[] No.43535117[source]
The compiler/interpreter couldn’t even tell you what line the error was on!

You’d just get a big error message for the whole program.

replies(2): >>43536420 #>>43537609 #
aaronbaugher ◴[] No.43536420[source]
After a while, magazines like Commodore Run and Compute started including a short program that would checksum each line as you entered it, so you could check that against a checksum in the magazine. Of course, you had to get that program typed in correctly first before you could use it to enter others.
replies(3): >>43538009 #>>43538499 #>>43540775 #
1. unsui ◴[] No.43540775[source]
My favorite was the "TYPO II" ("Type Your Program Once") application, which was part of every Antic! Magazine program listing:

https://www.atarimagazines.com/v3n9/TYPOII.html https://www.atarimagazines.com/antic/

This was wrapper around the BASIC interpreter that printed out a 2-character checksum of each entered code line.

The magazine printing also had an associated 2-character checksum for each line. Your job: make sure the checksums matched.

As a teenager who only had cassette-based storage (couldn't afford a disk drive) and was addicted to typing in programs from Antic! and ANALOG magazines, this was a lifesaver.

(ANALOG's checksum program wasn't quite as convenient, and, IIRC, required a disk drive?)

replies(1): >>43541198 #
2. omoikane ◴[] No.43541198[source]
I took a look at the listing[1] and looks like it contains unprintable characters, maybe they were ASCII art of some sort?

The checksum algorithm is fairly simple: line 32150 sums the products of all character positions and character codes, and lines 32160-32180 does a modulus to convert them to printable characters. The multiply-by-position bit is clever because it allows the checksum to flag transposed characters. ISBN-10 uses a similar scheme[2].

[1] https://www.atarimagazines.com/software/displayfile.php?file...

[2] https://en.wikipedia.org/wiki/ISBN#ISBN-10_check_digits

replies(1): >>43541344 #
3. unsui ◴[] No.43541344[source]
I naturally went down a rabbit hole to see if I could find why those characters weren't printing properly.

https://www.atarimania.com/mags/pdf/Antic_Vol_7_No_4.pdf

On p. 31, you can see the intended characters.

I now remember that Atari actually had their own variant of ASCII, called ATASCII:

https://en.wikipedia.org/wiki/ATASCII

Atari 8-bits were actually really cool computers, in that they let you do things like redefine character sets entirely (to create custom character sets to effectively create tile-based displays), play with display-list interrupts, etc.

replies(1): >>43541752 #
4. omoikane ◴[] No.43541752{3}[source]
Nice find :)

I guess Atari character set has enough overlap with ASCII, so I could get the checksum to match:

    sum = 0
    "32000 REM TYPO II BY ANDY BARTON".codepoints.each_with_index{|c, i| sum += (i + 1) * c }
    print ((sum % 676) / 26 + 65).chr, (sum % 26 + 65).chr, "\n"
(Ruby code, outputs "WB")