<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>computing &amp;mdash; Musings by @rg</title>
    <link>https://write.tedomum.net/rgx/tag:computing</link>
    <description>A place to jot down ideas, notes, pointers.</description>
    <pubDate>Fri, 17 Apr 2026 14:11:54 +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>The Fediverse reminds me so much of FidoNet</title>
      <link>https://write.tedomum.net/rgx/the-fediverse-reminds-me-so-much-of-fidonet</link>
      <description>&lt;![CDATA[&#xA;&#xA;-----&#xA;New Year&#39;s day, and all is quiet in the land. :-)  &#xA;&#xA;Time to catch up, and I remembered an idea for a blog post a few days ago. We were having some discussions (which turned a bit heated), but later things calmed down.&#xA;&#xA;Chatting in a Mastodon network thread, I mentioned the situation reminded me a lot of my days in the BBS world; where I started in computers, dial-up modems, and the network I was soon participating in - called FidoNet. The conversation went as follows:  \!--more--&#xA;&#xA;-----&#xA;Brings memories of sysops battling it out on our local FidoNet network!!&#xA;&#xA;Time goes on, humanity continues.&#xA;&#xA;Fediverse is indeed quite similar to the wonderful pioneer that Fidonet was. Way before internet was accessible to the masses.&#xA;&#xA;  @anarchiv : as a part of the unthinking masses, I don&#39;t know what that is.&#xA;&#xA;Fidonet? it was a network formed by independant system operators (sysops for short) in the days of BBSes (Bulletin Board Systems) being the only computers you could reach and connect to from home.&#xA;&#xA;We only had dial up lines, but it was amazing to dial up and connect to a place with information, software for download, online games. All of this for free in most cases.&#xA;&#xA;People operated those as a hobby, all of them loved computing. It attracted similar people, which is how I joined. 1992.&#xA;-----&#xA;I will write a blog post or more about it soon, there&#39;s so many good stories and similarities to the Fediverse. It felt immediately similar when I joined here.&#xA;&#xA;Even the brawling with other sysops, who sometimes we didn&#39;t like, we did that as well, lol.&#xA;&#xA;Great fun to be had, lots of coffee was consumed, talks went late into the night.&#xA;&#xA;The network was worldwide, and sent international mail via phone calls. Data lines? not available at the time.&#xA;&#xA;Memories...&#xA;Another conversation mentioned Fidonet on our Local instance chats.&#xA;&#xA;-----&#xA;I have been seeing and feeling many similarities between the fediverse and my first experience with networking, way back in the early 90s.&#xA;&#xA;Back then, all we had were BBSes, phone lines and 2400 bps modems, but there was an international network linking many of them already - FidoNet.&#xA;&#xA;FidoNet had as one of its core principles something similar to your approach here:&#xA;&#xA;Thou Shall not be Annoying. immediately followed by :&#xA;Thou Shall not be Easily Annoyed.  &#xA;Words of wisdom to live by!&#xA;&#xA;  @freemo : I started on the BBS dialup days as well. The connected network between them was just coming around at the time.&#xA;    Did you play the Doors games like LOTRD?&#xA;&#xA;Yes, I did play some of the games. Sometimes you had to be waiting to be able to connect, as in most cases there was only one phone line. People had fun running a BBS in a spare computer, and we could get software galore, when there was no Internet access to the public, which only came later (about 1995 or so here in Canada).&#xA;&#xA;Watching the dialing, the link negotiation between the modems, seeing the ASCII art load, it was so much fun. &#xA;&#xA;  @freemo : The good ol&#39; days :)&#xA;&#xA;-----&#xA;&#xA;From those pioneer days, fast forward 25 years -- And now we have online, free streaming video of the nice &#34;BBS - The Documentary&#34; series, by Jason Scott. &#xA;&#xA;The full series is on Qoto Peertube; see a a href=&#34;https://video.qoto.org/my-account/video-playlists/e42166e0-2b58-4e04-aa2e-957ba52aca0b&#34; target=&#34;blank&#34;playlist with all 8 episodes here/a. If you want to see the a href=&#34;https://video.qoto.org/videos/watch/228e013c-6bf3-4911-a844-3e700ce2ede4&#34; target=&#34;blank&#34;FidoNet episode, part 4, it&#39;s here/a.&#xA;&#xA;Synopsis from DVD version :&#xA;&#xA;From the a href=&#34;https://docuwiki.net/index.php?title=BbsTheDocumentary&#34; target=&#34;blank&#34;DocuWiki page for this series/a, we have the full synopsis :&#xA;&#xA;  Long before the Internet escaped from the lab, connected the planet and redefined what it meant to use a computer there was a brave and pioneering band of computer users who spent their time, money and sanity setting up their home computers and phone lines to welcome anyone who called. By using a modem, anyone else who knew the phone number of these computers could connect to them, leave messages, send and recieve files.... and millions did.&#xA;    They called these places &#34;Bulletin Board Systems&#34;, or BBSes. And their collections of messages, rants, thoughts and dreams became the way that an entire generation learned about being online. When the Internet grew in popularity in the early 1990s, the world of the BBS faded, changed, and became a part of the present networked world.. but it wasn&#39;t the same.&#xA;&#xA;Get your own copies : &#xA;&#xA;Jason Scott has released the original DVDs to the Internet Archive, and anyone interested can watch online, download individual episodes -- or the 3 DVD ISO images here.&#xA;&#xA;Our PeerTube videos are better quality, a DVD rip by MVGroup.org and a href=&#34;http://forums.mvgroup.org/index.php?showtopic=49295&#34; target=&#34;blank&#34;released in Bit Torrent and eMule networks/a (free user registration, login required).&#xA;&#xA;-----&#xA;References :&#xA;&#xA;a. BBS systems : &#xA;&#xA;  A Bulletin Board System or BBS (once called Computer Bulletin Board Service, CBBS[1]) is a computer server running software that allows users to connect to the system using a terminal program. Once logged in, the user can perform functions such as uploading and downloading software and data, reading news and bulletins, and exchanging messages with other users through public message boards and sometimes via direct chatting. In the early 1980s, message networks such as FidoNet sprung up to provide services such as NetMail, which is similar to email. &#xA;  Wikipedia page&#xA;&#xA;b. FidoNet computer network : &#xA;&#xA;  FidoNet is a worldwide computer network that is used for communication between bulletin board systems (BBSes). It uses a store-and-forward system to exchange private (email) and public (forum) messages between the BBSes in the network, as well as other files and protocols in some cases.&#xA;  Wikipedia page&#xA;&#xA;c. Dial-Up Networking : &#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;#modem #DialUp #networking #Retro #Computing &#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/PfF8crbS/BBS-Hdr-640x466p.jpg" alt=""></p>

<hr>

<h2 id="new-year-s-day-and-all-is-quiet-in-the-land-top">New Year&#39;s day, and all is quiet in the land. :–) <a href="#top" rel="nofollow"> </a></h2>

<p>Time to catch up, and I remembered an idea for a blog post a few days ago. We were having some discussions (<em>which turned a bit heated</em>), but later things calmed down.</p>

<p>Chatting <a href="https://qoto.org/@design_RG/103363676624719804" rel="nofollow">in a Mastodon network thread</a>, I mentioned the situation reminded me a lot of my days in the BBS world; where I started in computers, dial-up modems, and the network I was soon participating in – <a href="https://en.wikipedia.org/wiki/FidoNet" rel="nofollow">called <strong><em>FidoNet</em></strong></a>. The conversation went as follows:  &lt;!—more—&gt;</p>

<hr>

<p>Brings memories of sysops battling it out on our local FidoNet network!!</p>

<p>Time goes on, humanity continues.</p>

<p>Fediverse is indeed quite similar to the wonderful pioneer that Fidonet was. Way before internet was accessible to the masses.</p>

<blockquote><p>@anarchiv : as a part of the unthinking masses, I don&#39;t know what that is.</p></blockquote>

<p>Fidonet? it was a network formed by independant system operators (sysops for short) in the days of BBSes (<em>Bulletin Board Systems</em>) being the only computers you could reach and connect to from home.</p>

<p>We only had dial up lines, but it was amazing to dial up and connect to a place with information, software for download, online games. All of this for free in most cases.</p>

<p>People operated those as a hobby, all of them loved computing. It attracted similar people, which is how I joined. 1992.</p>

<hr>

<p>I will write a blog post or more about it soon, there&#39;s so many good stories and similarities to the Fediverse. It felt immediately similar when I joined here.</p>

<p>Even the brawling with other sysops, who sometimes we didn&#39;t like, we did that as well, lol.</p>

<p>Great fun to be had, lots of coffee was consumed, talks went late into the night.</p>

<p>The network was worldwide, and sent international mail via phone calls. Data lines? not available at the time.</p>

<p><img src="https://i.postimg.cc/SK1j2gKm/BBS-scr-640x480p.jpg" alt=""></p>

<h3 id="memories">Memories...</h3>

<p>Another conversation <a href="https://qoto.org/@design_RG/103119649798111687" rel="nofollow">mentioned <em>Fidonet</em> on our Local instance</a> chats.</p>

<hr>

<p>I have been seeing and feeling many similarities between the fediverse and my first experience with networking, way back in the early 90s.</p>

<p>Back then, all we had were BBSes, phone lines and 2400 bps modems, but there was an international network linking many of them already – FidoNet.</p>

<p>FidoNet had as one of its core principles something similar to your approach here:</p>
<ul><li>Thou Shall not be Annoying. <em>immediately followed by :</em></li>
<li>Thou Shall not be Easily Annoyed.<br>
Words of wisdom to live by!</li></ul>

<blockquote><p>@freemo : I started on the BBS dialup days as well. The connected network between them was just coming around at the time.</p>

<p>Did you play the Doors games like LOTRD?</p></blockquote>

<p>Yes, I did play some of the games. Sometimes you had to be waiting to be able to connect, as in most cases there was only one phone line. People had fun running a BBS in a spare computer, and we could get software galore, when there was no Internet access to the public, which only came later (about 1995 or so here in Canada).</p>

<p>Watching the dialing, the link negotiation between the modems, seeing the ASCII art load, it was so much fun.</p>

<blockquote><p>@freemo : The good ol&#39; days :)</p></blockquote>

<hr>

<p>From those pioneer days, fast forward 25 years — And now we have online, free streaming video of the nice “BBS – The Documentary” series, by Jason Scott.</p>

<p>The full series is on Qoto Peertube; see a <a href="https://video.qoto.org/my-account/video-playlists/e42166e0-2b58-4e04-aa2e-957ba52aca0b" target="_blank" rel="nofollow noopener"><em>playlist with <strong>all 8 episodes</strong> here</em></a>. If you want to see the <a href="https://video.qoto.org/videos/watch/228e013c-6bf3-4911-a844-3e700ce2ede4" target="_blank" rel="nofollow noopener"><em><strong>FidoNet episode</strong>, part 4, it&#39;s here</em></a>.</p>

<p><img src="https://i.postimg.cc/sg1kfmbY/JScott-640x320p.jpg" alt=""></p>

<h3 id="synopsis-from-dvd-version">Synopsis from DVD version :</h3>

<p>From the <a href="https://docuwiki.net/index.php?title=Bbs_The_Documentary" target="_blank" rel="nofollow noopener"><em><strong>DocuWiki</strong> page for this series</em></a>, we have the full synopsis :</p>

<blockquote><p>Long before the Internet escaped from the lab, connected the planet and redefined what it meant to use a computer there was a brave and pioneering band of computer users who spent their time, money and sanity setting up their home computers and phone lines to welcome anyone who called. By using a modem, anyone else who knew the phone number of these computers could connect to them, leave messages, send and recieve files.... and millions did.</p>

<p>They called these places “Bulletin Board Systems”, or BBSes. And their collections of messages, rants, thoughts and dreams became the way that an entire generation learned about being online. When the Internet grew in popularity in the early 1990s, the world of the BBS faded, changed, and became a part of the present networked world.. but it wasn&#39;t the same.</p></blockquote>

<p><img src="https://i.postimg.cc/pTPkrXyw/BBS-dvd-400x240p.jpg" alt=""></p>

<h3 id="get-your-own-copies">Get your own copies :</h3>

<p>Jason Scott has released the original DVDs to the <strong>Internet Archive</strong>, and anyone interested <a href="https://archive.org/details/BBS.The.Documentary" rel="nofollow"><em>can watch online, download individual episodes</em></a> — or the <a href="https://archive.org/details/bbsdocumentary" rel="nofollow"><strong><em>3 DVD</em></strong> ISO images here</a>.</p>

<p>Our PeerTube videos are <em>better quality</em>, a DVD rip by <strong><em>MVGroup.org</em></strong> and <a href="http://forums.mvgroup.org/index.php?showtopic=49295" target="_blank" rel="nofollow noopener">released in <em>Bit Torrent and eMule</em> networks</a> (<em>free user registration, login required</em>).</p>

<hr>

<h3 id="references">References :</h3>

<p>a. BBS systems :</p>

<blockquote><p>A Bulletin Board System or BBS (once called Computer Bulletin Board Service, CBBS[1]) is a computer server running software that allows users to connect to the system using a terminal program. Once logged in, the user can perform functions such as uploading and downloading software and data, reading news and bulletins, and exchanging messages with other users through public message boards and sometimes via direct chatting. In the early 1980s, message networks such as FidoNet sprung up to provide services such as NetMail, which is similar to email.
<a href="https://en.wikipedia.org/wiki/Bulletin_board_system" rel="nofollow">Wikipedia page</a></p></blockquote>

<p>b. FidoNet computer network :</p>

<blockquote><p>FidoNet is a worldwide computer network that is used for communication between bulletin board systems (BBSes). It uses a store-and-forward system to exchange private (email) and public (forum) messages between the BBSes in the network, as well as other files and protocols in some cases.
<a href="https://en.wikipedia.org/wiki/FidoNet" rel="nofollow">Wikipedia page</a></p></blockquote>

<p>c. Dial-Up Networking :</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><a href="/rgx/tag:modem" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">modem</span></a> <a href="/rgx/tag:DialUp" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">DialUp</span></a> <a href="/rgx/tag:networking" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">networking</span></a> <a href="/rgx/tag:Retro" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Retro</span></a> <a href="/rgx/tag:Computing" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Computing</span></a></p>

<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/the-fediverse-reminds-me-so-much-of-fidonet</guid>
      <pubDate>Thu, 02 Jan 2020 01:24:31 +0000</pubDate>
    </item>
    <item>
      <title>Story Time : How I got started in Computer Networking</title>
      <link>https://write.tedomum.net/rgx/story-time-how-i-got-started-in-computer-networking</link>
      <description>&lt;![CDATA[image|690x389,75% &#xA;-----&#xA;Reaching out, Connecting. &#xA;&#xA;A modem was the only available way to reach out and connect to other computer systems in the early 90&#39;s. They were not cheap, but the allure of finding out what was out there was enticing. You saved, until you could get one.&#xA;&#xA;My first modem was an US Robotics Courier 2400 bps, internal model. Purchased it in a company liquidation sale, new in a sealed box.&#xA;&#xA;I had to learn VERY quickly of all the intricacies of IRQs, Com port addresses and default assigned IRQs, Jumper settings to change those. \!--more--&#xA;&#xA;And -- even when perfectly configured for a Com 2, IRQ 3 (I think it was, been a long time), it did not work well at all.&#xA;&#xA;More troubleshooting, and it was the beginning of my learning of many aspects of PC technology. Fast forward 5 years and I was teaching a Computer Repairs class, all from what I learned on my own, struggling but persevering and getting things working in the end.&#xA;&#xA;Loved it, specially when things were working well! &#xA;&#xA;Turns out, the modem problem wasn&#39;t the modem, or any ports on the ISA expansion card this system had. It was the mouse, a Logitech bus mouse with its own ISA controller card, which had been set by jumpers to use IRQ 3, the one I wanted, default for Com2 serial ports.&#xA;&#xA;Once I figured that, a Jumper change and it moved to IRQ 5; no more conflicts.&#xA;&#xA;And my adventures in the BBS world started. Becoming an active member of FidoNet was the next phase. &#xA;&#xA;Listen the Dial up modem connection sounds  &#xA;or see a Dial up connection video (26 secs)&#xA;&#xA; Internet? that took about 4 years before I could get access, when joining a University. NO consumer internet existed at the time, it only became more common later, 1996-7 or so.&#xA;&#xA;-----&#xA;Joining the internet in the mid 90s: &#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.&#xA;&#xA;See the Joining the internet in the mid 90s post for the continuation of this story.&#xA;&#xA;-----&#xA;References and Notes :&#xA;&#xA;a. US Robotics Courier Modems :&#xA; &#xA;  U.S. Robotics Corporation, often called USR, is a company that produces USRobotics computer modems and related products. Its initial marketing was aimed at bulletin board systems, where its high-speed HST protocol made FidoNet transfers much faster, and thus less costly. During the 1990s it became a major consumer brand with its Sportster line. The company had a reputation for high quality and support for the latest communications standards as they emerged.&#xA;  Wikipedia page  Company page&#xA;  Gadgets we miss : Medium&#xA;&#xA;b. Jumpers :&#xA;&#xA;  In electronics and particularly computing, a jumper is a short length of conductor used to close, open or bypass part of an electronic circuit. They are typically used to set up or configure printed circuit boards, such as the motherboards of computers. The process of setting a jumper is often called strapping.&#xA;  Wikipedia page)   Jumper Images at Wikipedia #/media/File:AssortedElectronicJumpers.jpg)&#xA;&#xA;c. Comm Ports - Serial Ports : &#xA;&#xA;  In computing, a serial port is a serial communication interface through which information transfers in or out sequentially one bit at a time.[1] This is in contrast to a parallel port which communicates multiple bits simultaneously in parallel. Throughout most of the history of personal computers, data was transferred through serial ports to devices such as modems, terminals, and various peripherals.&#xA;    While such interfaces as Ethernet, FireWire, and USB all send data as a serial stream, the term serial port usually identifies hardware compliant to the RS-232 standard or similar and intended to interface with a modem or with a similar communication device. &#xA;    Wikipedia page&#xA;&#xA;d. IRQs - Interrupt Request : &#xA;&#xA;  In digital computers, an interrupt is an input signal to the processor indicating an event that needs immediate attention. An interrupt signal alerts the processor and serves as a request for the processor to interrupt the currently executing code, so that the event can be processed in a timely manner. If the request is accepted, the processor responds by suspending its current activities, saving its state, and executing a function called an interrupt handler (or an interrupt service routine, ISR) to deal with the event. This interruption is temporary, and, unless the interrupt indicates a fatal error, the processor resumes normal activities after the interrupt handler finishes.[1]&#xA;    Interrupts are commonly used by hardware devices to indicate electronic or physical state changes that require attention. Interrupts are also commonly used to implement computer multitasking, especially in real-time computing. Systems that use interrupts in these ways are said to be interrupt-driven.[2] &#xA;    Wikipedia page&#xA;&#xA;e. ISA expansion bus :&#xA;&#xA;  Industry Standard Architecture (ISA) is the 16-bit internal bus of IBM PC/AT and similar computers based on the Intel 80286 and its immediate successors during the 1980s. The bus was (largely) backward compatible with the 8-bit bus of the 8088-based IBM PC, including the IBM PC/XT as well as IBM PC compatibles.&#xA;    Originally referred to as the PC/AT-bus, it was also termed I/O Channel by IBM. The ISA term was coined as a retronym by competing PC-clone manufacturers in the late 1980s or early 1990s as a reaction to IBM attempts to replace the AT-bus with its new and incompatible Micro Channel architecture. &#xA;    Wikipedia page&#xA;&#xA;f. Bus mouse and adapter card : &#xA;&#xA;  In computer architecture, a bus[1] (a contraction of the Latin omnibus) is a communication system that transfers data between components inside a computer, or between computers. This expression covers all related hardware components (wire, optical fiber, etc.) and software, including communication protocols.[2]&#xA;    Early computer buses were parallel electrical wires with multiple hardware connections, but the term is now used for any physical arrangement that provides the same logical function as a parallel electrical bus. Modern computer buses can use both parallel and bit serial connections, and can be wired in either a multidrop (electrical parallel) or daisy chain topology, or connected by switched hubs, as in the case of USB. &#xA;  Wikipedia page)&#xA;&#xA;e. Dial-Up Networking : &#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;f. BBS systems : &#xA;&#xA;  A Bulletin Board System or BBS (once called Computer Bulletin Board Service, CBBS[1]) is a computer server running software that allows users to connect to the system using a terminal program. Once logged in, the user can perform functions such as uploading and downloading software and data, reading news and bulletins, and exchanging messages with other users through public message boards and sometimes via direct chatting. In the early 1980s, message networks such as FidoNet sprung up to provide services such as NetMail, which is similar to email. &#xA;  Wikipedia page&#xA;&#xA;g. FidoNet computer network : &#xA;&#xA;  FidoNet is a worldwide computer network that is used for communication between bulletin board systems (BBSes). It uses a store-and-forward system to exchange private (email) and public (forum) messages between the BBSes in the network, as well as other files and protocols in some cases.&#xA;    The FidoNet system was based on a number of small interacting programs. Only one of these interacted with the BBS system directly and was the only portion that had to be ported to support other BBS software. This greatly eased porting, and FidoNet was one of the few networks that was widely supported by almost all BBS software, as well as a number of non-BBS online services.&#xA;  Wikipedia page&#xA;&#xA;#modem #DialUp #networking #IRQ #Retro #Computing #hobby #PCtech&#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/hv1WZZyL/us-robotics-0467-56k-isa-internal-modem-card-model-0467-66175001.jpg" alt="image|690x389,75%"></p>

<hr>

<h3 id="reaching-out-connecting-top">Reaching out, Connecting.<a href="#top" rel="nofollow"> </a></h3>

<p>A modem was the only available way to reach out and connect to other computer systems in the early 90&#39;s. They were not cheap, but the allure of finding out what was out there was enticing. You saved, until you could get one.</p>

<p>My first modem was an <em>US Robotics Courier</em> 2400 bps, internal model. Purchased it in a company liquidation sale, new in a sealed box.</p>

<p><em>I had to learn VERY quickly</em> of all the intricacies of <em>IRQs</em>, Com port addresses and default assigned IRQs, Jumper settings to change those. &lt;!—more—&gt;</p>

<p>And — <em>even when perfectly configured for a Com 2, IRQ 3</em> (I think it was, been a long time), <em>it did not work well at all</em>.</p>

<p>More troubleshooting, and it was the beginning of my learning of many aspects of PC technology. Fast forward 5 years and I was teaching a Computer Repairs class, all from what I learned on my own, struggling but persevering and getting things working in the end.</p>

<p>Loved it, specially when things were working well!</p>

<p>Turns out, the modem problem wasn&#39;t the modem, or any ports on the ISA expansion card this system had. It was the mouse, <em>a Logitech bus mouse with its own ISA controller card</em>, which had been set by jumpers to use <strong>IRQ 3</strong>, the one I wanted, default for Com2 serial ports.</p>

<p>Once I figured that, <em>a Jumper change and it moved to IRQ 5</em>; no more conflicts.</p>

<p><em>And my adventures in the BBS world started</em>. Becoming <em>an active member of FidoNet</em> was the next phase.</p>
<ul><li><a href="https://en.wikipedia.org/wiki/File:Dial_up_modem_noises.ogg" rel="nofollow">Listen the Dial up modem connection sounds</a><br></li>
<li>or see a <a href="https://www.youtube.com/watch?v=PDE9b5iU8vI" rel="nofollow">Dial up connection video (26 secs)</a></li></ul>

<p> <em>Internet?</em> that took about 4 years before I could get access, when joining a University. <em>NO consumer internet existed at the time</em>, it only became more common later, 1996-7 or so.</p>

<hr>

<h3 id="joining-the-internet-in-the-mid-90s">Joining the internet in the mid 90s:</h3>

<blockquote><p>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.</p></blockquote>

<p>See the <a href="https://write.tedomum.net/rgx/joining-the-internet-in-the-mid-90s" rel="nofollow"><strong>Joining the internet in the mid 90s</strong></a> post for the continuation of this story.</p>

<hr>

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

<p>a. US Robotics Courier Modems :</p>

<blockquote><p>U.S. Robotics Corporation, often called USR, is a company that produces USRobotics computer modems and related products. Its initial marketing was aimed at bulletin board systems, where its high-speed HST protocol made FidoNet transfers much faster, and thus less costly. During the 1990s it became a major consumer brand with its Sportster line. The company had a reputation for high quality and support for the latest communications standards as they emerged.
<a href="http://en.wikipedia.org/wiki/USRobotics" rel="nofollow">Wikipedia page</a>  <a href="https://www.usrobotics.com/home/" rel="nofollow">Company page</a>
<a href="https://medium.com/people-gadgets/the-gadget-we-miss-the-us-robotics-courier-modem-3d43eac5f1de" rel="nofollow">Gadgets we miss : Medium</a></p></blockquote>

<p>b. Jumpers :</p>

<blockquote><p>In electronics and particularly computing, a jumper is a short length of conductor used to close, open or bypass part of an electronic circuit. They are typically used to set up or configure printed circuit boards, such as the motherboards of computers. The process of setting a jumper is often called strapping.
<a href="https://en.wikipedia.org/wiki/Jumper_(computing)" rel="nofollow">Wikipedia page</a>  <a href="https://en.wikipedia.org/wiki/Jumper_(computing)#/media/File:Assorted_Electronic_Jumpers.jpg" rel="nofollow"> Jumper Images at Wikipedia </a></p></blockquote>

<p>c. Comm Ports – Serial Ports :</p>

<blockquote><p> In computing, a serial port is a serial communication interface through which information transfers in or out sequentially one bit at a time.[1] This is in contrast to a parallel port which communicates multiple bits simultaneously in parallel. Throughout most of the history of personal computers, data was transferred through serial ports to devices such as modems, terminals, and various peripherals.</p>

<p>While such interfaces as Ethernet, FireWire, and USB all send data as a serial stream, the term serial port usually identifies hardware compliant to the RS-232 standard or similar and intended to interface with a modem or with a similar communication device.</p>

<p><a href="https://en.wikipedia.org/wiki/Serial_port" rel="nofollow">Wikipedia page</a></p></blockquote>

<p>d. IRQs – Interrupt Request :</p>

<blockquote><p>In digital computers, an interrupt is an input signal to the processor indicating an event that needs immediate attention. An interrupt signal alerts the processor and serves as a request for the processor to interrupt the currently executing code, so that the event can be processed in a timely manner. If the request is accepted, the processor responds by suspending its current activities, saving its state, and executing a function called an interrupt handler (or an interrupt service routine, ISR) to deal with the event. This interruption is temporary, and, unless the interrupt indicates a fatal error, the processor resumes normal activities after the interrupt handler finishes.[1]</p>

<p>Interrupts are commonly used by hardware devices to indicate electronic or physical state changes that require attention. Interrupts are also commonly used to implement computer multitasking, especially in real-time computing. Systems that use interrupts in these ways are said to be interrupt-driven.[2]</p>

<p><a href="https://en.wikipedia.org/wiki/Interrupt" rel="nofollow">Wikipedia page</a></p></blockquote>

<p>e. ISA expansion bus :</p>

<blockquote><p>Industry Standard Architecture (ISA) is the 16-bit internal bus of IBM PC/AT and similar computers based on the Intel 80286 and its immediate successors during the 1980s. The bus was (largely) backward compatible with the 8-bit bus of the 8088-based IBM PC, including the IBM PC/XT as well as IBM PC compatibles.</p>

<p>Originally referred to as the PC/AT-bus, it was also termed I/O Channel by IBM. The ISA term was coined as a retronym by competing PC-clone manufacturers in the late 1980s or early 1990s as a reaction to IBM attempts to replace the AT-bus with its new and incompatible Micro Channel architecture.</p>

<p><a href="https://en.wikipedia.org/wiki/Industry_Standard_Architecture" rel="nofollow">Wikipedia page</a></p></blockquote>

<p>f. Bus mouse and adapter card :</p>

<blockquote><p>In computer architecture, a bus[1] (a contraction of the Latin omnibus) is a communication system that transfers data between components inside a computer, or between computers. This expression covers all related hardware components (wire, optical fiber, etc.) and software, including communication protocols.[2]</p>

<p>Early computer buses were parallel electrical wires with multiple hardware connections, but the term is now used for any physical arrangement that provides the same logical function as a parallel electrical bus. Modern computer buses can use both parallel and bit serial connections, and can be wired in either a multidrop (electrical parallel) or daisy chain topology, or connected by switched hubs, as in the case of USB.
<a href="https://en.wikipedia.org/wiki/Bus_(computing)" rel="nofollow">Wikipedia page</a></p></blockquote>

<p>e. Dial-Up Networking :</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>f. BBS systems :</p>

<blockquote><p>A Bulletin Board System or BBS (once called Computer Bulletin Board Service, CBBS[1]) is a computer server running software that allows users to connect to the system using a terminal program. Once logged in, the user can perform functions such as uploading and downloading software and data, reading news and bulletins, and exchanging messages with other users through public message boards and sometimes via direct chatting. In the early 1980s, message networks such as FidoNet sprung up to provide services such as NetMail, which is similar to email.
<a href="https://en.wikipedia.org/wiki/Bulletin_board_system" rel="nofollow">Wikipedia page</a></p></blockquote>

<p>g. FidoNet computer network :</p>

<blockquote><p>FidoNet is a worldwide computer network that is used for communication between bulletin board systems (BBSes). It uses a store-and-forward system to exchange private (email) and public (forum) messages between the BBSes in the network, as well as other files and protocols in some cases.</p>

<p>The FidoNet system was based on a number of small interacting programs. Only one of these interacted with the BBS system directly and was the only portion that had to be ported to support other BBS software. This greatly eased porting, and FidoNet was one of the few networks that was widely supported by almost all BBS software, as well as a number of non-BBS online services.
<a href="https://en.wikipedia.org/wiki/FidoNet" rel="nofollow">Wikipedia page</a></p></blockquote>

<p><a href="/rgx/tag:modem" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">modem</span></a> <a href="/rgx/tag:DialUp" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">DialUp</span></a> <a href="/rgx/tag:networking" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">networking</span></a> <a href="/rgx/tag:IRQ" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">IRQ</span></a> <a href="/rgx/tag:Retro" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Retro</span></a> <a href="/rgx/tag:Computing" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Computing</span></a> <a href="/rgx/tag:hobby" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">hobby</span></a> <a href="/rgx/tag:PCtech" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">PCtech</span></a></p>

<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/story-time-how-i-got-started-in-computer-networking</guid>
      <pubDate>Mon, 16 Dec 2019 13:37:44 +0000</pubDate>
    </item>
  </channel>
</rss>