<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Vintage &amp;mdash; Musings by @rg</title>
    <link>https://write.tedomum.net/rgx/tag:Vintage</link>
    <description>A place to jot down ideas, notes, pointers.</description>
    <pubDate>Fri, 17 Apr 2026 14:07:09 +0000</pubDate>
    <item>
      <title>Memories - Starting in Computing, in the 70&#39;s</title>
      <link>https://write.tedomum.net/rgx/memories-starting-in-computing-in-the-70s</link>
      <description>&lt;![CDATA[&#xA;&#xA;-----&#xA;Z(1) = Y + W(1)  &#xA;&#xA;A #Fortran Statement in this #Vintage #computing input device.&#xA;&#xA;The famous &#34;punched cards&#34;, which each cold hold 80 characters or one line of programming instructions or data for processing.&#xA;&#xA;I learned this language, and created my assignments in decks of those cards. &#xA;&#xA;Back in November, when I was starting in mastodon, we had a delightful thread about it, which included this image. @k11m1 -- see it here&#xA;&#xA;#QotoJournal #History #Technology #Programming&#xA;&#xA;May 17, 2020, 8:32 PM \!--more--&#xA;&#xA;-----&#xA;&#xA;Programming, can be Fun or Frustrating&#xA;&#xA;A more recent conversation, which started naturally once I saw Klimi&#39;s post :&#xA;&#xA;My response to this simple statement was a long reply, which I thoroughly enjoyed writing, and now forms the body of this page.&#xA;&#xA;------&#xA;Getting it Right on the First Try ?&#xA;&#xA;LOL...&#xA;&#xA;It is not impossible, but it takes a lot of concentration, and hopefully a smaller programme to work with.&#xA;&#xA;When I first learned, we did not have access to computers directly at all; that was reserved for the high priesthood, serving the needs and whims of the large, school gym sized computer center. We students would create our programmes, that had to do some task assigned by profs.&#xA;&#xA;----&#xA;&#xA;Making my own Deck -- IBM model 29 :&#xA;&#xA;And later get the lines of code ready for input -- punch cards for us. I did my own punching, found a quiet room with a machine in the Physics department, little used, and would go there to prepare my deck,&#xA;&#xA;Because testing was laborious (revisions equaling new cards needed, finding a punch, etc) we tried the best we could to read and follow the logic.&#xA;&#xA;But I think getting it bug free in 3 passes was good, very good. &#xA;&#xA;-----&#xA;20 Years Later...&#xA;&#xA;Fast forward many years, and me teaching BASIC programming; my students were bright, did well, but they found it quite hard to create a small programme in paper only (without trying to run and see what happens, to find the errors). &#xA;&#xA;This was good for discipline, but it is less common. They whined every time I called for a pencil and paper only task, lol....😺&#xA;&#xA;------&#xA;And it continued :&#xA;&#xA;@k11m1 Yeah, it was something that was needed when computing power was a precious resource, much less common, and we needed to conserve it.&#xA;&#xA;Good things resulted from that - people created solutions to enable remote access, shared systems, one large machine that processed tasks from many people or departments; scheduling, so you could slot a job for some late hour when there were less people around.&#xA;&#xA;Following the logic is a good thing, as you write line by line, it should make sense, and flow -- or else, why did you use that line, and the next?&#xA;&#xA;There are pesky typos that break things, but other than those small input errors, the code should be understandable and make sense.&#xA;&#xA;Someone else might have to work on it someday, and that will make their job easier and faster too.&#xA;&#xA;------&#xA;Programming Languages Evolved from Needs &#xA;&#xA;Back in time programming languages were developed to cater to some specific need or group of users; making it easier to create the projects they needed.&#xA;&#xA;We used Fortran, which is Formula Translation; it was created for Science and Engineering students and professionals.&#xA;&#xA;I had a room mate who was in the Math department, we were both 1st year students, had the same Profs (from Math department), and the same assignments.&#xA;&#xA;But his class used another language, called Algol - which was a better fit for Math people&#39;s needs.&#xA;&#xA;We enjoyed comparing the finished results of our assignments; quite simply, we looked at the thickness of each other&#39;s stack of cards. Sometimes, Algol would win (win being a smaller deck, less processing time), other times Fortran got it. 😄 &#xA;&#xA;------&#xA;&#xA;My First Computer was a Burroughs 5500&#xA;&#xA;It was my first time ever seeing and working with a computer -- a mammoth Burroughs 5500 mainframe, and I loved every aspect of it. &#xA;&#xA;Over time, I observed that I could tell right away when something was broken in a new project.&#xA;&#xA;When I had my source code written up, the next step was to hand it in, for a pool of secretaries who would prepare our cards, overnight. Or find a spare IBM punch machine somewhere (my preferred, faster route).&#xA;Got the cards? Processing time! Go to the computing center, and get in line with other students with their own decks; we lined up outside, in front of a room that contained a card reader (input) and a large printer (output). This was a smaller room, wired to the computer next door which was all air conditioned to around 18 degrees Celsius year around.&#xA;The card reader had two doors, it&#39;s own Input and Output of student processing; in via one, hand in the deck, watch it be read, get a printout, out via the other door.&#xA;As the deck was handed in and loaded into the card reader, we stood watching, hoping for a good run. Any result would produce a paper printout, those continuous paper forms. Many times, it was a report of an error at some point.&#xA;processing took some seconds; and I noticed that success or failure was indicated by the card reader behaviour; a perfect program would pass thru the reader in linear fashion, smooth flow. I got excited, maybe this time it&#39;s all Good!!&#xA;I also noticed that hesitations in the stack flow indicated errors; it would stop at some card, pause or a few seconds, Bad sign! 😔 Soon it would resume, a short report printed, and a more or less dejected student headed out door #2.&#xA;&#xA;...to go back to his desk, his notes and code write up. Read the report (quite cryptic usually), and trace thru the programme to find what was wrong.&#xA;&#xA;------&#xA;Smooth Flow is Good News &#xA;&#xA;Getting a smooth card reader flow was an instant sign I might have made it - and at best happened at the 3rd try or so (worse sometimes, in harder jobs or if you weren&#39;t focused enough).&#xA;&#xA;Some great work was done in developing whole languages to be used for teaching Programming, like Pascal -- good habits would carry on into a professional&#39;s work life, and be appreciated by anyone working with this person, or later maintaining their legacy code.&#xA;&#xA;#QotoJournal #History #Technology #Programming #Retro #IT&#xA;&#xA;------&#xA;And Klimi enjoyed it. 😺&#xA;&#xA;Thank you, I enjoy writing a lot.&#xA;&#xA;And this could be developed into a new Blog post easily, a thought that occurred to me as I wrote it too. Another motivation for going in length.&#xA;&#xA;I have a couple of favourite Blog posts that started this way, as a Toot or a series of them, and were so interesting that a Blog page was next. :) &#xA;&#xA;I am having many ideas for Blogging again, hope it does come; just got to clear my head, jot down notes and fire up the tools. Appreciate the comment, which means a lot.  😄&#xA;&#xA;-------&#xA;&#xA;Some Articles about Punched Cards and Computing :&#xA;&#xA;While searching for the references in the next session of this page, I came across a wonderful list of articles. At the must-visit Computer History Museum, located in Mountain View, California.&#xA;&#xA;Location&#xA;&#xA;  Computer History Museum&#xA;  1401 N. Shoreline Blvd.&#xA;  Mountain View, CA 94043&#xA;&#xA;About 100 Kilometers south of beautiful San Francisco, and very near the GooglePlex, the giant company headquarters which I suggest as a second attraction to visit if you find yourself in this region. The Museum is breath taking, wonderful, get there early as there&#39;s much to see.&#xA;&#xA;Reference Articles from CHM :&#xA;&#xA;Punched Cards &amp; Paper Tape&#xA;&#xA;The Punched Card&#39;s Pedigree&#xA;&#xA;An Empire Built on Punched Cards&#xA;&#xA;A Scientific Census&#xA;&#xA;------&#xA;&#xA;References -- Keywords used in this Article&#xA;&#xA;a. FORTRAN : &#xA;&#xA;  Fortran is a general-purpose, compiled imperative programming language that is especially suited to numeric computation and scientific computing.&#xA;Originally developed by IBM in the 1950s for scientific and engineering applications, FORTRAN came to dominate this area of programming early on and has been in continuous use for over six decades in computationally intensive areas such as numerical weather prediction, finite element analysis, etc.&#xA;  Wikipedia page&#xA;&#xA;b. BASIC : &#xA;&#xA;  BASIC is a family of general-purpose, high-level programming languages whose design philosophy emphasizes ease of use. The original version was designed by John G. Kemeny and Thomas E. Kurtz and released at Dartmouth College in 1964. They wanted to enable students in fields other than science and mathematics to use computers.&#xA;  Wikipedia page&#xA;&#xA;c. Punched Cards :&#xA;&#xA;  A punched card or punch card is a piece of stiff paper that can be used to contain digital data represented by the presence or absence of holes in predefined positions. Digital data can be used for data processing applications or used to directly control automated machinery.&#xA;  Wikipedia page &#xA;&#xA;d. ALGOL : &#xA;&#xA;  ALGOL is a family of imperative computer programming languages originally developed in 1958. ALGOL heavily influenced many other languages and was the standard method for algorithm description used by the Association for Computing Machinery in textbooks and academic sources until object-oriented languages came around, for more than thirty years.&#xA;  Wikipedia page&#xA;&#xA;e. Burroughs 5500 :&#xA;&#xA;  The Burroughs 5500 was a unique machine, first introduced in 1961 as the B5000. Later advanced to the B5500 (1964) adding disks and finally the B5700 (1971) adding solid state drum. It was the first computer to use the stack as its only means of accessing data.&#xA;The Burrows 5500 article, Sky Visions&#xA; Burrows 5500 computer Brochure, Computing History Museum&#xA;&#xA;f. IBM model 29 Card Punch :&#xA;&#xA;  The IBM 29 Card Punch (also called the 029 or Type 029 Key Punch or Keypunch), introduced about 1964 to coincide with the introduction of the IBM 360. Available in nine models with various combinations of keyboard (12-key numeric or 64-key alphanumeric)...&#xA;  Columbia University page&#xA;  IBM model 29 video YT&#xA;&#xA;g. PASCAL : &#xA;&#xA;  Pascal, a computer programming language developed about 1970 by Niklaus Wirth of Switzerland to teach structured programming, which emphasizes the orderly use of conditional and loop control structures without GOTO statements. Although Pascal resembled ALGOL in notation, it provided the ability to define data types with which to organize complex information.&#xA;  Encyclopedia Britannica page&#xA;&#xA;-----&#xA;Follow Blog via your Fediverse/Mastodon account :&#xA;&#xA; &#xA;&#xA;@rgx@write.tedomum.net&#xA;&#xA;This page created entirely in MarkDown language. Thank you for reading, feel free to comment about this post - reach me at my Writer&#39;s Lounge.&#xA;&#xA; R.G. @rgx@muensterland.social  ^--top of page]]&gt;</description>
      <content:encoded><![CDATA[<p><img src="https://i.postimg.cc/Rhr2BCY1/Fortran-Card-640x360p.jpg" alt=""></p>

<hr>

<h2 id="z-1-y-w-1-top">Z(1) = Y + W(1) <a href="#top" rel="nofollow"> </a></h2>

<p>A <a href="https://qoto.org/tags/Fortran" rel="nofollow"><a href="/rgx/tag:Fortran" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Fortran</span></a></a> Statement in this <a href="/rgx/tag:Vintage" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Vintage</span></a> <a href="/rgx/tag:computing" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">computing</span></a> input device.</p>

<p>The famous “punched cards”, which each cold hold 80 characters or one line of programming instructions or data for processing.</p>

<p>I learned this language, and created my assignments in decks of those cards.</p>

<p>Back in November, when I was starting in mastodon, we had a delightful thread about it, which included this image. @k11m1 — <a href="https://qoto.org/@design_RG/103154401406648568" rel="nofollow">see it here</a></p>

<p><a href="https://qoto.org/tags/QotoJournal" rel="nofollow"><a href="/rgx/tag:QotoJournal" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">QotoJournal</span></a></a> <a href="https://qoto.org/tags/History" rel="nofollow"><a href="/rgx/tag:History" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">History</span></a></a> <a href="https://qoto.org/tags/Technology" rel="nofollow"><a href="/rgx/tag:Technology" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Technology</span></a></a> <a href="https://qoto.org/tags/Programming" rel="nofollow"><a href="/rgx/tag:Programming" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Programming</span></a></a></p>

<p>May 17, 2020, 8:32 PM &lt;!—more—&gt;</p>

<hr>

<h2 id="programming-can-be-fun-or-frustrating">Programming, can be Fun or Frustrating</h2>

<p>A more recent conversation, which started naturally <a href="https://qoto.org/@k11m1/104185799277317896" rel="nofollow">once I saw Klimi&#39;s post</a> :</p>

<p><img src="https://i.postimg.cc/RVtVKN9m/K11m1-OP-Code-1strun-480x87p.jpg" alt=""></p>

<p>My response to this simple statement <a href="https://qoto.org/@design_RG/104186568289439361" rel="nofollow">was a long reply</a>, which I thoroughly enjoyed writing, and now forms the body of this page.</p>

<hr>

<h2 id="getting-it-right-on-the-first-try">Getting it Right on the First Try ?</h2>

<p>LOL...</p>

<p>It is not impossible, but it takes a lot of concentration, and hopefully a smaller programme to work with.</p>

<p>When I first learned, we did not have access to computers directly at all; that was reserved for the high priesthood, serving the needs and whims of the large, school gym sized computer center. We students would create our programmes, that had to do some task assigned by profs.</p>

<p><img src="https://i.postimg.cc/c1FdV2Mv/Burrous-CHM-Bro-Crop-600x400p.jpg" alt=""></p>

<hr>

<h2 id="making-my-own-deck-ibm-model-29">Making my own Deck — IBM model 29 :</h2>

<p>And later get the lines of code ready for input — punch cards for us. I did my own punching, found a quiet room with a machine in the Physics department, little used, and would go there to prepare my deck,</p>

<p>Because testing was laborious (revisions equaling new cards needed, finding a punch, etc) we tried the best we could to read and follow the logic.</p>

<p>But I think getting it bug free in 3 passes was good, very good.</p>

<p><img src="https://i.postimg.cc/zXH40cdZ/IBM-M29-640x394p.jpg" alt=""></p>

<hr>

<h2 id="20-years-later">20 Years Later...</h2>

<p>Fast forward many years, and me teaching <strong>BASIC</strong> programming; my students were bright, did well, but they found it quite hard to create a small programme in paper only (without trying to run and see what happens, to find the errors).</p>

<p>This was good for discipline, but it is less common. They whined every time I called for a pencil and paper only task, lol....😺</p>

<hr>

<h2 id="and-it-continued">And it continued :</h2>

<p><img src="https://i.postimg.cc/R0gM4t17/Klimi-Reponse2-623x148p.jpg" alt=""></p>

<p>@k11m1 Yeah, it was something that was needed when computing power was a precious resource, much less common, and we needed to conserve it.</p>

<p>Good things resulted from that – people created solutions to enable remote access, shared systems, one large machine that processed tasks from many people or departments; scheduling, so you could slot a job for some late hour when there were less people around.</p>

<p>Following the logic is a good thing, as you write line by line, it should make sense, and flow — or else, why did you use that line, and the next?</p>

<p>There are pesky typos that break things, but other than those small input errors, the code should be understandable and make sense.</p>

<p>Someone else might have to work on it someday, and that will make their job easier and faster too.</p>

<hr>

<h2 id="programming-languages-evolved-from-needs">Programming Languages Evolved from Needs</h2>

<p>Back in time programming languages were developed to cater to some specific need or group of users; making it easier to create the projects they needed.</p>

<p>We used Fortran, which is Formula Translation; it was created for Science and Engineering students and professionals.</p>

<p>I had a room mate who was in the Math department, we were both 1st year students, had the same Profs (from Math department), and the same assignments.</p>

<p>But his class used another language, called Algol – which was a better fit for Math people&#39;s needs.</p>

<p>We enjoyed comparing the finished results of our assignments; quite simply, we looked at the thickness of each other&#39;s stack of cards. Sometimes, Algol would win (win being a smaller deck, less processing time), other times Fortran got it. 😄</p>

<hr>

<p><img src="https://i.postimg.cc/2yhM8qLj/Burroughs-5500-Crop-474x315p.jpg" alt=""></p>

<h2 id="my-first-computer-was-a-burroughs-5500">My First Computer was a Burroughs 5500</h2>

<p>It was my first time ever seeing and working with a computer — a mammoth Burroughs 5500 mainframe, and I loved every aspect of it.</p>

<p>Over time, I observed that I could tell right away when something was broken in a new project.</p>
<ul><li>When I had my source code written up, the next step was to hand it in, for a pool of secretaries who would prepare our cards, overnight. Or find a spare IBM punch machine somewhere (my preferred, faster route).</li>
<li>Got the cards? Processing time! Go to the computing center, and get in line with other students with their own decks; we lined up outside, in front of a room that contained a card reader (input) and a large printer (output). This was a smaller room, wired to the computer next door which was all air conditioned to around 18 degrees Celsius year around.</li>
<li>The card reader had two doors, it&#39;s own Input and Output of student processing; in via one, hand in the deck, watch it be read, get a printout, out via the other door.</li>
<li>As the deck was handed in and loaded into the card reader, we stood watching, hoping for a good run. Any result would produce a paper printout, those continuous paper forms. Many times, it was a report of an error at some point.</li>
<li>processing took some seconds; and I noticed that success or failure was indicated by the card reader behaviour; a perfect program would pass thru the reader in linear fashion, smooth flow. I got excited, maybe this time it&#39;s all Good!!</li>
<li>I also noticed that hesitations in the stack flow indicated errors; it would stop at some card, pause or a few seconds, Bad sign! 😔 Soon it would resume, a short report printed, and a more or less dejected student headed out door #2.</li></ul>

<p>...to go back to his desk, his notes and code write up. Read the report (quite cryptic usually), and trace thru the programme to find what was wrong.</p>

<hr>

<h2 id="smooth-flow-is-good-news">Smooth Flow is Good News</h2>

<p>Getting a smooth card reader flow was an instant sign I might have made it – and at best happened at the 3rd try or so (worse sometimes, in harder jobs or if you weren&#39;t focused enough).</p>

<p>Some great work was done in developing whole languages to be used for teaching Programming, like Pascal — good habits would carry on into a professional&#39;s work life, and be appreciated by anyone working with this person, or later maintaining their legacy code.</p>

<p><a href="https://qoto.org/tags/QotoJournal" rel="nofollow"><a href="/rgx/tag:QotoJournal" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">QotoJournal</span></a></a> <a href="https://qoto.org/tags/History" rel="nofollow"><a href="/rgx/tag:History" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">History</span></a></a> <a href="https://qoto.org/tags/Technology" rel="nofollow"><a href="/rgx/tag:Technology" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Technology</span></a></a> <a href="https://qoto.org/tags/Programming" rel="nofollow"><a href="/rgx/tag:Programming" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Programming</span></a></a> <a href="https://qoto.org/tags/Retro" rel="nofollow"><a href="/rgx/tag:Retro" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Retro</span></a></a> <a href="https://qoto.org/tags/IT" rel="nofollow"><a href="/rgx/tag:IT" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">IT</span></a></a></p>

<hr>

<h2 id="and-klimi-enjoyed-it">And Klimi enjoyed it. 😺</h2>

<p><img src="https://i.postimg.cc/Cdp0msYg/K11m1-response-480x108p.jpg" alt=""></p>

<p>Thank you, I enjoy writing a lot.</p>

<p>And this could be developed into a new Blog post easily, a thought that occurred to me as I wrote it too. Another motivation for going in length.</p>

<p>I have a couple of favourite Blog posts that started this way, as a Toot or a series of them, and were so interesting that a Blog page was next. :)</p>

<p>I am having many ideas for Blogging again, hope it does come; just got to clear my head, jot down notes and fire up the tools. Appreciate the comment, which means a lot.  😄</p>

<hr>

<h2 id="some-articles-about-punched-cards-and-computing">Some Articles about Punched Cards and Computing :</h2>

<p>While searching for the references in the next session of this page, I came across a wonderful list of articles. <a href="https://computerhistory.org/visit/" rel="nofollow"><em>At the must-visit</em> <strong>Computer History Museum</strong></a>, located in Mountain View, California.</p>

<p><img src="https://i.postimg.cc/FshDJC2V/CHM-Visit-640x320p.jpg" alt=""></p>

<h3 id="location">Location</h3>

<blockquote><p>Computer History Museum
1401 N. Shoreline Blvd.
Mountain View, CA 94043</p></blockquote>

<p>About 100 Kilometers south of beautiful San Francisco, and <a href="https://en.wikipedia.org/wiki/Googleplex" rel="nofollow"><em>very near the GooglePlex</em></a>, the giant company headquarters which I suggest as a second attraction to visit if you find yourself in this region. The Museum is breath taking, wonderful, get there early as there&#39;s much to see.</p>

<h3 id="reference-articles-from-chm">Reference Articles from CHM :</h3>
<ul><li><p><a href="https://www.computerhistory.org/revolution/memory-storage/8/326" rel="nofollow">Punched Cards &amp; Paper Tape</a></p></li>

<li><p><a href="https://www.computerhistory.org/revolution/punched-cards/2/4" rel="nofollow">The Punched Card&#39;s Pedigree</a></p></li>

<li><p><a href="https://www.computerhistory.org/revolution/punched-cards/2/12" rel="nofollow">An Empire Built on Punched Cards</a></p></li>

<li><p><a href="https://www.computerhistory.org/revolution/punched-cards/2/220" rel="nofollow">A Scientific Census</a></p></li></ul>

<hr>

<h2 id="references-keywords-used-in-this-article">References — Keywords used in this Article</h2>

<p>a. FORTRAN :</p>

<blockquote><p>Fortran is a general-purpose, compiled imperative programming language that is especially suited to numeric computation and scientific computing.
Originally developed by IBM in the 1950s for scientific and engineering applications, FORTRAN came to dominate this area of programming early on and has been in continuous use for over six decades in computationally intensive areas such as numerical weather prediction, finite element analysis, etc.
<a href="https://en.wikipedia.org/wiki/Fortran" rel="nofollow">Wikipedia page</a></p></blockquote>

<p>b. BASIC :</p>

<blockquote><p>BASIC is a family of general-purpose, high-level programming languages whose design philosophy emphasizes ease of use. The original version was designed by John G. Kemeny and Thomas E. Kurtz and released at Dartmouth College in 1964. They wanted to enable students in fields other than science and mathematics to use computers.
<a href="http://en.wikipedia.org/wiki/BASIC" rel="nofollow">Wikipedia page</a></p></blockquote>

<p>c. Punched Cards :</p>

<blockquote><p>A punched card or punch card is a piece of stiff paper that can be used to contain digital data represented by the presence or absence of holes in predefined positions. Digital data can be used for data processing applications or used to directly control automated machinery.
<a href="https://en.wikipedia.org/wiki/http://en.wikipedia.org/wiki/Punched_card" rel="nofollow">Wikipedia page</a></p></blockquote>

<p>d. ALGOL :</p>

<blockquote><p>ALGOL is a family of imperative computer programming languages originally developed in 1958. ALGOL heavily influenced many other languages and was the standard method for algorithm description used by the Association for Computing Machinery in textbooks and academic sources until object-oriented languages came around, for more than thirty years.
<a href="https://en.wikipedia.org/wiki/ALGOL" rel="nofollow">Wikipedia page</a></p></blockquote>

<p>e. Burroughs 5500 :</p>

<blockquote><p>The Burroughs 5500 was a unique machine, first introduced in 1961 as the B5000. Later advanced to the B5500 (1964) adding disks and finally the B5700 (1971) adding solid state drum. It was the first computer to use the stack as its only means of accessing data.
<a href="https://sky-visions.com/burroughs/" rel="nofollow">The Burrows 5500 article, Sky Visions</a>
<a href="https://www.computerhistory.org/revolution/mainframe-computers/7/166/674" rel="nofollow"> Burrows 5500 computer Brochure, Computing History Museum</a></p></blockquote>

<p>f. IBM model 29 Card Punch :</p>

<blockquote><p>The IBM 29 Card Punch (also called the 029 or Type 029 Key Punch or Keypunch), introduced about 1964 to coincide with the introduction of the IBM 360. Available in nine models with various combinations of keyboard (12-key numeric or 64-key alphanumeric)...
<a href="http://www.columbia.edu/cu/computinghistory/029.html" rel="nofollow">Columbia University page</a>
<a href="https://youtu.be/8edfFH0rklc" rel="nofollow">IBM model 29 video YT</a></p></blockquote>

<p>g. PASCAL :</p>

<blockquote><p>Pascal, a computer programming language developed about 1970 by Niklaus Wirth of Switzerland to teach structured programming, which emphasizes the orderly use of conditional and loop control structures without GOTO statements. Although Pascal resembled ALGOL in notation, it provided the ability to define data types with which to organize complex information.
<a href="https://www.britannica.com/technology/Pascal-computer-language" rel="nofollow">Encyclopedia Britannica page</a></p></blockquote>

<hr>

<h3 id="follow-blog-via-your-fediverse-mastodon-account">Follow Blog via your Fediverse/Mastodon account :</h3>

<p><img src="https://i.postimg.cc/vZmtLMRb/Musings-Footer-400x80p.png" alt=""></p>

<p><strong><a href="https://write.tedomum.net/@/rgx@write.tedomum.net" class="u-url mention" rel="nofollow">@<span>rgx@write.tedomum.net</span></a></strong></p>

<p><em>This page created entirely in MarkDown language.</em> Thank you for reading, feel free to comment about this post – <em>reach me <a href="https://muensterland.social/@rgx" rel="nofollow">at my Writer&#39;s Lounge</a></em>.</p>

<p><img src="https://i.postimg.cc/d3ThDcdc/cat-mtx-60p.png" alt=""> R.G. <a href="https://muensterland.social/@rgx" rel="nofollow"><a href="https://write.tedomum.net/@/rgx@muensterland.social" class="u-url mention" rel="nofollow">@<span>rgx@muensterland.social</span></a></a> <a href="#top" rel="nofollow"> ^—top of page</a></p>
]]></content:encoded>
      <guid>https://write.tedomum.net/rgx/memories-starting-in-computing-in-the-70s</guid>
      <pubDate>Thu, 18 Jun 2020 16:29:38 +0000</pubDate>
    </item>
    <item>
      <title>Joining the Internet in the mid 90&#39;s. </title>
      <link>https://write.tedomum.net/rgx/joining-the-internet-in-the-mid-90s</link>
      <description>&lt;![CDATA[Before consumer internet service was available, you needed an academic or business account.&#xA;&#xA;------&#xA;Story Time. Joining the Internet in the mid 90&#39;s.  &#xA;&#xA;introductions [words in Italicized text have Definitions later in page]&#xA;&#xA;My first access to the internet was via an academic server, running Irix on a Silicon Graphics machine. They were pretty, with some purple details and very modern design. We low grade users did not have physical access of course, but the Irix command line was quite enjoyable, I learned all the basic operations of the Internet (that was pre-Web days) via command line utilities.&#xA;&#xA;Pine for email. Gopher was cutting edge stuff. FTP to download text and binaries, program files from remote servers. Telnet , to access another Unix system in Colorado were I had a free shell account - the very first one I ever had. \!--more--&#xA;&#xA;At first, I would Dial Up into the modem pool from home, connect via ppp, login with my friend&#39;s credentials (he was already a uni student, I became one there later too).&#xA;&#xA;(part 1 of 2) &#xA;#storytime #vintage #retrocomputing #unix&#xA;-----&#xA;&#xA;Screenshot of the Nyx About this Server page&#xA;And How To get a Shell account. &#xA;&#xA;On my first or second day there, sharing his account, I found myself this neat system in Colorado. It was a home for me for a long time, and it is still running.&#xA;&#xA;Loved Nyx! We accessed it remotely at nyx10.nyx.net, via Telnet or SSH, using a secure shell protocol client programs.&#xA;&#xA;They are STILL there now, the Join Nyx page STILL offer free accounts, command line Unix Shell access only.  &#xA;&#xA;Originally posted as Toots in a Mastodon instance. I wanted to create a Blog post about this, the story is just too nice to be lost.&#xA;&#xA;Screenshot of the Nyx How to Join Server page. (2 of 2)&#xA;&#xA;-----&#xA;References and Notes :&#xA;&#xA;a. Irix : &#xA;&#xA;  IRIX is a discontinued operating system developed by Silicon Graphics to run on the company&#39;s proprietary MIPS workstations and servers. It is a variety of UNIX System V with BSD extensions. Wikipedia page  Company page&#xA;&#xA;b. Silicon Graphics : &#xA;&#xA;  Silicon Graphics, Inc. was an American high-performance computing manufacturer, producing computer hardware and software. Founded in Mountain View, California in November 1981 by Jim Clark, its initial market was 3D graphics computer workstations, but its products, strategies and market positions developed significantly over time. &#xA;  Wikipedia page  Company page&#xA;&#xA;c. Pine (email) : &#xA;&#xA;  Pine is a freeware, text-based email client which was developed at the University of Washington. The first version was written in 1989, and announced to the public in March 1992. Source code was available for only the Unix version under a license written by the University of Washington.&#xA;  Wikipedia page)&#xA;&#xA;d. Gopher : &#xA;&#xA;  The Gopher protocol is a communications protocol designed for distributing, searching, and retrieving documents in Internet Protocol networks. The design of the Gopher protocol and user interface is menu-driven, and presented an alternative to the World Wide Web in its early stages, but ultimately fell into disfavor, yielding to the Hypertext Transfer Protocol. The Gopher ecosystem is often regarded as the effective predecessor of the World Wide Web.&#xA;  Wikipedia page&#xA;&#xA;e. FTP : &#xA;&#xA;  The File Transfer Protocol (FTP) is a standard network protocol used for the transfer of computer files between a client and server on a computer network. FTP is built on a client-server model architecture using separate control and data connections between the client and the server. &#xA;  Wikipedia page&#xA;&#xA;f. Telnet : &#xA;&#xA;  Telnet is an application protocol used on the Internet or local area network to provide a bidirectional interactive text-oriented communication facility using a virtual terminal connection. User data is interspersed in-band with Telnet control information in an 8-bit byte oriented data connection over the Transmission Control Protocol.&#xA;  Wikipedia page&#xA;&#xA;g. Unix : &#xA;&#xA;  Unix is a family of multitasking, multiuser computer operating systems that derive from the original AT&amp;T Unix, development starting in the 1970s at the Bell Labs research center by Ken Thompson, Dennis Ritchie, and others.&#xA;  Wikipedia page  Company page&#xA;&#xA;h. Dial Up : &#xA;&#xA;  Dial-up Internet access is a form of Internet access that uses the facilities of the public switched telephone network (PSTN) to establish a connection to an Internet service provider (ISP) by dialing a telephone number on a conventional telephone line. Dial-up connections use modems to decode audio signals into data to send to a router or computer, and to encode signals from the latter two devices to send to another modem. &#xA;  Wikipedia page&#xA;  Dial up modem sounds Dial up video (26 secs)&#xA;&#xA;i. ppp : &#xA;&#xA;  In computer networking, Point-to-Point Protocol (PPP) is a data link layer (layer 2) communications protocol between two routers directly without any host or any other networking in between. It can provide connection authentication, transmission encryption,[1] and compression.&#xA;    PPP is used over many types of physical networks including serial cable, phone line, trunk line, cellular telephone, specialized radio links, and fiber optic links such as SONET. Internet service providers (ISPs) have used PPP for customer dial-up access to the Internet, since IP packets cannot be transmitted over a modem line on their own, without some data link protocol that can identify where the transmitted frame starts and where it ends. &#xA;  Wikipedia page&#xA;&#xA;h. Nyx public access Unix system : &#xA;&#xA;  Nyx is a public access Unix system that brings you as much access to the resources of Unix and the Internet as we can allow. It is a public computing equivalent to public TV. Nyx is a free, public system that provides access to the Internet for users who otherwise cannot reach it. Nyx is run by a non-profit, tax exempt corporation called &#34;Nyx Net.&#34;&#xA;  About Nyx Join Nyx&#xA;&#xA;-----&#xA;Follow Blog via your Fediverse/Mastodon account :&#xA;&#xA; &#xA;&#xA;@rgx@write.tedomum.net&#xA;&#xA;This page created entirely in MarkDown language. Thank you for reading, feel free to comment about this post - reach me at my Writer&#39;s Lounge.&#xA;&#xA; R.G. @rgx@muensterland.social  ^--top of page]]&gt;</description>
      <content:encoded><![CDATA[<h4 id="before-consumer-internet-service-was-available-you-needed-an-academic-or-business-account">Before consumer internet service was available, you needed an academic or business account.</h4>

<p><img src="https://i.postimg.cc/HWt6wxmc/USR-Courier-Lighted-UP-650x300p.jpg" alt=""></p>

<hr>

<h3 id="story-time-joining-the-internet-in-the-mid-90-s-top">Story Time. Joining the Internet in the mid 90&#39;s. <a href="#top" rel="nofollow"> </a></h3>

<p><a href="/rgx/tag:introductions" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">introductions</span></a> [words in <em>Italicized text</em> have Definitions later in page]</p>

<p>My first access to the internet was via an academic server, running <em>Irix</em> on a <em>Silicon Graphics</em> machine. They were pretty, with some purple details and very modern design. We low grade users did not have physical access of course, but the <em>Irix</em> command line was quite enjoyable, I learned all the basic operations of the Internet (that was pre-Web days) via command line utilities.</p>

<p><em>Pine</em> for email. <em>Gopher</em> was cutting edge stuff. <em>FTP</em> to download text and binaries, program files from remote servers. <em>Telnet</em> , to access another <em>Unix</em> system in Colorado were I had a free shell account – the very first one I ever had. &lt;!—more—&gt;</p>

<p>At first, I would <em>Dial Up</em> into the modem pool from home, connect via <em>ppp</em>, login with my friend&#39;s credentials (he was already a uni student, I became one there later too).</p>

<p>(part 1 of 2)
<a href="/rgx/tag:storytime" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">storytime</span></a> <a href="/rgx/tag:vintage" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">vintage</span></a> <a href="/rgx/tag:retrocomputing" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">retrocomputing</span></a> <a href="/rgx/tag:unix" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">unix</span></a></p>

<hr>

<p><img src="https://i.postimg.cc/HLcyLSY4/Nyx10-What-is-it-711x305p.png" alt="">
<em>Screenshot of the Nyx About this Server page</em></p>

<h3 id="and-how-to-get-a-shell-account">And How To get a Shell account.</h3>

<p>On my first or second day there, sharing his account, I found myself this neat system in Colorado. It was a home for me for a long time, and it is still running.</p>

<p><strong>Loved Nyx!</strong> We accessed it <a href="https://nyx10.nyx.net" rel="nofollow">remotely at nyx10.nyx.net</a>, via Telnet or SSH, using a secure shell protocol client programs.</p>

<p><em>They are STILL there now</em>, the <a href="https://nyx10.nyx.net/newacct.html" rel="nofollow"><em><strong>Join Nyx</strong></em> page STILL offer free accounts</a>, command line Unix Shell access only.</p>

<p><em>Originally posted as Toots in a Mastodon instance. I wanted to create a Blog post about this, the story is just too nice to be lost.</em></p>

<p><em>Screenshot of the Nyx How to Join Server page</em>. (2 of 2)</p>

<p><img src="https://i.postimg.cc/ncDgvx36/Nyx10-how-to-join-info-600x206p.png" alt=""></p>

<hr>

<h3 id="references-and-notes">References and Notes :</h3>

<p>a. Irix :</p>

<blockquote><p>IRIX is a discontinued operating system developed by Silicon Graphics to run on the company&#39;s proprietary MIPS workstations and servers. It is a variety of UNIX System V with BSD extensions. <a href="http://en.wikipedia.org/wiki/IRIX" rel="nofollow">Wikipedia page</a>  <a href="http://www.sgi.com/products/software/irix/" rel="nofollow">Company page</a></p></blockquote>

<p>b. Silicon Graphics :</p>

<blockquote><p>Silicon Graphics, Inc. was an American high-performance computing manufacturer, producing computer hardware and software. Founded in Mountain View, California in November 1981 by Jim Clark, its initial market was 3D graphics computer workstations, but its products, strategies and market positions developed significantly over time.
<a href="http://en.wikipedia.org/wiki/Silicon_Graphics" rel="nofollow">Wikipedia page</a>  <a href="http://www.sgi.com/" rel="nofollow">Company page</a></p></blockquote>

<p>c. Pine (email) :</p>

<blockquote><p>Pine is a freeware, text-based email client which was developed at the University of Washington. The first version was written in 1989, and announced to the public in March 1992. Source code was available for only the Unix version under a license written by the University of Washington.
<a href="http://en.wikipedia.org/wiki/Pine_(email_client)" rel="nofollow">Wikipedia page</a></p></blockquote>

<p>d. Gopher :</p>

<blockquote><p>The Gopher protocol is a communications protocol designed for distributing, searching, and retrieving documents in Internet Protocol networks. The design of the Gopher protocol and user interface is menu-driven, and presented an alternative to the World Wide Web in its early stages, but ultimately fell into disfavor, yielding to the Hypertext Transfer Protocol. The Gopher ecosystem is often regarded as the effective predecessor of the World Wide Web.
<a href="https://en.wikipedia.org/wiki/Gopher_%28protocol%29" rel="nofollow">Wikipedia page</a></p></blockquote>

<p>e. FTP :</p>

<blockquote><p>The File Transfer Protocol (FTP) is a standard network protocol used for the transfer of computer files between a client and server on a computer network. FTP is built on a client-server model architecture using separate control and data connections between the client and the server.
<a href="https://en.wikipedia.org/wiki/File_Transfer_Protocol" rel="nofollow">Wikipedia page</a></p></blockquote>

<p>f. Telnet :</p>

<blockquote><p>Telnet is an application protocol used on the Internet or local area network to provide a bidirectional interactive text-oriented communication facility using a virtual terminal connection. User data is interspersed in-band with Telnet control information in an 8-bit byte oriented data connection over the Transmission Control Protocol.
<a href="http://en.wikipedia.org/wiki/Telnet" rel="nofollow">Wikipedia page</a></p></blockquote>

<p>g. Unix :</p>

<blockquote><p>Unix is a family of multitasking, multiuser computer operating systems that derive from the original AT&amp;T Unix, development starting in the 1970s at the Bell Labs research center by Ken Thompson, Dennis Ritchie, and others.
<a href="https://en.wikipedia.org/wiki/Unix" rel="nofollow">Wikipedia page</a>  <a href="http://opengroup.org/unix" rel="nofollow">Company page</a></p></blockquote>

<p>h. Dial Up :</p>

<blockquote><p>Dial-up Internet access is a form of Internet access that uses the facilities of the public switched telephone network (PSTN) to establish a connection to an Internet service provider (ISP) by dialing a telephone number on a conventional telephone line. Dial-up connections use modems to decode audio signals into data to send to a router or computer, and to encode signals from the latter two devices to send to another modem.
<a href="https://en.wikipedia.org/wiki/Dial-up_Internet_access" rel="nofollow">Wikipedia page</a>
<a href="https://en.wikipedia.org/wiki/File:Dial_up_modem_noises.ogg" rel="nofollow">Dial up modem sounds</a> <a href="https://www.youtube.com/watch?v=PDE9b5iU8vI" rel="nofollow">Dial up video (26 secs)</a></p></blockquote>

<p>i. ppp :</p>

<blockquote><p>In computer networking, Point-to-Point Protocol (PPP) is a data link layer (layer 2) communications protocol between two routers directly without any host or any other networking in between. It can provide connection authentication, transmission encryption,[1] and compression.</p>

<p>PPP is used over many types of physical networks including serial cable, phone line, trunk line, cellular telephone, specialized radio links, and fiber optic links such as SONET. Internet service providers (ISPs) have used PPP for customer dial-up access to the Internet, since IP packets cannot be transmitted over a modem line on their own, without some data link protocol that can identify where the transmitted frame starts and where it ends.
<a href="https://en.wikipedia.org/wiki/Point-to-Point_Protocol" rel="nofollow">Wikipedia page</a></p></blockquote>

<p>h. Nyx public access Unix system :</p>

<blockquote><p>Nyx is a public access Unix system that brings you as much access to the resources of Unix and the Internet as we can allow. It is a public computing equivalent to public TV. Nyx is a free, public system that provides access to the Internet for users who otherwise cannot reach it. Nyx is run by a non-profit, tax exempt corporation called “Nyx Net.”
<a href="https://nyx10.nyx.net/about.html" rel="nofollow">About Nyx</a> <a href="https://nyx10.nyx.net/newacct.html" rel="nofollow">Join Nyx</a></p></blockquote>

<hr>

<h3 id="follow-blog-via-your-fediverse-mastodon-account">Follow Blog via your Fediverse/Mastodon account :</h3>

<p><img src="https://i.postimg.cc/vZmtLMRb/Musings-Footer-400x80p.png" alt=""></p>

<h4 id="rgx-write-tedomum-net"><a href="https://write.tedomum.net/@/rgx@write.tedomum.net" class="u-url mention" rel="nofollow">@<span>rgx@write.tedomum.net</span></a></h4>

<p><em>This page created entirely in MarkDown language.</em> Thank you for reading, feel free to comment about this post – <em>reach me <a href="https://muensterland.social/@rgx" rel="nofollow">at my Writer&#39;s Lounge</a></em>.</p>

<p><img src="https://i.postimg.cc/d3ThDcdc/cat-mtx-60p.png" alt=""> R.G. <a href="https://muensterland.social/@rgx" rel="nofollow"><a href="https://write.tedomum.net/@/rgx@muensterland.social" class="u-url mention" rel="nofollow">@<span>rgx@muensterland.social</span></a></a> <a href="#top" rel="nofollow"> ^—top of page</a></p>
]]></content:encoded>
      <guid>https://write.tedomum.net/rgx/joining-the-internet-in-the-mid-90s</guid>
      <pubDate>Sat, 14 Dec 2019 19:09:36 +0000</pubDate>
    </item>
  </channel>
</rss>