The Apple II Source Code for the LOGO Language Found
71–80 of 91 posts
Re: The Apple II Source Code for the LOGO Language Found
#72I love 6502 - so clean and simple. Even after 35 years I still remember the opcodes in hex.
Re: The Apple II Source Code for the LOGO Language Found
#73Earlier quoted context omitted.
If you don't mind me asking, did the book do any explaining of why the magic computer words were in a foreign language (English)? Had you been exposed to much English already when you picked up the book? As a native English speaker I feel fairly ignorant of how programming is taught in other (human) languages. I recall a quote [1] by Eric S. Raymond commenting (or perhaps speculating?) that Linus commented his kernel…
I always wondered how non-english speaking developers from other countries who were first adopters of HTTP (or any new tech) reacted to words like "GET" and "Content-Type" and other things that were clearly invented by westerners. What would we think if we had to implement something new and use words we didn't understand?
There are plenty of non-English speaking Westerners, you know? :D
Re: The Apple II Source Code for the LOGO Language Found
#74Earlier quoted context omitted.
Apple II did use ASCII. But ASCII defines 128 code-points. The other 128 code-points are specific to the character encoding or "codepage". They don't like Apple's "idiot" character encoding (which is custom, Apple II specific), so they throw away the top bit with the AND leaving only ASCII characters.
> But ASCII defines 128 code-points. The other 128 code-points are specific to the character encoding or "codepage". ASCII is a character encoding, and it's a 7-bit encoding. It has no code pages. There are many 8-bit encodings / code pages that are ASCII supersets (including the Apple II one), however.
Re: The Apple II Source Code for the LOGO Language Found
#75Earlier quoted context omitted.
Diving into that MACLISP file, I found this variable and explanatory comment: > SYNSTAX ... A STACK OF SYNTAX PROPERTIES If there were a "stupid-clever variable names" hall of fame, that one would certainly make the cut.
It also mentions BIBOP LISP: BIg Bag Of Pages (OR (BOUNDP 'BIBOP) (SETQ BIBOP ITS)) ;;THE TURTLE PACKAGE IS GOING TO EAT LOTS OF FLONUM SPACE, SO IN BIBOP LISP, ASSURE ;;THAT ENOUGH WILL BE AVAILABLE. (AND (MEMQ 'BIBOP (STATUS FEATURES)) (ALLOC '(FLONUM (2000. 4000. NIL) FLPDL 2000.))) https://www.saildart.org/BIBOP.RPG[UP,DOC]4 BIBOP is the dynamically expandable version of MACLISP, the SAIL standard MACLISP. Essent…
Re: The Apple II Source Code for the LOGO Language Found
#76Does anyone know where/how the guy found it?
Re: The Apple II Source Code for the LOGO Language Found
#77Does anyone know where/how the guy found it?
I found it in backups from ITS. ITS is the MIT operating system for the PDP-10, which was the workhorse around the AI Lab, Logo Lab, Lab for Computer Science, Mathlab, Dynamic Modeling group, etc.
Re: The Apple II Source Code for the LOGO Language Found
#78Earlier quoted context omitted.
If you don't mind me asking, did the book do any explaining of why the magic computer words were in a foreign language (English)? Had you been exposed to much English already when you picked up the book? As a native English speaker I feel fairly ignorant of how programming is taught in other (human) languages. I recall a quote [1] by Eric S. Raymond commenting (or perhaps speculating?) that Linus commented his kernel…
In France, in the 80s, schools had Thomson MO5 machines that came with a french version of logo, with commands in french. repete 4 [ avance 100 tournedroite 90 ] or with abbreviated commands: repete 4 [ av 100 td 90 ]
Re: The Apple II Source Code for the LOGO Language Found
#79Earlier quoted context omitted.
I found it in backups from ITS. ITS is the MIT operating system for the PDP-10, which was the workhorse around the AI Lab, Logo Lab, Lab for Computer Science, Mathlab, Dynamic Modeling group, etc.
Hmmm, I’m vaguely remembering uploading the TI-Logo source to the MIT ITS PDP-10 for backup purposes too. If so it might be there also. You’d want to be careful about the copyright on that. Though I’d love to see it again
Re: The Apple II Source Code for the LOGO Language Found
#80That Turtle!