Program for Curious People Coming Soon

I look forward to the Python videos. I have some experience with it, but it’s limited, so I should learn it because it’s used so much these days.

I totally hear you on the “forced code formatting requirement”. I’m sure you, like me, have heard feedback from many new programmers (especially those with some experience with BASIC) to the effect that Pascal, or Cobol, or some other languages are awful because they force you into structured coding. It takes a while for them to realize that structured programming is actually liberating because it frees you from having to constantly worry about the spelling of variable names, missing or incorrect punctuation, etc. Debugging unstructured languages is, or can be, a nightmare I do not want to revisit.

The idea of getting back to using a “tokenized” language after all these years has a certain fascination. No doubt, at some point, I will be loading a tokenized… er, excuse my old terminology… I mean a byte-coded program into a hex editor and having a look at what it’s doing to the English commands. Of course, these days there’s no doubt a dictionary online that I could just look up and read all the translations… er, compilations.

Speaking of custom devices, watching Paul McWhorter’s series on Arduino gave me the idea that I might, finally, be able to fulfill a minor dream: to build an NTP-based WiFi projection clock for my bedroom, one that can:

  • project the time on the wall;
  • have variable brightness;
  • automatically sychronize itself to Internet time;
  • take care of daylight savings time;
  • maybe even figure out the time zone its currently in.

As a mere brain dead mortal I am totally in awe of your abilities. I will try to follow them as best I can.

I leave it here Introducing: EasyBPY! (Easy Python for Blender) - YouTube

My first computer was a Busch 2090 four bit computer with wooping 576 bytes of system memory. :smiley:

In total you were limited to 256 assembler commands and your system memory was full :smiley: The output device was a 6 digit 7 segment calculator display. Mine was a tube like on the wiki page below. Later versions had 7 segment LED blocks.

It was part of an electronics kit and had 4 input connectors and 4 output connectors.

Here is a wiki link: https://www.busch-model.info/service…e-microtronic/

You can say it was the first arduino type of hardware to learn and build stuff.

Ausgezeichnet!!! This was something between a Commodore 64 and a Spectrum

My 1st computer… well, the 1st one I used anyway, was an IBM 704. Others I have used:

  • [I]Burroughs 5500[/I]
  • [I]IBM360[/I]
  • [I]Digital Corp PDP-8, PDP-11, VAX[/I], and [I]MicroVAX[/I]
  • [I]Control Data Cyber 170[/I], which has the distinction of being one of the computers used to put the 1st man on the moon.
The 1st computer I owned personally was a [I]Sinclair 1000. [/I]Others include:
  • [I]Ohio Scientific Challenger 2P[/I]
  • [I]Northstar Dimension[/I] and [I]Horizon[/I]
  • [I]Osborne 1[/I]
  • [I]Compaq Luggable[/I]
  • [I]Tandy TRS-80 Model 1 &[/I][I] Model III[/I]
  • [I]Kaypro II[/I] (which I still have, but never use anymore)
  • [I]IBM PC 1[/I]
  • [I]Apple Lisa, original Macintosh, and a number of Mac desktops & laptops[/I]
  • [I]various Dell desktops & laptops[/I]
  • [I]a number of HP desktops & laptops[/I]
  • [I]Gateway laptops[/I]
  • [I]AzRock ION 330 (a mini desktop, which I'm right now trying to turn into a OctoPrint server, with some success)[/I]
  • [I]Acer Aspire EasyStore AH340 (which is currently acting as a backup to my email server)[/I]
  • Microsoft Surface Pro 1 & 5 (I'm typing this on the 5)
After the last Gateway laptop, I started building my own PCs from parts I selected myself.

Just WOW!!!
My first computer was a AMSTRAD 6128 the first one with a cassette data player. After that, many pc’s. Right now i use ASUS and LENOVO Laptops and desktops. I used to use a Macbook pro for a while ( three years ), but i gave it away because i couldn’t find any CAD/CAM system to work in it! Now MacNeel release Rhino3D for Mac with limited functionality related to Win vers.

I remember loading programs into my TRS-80 Model 1 (and the Model III until I bought two 5 1/4" floppy drives) from a cassette player. Not a reliable way to save or load programs. I also remember typing in programs printed out in 80 Microcomputing magazine. They innevitably had errors in them, which made it necessary to troubleshoot. Then they came out with a weird block coding system that, if you bought the reader, could do all the typing for you, and quickly. Honestly, looking back, it was the predecessor of today’s QR code systems.

I remember such computer magazines back in the 80’s

@Ender5r in some ways Java is a “tokenized” language since it compiles into JVM byte code.