Congratulations!

[Valid RSS] This is a valid RSS feed.

Recommendations

This feed is valid, but interoperability with the widest range of feed readers could be improved by implementing the following recommendations.

Source: http://cogdogblog.com/feed/rss2

  1. <?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
  2. xmlns:content="http://purl.org/rss/1.0/modules/content/"
  3. xmlns:wfw="http://wellformedweb.org/CommentAPI/"
  4. xmlns:dc="http://purl.org/dc/elements/1.1/"
  5. xmlns:atom="http://www.w3.org/2005/Atom"
  6. xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
  7. xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
  8. xmlns:georss="http://www.georss.org/georss"
  9. xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
  10. >
  11.  
  12. <channel>
  13. <title>CogDogBlog</title>
  14. <atom:link href="https://cogdogblog.com/feed/" rel="self" type="application/rss+xml" />
  15. <link>https://cogdogblog.com</link>
  16. <description>Alan Levine barks about and plays with stuff here</description>
  17. <lastBuildDate>Sat, 20 Apr 2024 04:31:46 +0000</lastBuildDate>
  18. <language>en-US</language>
  19. <sy:updatePeriod>
  20. hourly </sy:updatePeriod>
  21. <sy:updateFrequency>
  22. 1 </sy:updateFrequency>
  23. <generator>https://wordpress.org/?v=6.2.5</generator>
  24.  
  25. <image>
  26. <url>https://cogdogblog.com/wp-content/uploads/2017/08/cropped-cogdog-sketch-color-32x32.png</url>
  27. <title>CogDogBlog</title>
  28. <link>https://cogdogblog.com</link>
  29. <width>32</width>
  30. <height>32</height>
  31. </image>
  32. <item>
  33. <title>A Little Bit of CSS Shine for the Wayback Links</title>
  34. <link>https://cogdogblog.com/2024/04/css-shine-wayback-links/</link>
  35. <comments>https://cogdogblog.com/2024/04/css-shine-wayback-links/#respond</comments>
  36. <dc:creator><![CDATA[CogDog The Blog]]></dc:creator>
  37. <pubDate>Sat, 20 Apr 2024 04:01:30 +0000</pubDate>
  38. <category><![CDATA[Blogging]]></category>
  39. <category><![CDATA[How To]]></category>
  40. <category><![CDATA[Reclaiming Your Web]]></category>
  41. <guid isPermaLink="false">https://cogdogblog.com/?p=74180</guid>
  42.  
  43. <description><![CDATA[More in the little web joys of selk tinkering. Rewards you never get by pouring your houghts into some packaged medium sized substack of a LinkedIn space. Self-stylin; as it were. Way back in the pre lock down era of January 2020 I added a little bit of CSS to this blog thang that put [&#8230;]]]></description>
  44. <content:encoded><![CDATA[
  45. <p>More in the little web joys of selk tinkering. Rewards you never get by pouring your houghts into some packaged medium sized substack of a LinkedIn space. </p>
  46.  
  47.  
  48.  
  49. <p>Self-stylin; as it were. </p>
  50.  
  51.  
  52.  
  53. <p>Way back in the pre lock down era of January 2020 <a href="https://cogdogblog.com/2020/01/signifying-wayback-links/">I added a little bit of CSS to this blog thang that put a small icon adjacent to any hyperlinks to the internet archive</a>. This is, as on an ongoing basis, I find more links other sites from here have bit the 404 dust or just have been clearcut by a discarding of entire sites.  Iften when I am rummaging around the corners of CogDogBlog, I find old posts with missing feature images, malformed HTML, and more often than not&#8211; ye new dead links.</p>
  54.  
  55.  
  56.  
  57. <p>So it seemed worthy to have a visual indicaor of links to the <a href="https://web.archive.org/">Internet Archive&#8217;s Wayback Machine</a>. The CSS I used as based on some early 2000s stuff when I wanted to make clear links to PDFs or other file formats. So a nifty gizmo is you can create a CSS class that snags hyperlinks o specific sites. My style I added in 2020 used a little image stuffed in my server pile:</p>
  58.  
  59.  
  60.  
  61. <pre class="crayon-plain-tag">a&amp;#91;href*=&quot;web.archive.org/web&quot;] {
  62.    padding: 0px 0 0px 22px;
  63.    background: transparent url(https://cogdogblog.com/images/social/archive.png) no-repeat center left;
  64. }</pre>
  65.  
  66.  
  67.  
  68. <p>There was nothing wrong with it, but as sometimes the internets spit out something you were not looking for, in Mastodon I was combing though the local feed of my instance at https://cosocial.ca/ . For some reason this caught my eye where this person was making clear their Wikipedia links. It was similar, but looked a bit more modern than mine, so I was curious to style my own styles.</p>
  69.  
  70.  
  71.  
  72. <figure class="wp-block-embed is-type-wp-embed is-provider-cosocial-ca wp-block-embed-cosocial-ca"><div class="wp-block-embed__wrapper">
  73. <iframe src="https://cosocial.ca/@wdenton/112277933140310545/embed" class="mastodon-embed" style="max-width: 100%; border: 0" width="800" allowfullscreen="allowfullscreen"></iframe><script src="https://cosocial.ca/embed.js" async="async"></script>
  74. </div></figure>
  75.  
  76.  
  77.  
  78. <p>I updated my CSS to use a svg icon that was a whopping 2k but also uses the :after subclass or whatever its called to append the icon after a link.</p>
  79.  
  80.  
  81.  
  82. <pre class="crayon-plain-tag">a&amp;#91;href*=&quot;web.archive.org/web&quot;]:after {
  83.    content:url(https://cogdogblog.com/images/social/intenet-archive.svg);
  84.    display:inline-block;
  85.    margin-left:.25rem;
  86.    width:.8em
  87. }</pre>
  88.  
  89.  
  90.  
  91. <p>Could I have asked ChatGPT to do this for me? Of course, but why? Where&#8217;s the craft in that? Why prompt for stuff I can do? I want to keep the rusty code muscles limber. </p>
  92.  
  93.  
  94.  
  95. <p>So what the beans does it do? Well, for an example, I recently was combing the Wayback for an Australian publication from the mid 2000s that I remember <a href="https://web.archive.org/web/20071010013146/http://kt.flexiblelearning.net.au/tkt2006/edition-11-editorial">an issue of the Knowledge Tree written by my colleague Nancy White</a>, (do you see what it does?) this maybe in the first days I got to know someone I was fortunate enough to work with, visit, and add to my friend circle. I emailed it to Nancy, and as one did often in those days, <a href="https://fullcirc.com/2024/04/18/once-upon-a-time-i-wrote-a-thing/">she blogged about it</a>.</p>
  96.  
  97.  
  98.  
  99. <p>For me, I like having this visual indicator of how much of a blog post I have managed to keep partly alive by nurturing the dead links with archived ones. You can see a lot of the icons on the oldest post I have with links to the Wayback machine, <a href="https://cogdogblog.com/2003/11/blogging-in-2/">a 2003 moldy oldie on &#8220;Comment Blogging&#8221;</a> (what comes around, I might come back for that).</p>
  100.  
  101.  
  102.  
  103. <p>Not sure what this matters, but I derive small satisfaction in tinkering under the hood of the machine.</p>
  104.  
  105.  
  106.  
  107. <h2 class="wp-block-heading">Update</h2>
  108.  
  109.  
  110.  
  111. <p>As expected, ChatGPT (cheap 3.5 version) was first able to provide more or less what my old code did. <a href="https://chat.openai.com/share/1d582269-626f-436c-b3a6-08e35d79d1c2">When I asked it to improve to use the :after pseudo class it belched out an ugly blob of CSS</a>. I knew it would be a waste of time and <a href="https://towardsdatascience.com/chatgpts-energy-use-per-query-9383b8654487">for 2 queries I expended 0.004kW of electricity</a>.</p>
  112.  
  113.  
  114.  
  115. <hr class="wp-block-separator has-alpha-channel-opacity"/>
  116.  
  117.  
  118.  
  119. <p><em>Featured Image: Mine. Human generated. My dad&#8217;s old shoe shine box. <a href="https://flickr.com/photos/cogdog/4444000793">Dad&#8217;s Shoe Box</a> flickr photo by <a href="https://flickr.com/people/cogdog">cogdogblog</a> shared into the public domain using <a href="https://creativecommons.org/publicdomain/zero/1.0/">Creative Commons Public Domain Dedication (CC0)</a></em></p>
  120.  
  121.  
  122.  
  123. <figure class="wp-block-image size-full"><a href="https://cogdogblog.com/wp-content/uploads/2024/04/4444000793_fa23356770_c.jpg"><img data-attachment-id="74182" data-permalink="https://cogdogblog.com/2024/04/css-shine-wayback-links/4444000793_fa23356770_c/" data-orig-file="https://cogdogblog.com/wp-content/uploads/2024/04/4444000793_fa23356770_c.jpg" data-orig-size="799,532" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;CC-BY creative commons by attribution&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="4444000793_fa23356770_c" data-image-description="" data-image-caption="" data-medium-file="https://cogdogblog.com/wp-content/uploads/2024/04/4444000793_fa23356770_c-760x506.jpg" data-large-file="https://cogdogblog.com/wp-content/uploads/2024/04/4444000793_fa23356770_c.jpg" decoding="async" loading="lazy" width="799" height="532" src="https://cogdogblog.com/wp-content/uploads/2024/04/4444000793_fa23356770_c.jpg" alt="A home built thin wood carrying box with rags and cans insider, and on top are two old tins of shoe polish." class="wp-image-74182" srcset="https://cogdogblog.com/wp-content/uploads/2024/04/4444000793_fa23356770_c.jpg 799w, https://cogdogblog.com/wp-content/uploads/2024/04/4444000793_fa23356770_c-760x506.jpg 760w" sizes="(max-width: 799px) 100vw, 799px" /></a></figure>
  124. ]]></content:encoded>
  125. <wfw:commentRss>https://cogdogblog.com/2024/04/css-shine-wayback-links/feed/</wfw:commentRss>
  126. <slash:comments>0</slash:comments>
  127. </item>
  128. <item>
  129. <title>the pulse of net.art</title>
  130. <link>https://cogdogblog.com/2024/04/pulse-net-art/</link>
  131. <comments>https://cogdogblog.com/2024/04/pulse-net-art/#comments</comments>
  132. <dc:creator><![CDATA[CogDog The Blog]]></dc:creator>
  133. <pubDate>Wed, 17 Apr 2024 17:41:15 +0000</pubDate>
  134. <category><![CDATA[On Sharing]]></category>
  135. <category><![CDATA[Random Musing]]></category>
  136. <category><![CDATA[renewmediaart]]></category>
  137. <guid isPermaLink="false">https://cogdogblog.com/?p=74173</guid>
  138.  
  139. <description><![CDATA[It&#8217;s no surprise that Jay Hoffman writing about The Analog Web caught my eye, not for nostalgia, but something that circles forward. I&#8217;ve been following Jays History of the Web writing since, well I can&#8217;t remember when, and am pleased to see he has gotten federated. Of many points I could grab as a Gardner [&#8230;]]]></description>
  140. <content:encoded><![CDATA[
  141. <p>It&#8217;s no surprise that Jay Hoffman <a href="https://thehistoryoftheweb.com/the-analog-web/">writing about The Analog Web</a> caught my eye, not for nostalgia, but something that circles forward. I&#8217;ve been following Jays <a href="https://thehistoryoftheweb.com/">History of the Web</a> writing since, well I can&#8217;t remember when, and am pleased to see <a href="https://mastodon.social/@Jayhoffmann">he has gotten federated</a>.</p>
  142.  
  143.  
  144.  
  145. <p>Of many points I could grab as <a href="https://yc-extend.ecampusontario.ca/activities/thought-vectors-and-nuggets/">a Gardner Campbell gold sprinkled &#8220;nugget&#8221;</a>, his mention of net.art clanged a neuron.</p>
  146.  
  147.  
  148.  
  149. <blockquote class="wp-block-quote">
  150. <p>For instance, in the much earlier days of the web, a group of artists and writers found each other out amongst the nodes of the network. They began creating websites unified only by a shared interest in what could be achieved on the web. After a while, they gathered under the banner of Internet Art, or net.art for short. Their online creations ranged from hypertext poetry and avant garde stories to websites that extended performances into the real world or challenged the idea of what a website even was.</p>
  151.  
  152.  
  153.  
  154. <p>I refer,&nbsp;<a target="_blank" href="https://thehistoryoftheweb.com/net-art/" rel="noreferrer noopener">as I have before</a>, to Rachel Greene in reference to&nbsp;<a target="_blank" href="https://www.thamesandhudsonusa.com/books/internet-art-softcover" rel="noreferrer noopener">her book about Net.art</a>&nbsp;and the importance of the movement:</p>
  155.  
  156.  
  157.  
  158. <blockquote class="wp-block-quote">
  159. <p>I refuse to let commercial interests dominate the history and perception of the net because I think they would exclude the most important and dynamic internal content – the aesthetic, creative, radical, political ideas and experiments</p>
  160. </blockquote>
  161. <cite><a href="https://thehistoryoftheweb.com/the-analog-web/">https://thehistoryoftheweb.com/the-analog-web/</a></cite></blockquote>
  162.  
  163.  
  164.  
  165. <p>On a whim in 2010, during a visit to the hallowed MIT grounds in Cambridge, I picked up some books in the MIT Bookstore.</p>
  166.  
  167.  
  168.  
  169. <figure class="wp-block-embed is-type-photo is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
  170. <a href="https://flickr.com/photos/cogdog/4976313380"><img decoding="async" loading="lazy" src="https://live.staticflickr.com/4132/4976313380_0cc4fdf46a_b.jpg" alt="Books Scooped at MIT Press Store" width="1024" height="683" /></a>
  171. </div><figcaption class="wp-element-caption"><a href="https://flickr.com/photos/cogdog/4976313380">Books Scooped at MIT Press Store</a> flickr photo by <a href="https://flickr.com/people/cogdog">cogdogblog</a> shared under a <a href="https://creativecommons.org/licenses/by/2.0/">Creative Commons (BY) license</a></figcaption></figure>
  172.  
  173.  
  174.  
  175. <p>I was working for s<a href="https://www.nmc.org/">ome now defunct organzation</a> that had &#8220;new media&#8221; in its moniker, but actually did not know the stuff inside had this name of &#8220;net.art.&#8221; The books content was fully available (once) on a wiki, and all of the exhibits inside were of course visitable on the web.</p>
  176.  
  177.  
  178.  
  179. <p>In 2010.</p>
  180.  
  181.  
  182.  
  183. <p>Sometime much later, I took it on myself to run my own project to revisit the sites, collecting updates, archive links in a tumblr site (wow did I have a time remembering how to login and navigate tumblr-ville) a called <a href="https://re-new-media-art.tumblr.com/">(re) New Media Art</a>. </p>
  184.  
  185.  
  186.  
  187. <p>Each entry included a screenshot, a link if it existed, if not, an internet archive link. Yup, <a href="https://cogdogblog.com/2014/02/new-old-new-media-art/">I guess I blogged about it too</a> it looks like I did a thing with the tumblr RSS feed and ancient syndication trickery to republish them in my blog. <a href="https://cogdogblog.com/tag/renewmediaart/">My gosh it worked</a>, small pieces loosely taped together.</p>
  188.  
  189.  
  190.  
  191. <figure class="wp-block-image size-large"><a href="https://re-new-media-art.tumblr.com/post/77885538452/life-sharing"><img data-attachment-id="74174" data-permalink="https://cogdogblog.com/2024/04/pulse-net-art/screen-shot-245/" data-orig-file="https://cogdogblog.com/wp-content/uploads/2024/04/Screen-Shot-245.jpg" data-orig-size="1994,1600" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="Screen-Shot-245" data-image-description="" data-image-caption="" data-medium-file="https://cogdogblog.com/wp-content/uploads/2024/04/Screen-Shot-245-760x610.jpg" data-large-file="https://cogdogblog.com/wp-content/uploads/2024/04/Screen-Shot-245-1280x1027.jpg" decoding="async" loading="lazy" width="1280" height="1027" src="https://cogdogblog.com/wp-content/uploads/2024/04/Screen-Shot-245-1280x1027.jpg" alt="" class="wp-image-74174" srcset="https://cogdogblog.com/wp-content/uploads/2024/04/Screen-Shot-245-1280x1027.jpg 1280w, https://cogdogblog.com/wp-content/uploads/2024/04/Screen-Shot-245-760x610.jpg 760w, https://cogdogblog.com/wp-content/uploads/2024/04/Screen-Shot-245-1536x1232.jpg 1536w, https://cogdogblog.com/wp-content/uploads/2024/04/Screen-Shot-245.jpg 1994w" sizes="(max-width: 1280px) 100vw, 1280px" /></a><figcaption class="wp-element-caption"><a href="https://re-new-media-art.tumblr.com/post/77885538452/life-sharing">My entry for a revisit to the Life Sharing project</a> from the original <em>New Media Art</em> book.</figcaption></figure>
  192.  
  193.  
  194.  
  195. <p>I only got a portion of them done, well maybe only 6 yet another started, partly done CogDogBog</p>
  196.  
  197.  
  198.  
  199. <p>When I taught the Networked Narratives course, I did give my students <a href="https://make.arganee.world/thing/where-is-the-new-media-art-now/">an assignment to research the ones I had not completed, and generate the entry</a> for which they got credit &#8211; e.g see the &#8220;researched by&#8221; credit for the revisit to <a href="https://re-new-media-art.tumblr.com/post/170482679884">My Boyfriend Came Back from the War</a>. The <a href="https://re-new-media-art.tumblr.com/">four newest ones on the site</a> were done by students (and one by the venerable participant in everything @dogtrax).</p>
  200.  
  201.  
  202.  
  203. <p>The point here is Jay&#8217;s mention of net.art sent me back to look at my site, its still there, and just out of curiosity, I followed the original link for the Life Sharing site, where the domain itself is art <a href="http://0100101110101101.org/home/lifesharing/index.html">http://0100101110101101.org/home/lifesharing/index.html</a> to find a redirect&#8230; woah it is now part of <a href="https://anthology.rhizome.org/">a Rhizome exhibit of Net Art Anthology</a> that is much much better (more media and references) than my crappy tumblr.</p>
  204.  
  205.  
  206.  
  207. <figure class="wp-block-image size-large"><a href="https://anthology.rhizome.org/life-sharing"><img data-attachment-id="74175" data-permalink="https://cogdogblog.com/2024/04/pulse-net-art/screen-shot-246/" data-orig-file="https://cogdogblog.com/wp-content/uploads/2024/04/Screen-Shot-246-scaled.jpg" data-orig-size="2560,1464" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="Screen-Shot-246" data-image-description="" data-image-caption="" data-medium-file="https://cogdogblog.com/wp-content/uploads/2024/04/Screen-Shot-246-760x435.jpg" data-large-file="https://cogdogblog.com/wp-content/uploads/2024/04/Screen-Shot-246-1280x732.jpg" decoding="async" loading="lazy" width="1280" height="732" src="https://cogdogblog.com/wp-content/uploads/2024/04/Screen-Shot-246-1280x732.jpg" alt="" class="wp-image-74175" srcset="https://cogdogblog.com/wp-content/uploads/2024/04/Screen-Shot-246-1280x732.jpg 1280w, https://cogdogblog.com/wp-content/uploads/2024/04/Screen-Shot-246-760x435.jpg 760w, https://cogdogblog.com/wp-content/uploads/2024/04/Screen-Shot-246-1536x879.jpg 1536w, https://cogdogblog.com/wp-content/uploads/2024/04/Screen-Shot-246-2048x1172.jpg 2048w" sizes="(max-width: 1280px) 100vw, 1280px" /></a><figcaption class="wp-element-caption"><a href="https://anthology.rhizome.org/life-sharing">Net Art Anthology entry for Life Sharing</a> (well worth a scroll stroll)</figcaption></figure>
  208.  
  209.  
  210.  
  211. <p>I have to see the whole Anthology is a rich trove of net.art. That is alive, with a pulse. That&#8217;s a lot because it is published in those old formats that still work. You want durability over the long haul? Stay with HTML.</p>
  212.  
  213.  
  214.  
  215. <figure class="wp-block-embed is-type-wp-embed is-provider-cosocial-ca wp-block-embed-cosocial-ca"><div class="wp-block-embed__wrapper">
  216. <iframe src="https://cosocial.ca/@cogdog/112283127204086377/embed" class="mastodon-embed" style="max-width: 100%; border: 0" width="800" allowfullscreen="allowfullscreen"></iframe><script src="https://cosocial.ca/embed.js" async="async"></script>
  217. </div></figure>
  218.  
  219.  
  220.  
  221. <p>One link leads to another to another (and Alan getting distracted!)</p>
  222.  
  223.  
  224.  
  225. <hr class="wp-block-separator has-alpha-channel-opacity"/>
  226.  
  227.  
  228.  
  229. <p><em>Featured Image: <a href="https://anthology.rhizome.org/simple-net-art-diagram">Simple Net Art Diagram</a> animated GIF by <a href="https://www.mtaa.net">MTAA</a>. The Net Art Anthology states it is licensed under a Creative Commons license&#8221; but<a href="https://www.mtaa.net/mtaaRR/off-line_art/snad.html"> the old school source page</a> indicates it is placed into the public domain using Creative Commons CC0. See Nate Angell! Some of us make the distinction clear!</em></p>
  230.  
  231.  
  232. <div class="wp-block-image">
  233. <figure class="aligncenter size-full"><a href="https://anthology.rhizome.org/simple-net-art-diagram"><img data-attachment-id="74177" data-permalink="https://cogdogblog.com/2024/04/pulse-net-art/netartdiagram/" data-orig-file="https://cogdogblog.com/wp-content/uploads/2024/04/netartdiagram.gif" data-orig-size="471,238" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="netartdiagram" data-image-description="" data-image-caption="" data-medium-file="https://cogdogblog.com/wp-content/uploads/2024/04/netartdiagram.gif" data-large-file="https://cogdogblog.com/wp-content/uploads/2024/04/netartdiagram.gif" decoding="async" loading="lazy" width="471" height="238" src="https://cogdogblog.com/wp-content/uploads/2024/04/netartdiagram.gif" alt="Animation of a diagram with lines connecting two old computers, like a network. A flashing icon in the middle hgas a label reading &quot;The art happens here&quot;" class="wp-image-74177"/></a></figure></div>]]></content:encoded>
  234. <wfw:commentRss>https://cogdogblog.com/2024/04/pulse-net-art/feed/</wfw:commentRss>
  235. <slash:comments>3</slash:comments>
  236. </item>
  237. <item>
  238. <title>Blog Post Silly Polo</title>
  239. <link>https://cogdogblog.com/2024/04/silly-polo/</link>
  240. <comments>https://cogdogblog.com/2024/04/silly-polo/#comments</comments>
  241. <dc:creator><![CDATA[CogDog The Blog]]></dc:creator>
  242. <pubDate>Tue, 16 Apr 2024 01:34:46 +0000</pubDate>
  243. <category><![CDATA[Blogging]]></category>
  244. <category><![CDATA[Experiments]]></category>
  245. <category><![CDATA[fediverse]]></category>
  246. <category><![CDATA[wordpress]]></category>
  247. <guid isPermaLink="false">https://cogdogblog.com/?p=74164</guid>
  248.  
  249. <description><![CDATA[I hardly have to ask the internet (hey you!) to ignore me, but I am trying one more post as an ActivityPub enabled blog check the formatting when it goes out- this time I have changed the format of the posting to include a title intro, am added excerpt, and a stuffed in hashtag. Already [&#8230;]]]></description>
  250. <content:encoded><![CDATA[
  251. <p>I hardly have to ask the internet (hey you!) to ignore me, but I am trying one more post as an <a href="https://cogdogblog.com/2024/04/hello-activitypub-on/">ActivityPub enabled blog check</a> the formatting when it goes out- this time I have changed the format of the posting to include a title intro, am added excerpt, and a stuffed in hashtag.</p>
  252.  
  253.  
  254.  
  255. <p>Already some success as<a href="https://cogdogblog.com/2024/04/the-tiny/"> my last post did get Fedi-posted</a>, I can&#8217;r embed it as the link for it, as it should be, is the original post. </p>
  256.  
  257.  
  258.  
  259. <p>But, when I <a href="https://cosocial.ca/@cogdog/112277013114117268">replied in Mastodon</a>, the comment came into the blog. And my reply from the blog also went back out.</p>
  260.  
  261.  
  262.  
  263. <p>So i am a federation of one person, 2 accounts, talking to myself. Hence the &#8220;silly polo&#8221; (I have been waiting to use <a href="https://www.flickr.com/photos/library_of_congress/3351769494">that public domain image</a>).</p>
  264.  
  265.  
  266.  
  267. <hr class="wp-block-separator has-alpha-channel-opacity"/>
  268.  
  269.  
  270.  
  271. <p><em>Featured Image: <a href="https://flickr.com/photos/library_of_congress/3351769494">Wild West Polo, Coney Isl. (LOC)</a> flickr photo by <a href="https://flickr.com/people/library_of_congress">The Library of Congress</a> shared with <a href="https://flickr.com/commons/usage/">no copyright restriction (Flickr Commons)</a> modified me to have a top text of &#8220;@Topdog@CoGDogBlog.com Fediverse Posting Polo, Mastodon&#8221;</em>. <em>Kind of weird how I do not need to use GenAI to make pictures, eh?</em></p>
  272.  
  273.  
  274.  
  275. <figure class="wp-block-image size-full"><a href="https://cogdogblog.com/wp-content/uploads/2024/04/cogsog-polo3351769494_f6a88b8684_b.jpg"><img data-attachment-id="74166" data-permalink="https://cogdogblog.com/2024/04/silly-polo/cogsog-polo3351769494_f6a88b8684_b/" data-orig-file="https://cogdogblog.com/wp-content/uploads/2024/04/cogsog-polo3351769494_f6a88b8684_b.jpg" data-orig-size="1200,865" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="cogsog-polo3351769494_f6a88b8684_b" data-image-description="" data-image-caption="" data-medium-file="https://cogdogblog.com/wp-content/uploads/2024/04/cogsog-polo3351769494_f6a88b8684_b-760x548.jpg" data-large-file="https://cogdogblog.com/wp-content/uploads/2024/04/cogsog-polo3351769494_f6a88b8684_b.jpg" decoding="async" loading="lazy" width="1200" height="865" src="https://cogdogblog.com/wp-content/uploads/2024/04/cogsog-polo3351769494_f6a88b8684_b.jpg" alt="Vintage photo of men in floppy hats playing polo, the central player's pole is bent over like its made of rubber, like a clown toy." class="wp-image-74166" srcset="https://cogdogblog.com/wp-content/uploads/2024/04/cogsog-polo3351769494_f6a88b8684_b.jpg 1200w, https://cogdogblog.com/wp-content/uploads/2024/04/cogsog-polo3351769494_f6a88b8684_b-760x548.jpg 760w" sizes="(max-width: 1200px) 100vw, 1200px" /></a></figure>
  276. ]]></content:encoded>
  277. <wfw:commentRss>https://cogdogblog.com/2024/04/silly-polo/feed/</wfw:commentRss>
  278. <slash:comments>1</slash:comments>
  279. </item>
  280. <item>
  281. <title>The Tiny of SPLOT</title>
  282. <link>https://cogdogblog.com/2024/04/the-tiny/</link>
  283. <comments>https://cogdogblog.com/2024/04/the-tiny/#comments</comments>
  284. <dc:creator><![CDATA[CogDog The Blog]]></dc:creator>
  285. <pubDate>Mon, 15 Apr 2024 17:38:42 +0000</pubDate>
  286. <category><![CDATA[Random Musing]]></category>
  287. <category><![CDATA[SPLOT]]></category>
  288. <category><![CDATA[smallweb]]></category>
  289. <category><![CDATA[splot]]></category>
  290. <guid isPermaLink="false">https://cogdogblog.com/?p=74153</guid>
  291.  
  292. <description><![CDATA[I was thinking of the times when I would, now totally sounding naively, exalt about the bigness of the internet which today, which we pursue trendingness to be seen, noticed, affirmed, liked and re-liked. Who wants to spout out and not be heard? I come to celebrate today the small, unnoticed. One of my weirdest [&#8230;]]]></description>
  293. <content:encoded><![CDATA[
  294. <p>I was thinking of the times when I would, now totally sounding naively, <a href="https://flickr.com/photos/cogdog/albums/72157607752135967/">exalt about the bigness of the internet</a> which today, which we pursue trendingness to be seen, noticed, affirmed, liked and re-liked. Who wants to spout out and not be heard?</p>
  295.  
  296.  
  297.  
  298. <p>I come to celebrate today the small, unnoticed. One of my weirdest to describe efforts, now brown on the edges with aging, was ye old <a href="https://splot.ca/">SPLOTs</a> those hand crafted WordPress themes designed to let people build out sites for collecting/sharing content easily (well what passes for easy). </p>
  299.  
  300.  
  301.  
  302. <p>One sign is that the internet is big enough for many things named the same&#8211;  <a href="https://www.google.com/search?q=splot+logo">I am not the first to latch on to a name</a>. <em>Will the real SPLOT please stand up</em> (all rise).</p>
  303.  
  304.  
  305.  
  306. <figure class="wp-block-image size-large"><a href="https://www.google.com/search?q=splot+logo"><img data-attachment-id="74156" data-permalink="https://cogdogblog.com/2024/04/the-tiny/screen-shot-237/" data-orig-file="https://cogdogblog.com/wp-content/uploads/2024/04/Screen-Shot-237.jpg" data-orig-size="1426,1072" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="Screen-Shot-237" data-image-description="" data-image-caption="" data-medium-file="https://cogdogblog.com/wp-content/uploads/2024/04/Screen-Shot-237-760x571.jpg" data-large-file="https://cogdogblog.com/wp-content/uploads/2024/04/Screen-Shot-237-1280x962.jpg" decoding="async" loading="lazy" width="1280" height="962" src="https://cogdogblog.com/wp-content/uploads/2024/04/Screen-Shot-237-1280x962.jpg" alt="Google search results showing 6 different logos for 6 different web sites named &quot;SPLOT&quot;. One is mine, splot.ca" class="wp-image-74156" srcset="https://cogdogblog.com/wp-content/uploads/2024/04/Screen-Shot-237-1280x962.jpg 1280w, https://cogdogblog.com/wp-content/uploads/2024/04/Screen-Shot-237-760x571.jpg 760w, https://cogdogblog.com/wp-content/uploads/2024/04/Screen-Shot-237.jpg 1426w" sizes="(max-width: 1280px) 100vw, 1280px" /></a></figure>
  307.  
  308.  
  309.  
  310. <p>I&#8217;ve barely updated, added, tended to SPLOTs, but I do get glimmers of seeing them out in the wild. And even in person, like at the OER24 conference I got to see <a href="https://francesbell.com/">Frances Bell</a> who is most enthusiastic, gracious, appreciative with the use of two SPLOTs in the <a href="https://femedtech.net/">Femedtech web site</a>&#8211; so enthusiastic she gave me a SPLOT coffee mug!</p>
  311.  
  312.  
  313.  
  314. <figure class="wp-block-image size-full"><img data-attachment-id="74157" data-permalink="https://cogdogblog.com/2024/04/the-tiny/splot-mug/" data-orig-file="https://cogdogblog.com/wp-content/uploads/2024/04/splot-mug.jpg" data-orig-size="1080,812" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="splot-mug" data-image-description="" data-image-caption="" data-medium-file="https://cogdogblog.com/wp-content/uploads/2024/04/splot-mug-760x571.jpg" data-large-file="https://cogdogblog.com/wp-content/uploads/2024/04/splot-mug.jpg" decoding="async" loading="lazy" width="1080" height="812" src="https://cogdogblog.com/wp-content/uploads/2024/04/splot-mug.jpg" alt="Smiling an holding a cup with painted splotch design aside a smiling woman, who gave him the cup. They are standing in the hallway of some kind of conference venue." class="wp-image-74157" srcset="https://cogdogblog.com/wp-content/uploads/2024/04/splot-mug.jpg 1080w, https://cogdogblog.com/wp-content/uploads/2024/04/splot-mug-760x571.jpg 760w" sizes="(max-width: 1080px) 100vw, 1080px" /><figcaption class="wp-element-caption">A SPLOT mug Frances Bell gifted me at OER24, thanks to Sheila Macneil for the photo, I can guess we would slap with a CC-BY linense.</figcaption></figure>
  315.  
  316.  
  317.  
  318. <p>And this morning I got an email from Suzanne who manages the <a href="https://starscapes.openlcc.net/presentations/">Lansing Community College Starscapes site</a>, using <a href="https://github.com/cogdog/splotbox">SPLOTbox</a> for students to post/share media (images, videos, documents) describing projects shared at a college event promoting student creativity. </p>
  319.  
  320.  
  321.  
  322. <figure class="wp-block-image size-large"><a href="https://starscapes.openlcc.net/category/spring-2024/"><img data-attachment-id="74162" data-permalink="https://cogdogblog.com/2024/04/the-tiny/screen-shot-238/" data-orig-file="https://cogdogblog.com/wp-content/uploads/2024/04/Screen-Shot-238-scaled.jpg" data-orig-size="2560,1497" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="Screen-Shot-238" data-image-description="" data-image-caption="" data-medium-file="https://cogdogblog.com/wp-content/uploads/2024/04/Screen-Shot-238-760x444.jpg" data-large-file="https://cogdogblog.com/wp-content/uploads/2024/04/Screen-Shot-238-1280x748.jpg" decoding="async" loading="lazy" width="1280" height="748" src="https://cogdogblog.com/wp-content/uploads/2024/04/Screen-Shot-238-1280x748.jpg" alt="Starscapes features student innovation and creativity as a showcase for lansing Community College, 3 videos shown from the site for projects on Ultrssound Artifacts, Ergonomic in Sonography, and Tissue Harmonics" class="wp-image-74162" srcset="https://cogdogblog.com/wp-content/uploads/2024/04/Screen-Shot-238-1280x748.jpg 1280w, https://cogdogblog.com/wp-content/uploads/2024/04/Screen-Shot-238-760x444.jpg 760w, https://cogdogblog.com/wp-content/uploads/2024/04/Screen-Shot-238-1536x898.jpg 1536w, https://cogdogblog.com/wp-content/uploads/2024/04/Screen-Shot-238-2048x1198.jpg 2048w" sizes="(max-width: 1280px) 100vw, 1280px" /></a><figcaption class="wp-element-caption"><a href="https://starscapes.openlcc.net/category/spring-2024/">Starscapes student projects submitted for 2024</a></figcaption></figure>
  323.  
  324.  
  325.  
  326. <p>She reported for 2024 they have more submissions than before:</p>
  327.  
  328.  
  329.  
  330. <blockquote class="wp-block-quote">
  331. <p>Being able to offer StarScapes online has doubled the number of students who participate in the event. Right now we are trying to grow the in person event again, as that used to be the only option before the pandemic.</p>
  332. <cite>Suzanne B on use of Starscapes site</cite></blockquote>
  333.  
  334.  
  335.  
  336. <p>It&#8217;s out there in the bigness of the internet, right?</p>
  337.  
  338.  
  339.  
  340. <p>I still feel <a href="https://cogdogblog.com/2024/01/happily-splotic-metaphors-sadly-robotic/">compelled to built out image collector sites,</a> even if I am the lone contributor. <a href="https://sadlyrobotic.cogdogblog.com/">If anyone ever adds an image</a>, it will be noticed somewhere.</p>
  341.  
  342.  
  343.  
  344. <p>At one time I had the idea to make a SPLOT where people could upload text and then make it available to do blackout poetry, but evnetually someone came along and did this in a much better form, see <a href="https://emergepoems.com/">Emerge Poems</a> (that was likely you @dogtrax, great find).</p>
  345.  
  346.  
  347.  
  348. <p>In these days I am finding solace in the tiny over the big. At least that&#8217;s what I whisper to myself. Anyone else out there celebrating the tiny? There&#8217;s more of it than you think.</p>
  349.  
  350.  
  351.  
  352. <hr class="wp-block-separator has-alpha-channel-opacity"/>
  353.  
  354.  
  355.  
  356. <p><em>Featured Image: Modified my own image <a href="https://flickr.com/photos/cogdog/16293878467">Those Peaks Are Tiny</a> flickr photo by <a href="https://flickr.com/people/cogdog">cogdogblog</a> shared under a <a href="https://creativecommons.org/licenses/by/2.0/">Creative Commons (BY) license</a> to put the SPLOT logo I created inside the fingers, make it all CC BY and call it a day.</em></p>
  357.  
  358.  
  359.  
  360. <figure class="wp-block-image size-full"><a href="https://cogdogblog.com/wp-content/uploads/2024/04/splot16293878467_0b9bbb2452_c.jpg"><img data-attachment-id="74160" data-permalink="https://cogdogblog.com/2024/04/the-tiny/splot16293878467_0b9bbb2452_c/" data-orig-file="https://cogdogblog.com/wp-content/uploads/2024/04/splot16293878467_0b9bbb2452_c.jpg" data-orig-size="800,600" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;cc licensed ( BY-SA ) photo by Alan Levine&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="splot16293878467_0b9bbb2452_c" data-image-description="" data-image-caption="" data-medium-file="https://cogdogblog.com/wp-content/uploads/2024/04/splot16293878467_0b9bbb2452_c-760x570.jpg" data-large-file="https://cogdogblog.com/wp-content/uploads/2024/04/splot16293878467_0b9bbb2452_c.jpg" decoding="async" loading="lazy" width="800" height="600" src="https://cogdogblog.com/wp-content/uploads/2024/04/splot16293878467_0b9bbb2452_c.jpg" alt="Closeup of a thumb and forefinger with a blurry image of a mountain in the back, between the fingers is a logo that reads SPLOT" class="wp-image-74160" srcset="https://cogdogblog.com/wp-content/uploads/2024/04/splot16293878467_0b9bbb2452_c.jpg 800w, https://cogdogblog.com/wp-content/uploads/2024/04/splot16293878467_0b9bbb2452_c-760x570.jpg 760w" sizes="(max-width: 800px) 100vw, 800px" /></a></figure>
  361. ]]></content:encoded>
  362. <wfw:commentRss>https://cogdogblog.com/2024/04/the-tiny/feed/</wfw:commentRss>
  363. <slash:comments>4</slash:comments>
  364. </item>
  365. <item>
  366. <title>Hello [Fedi] World, ActivityPub On</title>
  367. <link>https://cogdogblog.com/2024/04/hello-activitypub-on/</link>
  368. <comments>https://cogdogblog.com/2024/04/hello-activitypub-on/#comments</comments>
  369. <dc:creator><![CDATA[CogDog The Blog]]></dc:creator>
  370. <pubDate>Mon, 15 Apr 2024 02:39:41 +0000</pubDate>
  371. <category><![CDATA[Blog Pile]]></category>
  372. <category><![CDATA[fediverse]]></category>
  373. <category><![CDATA[mastodon]]></category>
  374. <guid isPermaLink="false">https://cogdogblog.com/?p=74146</guid>
  375.  
  376. <description><![CDATA[There was a moment at the [brilliant] #OER24 conference keynote duo by Catherine Cronin and Laura Czernowicz &#8220;The future isn’t what it used to be: Open education at a crossroads&#8221; when they asked the audience to Menti respond to a question about what we should do as an action. Watching the responses roll by when [&#8230;]]]></description>
  377. <content:encoded><![CDATA[
  378. <p>There was a moment at the [brilliant] <a href="https://catherinecronin.net/conferences/post-oer24-keynote/">#OER24 conference keynote duo by Catherine Cronin and Laura Czernowicz</a> &#8220;The future isn’t what it used to be: Open education at a crossroads&#8221; when they asked the audience to Menti respond to a question about what we should do as an action.</p>
  379.  
  380.  
  381.  
  382. <p>Watching the responses roll by when I saw one that said &#8220;Blog!&#8221; I leaned forward and tapped <a href="https://blog.edtechie.net/">Martin Weller</a> on the shoulder to whisper &#8220;I see you!&#8221;</p>
  383.  
  384.  
  385.  
  386. <p>Let&#8217;s say I have been slow on that front (as Martin keeps punding them out), I have still a draft on in my brain from the conference.</p>
  387.  
  388.  
  389.  
  390. <p>That&#8217;s not this one.</p>
  391.  
  392.  
  393.  
  394. <p>I am actually just attempting to open the blocked blog flow here, with just a little nothing note, that as of this post, this WordPress powered blog (so old fashioned, eh?) is now, err once again, pumping out the posts, when/if they actually happen, directly to the Fediverse, to Mastodon, via the <a href="https://wordpress.org/plugins/activitypub/">ActivityPub plugin</a>.</p>
  395.  
  396.  
  397.  
  398. <p>Zzzzz. Hardly worth a blog post, is it?</p>
  399.  
  400.  
  401.  
  402. <p>Well I did a short run with it before it became part of the Automattic ship, back in maybe November 2022.  it worked indeed publishing as an entity known as <code>@topdog@cogdogblog,com</code>, but for me, I was really looking for the means to publish to my existing Mastodon, after all it&#8217;s my stuff, and I want to reply to replies if there were anything, as me. </p>
  403.  
  404.  
  405.  
  406. <p>I went down a different route, using <a href="https://cogdogblog.com/2022/11/gizmo-to-mastodon/">a duct taped approach of an IFTTT applet that listened to my blog&#8217;s RSS feed and posted to my Mastodon account</a> via a webhook. I&#8217;ve since made a batch of these, some to post stuff to Mastodon I have tagged in Pinboard, even having my flickr photos tagged with my dog&#8217;s name posted to his own Mastodon account (this approach got nicked when IFTTT took away the ability to use web hooks from the free accounts, and I have been moving some to make.com which is vastly more powerful service).</p>
  407.  
  408.  
  409.  
  410. <p>I like having stuff flow into my own stream, not some other one. Plus with these tools, I had some flexibility to customize the output, you know , my personal touch, like putting &#8220;Just CogDogBlogged:&#8221; before the title and slapping a hashtag on the end.</p>
  411.  
  412.  
  413.  
  414. <figure class="wp-block-embed is-type-wp-embed is-provider-cosocial-ca wp-block-embed-cosocial-ca"><div class="wp-block-embed__wrapper">
  415. <iframe src="https://cosocial.ca/@cogdog/112164819314566446/embed" class="mastodon-embed" style="max-width: 100%; border: 0" width="800" allowfullscreen="allowfullscreen"></iframe><script src="https://cosocial.ca/embed.js" async="async"></script>
  416. </div></figure>
  417.  
  418.  
  419.  
  420. <p>But I have been seeing more use of the WordPress plugin and mentions of more features. Just on a whim, last week, I added the ActivityPub plugin to the <a href="https://podcast.oeglobal.org/">OE Global Voices podcast site</a> I managed (on WordPress) just to see how easy it was to set up.</p>
  421.  
  422.  
  423.  
  424. <p><a href="https://podcast.oeglobal.org/2024/04/11/voices-in-the-fediverse/">Dead easy</a>.</p>
  425.  
  426.  
  427.  
  428. <figure class="wp-block-embed is-type-wp-embed is-provider-cosocial-ca wp-block-embed-cosocial-ca"><div class="wp-block-embed__wrapper">
  429. <iframe src="https://cosocial.ca/@cogdog/112254927447474810/embed" class="mastodon-embed" style="max-width: 100%; border: 0" width="800" allowfullscreen="allowfullscreen"></iframe><script src="https://cosocial.ca/embed.js" async="async"></script>
  430. </div></figure>
  431.  
  432.  
  433.  
  434. <p>And then, one of those little things happen than remind me the human connections in this ginormous ball of web yarn is what makes it worth it.</p>
  435.  
  436.  
  437.  
  438. <p>I am fortunate that someone like Jon Udell follows my posts, and replies, and as its done, <a href="https://social.coop/@judell/112256574516011160">he mentions Matthias Pfefferle</a> who is the genius behind the plugin, and then Matthias is asking me questions about my set up for podcasting, and lets me know of a new audio feature coming out this week.</p>
  439.  
  440.  
  441.  
  442. <p>If somehow my spitting out a mention of a small experiment leads me to talking directly to the person who builds the software? well heck, that is something I would latch on to rather than foaming on about prompt engineering.</p>
  443.  
  444.  
  445.  
  446. <p>And hence, IU am thinking, why not set it up again here on the home blog, my roost since 2003. That&#8217;s something you don&#8217;t get cashing in your chips to blog on Wix or tossing it all into email newsletter platforms. I am of the dwindling mindset of those who not only want to own my own web corner and platform, I want to play with it, tinker, and pop the hood once in a while to admire the engine.</p>
  447.  
  448.  
  449.  
  450. <p>Well this was more than a Hello World thing to test how this will spawn out into the Fedivserse. But that is my human, far from efficient way to do things.</p>
  451.  
  452.  
  453.  
  454. <p>It will thus be spit out twice to the fediverse, using each approach. Like anyone cares about my repetition and redundancy.</p>
  455.  
  456.  
  457.  
  458. <p>Now that the blog gate is open, maybe more words can get out the door here.</p>
  459.  
  460.  
  461.  
  462. <hr class="wp-block-separator has-alpha-channel-opacity"/>
  463.  
  464.  
  465.  
  466. <p>Featured Image: My own remix of Botticelli Birth of Venus as an homage to the blog loving <a href="https://bavatuesdays.com/">Jim Groom</a>, with the faces of the original DTLT team admiring his blog form.</p>
  467.  
  468.  
  469. <div class="wp-block-image">
  470. <figure class="aligncenter size-full"><a href="https://flickr.com/photos/cogdog/13850105375"><img data-attachment-id="74149" data-permalink="https://cogdogblog.com/2024/04/hello-activitypub-on/13850105375_53397d78f9_o/" data-orig-file="https://cogdogblog.com/wp-content/uploads/2024/04/13850105375_53397d78f9_o.png" data-orig-size="640,360" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="13850105375_53397d78f9_o" data-image-description="" data-image-caption="" data-medium-file="https://cogdogblog.com/wp-content/uploads/2024/04/13850105375_53397d78f9_o.png" data-large-file="https://cogdogblog.com/wp-content/uploads/2024/04/13850105375_53397d78f9_o.png" decoding="async" loading="lazy" width="640" height="360" src="https://cogdogblog.com/wp-content/uploads/2024/04/13850105375_53397d78f9_o.png" alt="A remix of Botticelli's birth if venus, where the lass on the shell has the face of Jim Groom, a DS106 tshirt, and faces added to the onlookers of the other old DTLT team frim UMW" class="wp-image-74149"/></a><figcaption class="wp-element-caption"><a href="https://flickr.com/photos/cogdog/13850105375">Tell Me Again About My Blog!</a> flickr photo by <a href="https://flickr.com/people/cogdog">cogdogblog</a> shared under a <a href="https://creativecommons.org/licenses/by/2.0/">Creative Commons (BY) license</a></figcaption></figure></div>]]></content:encoded>
  471. <wfw:commentRss>https://cogdogblog.com/2024/04/hello-activitypub-on/feed/</wfw:commentRss>
  472. <slash:comments>4</slash:comments>
  473. </item>
  474. <item>
  475. <title>Get Federated Got Gasta-Ed</title>
  476. <link>https://cogdogblog.com/2024/03/get-federated-got-gasta/</link>
  477. <comments>https://cogdogblog.com/2024/03/get-federated-got-gasta/#comments</comments>
  478. <dc:creator><![CDATA[CogDog The Blog]]></dc:creator>
  479. <pubDate>Fri, 29 Mar 2024 23:54:21 +0000</pubDate>
  480. <category><![CDATA[Presenting]]></category>
  481. <guid isPermaLink="false">https://cogdogblog.com/?p=74105</guid>
  482.  
  483. <description><![CDATA[The Gasta is now passed-ah.. Oi that does not exactly work, but here I am on the return trip from the OER24 conference, out my window pink light over Greenland, trying to write a blog post, offline. Because, after all the AI tremors have stilled or knocked down all the castles, the blog, the act [&#8230;]]]></description>
  484. <content:encoded><![CDATA[
  485. <p>The Gasta is now passed-ah.. Oi that does not exactly work, but here I am on the return trip from the <a href="https://www.oer2024.co.uk/">OER24 conference</a>, out my window pink light over Greenland, trying to write a blog post, offline.</p>
  486.  
  487.  
  488.  
  489. <p>Because, after all the AI tremors have stilled or knocked down all the castles, the blog, the act of blogging, remains for me, the reason detre.</p>
  490.  
  491.  
  492.  
  493. <p>Writing of the experience at OER24 is its own topic, here is my still riding the adrenaline wave of doing something so far out of my wheelhouse, there’s not a shred of the box left. And as I expect the blogging will get long paragraphed, I will start with the thing I did, then talk about it in excruciatingly droll detail.</p>
  494.  
  495.  
  496.  
  497. <p>Two days ago, for the very last day of OER24 I did this a speaking format I’ve never done before:</p>
  498.  
  499.  
  500.  
  501. <figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
  502. <div class="jetpack-video-wrapper"><iframe loading="lazy" title="OER24 Gasta 28 March 2024" width="1600" height="900" src="https://www.youtube.com/embed/B0yYfVwfh6E?start=2053&#038;feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
  503. </div></figure>
  504.  
  505.  
  506.  
  507. <p>So crossed off my conference bucket list is doing <a href="http://gasta.me/gasta-a-potted-history/">a Gasta presentation</a>. Even if you read the explanation, watch the videos, I’m not sure you can feel the electricity when the raw energy of Tom Farrelly lists out a call to countdown (learn to cp\ount in Irish) <a href="http://gasta.me/counting-in-irish/">with a wee bit of H5P</a>.</p>
  508.  
  509.  
  510.  
  511. <p>I have to admit that in hindsight, <a href="https://cat-diaries.blogspot.com/">I had a similar experience maybe first in 2004</a> at the old NMC conferences Five Minutes of Fame.</p>
  512.  
  513.  
  514.  
  515. <p>My idea came the weekend before the conference proposal deadline, when Cori and I were on a 3 day holiday in a cabin in the West Cypress Hills. My OEGlobal colleagues weee urged to submit presentations as plans were made to hold in person meetings for our staff there in Cork, Ireland, a few days before the OER24 conference.</p>
  516.  
  517.  
  518.  
  519. <p>I could have conjured something related to my projects but I did not feel anything really of importance to package as a talk.</p>
  520.  
  521.  
  522.  
  523. <p>But I have been long musing on the stream of educator lamenting over the sewage spiral of twitter and questions like “Where will everyone go?” To me, that notion of Twitter as a “town hall” was an illusion— don’t get me wrong, I hade so many valuable and fun and zany things that came from there, but it did not seem like it was the place itself. What happened to the idea of us building so called personal learning networks that were a multitude of platforms, with a blog rather central.</p>
  524.  
  525.  
  526.  
  527. <p>Yes Twitter had X-Ed the building of intenest to me (much because of how many of my small project forays were built to interconnect with bird space. And I have been tuning into the writings of Cory Doctorow on the enshittification of the web we are living in.</p>
  528.  
  529.  
  530.  
  531. <p>In May or June 2021 (check) I found myself reinvigorated with Mastodon (I had an account since 2016) and more broadly, the fleet of other apps that could connect or syndicate from Mastodon. I thought my organization could get out in front of this by setting up our own instance/server as maybe a member offering or just another open educator community space. Being the fediverse, natch, means it does not matter where you set up, but a common space had appeal to me.</p>
  532.  
  533.  
  534.  
  535. <p>However my colleagues, who frankly do not really do much personal use of twitter, were not interested. The expression in the response im got was that we should take “a measured approach.”</p>
  536.  
  537.  
  538.  
  539. <p>No matter, a server/instance was not necessary to rally interest, and thanks to my colleagues Wayne Mackintosh and Dave Lane of the OERu, they let me and others set up on their <a href="https://social.fossdle.org/">social.fossdle.org home</a> Again, the concept of the fediverse means it does not matter where you hang up your toots , as you can follow and communicate with any Mastodon user.</p>
  540.  
  541.  
  542.  
  543. <p>So I launched <a href="https://connect.oeglobal.oarg/tag/fediverse">other blobs of intertest with posts in our OEG Connect discourse community</a>. I added a profile feed for users to add their mastodon handle and <a href="https://connect.oeglobal.org/t/oeg-fediverse-directory/4364">pitched a Fediverse Directory</a> for the communityl</p>
  544.  
  545.  
  546.  
  547. <p>Thus I felt compelled to concoct an OER24 session as some kind of call to be part of the fediverse. Its been a while since I have done an audience presentation and the idea of talking over slides felt dull. I had seen Gasta done online from other OER conferences. The format seemed to be calling for something outrageous and, well maybe loud or disruptive.</p>
  548.  
  549.  
  550.  
  551. <p>I then thought of the spoken poetry and poetry slams I have gotten to see my wife’s high school students do. Cori has an exceptional instinct for word choice, arrangement, and delivery. As the kind of person she is and I love, when I brought it up on the drive to our weekend getaway, Cori has not only supportive but eager to coach me through the process.</p>
  552.  
  553.  
  554.  
  555. <p>Given that, I said that I should write my proposal as a poem too. Cori said to write my ideas as a few paragraphs, and in no time she whipped it into poetic form. Thus the proposal:</p>
  556.  
  557.  
  558.  
  559. <blockquote class="wp-block-quote">
  560. <figure class="wp-block-image size-full"><img data-attachment-id="74117" data-permalink="https://cogdogblog.com/2024/03/get-federated-got-gasta/screen-shot-220/" data-orig-file="https://cogdogblog.com/wp-content/uploads/2024/03/Screen-Shot-220.jpg" data-orig-size="742,1174" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="Screen-Shot-220" data-image-description="" data-image-caption="" data-medium-file="https://cogdogblog.com/wp-content/uploads/2024/03/Screen-Shot-220.jpg" data-large-file="https://cogdogblog.com/wp-content/uploads/2024/03/Screen-Shot-220.jpg" decoding="async" loading="lazy" width="742" height="1174" src="https://cogdogblog.com/wp-content/uploads/2024/03/Screen-Shot-220.jpg" alt="" class="wp-image-74117"/></figure>
  561.  
  562.  
  563.  
  564. <h2 class="wp-block-heading">References</h2>
  565.  
  566.  
  567.  
  568. <p>AmplifyFE (2023, September 5), <em>AmplifyFT Communities of Practice Sector Audit Reports 2023</em>, #ALTC23 Annual Conference 5-7 September 2023, Retrieved Nov 9, 2023, from <a href="https://drive.google.com/file/d/1mbIkhYInWEx8Djrn4u4jyPsIAe1_YBLx/view">https://drive.google.com/file/d/1mbIkhYInWEx8Djrn4u4jyPsIAe1_YBLx/view</a>&nbsp;</p>
  569.  
  570.  
  571.  
  572. <p>Koebler, Jason (2023, October 20), <em>Mastodon Is the Good One</em>, 404 Media blog,&nbsp; Retrieved Nov 12, 2023 from <a href="https://www.404media.co/mastodon-is-the-good-one/">https://www.404media.co/mastodon-is-the-good-one/</a></p>
  573. <cite>Get Federated OER24 Gasta session proposal</cite></blockquote>
  574.  
  575.  
  576.  
  577. <p>It was submitted literally an hour before the deadline. I kept my expectations in the range that any review committee would look at this and laugh it into the reject pile. But of course, the OER conferences are not your best laced conference formats.</p>
  578.  
  579.  
  580.  
  581. <p>Weeks passed and Hahahahagastaha they accepted my proposal. Now all I needed to do was write the full poem, which I successfully procrastinated to the week before I would jump on a plane to Cork.</p>
  582.  
  583.  
  584.  
  585. <p>Well actually I did do something earlier— the T shirt! Months ago I had made a PhotoShop mashup image in response to something Stephen Downes posted in Mastodon about “getting Federated”. My associative trails brain went to the opening scenes of the original <a href="https://en.wikipedia.org/wiki/Get_Smart">Get Smart TV show</a> when Don Adams ax Maxwell Smart entered the CONTROL building through that series of cl as aging secret doors.</p>
  586.  
  587.  
  588.  
  589. <figure class="wp-block-embed is-type-photo is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
  590. <a href="https://flickr.com/photos/cogdog/52473092593"><img decoding="async" loading="lazy" src="https://live.staticflickr.com/65535/52473092593_129d3f853b_b.jpg" alt="Get Federated!" width="1024" height="738" /></a>
  591. </div><figcaption class="wp-element-caption"><a href="https://flickr.com/photos/cogdog/52473092593">Get Federated!</a> flickr photo by <a href="https://flickr.com/people/cogdog">cogdogblog</a> shared into the public domain using <a href="https://creativecommons.org/publicdomain/zero/1.0/">Creative Commons Public Domain Dedication (CC0)</a></figcaption></figure>
  592.  
  593.  
  594.  
  595. <p>I made an image from a frame of the opening scened, clone brushed out the “SMART” text and replace with closest match I could find, Georgia. Because I had the Federarex text created already, I simply deleted the car layer and recreate the “Get” in the same Georgia font size. </p>
  596.  
  597.  
  598. <div class="wp-block-image">
  599. <figure class="aligncenter size-full"><img data-attachment-id="74110" data-permalink="https://cogdogblog.com/2024/03/get-federated-got-gasta/get-federated-shirt/" data-orig-file="https://cogdogblog.com/wp-content/uploads/2024/03/get-federated-shirt.jpg" data-orig-size="600,600" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="get-federated-shirt" data-image-description="" data-image-caption="" data-medium-file="https://cogdogblog.com/wp-content/uploads/2024/03/get-federated-shirt.jpg" data-large-file="https://cogdogblog.com/wp-content/uploads/2024/03/get-federated-shirt.jpg" decoding="async" loading="lazy" width="600" height="600" src="https://cogdogblog.com/wp-content/uploads/2024/03/get-federated-shirt.jpg" alt="" class="wp-image-74110" srcset="https://cogdogblog.com/wp-content/uploads/2024/03/get-federated-shirt.jpg 600w, https://cogdogblog.com/wp-content/uploads/2024/03/get-federated-shirt-150x150.jpg 150w" sizes="(max-width: 600px) 100vw, 600px" /><figcaption class="wp-element-caption">Get Federated T-shirt by me, CC BY&#8211; Text in Georgia Font <a href="https://en.wikipedia.org/wiki/File:Fediverse_logo_proposal_%28mono_version%29.svg">Fediverse logo proposal by Eukombos</a> (CC0)</figcaption></figure></div>
  600.  
  601.  
  602. <p>The t-shirt was printed locally maybe 2 weeks before I headed to Ireland, what else would I need? Hmmm!! Oh I had to write the poem I would read.</p>
  603.  
  604.  
  605.  
  606. <p>Cori suggested 5 minutes was long for a slam poem so I came up with the idea of the opening sequence being something like the <a href="https://en.wikipedia.org/wiki/Movietone_News">WWII era MovieTone news reels</a> where I talked like a radio announcer about the going from the glory days of academic twitter to the state of the internet now. But even broader.</p>
  607.  
  608.  
  609.  
  610. <p>And as good fortune goes, after having Anne-Marie Scott in a live stream OEWeek session, she messaged and asked me if I knew what I had gotten myself into. I thought so, an energetic, unconventional format for a talk. What Anne-Marie carefully described was two approaches for Gasta, to finish just in time and avoid Tom Farelly getting the crowd to count me down. “that’s all fine, you will get polite applause.”</p>
  611.  
  612.  
  613.  
  614. <p>The other path to take was to design to get Tom trying to countdown, and try sometime to rouse the crowd and disrupt him.Anne Marie shared a clip of Jim Groom doing this at OER23 where they laughingly were shouting at each other and crushing the audience.</p>
  615.  
  616.  
  617.  
  618. <p>Need I tell you which route spoke to me?</p>
  619.  
  620.  
  621.  
  622. <p>For <a href="https://docs.google.com/presentation/d/1lCrrI8YsayY4luW04ywcWXmjP60AyvzS-BipDbc_7HU/edit?usp=sharing">quote/unquote slides</a>, I went for an animated GIF for the news part, and then just the fediverse logo over one of those internet maps.</p>
  623.  
  624.  
  625. <div class="wp-block-image">
  626. <figure class="aligncenter size-full"><img data-attachment-id="74111" data-permalink="https://cogdogblog.com/2024/03/get-federated-got-gasta/internet-tone-news/" data-orig-file="https://cogdogblog.com/wp-content/uploads/2024/03/internet-tone-news.gif" data-orig-size="600,338" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="internet-tone-news" data-image-description="" data-image-caption="" data-medium-file="https://cogdogblog.com/wp-content/uploads/2024/03/internet-tone-news.gif" data-large-file="https://cogdogblog.com/wp-content/uploads/2024/03/internet-tone-news.gif" decoding="async" loading="lazy" width="600" height="338" src="https://cogdogblog.com/wp-content/uploads/2024/03/internet-tone-news.gif" alt="" class="wp-image-74111"/></figure></div>
  627.  
  628.  
  629. <p>I did not want to tie it to a specific series of slides, so the poem would be with just one image.</p>
  630.  
  631.  
  632.  
  633. <p>The poetry writing came together like the abstract, I wrote a few paragraphs, and Cori broke up into chunks and a rhythmic structure, It was thus written, but that’s hardly done! I had to read it through many times, where Cori patiently guided me on how to speak it, where to keep my voice low, where to go bam bam bam.</p>
  634.  
  635.  
  636.  
  637. <p><em>(see the <a href="https://docs.google.com/document/d/1TxUhQ5er7Yu-ZY00cD0EQN7pe4fT_x8N-yajBjx6EM8/edit?usp=sharing">Get Federated poem in a Google Doc</a>)</em></p>
  638.  
  639.  
  640.  
  641. <p>I read the script several to many times, and trying to gauge the timing to get the desired effect. On Thursday my stomach was a bit churned as I questioned myself if (a) people would say WTF and not understand or (b) the call to get Federated would sound outlandish.</p>
  642.  
  643.  
  644.  
  645. <p>Well… it was damned fun. And if you do not know it, I am a card carrying Meyers Brigg IMTP introvert.</p>
  646.  
  647.  
  648.  
  649. <p>Thanks OER24 for putting me in stage, thanks everyone for getting in the spirit, and thank you my darling Cori for believing in me so much.</p>
  650.  
  651.  
  652.  
  653. <p>It was fun, but also, I am serious about getting g more people on the federated train. My real goal is to organize something like <a href="https://connect.oeglobal.org/t/get-federated-with-oe-global/6468">a 2 week series of posts in our OEG Connect space </a> where anyone interested could do a daily 20 minute activity (or do it all in one sitting) all aimed at getting a group up to speed in creating a Mastodon account. setting up  profile, finding and following others, and maybe, just maybe building a networked connective body of educators.</p>
  654.  
  655.  
  656.  
  657. <p>But that&#8217;s enough blathering about the making of&#8211; the moment of doing it was pure fun, even if people had no ides what I was ranting about. </p>
  658.  
  659.  
  660.  
  661. <figure class="wp-block-image size-large"><img data-attachment-id="74112" data-permalink="https://cogdogblog.com/2024/03/get-federated-got-gasta/crowdimg_8298/" data-orig-file="https://cogdogblog.com/wp-content/uploads/2024/03/crowdIMG_8298-scaled.jpg" data-orig-size="2560,1490" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="crowdIMG_8298" data-image-description="" data-image-caption="" data-medium-file="https://cogdogblog.com/wp-content/uploads/2024/03/crowdIMG_8298-760x442.jpg" data-large-file="https://cogdogblog.com/wp-content/uploads/2024/03/crowdIMG_8298-1280x745.jpg" decoding="async" loading="lazy" width="1280" height="745" src="https://cogdogblog.com/wp-content/uploads/2024/03/crowdIMG_8298-1280x745.jpg" alt="" class="wp-image-74112" srcset="https://cogdogblog.com/wp-content/uploads/2024/03/crowdIMG_8298-1280x745.jpg 1280w, https://cogdogblog.com/wp-content/uploads/2024/03/crowdIMG_8298-760x442.jpg 760w, https://cogdogblog.com/wp-content/uploads/2024/03/crowdIMG_8298-1536x894.jpg 1536w, https://cogdogblog.com/wp-content/uploads/2024/03/crowdIMG_8298-2048x1192.jpg 2048w" sizes="(max-width: 1280px) 100vw, 1280px" /><figcaption class="wp-element-caption">Rousing up the Gasta, photo by Cori Saas who was watching live from Moose Jaw.</figcaption></figure>
  662.  
  663.  
  664.  
  665. <p>If you even have an opportunity to do a Gasta, and I was honoured to be among a group of 9 others who braved the count down, I say seize the chance, and also, push your self to so something that will make Tom Farelly&#8217;s eyes twinkle.</p>
  666.  
  667.  
  668.  
  669. <hr class="wp-block-separator has-alpha-channel-opacity"/>
  670.  
  671.  
  672.  
  673. <p><em>Featured Image: The best I could do working from my iphone on a plane, a combination of my Gasta Badges and the get Federated logo created with the diptic app</em></p>
  674.  
  675.  
  676.  
  677. <figure class="wp-block-image size-large"><img data-attachment-id="74114" data-permalink="https://cogdogblog.com/2024/03/get-federated-got-gasta/img_9457/" data-orig-file="https://cogdogblog.com/wp-content/uploads/2024/03/IMG_9457-scaled.jpg" data-orig-size="2560,2560" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="IMG_9457" data-image-description="" data-image-caption="" data-medium-file="https://cogdogblog.com/wp-content/uploads/2024/03/IMG_9457-760x760.jpg" data-large-file="https://cogdogblog.com/wp-content/uploads/2024/03/IMG_9457-1280x1280.jpg" decoding="async" loading="lazy" width="1280" height="1280" src="https://cogdogblog.com/wp-content/uploads/2024/03/IMG_9457-1280x1280.jpg" alt="" class="wp-image-74114" srcset="https://cogdogblog.com/wp-content/uploads/2024/03/IMG_9457-1280x1280.jpg 1280w, https://cogdogblog.com/wp-content/uploads/2024/03/IMG_9457-760x760.jpg 760w, https://cogdogblog.com/wp-content/uploads/2024/03/IMG_9457-150x150.jpg 150w, https://cogdogblog.com/wp-content/uploads/2024/03/IMG_9457-1536x1536.jpg 1536w, https://cogdogblog.com/wp-content/uploads/2024/03/IMG_9457-2048x2048.jpg 2048w" sizes="(max-width: 1280px) 100vw, 1280px" /></figure>
  678. ]]></content:encoded>
  679. <wfw:commentRss>https://cogdogblog.com/2024/03/get-federated-got-gasta/feed/</wfw:commentRss>
  680. <slash:comments>2</slash:comments>
  681. </item>
  682. <item>
  683. <title>Scraping all Bird Droppings from Pechaflickr</title>
  684. <link>https://cogdogblog.com/2024/03/scraping-bird-poop-from-pechaflickr/</link>
  685. <comments>https://cogdogblog.com/2024/03/scraping-bird-poop-from-pechaflickr/#respond</comments>
  686. <dc:creator><![CDATA[CogDog The Blog]]></dc:creator>
  687. <pubDate>Wed, 27 Mar 2024 00:23:43 +0000</pubDate>
  688. <category><![CDATA[Coding]]></category>
  689. <category><![CDATA[pechaflickr]]></category>
  690. <guid isPermaLink="false">https://cogdogblog.com/?p=74098</guid>
  691.  
  692. <description><![CDATA[Not that it means a hill of garbanzo beans to anyone, but I&#8217;ve pretty much stuck a fork in Twitter, the platform I will only call Twitter. I&#8217;m not deleting, I just logged out. Still, I have a number of projects, web sites, of trace importance to most but me, that are still encrusted with [&#8230;]]]></description>
  693. <content:encoded><![CDATA[
  694. <p>Not that it means a hill of garbanzo beans to anyone, but I&#8217;ve pretty much stuck a fork in Twitter, the platform I will only call Twitter. I&#8217;m not deleting, I just logged out.</p>
  695.  
  696.  
  697.  
  698. <p>Still, I have a number of projects, web sites, of trace importance to most but me, that are still encrusted with Twitter features. The big looming one is the theme I made for the <a href="https://daily.ds106.us/">DS106 Daily Create</a> where I have made small steps to have it post new Challenges to Mastodon, caltered the prompts with instructions to do so, and lately, also added a Share to Mastodon button. I still have to get deep in the old code and change out the harvesting from Twitter for replies (which the Dark Lord of Twitter killed when it took away the API). </p>
  699.  
  700.  
  701.  
  702. <p>I also managed to add share to mastodon buttons to <a href="https://docsify.cogdog.casa/?basePath=https://raw.githubusercontent.com/cogdog/edtechaphors/master&amp;homepage=README.md#/">my fleet of edtech generators</a> &#8212; try <a href="https://code.cog.dog/edtechaphors/">this version of the original Ed Tech Metaphors</a> first spawned by Martin Weller, each spin has two share buttons (I left twitter is an an option, but it can be removed if you make a copy of the code). The Mastodon sharing here uses the nifty <a href="https://mastodonshare.com/">Mastodon Share service</a>.</p>
  703.  
  704.  
  705.  
  706. <p>For some reason I was looking at my old <a href="https://pechaflickr.net">pechaflickr gizmo</a>, which I have to admit is one of my favorite web things I made, still running as it was intended to since 2011. It let&#8217;s you generate a pechakucha style slide show made from randomly selected photos chosen from a tag in flickr, all making for a fun improv style activity. Minutes of entertainment.</p>
  707.  
  708.  
  709.  
  710. <p>A round of pechaflickr not only ends with a Share to Twitter button, but the front page featured an embedded twitter timeline for the <a rel="tag" class="hashtag u-tag u-category" href="https://cogdogblog.com/tag/pechaflickr/">#pechaflickr</a> hashtag, which has not been updated since that functionality too was taken away by musky melon head.</p>
  711.  
  712.  
  713.  
  714. <p>That&#8217;s all gone, after a round of coding that took me way too long! I am rusty. I could not use the Mastodon Share method because the text I wanted to include included characters that eneded up encoded. I went with the approach I found for the Daily Create, <a href="https://github.com/codepo8/mastodon-share">a Share on Mastodon button</a> that just runs through local HTML and Javascript (it remembers your instance using local storage, no cookies).</p>
  715.  
  716.  
  717.  
  718. <p>Plus since there are three different modes of play &#8211;regular photos from tags, then Heather mode, which displays photos but makes you guess the tag, and a fun mode that draws only from the flickr commons.</p>
  719.  
  720.  
  721.  
  722. <figure class="wp-block-image size-large"><img data-attachment-id="74099" data-permalink="https://cogdogblog.com/2024/03/scraping-bird-poop-from-pechaflickr/screen-shot-218/" data-orig-file="https://cogdogblog.com/wp-content/uploads/2024/03/Screen-Shot-218.jpg" data-orig-size="2038,962" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="Screen-Shot-218" data-image-description="" data-image-caption="" data-medium-file="https://cogdogblog.com/wp-content/uploads/2024/03/Screen-Shot-218-760x359.jpg" data-large-file="https://cogdogblog.com/wp-content/uploads/2024/03/Screen-Shot-218-1280x604.jpg" decoding="async" loading="lazy" width="1280" height="604" src="https://cogdogblog.com/wp-content/uploads/2024/03/Screen-Shot-218-1280x604.jpg" alt="" class="wp-image-74099" srcset="https://cogdogblog.com/wp-content/uploads/2024/03/Screen-Shot-218-1280x604.jpg 1280w, https://cogdogblog.com/wp-content/uploads/2024/03/Screen-Shot-218-760x359.jpg 760w, https://cogdogblog.com/wp-content/uploads/2024/03/Screen-Shot-218-1536x725.jpg 1536w, https://cogdogblog.com/wp-content/uploads/2024/03/Screen-Shot-218.jpg 2038w" sizes="(max-width: 1280px) 100vw, 1280px" /><figcaption class="wp-element-caption">The end of a round of pechaflickr provides a button to share to mastodon, it includes a link to run the same settings.</figcaption></figure>
  723.  
  724.  
  725.  
  726. <p>The post includes the number of photos shared and the tag, plus the link to repeat the same thrilling experience:</p>
  727.  
  728.  
  729.  
  730. <figure class="wp-block-embed is-type-wp-embed is-provider-cosocial-ca wp-block-embed-cosocial-ca"><div class="wp-block-embed__wrapper">
  731. <iframe src="https://cosocial.ca/@cogdog/112142440999316908/embed" class="mastodon-embed" style="max-width: 100%; border: 0" width="800" allowfullscreen="allowfullscreen"></iframe><script src="https://cosocial.ca/embed.js" async="async"></script>
  732. </div></figure>
  733.  
  734.  
  735.  
  736. <p>Now for the front page of the site I was lucky to find the <a href="https://gitlab.com/idotj/mastodon-embed-timeline">Mastodon embed timeline widget</a>, that with HTML and Javascript adds a widget to display all kinds of timelines from Mastodon, and specifically for me, one for a hashtag.</p>
  737.  
  738.  
  739.  
  740. <figure class="wp-block-image size-full"><img data-attachment-id="74100" data-permalink="https://cogdogblog.com/2024/03/scraping-bird-poop-from-pechaflickr/screen-shot-219/" data-orig-file="https://cogdogblog.com/wp-content/uploads/2024/03/Screen-Shot-219.jpg" data-orig-size="1110,1568" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="Screen-Shot-219" data-image-description="" data-image-caption="" data-medium-file="https://cogdogblog.com/wp-content/uploads/2024/03/Screen-Shot-219-760x1074.jpg" data-large-file="https://cogdogblog.com/wp-content/uploads/2024/03/Screen-Shot-219.jpg" decoding="async" loading="lazy" width="1110" height="1568" src="https://cogdogblog.com/wp-content/uploads/2024/03/Screen-Shot-219.jpg" alt="" class="wp-image-74100" srcset="https://cogdogblog.com/wp-content/uploads/2024/03/Screen-Shot-219.jpg 1110w, https://cogdogblog.com/wp-content/uploads/2024/03/Screen-Shot-219-760x1074.jpg 760w, https://cogdogblog.com/wp-content/uploads/2024/03/Screen-Shot-219-1087x1536.jpg 1087w" sizes="(max-width: 1110px) 100vw, 1110px" /></figure>
  741.  
  742.  
  743.  
  744. <p>For now, I am the <a href="https://mastodon.social/tags/pechaflickr">only one on the fediverse using the #pechaflickr tag</a>&#8212; but you can join the party <a href="https://pechaflickr.net/">by doing a round of pechaflickr</a> and using the magic button to share your results. </p>
  745.  
  746.  
  747.  
  748. <p>Okay, 13 years after slapping this tool together &#8212; it uses the <a href="https://github.com/dan-coulter/phpflickr">phpFlickr php wrapper</a> (old and not PHP 8 friendly, thats for another day) and the <a href="http://vegas.jaysalvat.com/">Vegas slideshow Javascript library</a> for running the images on a timed sequence.</p>
  749.  
  750.  
  751.  
  752. <p>Oh, and imagine this. I did all of this stuff without a single reach for a prompt box. Pfttttttt.</p>
  753.  
  754.  
  755.  
  756. <p>Stop reading, go play <a href="https://pechaflickr.net">pechaflickr</a>, and share your results&#8230;. to Mastodon only.</p>
  757.  
  758.  
  759.  
  760. <hr class="wp-block-separator has-alpha-channel-opacity"/>
  761.  
  762.  
  763.  
  764. <p><em>Featured Image: <a href="https://flickr.com/photos/library_of_congress/8056651554">Hagenbeck&#8217;s &#8220;Jenny&#8221; in North France (LOC)</a> flickr photo by <a href="https://flickr.com/people/library_of_congress">The Library of Congress</a> shared with <a href="https://flickr.com/commons/usage/">no copyright restriction (Flickr Commons)</a> modified to include the pechaflickr logo on the truck and new caption added to the top.</em></p>
  765.  
  766.  
  767.  
  768. <figure class="wp-block-image size-full"><a href="https://cogdogblog.com/wp-content/uploads/2024/03/pechaflickr-elephant8056651554_f2bc937b9c_b.jpg"><img data-attachment-id="74102" data-permalink="https://cogdogblog.com/2024/03/scraping-bird-poop-from-pechaflickr/pechaflickr-elephant8056651554_f2bc937b9c_b/" data-orig-file="https://cogdogblog.com/wp-content/uploads/2024/03/pechaflickr-elephant8056651554_f2bc937b9c_b.jpg" data-orig-size="1024,739" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="pechaflickr-elephant8056651554_f2bc937b9c_b" data-image-description="" data-image-caption="" data-medium-file="https://cogdogblog.com/wp-content/uploads/2024/03/pechaflickr-elephant8056651554_f2bc937b9c_b-760x548.jpg" data-large-file="https://cogdogblog.com/wp-content/uploads/2024/03/pechaflickr-elephant8056651554_f2bc937b9c_b.jpg" decoding="async" loading="lazy" width="1024" height="739" src="https://cogdogblog.com/wp-content/uploads/2024/03/pechaflickr-elephant8056651554_f2bc937b9c_b.jpg" alt="An old photo of a man riding an elephant down a street lined with spectators, the trunk the elephant is carrying has been edited to include the pechaflickr logo" class="wp-image-74102" srcset="https://cogdogblog.com/wp-content/uploads/2024/03/pechaflickr-elephant8056651554_f2bc937b9c_b.jpg 1024w, https://cogdogblog.com/wp-content/uploads/2024/03/pechaflickr-elephant8056651554_f2bc937b9c_b-760x548.jpg 760w" sizes="(max-width: 1024px) 100vw, 1024px" /></a></figure>
  769. ]]></content:encoded>
  770. <wfw:commentRss>https://cogdogblog.com/2024/03/scraping-bird-poop-from-pechaflickr/feed/</wfw:commentRss>
  771. <slash:comments>0</slash:comments>
  772. </item>
  773. <item>
  774. <title>Stop (I hope) Logging in to that Old WordPress Site</title>
  775. <link>https://cogdogblog.com/2024/03/stop-i-hope-logging-in-to-that-old-wordpress-site/</link>
  776. <comments>https://cogdogblog.com/2024/03/stop-i-hope-logging-in-to-that-old-wordpress-site/#comments</comments>
  777. <dc:creator><![CDATA[CogDog The Blog]]></dc:creator>
  778. <pubDate>Wed, 20 Mar 2024 23:24:39 +0000</pubDate>
  779. <category><![CDATA[Wordpress]]></category>
  780. <guid isPermaLink="false">https://cogdogblog.com/?p=74081</guid>
  781.  
  782. <description><![CDATA[In the spirit of Tom&#8217;s short tech notes to oneself&#8230; I archived a WordPress site I made a few years back for Cori&#8217;s high schools students to do some (anonymous) online writing. The site is really just to keep as an archive (and honestly it would be better to convert to static HTML, put that [&#8230;]]]></description>
  783. <content:encoded><![CDATA[
  784. <p>In the spirit of <a href="https://bionicteaching.com/">Tom&#8217;s short tech notes to oneself</a>&#8230; </p>
  785.  
  786.  
  787.  
  788. <p>I archived a WordPress site I made a few years back for Cori&#8217;s high schools students to do some (anonymous) online writing. The site is really just to keep as an archive (and honestly it would be better to convert to static HTML, put that on my list).</p>
  789.  
  790.  
  791.  
  792. <p>But it gets hammered for some reason by login attempts, all stopped by the <a href="https://en-ca.wordpress.org/plugins/limit-login-attempts-reloaded/">Limit Logins Reloaded plugin</a>. They cant do anything since all the user accounts have been set to subscriber. I just wondered what else I can do to cut them off before trying- I am sure there are w variety of Other Things One Can Do, so I just spent a little time poking around the webz.</p>
  793.  
  794.  
  795.  
  796. <p>The first suggestion was disablinbg XMP_RPC which whatever it is enabloes login from other devices, services. This weas an easy add to the custom child theme&#8217;s functions.php template:</p>
  797.  
  798.  
  799.  
  800. <pre class="crayon-plain-tag">add_filter( 'xmlrpc_enabled', '__return_false' );</pre>
  801.  
  802.  
  803.  
  804. <p>The other suggestion was to install the <a href="http://WPS Hide Login">WPS Hide Login plugin</a> which redirects all attempts to use standard WordPress login URLs, and all non-logged in efforts to hit wp-admin (used the default redirect to 404). It then allows me to create a super secret, non standard URL to access the WordPress login.</p>
  805.  
  806.  
  807.  
  808. <p>I&#8217;m just curious if this cuts down the activity more, but really I should just archive it fully as a static HTML and that means a STOP to all the annoying efforts.</p>
  809.  
  810.  
  811.  
  812. <p>It is illustrative to witness, at a much smaller scale than what your humble network managers see every minute, how much traffic there is in these cracking efforts.</p>
  813.  
  814.  
  815.  
  816. <p>If anyone has better or working solutions, my ears are all open.</p>
  817.  
  818.  
  819.  
  820. <hr class="wp-block-separator has-alpha-channel-opacity"/>
  821.  
  822.  
  823.  
  824. <p><em>Featured Image: Mine. Who needs AI generators when I got 76000 photos? <a href="https://flickr.com/photos/cogdog/41464238452">Somebody STOP:</a> flickr photo by <a href="https://flickr.com/people/cogdog">cogdogblog</a> shared into the public domain using <a href="https://creativecommons.org/publicdomain/zero/1.0/">Creative Commons Public Domain Dedication (CC0)</a></em></p>
  825.  
  826.  
  827.  
  828. <figure class="wp-block-image size-full"><a href="https://www.flickr.com/photos/cogdog/41464238452/"><img data-attachment-id="74082" data-permalink="https://cogdogblog.com/2024/03/stop-i-hope-logging-in-to-that-old-wordpress-site/41464238452_3ed522eb45_c/" data-orig-file="https://cogdogblog.com/wp-content/uploads/2024/03/41464238452_3ed522eb45_c.jpg" data-orig-size="800,600" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;Alan Levine&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;This photo by Alan Levine has been placed into the Public Domain using Creative Commons CC0 (https:\/\/creativecommons.org\/publicd&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="41464238452_3ed522eb45_c" data-image-description="" data-image-caption="" data-medium-file="https://cogdogblog.com/wp-content/uploads/2024/03/41464238452_3ed522eb45_c-760x570.jpg" data-large-file="https://cogdogblog.com/wp-content/uploads/2024/03/41464238452_3ed522eb45_c.jpg" decoding="async" loading="lazy" width="800" height="600" src="https://cogdogblog.com/wp-content/uploads/2024/03/41464238452_3ed522eb45_c.jpg" alt="A fan display of envelopes all with STOP written in handwriting in the upper left corner" class="wp-image-74082" srcset="https://cogdogblog.com/wp-content/uploads/2024/03/41464238452_3ed522eb45_c.jpg 800w, https://cogdogblog.com/wp-content/uploads/2024/03/41464238452_3ed522eb45_c-760x570.jpg 760w" sizes="(max-width: 800px) 100vw, 800px" /></a></figure>
  829. ]]></content:encoded>
  830. <wfw:commentRss>https://cogdogblog.com/2024/03/stop-i-hope-logging-in-to-that-old-wordpress-site/feed/</wfw:commentRss>
  831. <slash:comments>7</slash:comments>
  832. </item>
  833. <item>
  834. <title>Redoing the Unfamiliar Familiar</title>
  835. <link>https://cogdogblog.com/2024/03/unfamiliar-familiar/</link>
  836. <comments>https://cogdogblog.com/2024/03/unfamiliar-familiar/#comments</comments>
  837. <dc:creator><![CDATA[CogDog The Blog]]></dc:creator>
  838. <pubDate>Wed, 20 Mar 2024 22:00:24 +0000</pubDate>
  839. <category><![CDATA[Notes from the Road]]></category>
  840. <category><![CDATA[Random Musing]]></category>
  841. <guid isPermaLink="false">https://cogdogblog.com/?p=74077</guid>
  842.  
  843. <description><![CDATA[Somewhere out there a man in Iceland will smile.&#160; I’ve never met, known, or contacted him, but from a Mastodon repost by Joe Murphy, Baldour wrote delightfully about a precious (in terms of value) habit that made me smile: Somewhere this blog may light up an RSS reader in Iceland or maybe Poland or St [&#8230;]]]></description>
  844. <content:encoded><![CDATA[
  845. <p>Somewhere out there a man in Iceland will smile.&nbsp;</p>
  846.  
  847.  
  848.  
  849. <p>I’ve never met, known, or contacted him, but from a Mastodon repost by Joe Murphy, Baldour wrote delightfully about a precious (in terms of value) habit that made me smile:</p>
  850.  
  851.  
  852.  
  853. <figure class="wp-block-embed is-type-wp-embed is-provider-toot-cafe wp-block-embed-toot-cafe"><div class="wp-block-embed__wrapper">
  854. <iframe src="https://toot.cafe/@baldur/112127447270321395/embed" class="mastodon-embed" style="max-width: 100%; border: 0" width="800" allowfullscreen="allowfullscreen"></iframe><script src="https://toot.cafe/embed.js" async="async"></script>
  855. </div></figure>
  856.  
  857.  
  858.  
  859. <p>Somewhere this blog may light up an RSS reader in Iceland or maybe Poland or St Louis. I will never know. And that is the right write space, to be writing here, not for comments (but hallo Tom) or reposts or anything but just for my own self fulfillment.</p>
  860.  
  861.  
  862.  
  863. <p>Welcome to the blog navel gazing, the blog’s oldest topic profession, blogging about blogging or blogging about non blogging. If you just write on LinkedIn, shrug, I guess it can work as much as if it was scribbling in a paper journal.</p>
  864.  
  865.  
  866.  
  867. <p>The unfamiliar is where I sit now, a seat that I used to seek, maybe crave, wedged into the vinyl cushion of 14F right shoulder pressed to a plastic wall, a portal view to cloud tops under a single hued sky.</p>
  868.  
  869.  
  870.  
  871. <p>Yep, on a plane. Writing offline in a Google doc.</p>
  872.  
  873.  
  874.  
  875. <p>This was 6, 8, 10 years ago the familiar. I got caught up in the thrill of travel, the airport takes, that I was off doing this as my work. Whether its pandemic echoes or just the extra tree rings in my trunk, it’s now, thankfully unfamiliar. Somewhat unsettling.</p>
  876.  
  877.  
  878.  
  879. <p>I will just say it and leave a guessed explanation to simmer up. I am overly fortunate to be up in these clouds, and there will be fortuitous things that come from this, but it just does not feel like it did once. I see colleagues who still revel in it, the running through airports and selfies in the cabin; I don’t fault them at all, but I can’t really tap into that. It’s unfamiliar.</p>
  880.  
  881.  
  882.  
  883. <p>Not that any kind of *phobia has crept in, I just feel more centered at home where it used to be the opposite. I crave my Ursa time with Cori, our walks to see the minute changes in our property as a result of our efforts to turn our acreage into a more natural habitat.</p>
  884.  
  885.  
  886.  
  887. <figure class="wp-block-image size-large"><img data-attachment-id="74075" data-permalink="https://cogdogblog.com/2024/03/unfamiliar-familiar/img_9162/" data-orig-file="https://cogdogblog.com/wp-content/uploads/2024/03/img_9162.jpg" data-orig-size="1500,2000" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;1.78&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;iPhone 14 Pro&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1710842508&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;6.86&quot;,&quot;iso&quot;:&quot;80&quot;,&quot;shutter_speed&quot;:&quot;0.00044404973357016&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="img_9162" data-image-description="" data-image-caption="" data-medium-file="https://cogdogblog.com/wp-content/uploads/2024/03/img_9162-760x1013.jpg" data-large-file="https://cogdogblog.com/wp-content/uploads/2024/03/img_9162-1280x1707.jpg" decoding="async" loading="lazy" width="1280" height="1707" src="https://cogdogblog.com/wp-content/uploads/2024/03/img_9162-1280x1707.jpg" class="wp-image-74075" srcset="https://cogdogblog.com/wp-content/uploads/2024/03/img_9162-1280x1707.jpg 1280w, https://cogdogblog.com/wp-content/uploads/2024/03/img_9162-760x1013.jpg 760w, https://cogdogblog.com/wp-content/uploads/2024/03/img_9162-1152x1536.jpg 1152w, https://cogdogblog.com/wp-content/uploads/2024/03/img_9162.jpg 1500w" sizes="(max-width: 1280px) 100vw, 1280px" /><figcaption class="wp-element-caption">Just one of many new trees Cori and I have added to our property. We have forest plans! This pic will be shared under CC0 when I get around to uploading to flickr.</figcaption></figure>
  888.  
  889.  
  890.  
  891. <p>Into the time / space distortion machine I go. With camera, with blog, with mind.</p>
  892.  
  893.  
  894.  
  895. <p>I’ve blathered on far too long, without marqueeing my destination. Maybe I will spare you, if there is a you, it’s just me here now at the keyboard. There might be a parallel here to that disembodied sensation of presenting in an online video session. You can only imagine an audience, a reader, but you get no or only trace sense back that anyone is there. Or if they are there, they are not far away in a different window.</p>
  896.  
  897.  
  898.  
  899. <p>Did you see how I went off track? That’s my style no AI generator can generate. </p>
  900.  
  901.  
  902.  
  903. <p>Yet.</p>
  904.  
  905.  
  906.  
  907. <figure class="wp-block-image size-large"><img data-attachment-id="74073" data-permalink="https://cogdogblog.com/2024/03/unfamiliar-familiar/img_9170/" data-orig-file="https://cogdogblog.com/wp-content/uploads/2024/03/img_9170.jpg" data-orig-size="2000,1448" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.8&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;iPhone 14 Pro&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1710943235&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;9&quot;,&quot;iso&quot;:&quot;32&quot;,&quot;shutter_speed&quot;:&quot;0.00028296547821166&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="img_9170" data-image-description="" data-image-caption="" data-medium-file="https://cogdogblog.com/wp-content/uploads/2024/03/img_9170-760x550.jpg" data-large-file="https://cogdogblog.com/wp-content/uploads/2024/03/img_9170-1280x927.jpg" decoding="async" loading="lazy" width="1280" height="927" src="https://cogdogblog.com/wp-content/uploads/2024/03/img_9170-1280x927.jpg" class="wp-image-74073" srcset="https://cogdogblog.com/wp-content/uploads/2024/03/img_9170-1280x927.jpg 1280w, https://cogdogblog.com/wp-content/uploads/2024/03/img_9170-760x550.jpg 760w, https://cogdogblog.com/wp-content/uploads/2024/03/img_9170-1536x1112.jpg 1536w, https://cogdogblog.com/wp-content/uploads/2024/03/img_9170.jpg 2000w" sizes="(max-width: 1280px) 100vw, 1280px" /><figcaption class="wp-element-caption">Thar be mountain peaks poking through the clouds, a metaphor lurking, photo by me looking out the window, once added to Flickr will be shared into the public domain using CC0</figcaption></figure>
  908.  
  909.  
  910.  
  911. <p>So… right now I am headed from home pin in Saskatchewan to Vancouver but that’s not the destination. I then reverse in a long jump to London and then… to Cork, Ireland!!! </p>
  912.  
  913.  
  914.  
  915. <p>WTF is with me? I should relish this trip! Or mustard it, I actually do not relish relish.&nbsp;</p>
  916.  
  917.  
  918.  
  919. <p>I missed getting to see Ireland in 2018 after OER18 because of a problem that came up with my vision after the conference in Bristol.</p>
  920.  
  921.  
  922.  
  923. <p>Yes I will be at <a href="https://www.oer2024.co.uk/">OER24</a> next week, the first in person one I have been at since 2018 (Bristol) and 2014 before that (Newcastle). I remember the locations well.</p>
  924.  
  925.  
  926.  
  927. <p>I would not typically travel just for a conference (nothing against OERXX they are amongst my better experiences). No, my OEGlobal colleagues decided our globally distributed team could use a few days of in person meetings to get more focused planning and ideating than our online meetings. There is also a gathering of our Board members too. So it’s all strategic.</p>
  928.  
  929.  
  930.  
  931. <p>It will be of course most fulfilling to reconnect with the UK+ community and colleagues here; I do have to remember from my October trip to Edmonton for our conference, that for all my belief that we can and do have meaningful experiences online, there is a warmer sense being in a real room.&nbsp;</p>
  932.  
  933.  
  934.  
  935. <p>I’ve not felt much that I have to present say to a conference audience, I am craving more being in the audience. But note I am doing something unusual in a 5 minute slot, that I am sure will leave my work colleagues perplexed.</p>
  936.  
  937.  
  938.  
  939. <p>Some of the lethargy too is knowing my brain that plans and criticizes said plans may very well likely over estimate what the body that carried it around can still withstand.</p>
  940.  
  941.  
  942.  
  943. <p>The physical energy lately has waned some and there have been a few unblogged health “things” — not wanting to label issues. But seeing the changes and loss too in my peer circle, that constant undertone of feeling my finiteness, even though not anywhere near it, is imaginable.</p>
  944.  
  945.  
  946.  
  947. <p>Oh what an uplifting post! I need to insert a cute animal picture or a happy cup of coffee one.</p>
  948.  
  949.  
  950.  
  951. <figure class="wp-block-image size-large"><img data-attachment-id="74074" data-permalink="https://cogdogblog.com/2024/03/unfamiliar-familiar/img_9166/" data-orig-file="https://cogdogblog.com/wp-content/uploads/2024/03/img_9166.jpg" data-orig-size="1999,1462" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;1.78&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;iPhone 14 Pro&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1710919531&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;6.86&quot;,&quot;iso&quot;:&quot;1000&quot;,&quot;shutter_speed&quot;:&quot;0.025&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="img_9166" data-image-description="" data-image-caption="" data-medium-file="https://cogdogblog.com/wp-content/uploads/2024/03/img_9166-760x556.jpg" data-large-file="https://cogdogblog.com/wp-content/uploads/2024/03/img_9166-1280x936.jpg" decoding="async" loading="lazy" width="1280" height="936" src="https://cogdogblog.com/wp-content/uploads/2024/03/img_9166-1280x936.jpg" class="wp-image-74074" srcset="https://cogdogblog.com/wp-content/uploads/2024/03/img_9166-1280x936.jpg 1280w, https://cogdogblog.com/wp-content/uploads/2024/03/img_9166-760x556.jpg 760w, https://cogdogblog.com/wp-content/uploads/2024/03/img_9166-1536x1123.jpg 1536w, https://cogdogblog.com/wp-content/uploads/2024/03/img_9166.jpg 1999w" sizes="(max-width: 1280px) 100vw, 1280px" /><figcaption class="wp-element-caption">Felix sez you are going where? This too will end up as CC0 in Flickr </figcaption></figure>
  952.  
  953.  
  954.  
  955. <p>And then I can maybe just leave this nattering out of the blog publish screen, but— I’ve gone this far, I believe more in just sending it out to the echo less space, maybe the ripples can reach a guy in Iceland. And if not, no matter. </p>
  956.  
  957.  
  958.  
  959. <p>The ripples go out and sometimes if you are lucky they come back, but that’s not the reason for generating them.</p>
  960.  
  961.  
  962.  
  963. <p>Hey Baldour!</p>
  964. ]]></content:encoded>
  965. <wfw:commentRss>https://cogdogblog.com/2024/03/unfamiliar-familiar/feed/</wfw:commentRss>
  966. <slash:comments>5</slash:comments>
  967. </item>
  968. <item>
  969. <title>Remembering Who I Can&#8217;t Remember</title>
  970. <link>https://cogdogblog.com/2024/03/remembering-harry/</link>
  971. <comments>https://cogdogblog.com/2024/03/remembering-harry/#comments</comments>
  972. <dc:creator><![CDATA[CogDog The Blog]]></dc:creator>
  973. <pubDate>Mon, 11 Mar 2024 04:18:39 +0000</pubDate>
  974. <category><![CDATA[Memories]]></category>
  975. <category><![CDATA[family]]></category>
  976. <guid isPermaLink="false">https://cogdogblog.com/?p=74052</guid>
  977.  
  978. <description><![CDATA[Yesterday was a calendar reminder of the death of a man 67 years ago that I don&#8217;t know. That as my mother&#8217; father, aka Harry Herondorf aka my grandfather. I&#8217;ve previously written what I could in 2014, but I have found a few more shreds. The most interesting is a photo my suster shared recently, [&#8230;]]]></description>
  979. <content:encoded><![CDATA[
  980. <p>Yesterday was a calendar reminder of the death of a man 67 years ago that I don&#8217;t know. </p>
  981.  
  982.  
  983.  
  984. <p>That as my mother&#8217; father, aka Harry Herondorf aka my grandfather. I&#8217;ve previously written what I could in 2014, but I have found a few more shreds.</p>
  985.  
  986.  
  987.  
  988. <figure class="wp-block-embed is-type-wp-embed is-provider-cogdogblog wp-block-embed-cogdogblog"><div class="wp-block-embed__wrapper">
  989. <blockquote class="wp-embedded-content" data-secret="NmgG8cFEpa"><a href="https://cogdogblog.com/2014/03/grandfather-i-never-knew/">Grandfather I Never Knew</a></blockquote><iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted" title="&#8220;Grandfather I Never Knew&#8221; &#8212; CogDogBlog" src="https://cogdogblog.com/2014/03/grandfather-i-never-knew/embed/#?secret=mQuDMQAdPq#?secret=NmgG8cFEpa" data-secret="NmgG8cFEpa" width="600" height="338" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe>
  990. </div></figure>
  991.  
  992.  
  993.  
  994. <p>The most interesting is a photo my suster shared recently, maybe the only one I have seen of my mother&#8217;s entire family. </p>
  995.  
  996.  
  997. <div class="wp-block-image">
  998. <figure class="aligncenter size-full"><img data-attachment-id="74053" data-permalink="https://cogdogblog.com/2024/03/remembering-harry/aunts-and-uncles/" data-orig-file="https://cogdogblog.com/wp-content/uploads/2024/03/aunts-and-uncles.jpeg" data-orig-size="640,518" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="aunts-and-uncles" data-image-description="" data-image-caption="" data-medium-file="https://cogdogblog.com/wp-content/uploads/2024/03/aunts-and-uncles.jpeg" data-large-file="https://cogdogblog.com/wp-content/uploads/2024/03/aunts-and-uncles.jpeg" decoding="async" loading="lazy" width="640" height="518" src="https://cogdogblog.com/wp-content/uploads/2024/03/aunts-and-uncles.jpeg" alt="" class="wp-image-74053"/><figcaption class="wp-element-caption">Herondorf family mid 1950s (?) center on couch is matriarch Ida and on the arm of couch, is her husband, my grandfather, Harry. Surrounding left to right is my Dad (Morris) and Mom (Alyce looking so young), Harvey (Mom&#8217;s brother), Ruth (Mom&#8217;s oldest sister), Milton (Ruth&#8217;s husband &#8220;the podiatrist&#8221;), Dorothy (Mom&#8217;s youngest sister), Herbie (Dorothy&#8217;s husband), and Dinah (Mom&#8217;s next older sister).</figcaption></figure></div>
  999.  
  1000.  
  1001. <p>This indeed was Dorothy and Herbie&#8217;s wedding, <a href="https://cogdogblog.com/2023/11/the-last-herondorf/">she being the only living person in the photo</a>. I spent some time and blog space <a href="https://cogdogblog.com/2024/01/stories-of-aunt-doris/comment-page-1/">documenting my Uncle Harvey and his later wife, Doris</a>. My aunt Ruth, the oldest also lived so far the longest, passed away last year at 101 &#8211; s<a href="https://cogdogblog.com/2021/03/aunt-ruth-at-100-no-today-show-jam-but-shrug-army-footlocker/">he made it to 100 on the Smucker&#8217;s jam jar, but missed her air time on the Today show</a>.</p>
  1002.  
  1003.  
  1004.  
  1005. <p>My mom and have told stories, some I recorded, <a href="https://cogdogblog.com/2014/12/voices-from-aisquith-street/">from their childhood home on Aisquith Street in Baltimore</a>. I think about their life there, as it was durig the Depression, but never heard it as dire times. She knew they were poor, but they always had food and shelter. Harry Herondorf was a self-employed shoemaker, and I guess people always needed show repairs. They have photos, and it makes me wonder too about investing in something like a camera in hard times. Mom said her father would rig up a backyard play space with a hose spreading water from up on high, that he liked to play practical jokes, that we would bring home a live fish that wa sput in their bathtub, and only later appearing on plates as &#8220;gefilte fish.&#8221;</p>
  1006.  
  1007.  
  1008.  
  1009. <p>She also said that her father loved growing tomatoes in his hard, and he would pickle them and share wth neighbors. Maybe that&#8217;s where I get my interest in gardening?</p>
  1010.  
  1011.  
  1012.  
  1013. <p>Their family moved later &#8220;uptown&#8221; to Garrison Avenue, where Mom would have lived in high school, where  eventually a young man named Morris ran over to woo her.</p>
  1014.  
  1015.  
  1016.  
  1017. <p>I have a photo of Harry dated &#8220;1/55&#8221; which I must have made a copy of visiting my Aunt Dorothy in 2012.</p>
  1018.  
  1019.  
  1020.  
  1021. <figure class="wp-block-image size-large"><a href="https://flickr.com/photos/cogdog/8173806699"><img data-attachment-id="74061" data-permalink="https://cogdogblog.com/2024/03/remembering-harry/one-grandfather/" data-orig-file="https://cogdogblog.com/wp-content/uploads/2024/03/harry1955-8173806699_2cd7beafa7_o-scaled.jpg" data-orig-size="2560,1919" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.4&quot;,&quot;credit&quot;:&quot;Alan Levine&quot;,&quot;camera&quot;:&quot;iPhone 4S&quot;,&quot;caption&quot;:&quot;My Mom&#039;s father,  Harry, he died before I was born. I do not even recall seeing photos of him. He was a shoemaker, and in my Mom&#039;s story, a man who liked practical jokes, playing poker, and making beer in the basement.&quot;,&quot;created_timestamp&quot;:&quot;1352548430&quot;,&quot;copyright&quot;:&quot;cc licensed ( BY-SA ) photo by Alan Levine&quot;,&quot;focal_length&quot;:&quot;4.28&quot;,&quot;iso&quot;:&quot;64&quot;,&quot;shutter_speed&quot;:&quot;0.05&quot;,&quot;title&quot;:&quot;One Grandfather&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="One Grandfather" data-image-description="" data-image-caption="&lt;p&gt;My Mom&#8217;s father,  Harry, he died before I was born. I do not even recall seeing photos of him. He was a shoemaker, and in my Mom&#8217;s story, a man who liked practical jokes, playing poker, and making beer in the basement.&lt;/p&gt;
  1022. " data-medium-file="https://cogdogblog.com/wp-content/uploads/2024/03/harry1955-8173806699_2cd7beafa7_o-760x570.jpg" data-large-file="https://cogdogblog.com/wp-content/uploads/2024/03/harry1955-8173806699_2cd7beafa7_o-1280x959.jpg" decoding="async" loading="lazy" width="1280" height="959" src="https://cogdogblog.com/wp-content/uploads/2024/03/harry1955-8173806699_2cd7beafa7_o-1280x959.jpg" alt="" class="wp-image-74061" srcset="https://cogdogblog.com/wp-content/uploads/2024/03/harry1955-8173806699_2cd7beafa7_o-1280x959.jpg 1280w, https://cogdogblog.com/wp-content/uploads/2024/03/harry1955-8173806699_2cd7beafa7_o-760x570.jpg 760w, https://cogdogblog.com/wp-content/uploads/2024/03/harry1955-8173806699_2cd7beafa7_o-1536x1151.jpg 1536w, https://cogdogblog.com/wp-content/uploads/2024/03/harry1955-8173806699_2cd7beafa7_o-2048x1535.jpg 2048w" sizes="(max-width: 1280px) 100vw, 1280px" /></a><figcaption class="wp-element-caption"><a href="https://flickr.com/photos/cogdog/8173806699">One Grandfather</a> flickr photo by <a href="https://flickr.com/people/cogdog">cogdogblog</a> shared under a <a href="https://creativecommons.org/licenses/by/2.0/">Creative Commons (BY) license</a></figcaption></figure>
  1023.  
  1024.  
  1025.  
  1026. <p>He looks pretty serious, but also might be gesturing as if in the middle of conversation. That looks like an ash tray, he might have been smoking. His obituary says he passed away in 1957, and a clue at the bottom is that i asks for donations to be made to the Cancer Society. That makes him having lived 75 years, noting from other records he was born September, 1881 in &#8220;Keltz&#8221;, Poland which I gather means <a href="https://en.wikipedia.org/wiki/Kielce">Kielce, Poland</a> that was <a href="https://en.wikipedia.org/wiki/Kielce_Ghetto">turned into a Jewish Ghetto</a> by Nazis in the 1940s.</p>
  1027.  
  1028.  
  1029.  
  1030. <p>Harry emigrated to the US long before this, arriving in Baltimore in 1913 and naturalized in 1923. Ancestry.com lists him as single in 1920 and living in a boarding house. By the 1930 census he was married to Ida, and listed the 5 children plus a mother-in-law on Aisquith Street.</p>
  1031.  
  1032.  
  1033.  
  1034. <figure class="wp-block-image size-large"><img data-attachment-id="74054" data-permalink="https://cogdogblog.com/2024/03/remembering-harry/1930-census-herondorfs/" data-orig-file="https://cogdogblog.com/wp-content/uploads/2024/03/1930-census-herondorfs.jpg" data-orig-size="2359,818" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="1930-census-herondorfs" data-image-description="" data-image-caption="" data-medium-file="https://cogdogblog.com/wp-content/uploads/2024/03/1930-census-herondorfs-760x264.jpg" data-large-file="https://cogdogblog.com/wp-content/uploads/2024/03/1930-census-herondorfs-1280x444.jpg" decoding="async" loading="lazy" width="1280" height="444" src="https://cogdogblog.com/wp-content/uploads/2024/03/1930-census-herondorfs-1280x444.jpg" alt="" class="wp-image-74054" srcset="https://cogdogblog.com/wp-content/uploads/2024/03/1930-census-herondorfs-1280x444.jpg 1280w, https://cogdogblog.com/wp-content/uploads/2024/03/1930-census-herondorfs-760x264.jpg 760w, https://cogdogblog.com/wp-content/uploads/2024/03/1930-census-herondorfs-1536x533.jpg 1536w, https://cogdogblog.com/wp-content/uploads/2024/03/1930-census-herondorfs-2048x710.jpg 2048w" sizes="(max-width: 1280px) 100vw, 1280px" /><figcaption class="wp-element-caption">Herodorf family as recorded in 1930 census.</figcaption></figure>
  1035.  
  1036.  
  1037.  
  1038. <p>The oldest child listed, my Aunt Ruth, is listed as 9 here, so his marriage must have been in 1920 or 1921. Mom&#8217;s story was it was arranged by a matchmaker, which must have been a real thing and not <a href="https://www.youtube.com/watch?v=59Hj7bp38f8">just a song</a>.</p>
  1039.  
  1040.  
  1041.  
  1042. <p>The last bit of newer evidence / information for Harry is his draft registration card dated 1942, when he was 49 years old&#8211; were they really registering potential soldiers that old? (<a href="https://en.wikipedia.org/wiki/Selective_Training_and_Service_Act_of_1940#:~:text=After%20the%20United%20States%20entered,18%20and%2064%20to%20register.">yes says Wikipedia, they registered up to age 64 but drafted only 18-45</a>).</p>
  1043.  
  1044.  
  1045.  
  1046. <figure class="wp-block-image size-large"><img data-attachment-id="74055" data-permalink="https://cogdogblog.com/2024/03/remembering-harry/draft-card/" data-orig-file="https://cogdogblog.com/wp-content/uploads/2024/03/draft-card.jpg" data-orig-size="1664,2068" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="draft-card" data-image-description="" data-image-caption="" data-medium-file="https://cogdogblog.com/wp-content/uploads/2024/03/draft-card-760x945.jpg" data-large-file="https://cogdogblog.com/wp-content/uploads/2024/03/draft-card-1280x1591.jpg" decoding="async" loading="lazy" width="1280" height="1591" src="https://cogdogblog.com/wp-content/uploads/2024/03/draft-card-1280x1591.jpg" alt="" class="wp-image-74055" srcset="https://cogdogblog.com/wp-content/uploads/2024/03/draft-card-1280x1591.jpg 1280w, https://cogdogblog.com/wp-content/uploads/2024/03/draft-card-760x945.jpg 760w, https://cogdogblog.com/wp-content/uploads/2024/03/draft-card-1236x1536.jpg 1236w, https://cogdogblog.com/wp-content/uploads/2024/03/draft-card-1648x2048.jpg 1648w, https://cogdogblog.com/wp-content/uploads/2024/03/draft-card.jpg 1664w" sizes="(max-width: 1280px) 100vw, 1280px" /></figure>
  1047.  
  1048.  
  1049.  
  1050. <p>Small things here, at age 49, my grandfather was my same height (5 foot 9) but a trim 150 pounds, and a noticeable scar on the right side of his leg. I also note that the address of  the childhood home of my mom is listed as the address of his business, a shoe shop. So when they moved uptown, the busines stayed where it was.</p>
  1051.  
  1052.  
  1053.  
  1054. <p>And lastly the address of the Herondorf family home in 1942 I can find and gaze at in Google Streetview</p>
  1055.  
  1056.  
  1057.  
  1058. <figure class="wp-block-image size-large"><img data-attachment-id="74056" data-permalink="https://cogdogblog.com/2024/03/remembering-harry/garrison-ave/" data-orig-file="https://cogdogblog.com/wp-content/uploads/2024/03/garrison-ave.jpg" data-orig-size="2468,1280" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="garrison-ave" data-image-description="" data-image-caption="" data-medium-file="https://cogdogblog.com/wp-content/uploads/2024/03/garrison-ave-760x394.jpg" data-large-file="https://cogdogblog.com/wp-content/uploads/2024/03/garrison-ave-1280x664.jpg" decoding="async" loading="lazy" width="1280" height="664" src="https://cogdogblog.com/wp-content/uploads/2024/03/garrison-ave-1280x664.jpg" alt="" class="wp-image-74056" srcset="https://cogdogblog.com/wp-content/uploads/2024/03/garrison-ave-1280x664.jpg 1280w, https://cogdogblog.com/wp-content/uploads/2024/03/garrison-ave-760x394.jpg 760w, https://cogdogblog.com/wp-content/uploads/2024/03/garrison-ave-1536x797.jpg 1536w, https://cogdogblog.com/wp-content/uploads/2024/03/garrison-ave-2048x1062.jpg 2048w" sizes="(max-width: 1280px) 100vw, 1280px" /></figure>
  1059.  
  1060.  
  1061.  
  1062. <p>That&#8217;s not much of a story, but the rest of life here is left for me to imagine or draw inferences from the meager records I have.</p>
  1063.  
  1064.  
  1065.  
  1066. <p>That&#8217;s the extent of what of know of ya, Grandpa Harry. You did well.</p>
  1067.  
  1068.  
  1069.  
  1070. <hr class="wp-block-separator has-alpha-channel-opacity"/>
  1071.  
  1072.  
  1073.  
  1074. <p><em>Featured image: Detail of Herondorf family photo with superimposed the text from Harry Herondorf&#8217;s registration card. I made this and can slap on a Creative Commons CC BY license, as if anyone except the ever scraping and never asking AI.</em></p>
  1075.  
  1076.  
  1077.  
  1078. <figure class="wp-block-image size-full"><a href="https://cogdogblog.com/wp-content/uploads/2024/03/harry-h-draft-card.jpg"><img data-attachment-id="74058" data-permalink="https://cogdogblog.com/2024/03/remembering-harry/harry-h-draft-card/" data-orig-file="https://cogdogblog.com/wp-content/uploads/2024/03/harry-h-draft-card.jpg" data-orig-size="1200,874" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="harry-h-draft-card" data-image-description="" data-image-caption="" data-medium-file="https://cogdogblog.com/wp-content/uploads/2024/03/harry-h-draft-card-760x554.jpg" data-large-file="https://cogdogblog.com/wp-content/uploads/2024/03/harry-h-draft-card.jpg" decoding="async" loading="lazy" width="1200" height="874" src="https://cogdogblog.com/wp-content/uploads/2024/03/harry-h-draft-card.jpg" alt="" class="wp-image-74058" srcset="https://cogdogblog.com/wp-content/uploads/2024/03/harry-h-draft-card.jpg 1200w, https://cogdogblog.com/wp-content/uploads/2024/03/harry-h-draft-card-760x554.jpg 760w" sizes="(max-width: 1200px) 100vw, 1200px" /></a></figure>
  1079. ]]></content:encoded>
  1080. <wfw:commentRss>https://cogdogblog.com/2024/03/remembering-harry/feed/</wfw:commentRss>
  1081. <slash:comments>1</slash:comments>
  1082. </item>
  1083. </channel>
  1084. </rss>
  1085.  

If you would like to create a banner that links to this page (i.e. this validation result), do the following:

  1. Download the "valid RSS" banner.

  2. Upload the image to your own server. (This step is important. Please do not link directly to the image on this server.)

  3. Add this HTML to your page (change the image src attribute if necessary):

If you would like to create a text link instead, here is the URL you can use:

http://www.feedvalidator.org/check.cgi?url=http%3A//cogdogblog.com/feed/rss2

Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda