<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>QotoJournal &amp;mdash; Musings by @rg</title>
    <link>https://write.tedomum.net/rgx/tag:QotoJournal</link>
    <description>A place to jot down ideas, notes, pointers.</description>
    <pubDate>Fri, 17 Apr 2026 14:06:41 +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>Nomad is my Heart.</title>
      <link>https://write.tedomum.net/rgx/nomad-is-my-heart</link>
      <description>&lt;![CDATA[&#xA;&#xA;-----&#xA;Intro  &#xA;&#xA;To love is sometimes to let go, respect someone&#39;s need to be out and observe, marvel at so much the world has to offer. Sometimes people have a hard time accepting that, while part of a community, or in a closer relationship with someone, all humans have curiosity and it&#39;s rich to see and let it blossom.&#xA;&#xA;I offer this post to my friend Coralie, we met very recently, and yet she has such a sensibility, that it saw deeply into my heart and soul.&#xA;&#xA;Yesterday she surprised me, messaging privately and offering a comment that delighted me -- that she could perceive my inner nature so clearly. \!--more--&#xA;&#xA;It closely related to the theme of this page. A toot, written from the hip, not polished or edited but coming from inside, prose flowing. A response to the local system administrator, which sometimes shows concern about my wanderings all over the Fediverse.&#xA;&#xA;This morning, she favourited and boosted it - which brought it into my notifications and a re-read confirms it&#39;s poetic, and should be published. To Coralie, I offer this. &#xA;&#xA;Thanks dear friend.&#xA;&#xA;  &#34;One sees clearly only with the heart. Anything essential is invisible to the eyes.&#34; -- Antoine de Saint Exupery&#xA;&#xA;------&#xA;And so I wrote.&#xA;&#xA;Well done, very good.&#xA;&#xA;And excellent work on implementing that feature, new in non-Japanese instances (in Nippon they created that for Misskey).&#xA;&#xA;I was honoured that you pursued this feature to serve my own nomad lifestyle, lol, but I need the real thing, to join and post as a Local in any instance I am interested it is my modus-operandi.&#xA;&#xA;Thanks to the power and flexibility of the great Pinafore client for Fediverse, each of my current 11 or so instances are ONE click away; I do keep various tabs of Pinafore open, with the most frequently used instances loaded in each.&#xA;&#xA;As I have stated and explained before, this is a personal choice, for a inquiring mind and mid to advanced level users. Not for the average user, who is better served by locating one good instance and staying with it.&#xA;&#xA;Qoto.org has many good things, and that is the reason I volunteer and put many hours and thousands of posts here.&#xA;&#xA;But that&#39;s only one side of me; and I have interests that make having various accounts desirable; and I act on them, as you know.&#xA;&#xA;This morning I am connected and actively communicating from 3 instances atm; each with a focus and local feature set that makes it interesting and useful.&#xA;&#xA;But the feature you are referring to, and which got endorsed by a well created poll, is not an important one for me (reasons stated above).&#xA;&#xA;Getting a better software instance is Number one -- I am moving to Glitch-Social instances as much as possible. Pleroma awaits a thorough evaluation, which I plan to publish in my Blog.&#xA;&#xA;Enhanced text formatting is so satisfying that I dread anytime I post something significant -- like this very post, which I will use as part of a Blog, real soon -- in an instance which doesn&#39;t offer me that.&#xA;&#xA;I remain a user here, but Nomad is my heart.&#xA;&#xA;Muensterland.Social – a new Instance joined&#xA;&#xA;#FediReporter #WriteFreely #Nomad #Culture #Instances #QotoJournal #KoyuJournal &#xA;&#xA;in response to a system admin post.&#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/43QFXtK4/Nomad-Desert-614x469p.jpg" alt=""></p>

<hr>

<h2 id="intro-top">Intro <a href="#top" rel="nofollow"> </a></h2>

<p>To love is sometimes to let go, respect someone&#39;s need to be out and observe, marvel at so much the world has to offer. Sometimes people have a hard time accepting that, while part of a community, or in a closer relationship with someone, all humans have curiosity and it&#39;s rich to see and let it blossom.</p>

<p>I offer this post to my friend Coralie, we met very recently, and yet she has such a sensibility, that it saw deeply into my heart and soul.</p>

<p>Yesterday she surprised me, messaging privately and offering a comment that delighted me — that she could perceive my inner nature so clearly. &lt;!—more—&gt;</p>

<p>It closely related to the theme of this page. A toot, written from the hip, not polished or edited but coming from inside, prose flowing. A response to the <a href="https://qoto.org/@freemo/1043089546768" rel="nofollow">local system administrator</a>, which sometimes shows concern about my wanderings all over the Fediverse.</p>

<p>This morning, she favourited and boosted it – which brought it into my notifications and a re-read confirms it&#39;s poetic, and should be published. To Coralie, I offer this.</p>

<p>Thanks dear friend.</p>

<blockquote><p>“One sees clearly only with the heart. Anything essential is invisible to the eyes.” — Antoine de Saint Exupery</p></blockquote>

<hr>

<h2 id="and-so-i-wrote">And so I wrote.</h2>

<p>Well done, very good.</p>

<p>And excellent work on implementing that feature, new in non-Japanese instances (<em>in Nippon they created that <a href="https://join.misskey.page/en/" rel="nofollow">for Misskey</a></em>).</p>

<p>I was honoured that you pursued this feature to serve my own nomad lifestyle, lol, but I need the real thing, to join and post as a Local in any instance I am interested it is my modus-operandi.</p>

<p>Thanks to the power and flexibility of the great <a href="https://nolanlawson.com/2019/06/02/one-year-of-pinafore/" rel="nofollow"><em>Pinafore client for Fediverse</em></a>, each of my current 11 or so instances are ONE click away; I do keep various tabs of Pinafore open, with the most frequently used instances loaded in each.</p>

<p>As I have stated and explained before, <em>this is a personal choice, for a inquiring mind and mid to advanced level users</em>. Not for the average user, who is better served by locating one good instance and staying with it.</p>

<p><a href="https://qoto.org/about" rel="nofollow">Qoto.org</a> has many good things, and that is the reason I volunteer and put many hours and thousands of posts here.</p>

<p>But that&#39;s only one side of me; and I have interests that make having various accounts desirable; <em>and I act on them, as you know</em>.</p>

<p>This morning I am connected and actively communicating from 3 instances atm; each with a focus and local feature set that makes it interesting and useful.</p>

<p>But the feature you are referring to, and which got endorsed by a well created poll, is not an important one for me (reasons stated above).</p>

<p>Getting a better software instance is Number one — I am moving to <a href="https://glitch-soc.github.io/docs/" rel="nofollow"><em>Glitch-Social</em> instances</a> as much as possible. <a href="https://docs-develop.pleroma.social/backend/introduction/" rel="nofollow"><em>Pleroma</em></a> awaits a thorough evaluation, which <a href="https://write.tedomum.net/rgx/discover-pleroma" rel="nofollow">I plan to publish in my Blog</a>.</p>

<p>Enhanced text formatting is so satisfying that I dread anytime I post something significant — <em>like this very post, which I will use as part of a Blog, real soon</em> — in an instance which doesn&#39;t offer me that.</p>

<p><em>I remain a user here, but Nomad is my heart</em>.</p>

<p><a href="https://write.tedomum.net/rgx/muensterland-social-a-new-instance-joined" rel="nofollow">Muensterland.Social – a new Instance joined</a></p>

<p><a href="/rgx/tag:FediReporter" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">FediReporter</span></a> <a href="/rgx/tag:WriteFreely" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">WriteFreely</span></a> <a href="/rgx/tag:Nomad" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Nomad</span></a> <a href="/rgx/tag:Culture" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Culture</span></a> <a href="/rgx/tag:Instances" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Instances</span></a> <a href="/rgx/tag:QotoJournal" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">QotoJournal</span></a> <a href="/rgx/tag:KoyuJournal" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">KoyuJournal</span></a></p>

<p><em>in response to a system admin post.</em></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/nomad-is-my-heart</guid>
      <pubDate>Wed, 17 Jun 2020 11:53:00 +0000</pubDate>
    </item>
    <item>
      <title>Community Building and Leadership - Ideas</title>
      <link>https://write.tedomum.net/rgx/community-building-and-leadership-ideas</link>
      <description>&lt;![CDATA[&#xA;------&#xA;We are always looking for Talent. &#xA;&#xA;A transcription of a Long Form Toot earlier this morning, fully composed on the fly, in my toot Editor at my main Mastodon instance.&#xA;&#xA;Very lightly edited for Blog publishing, adding links and references only, content was ready. The views in the post are my own, but I believe they reflect the values which make our instance a vibrant and pleasant place to be in.&#xA;\!--more--&#xA;&#xA;------&#xA;Leadership : &#xA;&#xA;We at Qoto are always scouting for new Talent, and open to suggestions, comments.&#xA;&#xA;Adding new Staff members is good for all communities -- it&#39;s a labour of love, we do it for the fun, the pleasure of seeing things growing up, a nice social climate growing.&#xA;&#xA;I would like to invite any Active user here at Qoto (or in the Fediverse at large, if you decided to join us) to consider if they would like to help.&#xA;&#xA;Collaborators are one of the levels I see as important in user&#39;s participation in any community. While not in a formal administrative role, Collaborators are recognized for the quality of their posts, interactions. &#xA;&#xA;All communities depend on users participation -- otherwise you would be building static web pages and publishing your own content, like a Blog for example.&#xA;&#xA;------&#xA;The Role of Moderators : &#xA;&#xA;Moderation staff, in my opinion, should be active members, who personally produce content and interact with the local membership to enhance a positive climate.&#xA;&#xA;It&#39;s not a Cop on the Beat job, although sometimes we have to perform the duties of judging content and deciding what action if could require, or not.&#xA;&#xA;  iv. What makes a good Moderator? Ideally a stable and pondered person, capable of communicating clearly and actively present in the community.&#xA;    The job of a Moderator is, in my personal view, more than simply keeping an eye out for unacceptable behaviour or content. But any Staff member in a site should be interested in it, a content producer and community builder him/herself.&#34;&#xA;&#xA;------&#xA;&#xA;Any user can contribute to the site&#xA;&#xA;...through their posts and added content, thru their interaction with others. I find the size of the community ideal, we don&#39;t have a huge crowd or overwhelming numbers of new posts. &#xA;&#xA;We all can help:  &#xA;&#xA;say hello to a new user, when they post that first toot. I remember it, mine was just a month ago, this mastodon thing totally new to me. And I also remember receiving a welcome message from the administrator, which is not something you see in many larger places.&#xA;keep an eye out for unwanted posts (for example, as per site rules, porn, open advertising, any spamming, etc). Use the Report button at the bottom of the post, and send in a report to Staff. &#xA;respond to other user threads, even a small comment is encouraging. It&#39;s sad to see someone put the effort to create a nice post, well written, with additional info link(s), maybe image(s) --- and see that post sit, ignored. It&#39;s disheartening but sadly common.&#xA;make the place feel like a collegial, friendly place to be, which we enjoy spending our time in. &#xA;&#xA;------&#xA;&#xA;Additional Reflections : &#xA;&#xA;I wrote my own personal reflections back in late November, 2019, about the role of an active user and aspiring leadership candidate. At the time, I was being nominated to the December 2019 Moderator Nominations at Qoto.org.&#xA;&#xA;It&#39;s a Long Form page, of course; (1,023 words 6,374 characters). I don&#39;t post bare URLs or video links much, Words are my passion. &#xA;&#xA;If interested, take a look at : &#xA;&#xA;Moderator Nomination – My Personal Views&#xA;&#xA;\#rgxJournal \#QotoJournal \#Qoto \#Leadership&#xA;&#xA;------&#xA;&#xA;Page banner image by a href=&#34;https://pixabay.com/users/geralt-9301/?utmsource=link-attribution&amp;amp;utmmedium=referral&amp;amp;utmcampaign=image&amp;amp;utmcontent=804526&#34;Gerd Altmann/a from a href=&#34;https://pixabay.com/?utmsource=link-attribution&amp;amp;utmmedium=referral&amp;amp;utmcampaign=image&amp;amp;utm_content=804526&#34;Pixabay/a&#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&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p><img src="https://i.postimg.cc/NfN4cVqL/Comm-Build-Crop-640x380p.jpg" alt=""></p>

<hr>

<h2 id="we-are-always-looking-for-talent-top">We are always looking for Talent.<a href="#top" rel="nofollow"> </a></h2>

<p>A transcription of <a href="https://qoto.org/@design_RG/104342676937389172" rel="nofollow">a Long Form Toot</a> earlier this morning, fully composed on the fly, in my toot Editor at my main Mastodon instance.</p>

<p>Very lightly edited for Blog publishing, adding links and references only, content was ready. The views in the post are my own, but I believe they reflect the values which make our instance a vibrant and pleasant place to be in.
&lt;!—more—&gt;</p>

<hr>

<h2 id="leadership">Leadership :</h2>

<p>We at <a href="https://qoto.org/about" rel="nofollow">Qoto</a> are always scouting for new Talent, and open to suggestions, comments.</p>

<p>Adding new Staff members is good for all communities — it&#39;s a labour of love, we do it for the fun, the pleasure of seeing things growing up, a nice social climate growing.</p>

<p>I would like to invite any Active user here at Qoto (<em>or in the Fediverse at large, if you decided to join us</em>) to consider if they would like to help.</p>
<ul><li>Collaborators are one of the levels I see as important in user&#39;s participation in any community. While not in a formal administrative role, Collaborators are recognized for the quality of their posts, interactions.</li></ul>

<p>All communities depend on users participation — otherwise you would be building static web pages and publishing your own content, like a Blog for example.</p>

<hr>

<h2 id="the-role-of-moderators">The Role of Moderators :</h2>
<ul><li>Moderation staff, in my opinion, should be active members, who personally produce content and interact with the local membership to enhance a positive climate.</li></ul>

<p>It&#39;s not a <em>Cop on the Beat job</em>, although sometimes we have to perform the duties of judging content and deciding what action if could require, or not.</p>

<blockquote><p>iv. What makes a good Moderator? Ideally a stable and pondered person, capable of communicating clearly and actively present in the community.</p>

<p>The job of a Moderator is, in my personal view, more than simply keeping an eye out for unacceptable behaviour or content. But any Staff member in a site should be interested in it, a content producer and community builder him/herself.”</p></blockquote>

<hr>

<p><img src="https://i.postimg.cc/Bb30JbF5/Co-Working-640x320p.jpg" alt=""></p>

<h2 id="any-user-can-contribute-to-the-site">Any user can contribute to the site</h2>

<p>...through their posts and added content, thru their interaction with others. I find the size of the community ideal, we don&#39;t have a huge crowd or overwhelming numbers of new posts.</p>

<p>We all can help:</p>
<ul><li>say hello to a new user, when they post that first toot. I remember it, mine was just a month ago, this mastodon thing totally new to me. And I also remember receiving a welcome message from the administrator, which is not something you see in many larger places.</li>
<li>keep an eye out for unwanted posts (for example, as per site rules, porn, open advertising, any spamming, etc). Use the Report button at the bottom of the post, and send in a report to Staff.</li>
<li>respond to other user threads, even a small comment is encouraging. It&#39;s sad to see someone put the effort to create a nice post, well written, with additional info link(s), maybe image(s) —– and see that post sit, ignored. It&#39;s disheartening but sadly common.</li>
<li>make the place feel like a collegial, friendly place to be, which we enjoy spending our time in.</li></ul>

<hr>

<h2 id="additional-reflections">Additional Reflections :</h2>

<p>I wrote my own personal reflections back in late November, 2019, about the role of an active user and aspiring leadership candidate. At the time, I was being nominated to the <a href="https://discourse.qoto.org/t/nomination-for-moderator-december-2019/110" rel="nofollow">December 2019 Moderator Nominations</a> at Qoto.org.</p>

<p>It&#39;s a Long Form page, of course; (<em>1,023 words 6,374 characters</em>). I don&#39;t post bare URLs or video links much, Words are my passion.</p>

<p>If interested, take a look at :</p>

<p><a href="https://write.tedomum.net/rgx/qoto-moderator-nomination-process-notes" rel="nofollow"><strong><em>Moderator Nomination – My Personal Views</em></strong></a></p>

<p><a href="https://qoto.org/tags/rgxJournal" rel="nofollow">#rgxJournal</a> <a href="https://qoto.org/tags/QotoJournal" rel="nofollow">#QotoJournal</a> <a href="https://qoto.org/tags/Qoto" rel="nofollow">#Qoto</a> <a href="https://qoto.org/tags/Leadership" rel="nofollow">#Leadership</a></p>

<hr>

<p>Page banner image by <a href="https://pixabay.com/users/geralt-9301/?utm_source=link-attribution&amp;utm_medium=referral&amp;utm_campaign=image&amp;utm_content=804526" rel="nofollow">Gerd Altmann</a> from <a href="https://pixabay.com/?utm_source=link-attribution&amp;utm_medium=referral&amp;utm_campaign=image&amp;utm_content=804526" rel="nofollow">Pixabay</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/community-building-and-leadership-ideas</guid>
      <pubDate>Sun, 14 Jun 2020 16:17:07 +0000</pubDate>
    </item>
    <item>
      <title>Crossposting, and Surprises Happened...</title>
      <link>https://write.tedomum.net/rgx/crossposting-and-surprises-happened</link>
      <description>&lt;![CDATA[&#xA;&#xA;-----&#xA;I have been thinking about a new and better Instance.  &#xA;&#xA;And a small snapshot of my busy Tabs list in #Waterfox browser shows that I really was looking for some good GlitchSocial instances.&#xA;&#xA;Found a nice one, here. Muensterland.social came up in my search, from one of those tabs in the header banner.&#xA;&#xA;Thank you, 🐘nipos@muensterland.social ! 😺 &#xA;&#xA;#MarkDown love for me. #xp #glitchsocial   \!--more--&#xA;&#xA;------&#xA;How did I find it ? &#xA;&#xA;One of the search tabs I had open (quite hard to locate a List of GlitchSocial instances, when you need one), showed a page which is Nick&#39;s Blog and mentioned this new mastodon service he was bringing online.&#xA;&#xA;This whole page is based on a conversation yesterday at Qoto&#39;s timeline. Lightly edited for clarity and formatting, adding links, etc.&#xA;&#xA;-----&#xA;Crossposting -- Gone Wild...&#xA;&#xA;The Funniest part of this -- for me anyways, was HOW did this end up here, at Qoto, OMG ??&#xA;&#xA;Not intentional, at all; post was created at a remote new instance, a brand new account. But for good in the end; I am REALLY committed to leaving Mastodon behind and moving to better platforms.&#xA;&#xA;GlitchSocial is one, Pleroma is another, I have accounts in BOTH types of instances, and love their added features, design improvements, and many, many new things.&#xA;&#xA;The Pleroma FE (front end, or user interface -- Intro Guide here) is a bit unusual for a mastodon user - but it HAS a second choice of Client; many pleroma instances have the GlitchSocial Web client as an option, sometimes as a link in their Front pages even.&#xA;&#xA;For those of us who like to Read The Friendly Manual, there&#39;s a detailed Pleroma FE Guide here.&#xA;&#xA;These notes now appear in a polished Web Magazine here. I developed various pages as extensions of toots and conversations had in various instances; one of the reasons I love having various accounts and always looking for interesting ones to try. #FediReporter I am...&#xA;&#xA;-----&#xA;So How did this post end up here, unexpectedly ?&#xA;&#xA;The real screenshot snippet in OP above is just part of the Tabs Overload in my current browser (#Waterfox Current always). &#xA;&#xA;And I HAD been intensively searching for a list (non-existant, afaik) of GlitchSocial instances. They tend to be blended in with generic mastodon ones (no thanks), so it was quite a chore.&#xA;&#xA;[ parenthesis : I will provide that as soon as possible, there is a need ]&#xA;&#xA;------&#xA;And then, what happened ? &#xA;&#xA;My search went into late last night. &#xA;&#xA;By that time I had found a nice one, created an account and started trying things out.&#xA;Looking good, the basics taken care or, some notes and screenshots saved.&#xA;off to bed, near 3 am.&#xA;Hello again, coffee and we get into it. Configuring a crossposter for the new account, next...&#xA;&#xA;------&#xA;Crossposting ?&#xA;&#xA;Yep. As in, moving posts and content from one network to another. I do enjoy that, there&#39;s no denying that there&#39;s GOOD stuff in every one. Some are plagued by bad actors, arses and other undesirables.&#xA;&#xA;But, there&#39;s The Economist, BBC News, Scientific American, The Guardian and NY Times --- full feeds with quality content I love. Plus, Cats. Lots. of. Cats... &#xA;&#xA;All of those I can chose to share with #fedi friends; easy, with a crossposter. &#xA;&#xA;for this, my Qoto.org account, I use Moa Bridge, as it is agnostic and doesn&#39;t mind my instance name. Recommended for #qoto people. Simple and barebones, functional, a little less explained than the other options.  &#xA;&#xA;------&#xA;And another, better alternative ;&#xA;&#xA;if your instance is NOT objected by the hosting instance, a BETTER and EASIER to configure tool is available - the awesome Crossposter, created by Renato Lond at his Brazilian instance.&#xA;&#xA;Rightfully seen as a top notch tool, it has all the controls, works magnificently, fast and has PRETTIER output. Yep. I love it, and use it if the account is acceptable. &#xA;&#xA;There are possibly others, and I welcome suggestions and reports from their users, if desired.&#xA;&#xA;------&#xA;And HOW did it get here ? &#xA;&#xA;...that OP above ? Yeah, you see, you can configure your crossposter of choice to use a Keyword.&#xA;&#xA;Moa defaults to &#39;#moa&#39; and &#39;#xp&#39;. The shorter one is easy-peasy to remember and only takes 3 chars on the freaking limited Twitter char count. So, I of course use it.&#xA;&#xA;Renato&#39;s tool allows your choice of keywords (yeay for user friendliness!). Since I am always busy, &#39;#xp&#39; is a nice one. Ooops.&#xA;&#xA;...that explains, the surprise appearance of this OP above, here at Qoto. &#xA;&#xA;------&#xA;Woot ? &#xA;&#xA;...was my first response on getting a reply notification to it -- I hadn&#39;t posted it at Qoto.org, or intended to.&#xA;&#xA;but the original post at Muensterland.social , had the #xp tag. Intended to bring it into Twitter, which I intended to.&#xA;regardless of my forgetting, Moa is watching for that tag too, and bam! wham! off to Qoto it goes, when it shows in my Twitter stream.&#xA;&#xA;Moral of the Story - be careful with your keywords, as unexpected results do occur.&#xA;&#xA;A revision is in order, after which I will copy and make this into Today&#39;s Web Magazine post.&#xA;&#xA;At your friendly #FediReporter home at TeDomum&#xA;&#xA;#QotoJournal #webstories #Fediverse #Culture &#xA;&#xA;WordCount : 958 words, 7,051 characters used. Thank you qoto.org for a HIGH limit allowance. &#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/bNrkfhBX/Tab-List-Glitch-Search-Crop-640x436p.jpg" alt=""></p>

<hr>

<h2 id="i-have-been-thinking-about-a-new-and-better-instance-top">I have been thinking about a new and better Instance. <a href="#top" rel="nofollow"> </a></h2>

<p>And a small snapshot of my busy Tabs list in <a href="/rgx/tag:Waterfox" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Waterfox</span></a> browser shows that I <strong>really was looking</strong> for some good <a href="https://glitch-soc.github.io/docs/" rel="nofollow"><strong>GlitchSocial instances</strong></a>.</p>

<p><a href="https://muensterland.social/" rel="nofollow"><em>Found a nice one, here</em></a>. <em>Muensterland.social came up in my search</em>, from one of those tabs in the header banner.</p>

<p>Thank you, <a href="https://muensterland.social/web/accounts/21920" rel="nofollow">🐘nipos@muensterland.social</a> ! 😺</p>

<p><a href="/rgx/tag:MarkDown" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">MarkDown</span></a> love for me. <a href="/rgx/tag:xp" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">xp</span></a> <a href="/rgx/tag:glitchsocial" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">glitchsocial</span></a>   &lt;!—more—&gt;</p>

<hr>

<h2 id="how-did-i-find-it">How did I find it ?</h2>

<p>One of the search tabs I had open (quite hard to locate a List of GlitchSocial instances, when you need one), showed <a href="https://blog.nikisoft.one/note/b26752ee158fc1d7" rel="nofollow">a page which is <strong>Nick&#39;s Blog</strong></a> and mentioned this new mastodon service he was bringing online.</p>

<p>This whole page is based on <a href="https://qoto.org/@design_RG/104281334827691492" rel="nofollow">a conversation yesterday at Qoto&#39;s</a> timeline. Lightly edited for clarity and formatting, adding links, etc.</p>

<hr>

<h2 id="crossposting-gone-wild">Crossposting — Gone Wild...</h2>

<p>The Funniest part of this — for me anyways, was HOW <a href="https://qoto.org/@design_RG/104280624744767311" rel="nofollow">did this end up here, at Qoto</a>, OMG ??</p>

<p>Not intentional, at all; post was created at <a href="https://muensterland.social/@rgx/104280610366797338" rel="nofollow"><em>a remote new instance, a brand new account</em></a>. But for good in the end; I am REALLY committed to leaving <a href="https://docs.joinmastodon.org/" rel="nofollow">Mastodon</a> behind and moving to better platforms.</p>

<p><a href="https://glitch-soc.github.io/docs/" rel="nofollow">GlitchSocial</a> is one, <a href="https://docs-develop.pleroma.social/backend/introduction/" rel="nofollow">Pleroma is another</a>, I have accounts in BOTH types of instances, and love their added features, design improvements, and many, many new things.</p>

<p>The Pleroma FE (front end, or <a href="https://docs-develop.pleroma.social/backend/introduction/" rel="nofollow">user interface — Intro Guide here)</a> is a bit unusual for a mastodon user – but it HAS a second choice of Client; many pleroma instances have the <em>GlitchSocial Web client as an option</em>, sometimes as a link in their Front pages even.</p>

<p>For those of us who like to Read The Friendly Manual, <a href="https://docs-develop.pleroma.social/frontend/USER_GUIDE/" rel="nofollow">there&#39;s a detailed Pleroma FE Guide here</a>.</p>

<p>These notes now appear in a polished Web Magazine here. I developed various pages as extensions of toots and conversations had in various instances; one of the reasons I love having various accounts and always looking for interesting ones to try. <a href="/rgx/tag:FediReporter" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">FediReporter</span></a> I am...</p>

<hr>

<h2 id="so-how-did-this-post-end-up-here-unexpectedly">So How did this post end up here, unexpectedly ?</h2>

<p>The real <a href="https://i.postimg.cc/bNrkfhBX/Tab-List-Glitch-Search-Crop-640x436p.jpg" rel="nofollow">screenshot snippet in OP</a> above is just part of the Tabs Overload in my current browser (<a href="https://www.waterfox.net/" rel="nofollow"><a href="/rgx/tag:Waterfox" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Waterfox</span></a> Current</a> always).</p>

<p>And I HAD been intensively searching for a list (non-existant, afaik) of GlitchSocial instances. They tend to be blended in with generic mastodon ones (no thanks), so it was quite a chore.</p>

<p>[ parenthesis : I will provide that as soon as possible, <em>there is a need</em> ]</p>

<hr>

<h2 id="and-then-what-happened">And then, what happened ?</h2>

<p>My search went into late last night.</p>
<ul><li>By that time I had found a nice one, created an account and started trying things out.</li>
<li>Looking good, the basics taken care or, some notes and screenshots saved.</li>
<li>off to bed, near 3 am.</li>
<li>Hello again, coffee and we get into it. Configuring a crossposter for the new account, next...</li></ul>

<hr>

<h2 id="crossposting">Crossposting ?</h2>

<p>Yep. As in, moving posts and content from one network to another. I do enjoy that, there&#39;s no denying that there&#39;s GOOD stuff in every one. Some are plagued by bad actors, arses and other undesirables.</p>

<p>But, there&#39;s <a href="https://twitter.com/TheEconomist" rel="nofollow">The Economist</a>, <a href="https://twitter.com/BBCWorld" rel="nofollow">BBC News</a>, <a href="https://twitter.com/sciam" rel="nofollow">Scientific American</a>, <a href="https://twitter.com/guardian" rel="nofollow">The Guardian</a> and <a href="https://twitter.com/nytimes" rel="nofollow">NY Times</a> —– full feeds with quality content I love. Plus, Cats. <a href="https://twitter.com/search?q=%23Cats&amp;src=typed_query&amp;f=live" rel="nofollow">Lots. of. Cats</a>...</p>

<p>All of those I can chose to share with <a href="/rgx/tag:fedi" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">fedi</span></a> friends; easy, with a crossposter.</p>
<ul><li>for this, my <a href="https://Qoto.org/about/" rel="nofollow">Qoto.org account</a>, I use <a href="https://moa.party/" rel="nofollow">Moa Bridge</a>, as it is agnostic and doesn&#39;t mind my instance name. Recommended for <a href="/rgx/tag:qoto" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">qoto</span></a> people. Simple and barebones, functional, a little less explained than the other options.<br></li></ul>

<p><img src="https://i.postimg.cc/zGjrCsqB/Moa-Crop-640x408p.png" alt=""></p>

<hr>

<h2 id="and-another-better-alternative">And another, better alternative ;</h2>
<ul><li>if your instance is NOT objected by the hosting instance, a BETTER and EASIER to configure tool is available – <a href="https://crossposter.masto.donte.com.br/" rel="nofollow">the awesome Crossposter</a>, created by Renato Lond at <a href="https://masto.donte.com.br/about/" rel="nofollow">his Brazilian instance</a>.</li></ul>

<p><img src="https://i.postimg.cc/bN3shxYV/BR-crosspost-640x431p.png" alt=""></p>

<p>Rightfully seen as a top notch tool, it has all the controls, works magnificently, fast and has PRETTIER output. Yep. I love it, and use it if the account is acceptable.</p>

<p>There are possibly others, and I welcome suggestions and reports from their users, if desired.</p>

<hr>

<h2 id="and-how-did-it-get-here">And HOW did it get here ?</h2>

<p>...<a href="https://qoto.org/@design_RG/104280624744767311" rel="nofollow">that OP above</a> ? Yeah, you see, you can configure your crossposter of choice to use a <strong>Keyword</strong>.</p>
<ul><li>Moa defaults to &#39;<a href="/rgx/tag:moa" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">moa</span></a>&#39; and &#39;<a href="/rgx/tag:xp" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">xp</span></a>&#39;. The shorter one is easy-peasy to remember and only takes 3 chars on the freaking limited Twitter char count. So, I of course use it.</li></ul>

<p><img src="https://i.postimg.cc/cC9HWW7k/Moa-KW-580x115p.png" alt=""></p>
<ul><li>Renato&#39;s tool allows your choice of keywords (yeay for user friendliness!). Since I am always busy, &#39;<a href="/rgx/tag:xp" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">xp</span></a>&#39; is a nice one. Ooops.</li></ul>

<p><img src="https://i.postimg.cc/SRvy5rqw/TW-Masto-Kw-640x235p.png" alt=""></p>

<p>...that explains, the surprise appearance of this OP above, here at Qoto.</p>

<hr>

<h2 id="woot">Woot ?</h2>

<p>...was my first response on getting a reply notification to it — <em>I hadn&#39;t posted it at Qoto.org, or intended to</em>.</p>
<ul><li>but the <a href="https://muensterland.social/@rgx/104280610366797338" rel="nofollow">original post at Muensterland.social</a> , <em>had the <a href="/rgx/tag:xp" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">xp</span></a> tag</em>. Intended to bring it into Twitter, which I intended to.</li>
<li>regardless of my forgetting, <em>Moa is watching for that tag too</em>, and bam! wham! off to Qoto it goes, when it shows in my Twitter stream.</li></ul>

<p><strong><em>Moral of the Story</em></strong> – be careful with your keywords, as unexpected results do occur.</p>

<p>A revision is in order, after which I will copy and make this into Today&#39;s Web Magazine post.</p>

<p>At your friendly <a href="https://write.tedomum.net/rgx/" rel="nofollow"><a href="/rgx/tag:FediReporter" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">FediReporter</span></a> home at <strong>TeDomum</strong></a></p>

<p><a href="/rgx/tag:QotoJournal" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">QotoJournal</span></a> <a href="/rgx/tag:webstories" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">webstories</span></a> <a href="/rgx/tag:Fediverse" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Fediverse</span></a> <a href="/rgx/tag:Culture" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Culture</span></a></p>

<p><a href="/rgx/tag:WordCount" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">WordCount</span></a> : 958 words, 7,051 characters used. Thank you qoto.org for a HIGH limit allowance.</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/crossposting-and-surprises-happened</guid>
      <pubDate>Thu, 04 Jun 2020 16:49:07 +0000</pubDate>
    </item>
    <item>
      <title>Muensterland.Social - a new Instance joined.</title>
      <link>https://write.tedomum.net/rgx/muensterland-social-a-new-instance-joined</link>
      <description>&lt;![CDATA[&#xA;------&#xA;&#xA;## Have been thinking about new and better Instance. Part 2(#top)&#xA;&#xA;This morning, I wrote this Toot at a new instance, which I found and registered at late last night.&#xA;&#xA;  And picture of my busy Tabs list in #Waterfox browser showed that I really was looking for some good GlitchSocial instances.&#xA;    Found a nice one, here. Muensterland.social came up in my search, from one of those tabs in the header banner.&#xA;    Thank you, 🐘nipos@muensterland.social ! 😺 &#xA;    #MarkDown love for me. #xp #glitchsocial  \!--more--&#xA;&#xA;------&#xA;Glitch-Social -- Instances List is Needed!&#xA;&#xA;I HAD been intensively searching for a list (non-existant, afaik) of GlitchSocial instances. They tend to be blended in with generic mastodon ones (no thanks), so it was quite a chore.&#xA;&#xA;[ parenthesis : I WILL provide that as soon as possible, there is a need ]&#xA;&#xA;------&#xA;And then, what happened ? &#xA;&#xA;My search went into late last night. &#xA;&#xA;By that time I had found a nice one, created an account and started trying things out.&#xA;Looking good, the basics taken care or, some notes and screenshots saved.&#xA;off to bed, near 3 am. A few hours of sleep and...&#xA;Hello again, coffee and we get back into it.&#xA;&#xA;Now I am writing this page, to document and describe not only the process, but mainly the Why -- the reasons which lead me to look for alternatives in Fediverse, what they can offer, etc.&#xA;&#xA;------&#xA;Why look for a change? &#xA;&#xA;I am REALLY committed to leaving Mastodon behind and moving to better platforms.&#xA;&#xA;GlitchSocial is one, Pleroma is another, I have accounts in BOTH types of instances, and love their added features, design improvements, and many, many new things.&#xA;&#xA;The Pleroma FE (front end, or user interface -- Intro Guide here) is a bit unusual for a mastodon user - but it HAS a second choice of Client; many pleroma instances have the GlitchSocial Web client as an option, sometimes as a link in their Front pages even.&#xA;&#xA;For those of us who like to Read The Friendly Manual, there&#39;s a detailed Pleroma FE Guide here.&#xA;&#xA;These notes now appear in a polished Web Magazine here. I developed various pages as extensions of toots and conversations had in various instances; one of the reasons I love having various accounts and always looking for interesting ones to try. #FediReporter I am...&#xA;&#xA;------&#xA;How did I find it ? &#xA;&#xA;One of the search tabs I had open (quite hard to locate a List of GlitchSocial instances, when you need one), showed a page which is Nick&#39;s Blog and mentioned this new mastodon service he was bringing online.&#xA;&#xA;Got my attention, quickly! Lots to like...&#xA;&#xA;  We had planned putting online a new Mastodon instance for a long time but then we saw that a small German instance would go offline soon and decided to take it over.&#xA;    Continuing an existing service and making sure that all existing users don&#39;t lose their digital home is much better than creating a completely new service out of the nothing.&#xA;    You can find the instance at Muensterland.social but it&#39;s mainly meant for people near Muenster and most posts are in German.&#xA;&#xA;Interesting -- a thoughful admin is important, and he seems a good one. And it gets Better. &#xA;&#xA;------&#xA;Using GlitchSocial and allowing 5,000 characters for Toots!&#xA;&#xA;  The instance runs with the GlitchSocial software (Git repo) which is a fork of Mastodon which allows more settings for users as well as server admin.&#xA;    For example GlitchSoc makes the 5000 chars limit instead of 500 chars possible [the usual and pesky Mastodon limit]  and that&#39;s important for having real conversations and not just a short message.&#xA;&#xA;Wow. To have support for larger Toots and messages is ESSENTIAL for my self expression. I have campaigned for about 6 months now, and it&#39;s an uphill battle, to tell you the Truth. Why? &#xA;&#xA;Many of the senior developers in the Mastodon project, starting with Eugen R. himself, came from Twitter. &#xA;The cramped 144 characters there forced users to adapt and try to find clever ways to instill meaning in those miserable spaces.&#xA;As it&#39;s prone to happen, people will adapt and thrive, somewhat, even in sh1ty conditions.&#xA;Case in point, all those old TwitterHeads who can&#39;t understand why 500 chars is not sufficient. Freak, it&#39;s 3 times the TW limit! &#xA;&#xA;------&#xA;My Response to that? Screw your 500 Hard Limit!&#xA;&#xA;Ha, ha, ha, thanks God and some illuminated beings, we DO have instances in mastodon and elsewhere that DO allow more than 500 Characters. Qoto.org has 65,535 characters max limit, a generous allowance even for a very verbal writer. &#xA;&#xA;( I have personally used up about 5,000 tops, I would say. In extreme cases, so this limit is a God-send, yes please. )&#xA;&#xA;------&#xA;And then, the Closer : &#xA;&#xA;A few lines down, this gem :&#xA;&#xA;  Additionally we do now have a #Halcyon instance at web.Muensterland.social so you can use it with the easy and beautiful design of Twitter.&#xA;    Muensterland.social runs on a HP ProLiant DL380 G6 server with two Intel Xeon Quad Core CPUs,32GB memory and 4x72GB RAID5 HDDs so there is still much space for new users.&#xA;&#xA;For a geek like me, the server description was saliva inducing. OMG. I want in, thank you!&#xA;&#xA;------&#xA;Halcyon&#39;s Client -- Main Features :&#xA;&#xA;Nick is using the well-regarded Halcyon mastodon and Pleroma client. A screenshot below (reduced in size) shows Eugen&#39;s account at Mastodon.social as rendered in Halcyon. [img source - Halcyon]&#xA;&#xA;From the homepage for Halcyon :&#xA;&#xA;It looks like Twitters user interface which you may already know&#xA;It supports custom character limits of Pleroma and modded Mastodon instances&#xA;It supports custom emojis in posts and user names and has a emoji picker&#xA;It&#39;s completely free of advertisements and trackers&#xA;It&#39;s open source - You can help adding features you&#39;re missing&#xA;It has full support for the lists feature including create/edit/delete&#xA;It has full support for the filters - Also from other clients&#xA;There are dozens of free Halcyon instances - No single point of failure&#xA;Halcyon is available in many different languages - Currently 9&#xA;Who to follow feature to easily find other users with similar interests&#xA;Supports different media files like GIFs,videos or audio files&#xA;Privacy friendly players for content from YouTube,Vimeo and Peertube&#xA;&#xA;Looks good, and can be tried without hassle or expense. &#xA;&#xA;------&#xA;Halcyon&#39;s Additional Resources : &#xA;&#xA;List of free Halcyon instances you can use.&#xA;Git instance for the project&#xA;Nick&#39;s personal account and projects page&#xA;&#xA;------&#xA;&#xA;Famous Last Words : &#xA;&#xA;I would like to sincerely thank all the dedicated people who put in a lot of effort, time and resources in providing us all the Software, the Instances and Content for the Fediverse.&#xA;&#xA;It&#39;s thanks to them that we can enjoy a rich experience, the freedom to move and find communities we enjoy, and the ability to ignore or even shut the door in the varied annoyances that Internet living has those days (a subject to another post, another day).&#xA;&#xA;Please visit and see new content at your friendly #FediReporter home at TeDomum.net&#xA;&#xA;Originally partially posted at Qoto.org, with many thanks for excellent services and a refined user experience. &#xA;&#xA;wordCount : 1333 words, 8,021 characters used. Thank you qoto.org for a HIGH limit allowance. [note that this is the actual MarkDown source for this page, and includes tons of URLs and Formatting code.]&#xA;&#xA;#QotoJournal #webstories #Fediverse #Culture &#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/FFSsdFng/Muensterland-Social-640x370p.jpg" alt=""></p>

<hr>

<h2 id="have-been-thinking-about-new-and-better-instance-part-2-top">Have been thinking about new and better Instance. [Part 2]<a href="#top" rel="nofollow"> </a></h2>

<p>This morning, I wrote <a href="https://muensterland.social/@rgx/104280610366797338" rel="nofollow">this Toot at a new instance</a>, which I found and registered at late last night.</p>

<blockquote><p>And <a href="https://i.postimg.cc/bNrkfhBX/Tab-List-Glitch-Search-Crop-640x436p.jpg" rel="nofollow">picture of my busy Tabs</a> list in <a href="https://www.waterfox.net/" rel="nofollow"><a href="/rgx/tag:Waterfox" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Waterfox</span></a> browser</a> showed that I <strong>really was looking</strong> for some good <a href="https://glitch-soc.github.io/docs/" rel="nofollow"><strong>GlitchSocial instances</strong></a>.</p>

<p><a href="https://muensterland.social/" rel="nofollow"><em>Found a nice one, here</em></a>. <em>Muensterland.social came up in my search</em>, from one of those tabs in the header banner.</p>

<p>Thank you, <a href="https://muensterland.social/web/accounts/21920" rel="nofollow">🐘nipos@muensterland.social</a> ! 😺</p>

<p><a href="/rgx/tag:MarkDown" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">MarkDown</span></a> love for me. <a href="/rgx/tag:xp" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">xp</span></a> <a href="/rgx/tag:glitchsocial" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">glitchsocial</span></a>  &lt;!—more—&gt;</p></blockquote>

<hr>

<h2 id="glitch-social-instances-list-is-needed">Glitch-Social — Instances List is Needed!</h2>

<p>I HAD been intensively searching for <em>a list (non-existant, afaik) of GlitchSocial instances</em>. They tend to be blended in with generic mastodon ones (no thanks), so it was quite a chore.</p>

<p>[ parenthesis : <em>I WILL provide that as soon as possible, there is a need</em> ]</p>

<hr>

<h2 id="and-then-what-happened">And then, what happened ?</h2>

<p>My search went into late last night.</p>
<ul><li>By that time I had found a nice one, created an account and started trying things out.</li>
<li>Looking good, the basics taken care or, some notes and screenshots saved.</li>
<li>off to bed, near 3 am. A few hours of sleep and...</li>
<li>Hello again, coffee and we get back into it.</li></ul>

<p>Now I am writing this page, <em>to document and describe not only the process, but mainly the</em> <strong><em>Why</em></strong> — the reasons which lead me to look for alternatives in Fediverse, what they can offer, etc.</p>

<hr>

<h2 id="why-look-for-a-change">Why look for a change?</h2>

<p>I am REALLY committed to leaving <a href="https://docs.joinmastodon.org/" rel="nofollow">Mastodon</a> behind and moving to better platforms.</p>

<p><a href="https://glitch-soc.github.io/docs/" rel="nofollow">GlitchSocial</a> is one, <a href="https://docs-develop.pleroma.social/backend/introduction/" rel="nofollow">Pleroma is another</a>, I have accounts in BOTH types of instances, and love their added features, design improvements, and many, many new things.</p>

<p>The Pleroma FE (front end, or <a href="https://docs-develop.pleroma.social/backend/introduction/" rel="nofollow">user interface — Intro Guide here)</a> is a bit unusual for a mastodon user – but it HAS a second choice of Client; many pleroma instances have the <em>GlitchSocial Web client as an option</em>, sometimes as a link in their Front pages even.</p>

<p>For those of us who like to Read The Friendly Manual, <a href="https://docs-develop.pleroma.social/frontend/USER_GUIDE/" rel="nofollow">there&#39;s a detailed Pleroma FE Guide here</a>.</p>

<p>These notes now appear in a polished Web Magazine here. I developed various pages as extensions of toots and conversations had in various instances; one of the reasons I love having various accounts and always looking for interesting ones to try. <a href="/rgx/tag:FediReporter" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">FediReporter</span></a> I am...</p>

<hr>

<h2 id="how-did-i-find-it">How did I find it ?</h2>

<p>One of the search tabs I had open (quite hard to locate a List of GlitchSocial instances, when you need one), showed <a href="https://blog.nikisoft.one/note/b26752ee158fc1d7" rel="nofollow">a page which is <strong>Nick&#39;s Blog</strong></a> and mentioned this new mastodon service he was bringing online.</p>

<p>Got my attention, quickly! Lots to like...</p>

<blockquote><p>We had planned putting online a new Mastodon instance for a long time but then we saw that a small German instance would go offline soon and decided to take it over.</p>

<p>Continuing an existing service and making sure that all existing users don&#39;t lose their digital home is much better than creating a completely new service out of the nothing.</p>

<p>You can find the instance at Muensterland.social but it&#39;s mainly meant for people near Muenster and most posts are in German.</p></blockquote>

<p>Interesting — <em>a thoughful admin is important, and he seems a good one</em>. And it gets <strong><em>Better</em></strong>.</p>

<hr>

<h2 id="using-glitchsocial-and-allowing-5-000-characters-for-toots">Using GlitchSocial and allowing 5,000 characters for Toots!</h2>

<blockquote><p>The instance runs with the GlitchSocial software (Git repo) which is a fork of Mastodon which allows more settings for users as well as server admin.</p>

<p>For example GlitchSoc makes <strong>the 5000 chars limit instead of 500 chars</strong> possible [the usual and pesky Mastodon limit]  and that&#39;s important for having real conversations and not just a short message.</p></blockquote>

<p>Wow. To have <em>support for larger Toots and messages is ESSENTIAL for my self expression</em>. I have campaigned for about 6 months now, <em>and it&#39;s an uphill battle</em>, to tell you the Truth. <strong>Why?</strong></p>
<ul><li>Many of the senior developers in the Mastodon project, starting with Eugen R. himself, <em>came from Twitter.</em></li>
<li>The <em>cramped 144 characters there</em> forced users to adapt and try to find clever ways to instill meaning in those miserable spaces.</li>
<li>As it&#39;s prone to happen, people will adapt and thrive, somewhat, even in sh1ty conditions.</li>
<li>Case in point, <em>all those old TwitterHeads</em> who can&#39;t understand <em>why 500 chars is not sufficient</em>. Freak, it&#39;s 3 times the TW limit!</li></ul>

<hr>

<h2 id="my-response-to-that-screw-your-500-hard-limit">My Response to that? Screw your 500 Hard Limit!</h2>

<p>Ha, ha, ha, thanks God and some illuminated beings, <em>we DO have instances in mastodon and elsewhere that DO allow more than 500 Characters</em>. <a href="https://qoto.org/about/" rel="nofollow">Qoto.org has <strong><em>65,535 characters</em></strong></a> max limit, a generous allowance even for a very verbal writer.</p>

<p><img src="https://i.postimg.cc/BZmNFsLb/Qoto-65-K-Toot-390x223p.png" alt=""></p>

<p>( <em>I have personally used up about 5,000 tops</em>, I would say. In extreme cases, so this limit is a God-send, yes please. )</p>

<hr>

<h2 id="and-then-the-closer">And then, the Closer :</h2>

<p>A few lines down, this gem :</p>

<blockquote><p>Additionally we do now have a <strong><a href="/rgx/tag:Halcyon" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Halcyon</span></a> instance</strong> at <a href="https://web.Muensterland.social/" rel="nofollow">web.Muensterland.social</a> so you can use it with the easy and beautiful design of Twitter.</p>

<p><a href="https://Muensterland.social/" rel="nofollow">Muensterland.social</a> runs on a <strong><em>HP ProLiant DL380 G6</em></strong> <em>server with</em> <strong><em>two Intel Xeon Quad Core CPUs,32GB memory and 4x72GB RAID5 HDDs</em></strong> so there is still much space for new users.</p></blockquote>

<p><img src="https://i.postimg.cc/9MNsrYDG/HP-Proliant-DL380-600x220p.jpg" alt=""></p>

<p>For a geek like me, the server description was saliva inducing. OMG. I want in, thank you!</p>

<hr>

<h2 id="halcyon-s-client-main-features">Halcyon&#39;s Client — Main Features :</h2>

<p>Nick is using the well-regarded <strong>Halcyon</strong> mastodon and Pleroma client. A screenshot below (reduced in size) shows <a href="https://mastodon.social/@Gargron" rel="nofollow">Eugen&#39;s account at Mastodon.social</a> as rendered in Halcyon. [img source – Halcyon]</p>

<p><img src="https://i.postimg.cc/XvbgbP5w/Halcyon-preview-640x375p.jpg" alt=""></p>

<p>From the <a href="https://www.halcyon.social/index.php" rel="nofollow">homepage for Halcyon</a> :</p>
<ul><li>It looks like Twitters user interface which you may already know</li>
<li>It supports custom character limits of Pleroma and modded Mastodon instances</li>
<li>It supports custom emojis in posts and user names and has a emoji picker</li>
<li>It&#39;s completely free of advertisements and trackers</li>
<li>It&#39;s open source – You can help adding features you&#39;re missing</li>
<li>It has full support for the lists feature including create/edit/delete</li>
<li>It has full support for the filters – Also from other clients</li>
<li>There are dozens of free Halcyon instances – No single point of failure</li>
<li>Halcyon is available in many different languages – Currently 9</li>
<li>Who to follow feature to easily find other users with similar interests</li>
<li>Supports different media files like GIFs,videos or audio files</li>
<li>Privacy friendly players for content from YouTube,Vimeo and Peertube</li></ul>

<p>Looks good, and can be tried without hassle or expense.</p>

<hr>

<h2 id="halcyon-s-additional-resources">Halcyon&#39;s Additional Resources :</h2>
<ul><li><a href="https://www.halcyon.social/instances.php" rel="nofollow">List of free Halcyon instances</a> you can use.</li>
<li><a href="https://notabug.org/halcyon-suite/halcyon" rel="nofollow">Git instance for the project</a></li>
<li><a href="https://notabug.org/nipos" rel="nofollow">Nick&#39;s personal account and projects page</a></li></ul>

<hr>

<h2 id="famous-last-words">Famous Last Words :</h2>

<p>I would like to sincerely thank all the dedicated people who put in a lot of effort, time and resources in providing us all the Software, the Instances and Content for the Fediverse.</p>

<p>It&#39;s thanks to them that we can enjoy a rich experience, the freedom to move and find communities we enjoy, and the ability to ignore or even shut the door in the varied annoyances that Internet living has those days (a subject to another post, another day).</p>

<p>Please visit and see new content <a href="https://write.tedomum.net/rgx/" rel="nofollow">at your friendly <strong><em><a href="/rgx/tag:FediReporter" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">FediReporter</span></a></em></strong> home at TeDomum.net</a></p>

<p>Originally <a href="https://qoto.org/@design_RG/104280624744767311" rel="nofollow">partially posted at Qoto.org</a>, with <em>many thanks for excellent services and a refined user experience</em>.</p>

<p><a href="/rgx/tag:wordCount" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">wordCount</span></a> : 1333 words, 8,021 characters used. Thank you qoto.org for a HIGH limit allowance. [<em>note that this is the actual MarkDown source for this page, and includes tons of URLs and Formatting code.</em>]</p>

<p><a href="/rgx/tag:QotoJournal" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">QotoJournal</span></a> <a href="/rgx/tag:webstories" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">webstories</span></a> <a href="/rgx/tag:Fediverse" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Fediverse</span></a> <a href="/rgx/tag:Culture" class="hashtag" rel="nofollow"><span>#</span><span class="p-category">Culture</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/muensterland-social-a-new-instance-joined</guid>
      <pubDate>Wed, 03 Jun 2020 21:28:21 +0000</pubDate>
    </item>
  </channel>
</rss>