<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>Elsa Gonsiorowski</title>
        <description>My Personal Website</description>
        <link>http://gonsie.com/</link>
        <atom:link href="http://gonsie.com/blorg/feeds/blog.xml" rel="self" type="application/rss+xml"/>
        <pubDate>Tue, 19 May 2026 17:45:38 +0000</pubDate>
        <lastBuildDate>Tue, 19 May 2026 17:45:38 +0000</lastBuildDate>
        <generator>Jekyll v3.10.0</generator>
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
            <item>
                <title>RSS Feeds by Email</title>
                <author>gonsie@me.com (Elsa Gonsiorowski)</author>
                <description>&lt;p&gt;While RSS is great, it’s not easy to explain to those who haven’t heard of it before.
Plus, it’s hard to get someone started on using RSS since it requires a separate application.
TwoBitHistory has an great post on the &lt;a href=&quot;https://twobithistory.org/2018/09/16/the-rise-and-demise-of-rss.html&quot;&gt;history of RSS&lt;/a&gt; that covers it’s fall from grace.&lt;/p&gt;

&lt;p&gt;Without RSS, keeping up-to-date on your favorite websites from the independent web becomes a bit more difficult.
Most sites now feature a newsletter and email is a great alternative to RSS.
Julia Evans &lt;a href=&quot;https://jvns.ca/blog/2017/12/28/making-a-weekly-newsletter/&quot;&gt;describes the MailChimp process&lt;/a&gt; to turn an RSS feed into a weekly digest.&lt;/p&gt;

&lt;p&gt;I’ve decided to use something even simpler: the &lt;a href=&quot;https://rssby.email&quot;&gt;RSSby.email&lt;/a&gt; service.
RSSby.email provides a daily email with posts from this (or any) RSS feed.
It is entirely managed by the subscriber via email (see the website for details on how to subscribe and various preferences you can set).&lt;/p&gt;

&lt;p&gt;To facilitate the subscription process, I added an HTML &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;mailto&lt;/code&gt; link to create the subscribe email for this site:&lt;/p&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&amp;lt;a href=&quot;mailto:add@rssby.email?subject=subscribe&amp;amp;body=https://www.gonsie.com/blorg/feed.xml&quot;&amp;gt;&amp;lt;img src=&quot;/images/rss-email.png&quot; id=&quot;rss&quot;&amp;gt;&amp;lt;/a&amp;gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;RSSby.email will automatically unsubscribe any websites that are not updated within 90 days… which should inspire me to post with some frequency.&lt;/p&gt;
</description>
                <pubDate>Tue, 16 Feb 2021 00:00:00 +0000</pubDate>
                <link>http://gonsie.com/blorg/rss-by-email.html</link>
                <guid isPermaLink="true">http://gonsie.com/blorg/rss-by-email.html</guid>
                
                <category>blog</category>
                
                
            </item>
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
            <item>
                <title>Developing ox-jekyll</title>
                <author>gonsie@me.com (Elsa Gonsiorowski)</author>
                <description>&lt;p&gt;In a previous post, I &lt;a href=&quot;./survey-org-jekyll.md&quot;&gt;surveyed existing org and jekyll&lt;/a&gt; integration workflows.
This survey found two common approaches, one that is Jekyll-centric and one that uses Org-publish (Emacs-centric).
Unfortunately, neither fit with my workflow and I decided to develop my own Org exporter.&lt;/p&gt;

&lt;p&gt;I finally have some functioning code, so I figured I should share details about the project and the development process.
You can find the project &lt;a href=&quot;https://github.com/gonsie/ox-jekyll&quot;&gt;on GitHub&lt;/a&gt;.&lt;/p&gt;

&lt;h2 id=&quot;starting-point&quot;&gt;Starting Point&lt;/h2&gt;

&lt;p&gt;In &lt;a href=&quot;http://www.gonsie.com/blorg/survey-org-jekyll.html&quot;&gt;my survey&lt;/a&gt; I found some useful resources:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;The Worg Documentation on &lt;a href=&quot;https://orgmode.org/worg/dev/org-export-reference.html&quot;&gt;Org Export Engine&lt;/a&gt;;&lt;/li&gt;
  &lt;li&gt;An existing ox-jekyll in &lt;a href=&quot;https://github.com/yoshinari-nomura/org-octopress&quot;&gt;org-octopress&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;blockquote&gt;
  &lt;p&gt;Great artists steal.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I want everything that org-octopress is doing with it’s jekyll exporter, I just want it built on markdown instead of HTML.&lt;/p&gt;

&lt;p&gt;So, I’ve copied &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;ox-jekyll.el&lt;/code&gt; and replaced “html” with “md”.
After fixing a few function names, it works!&lt;/p&gt;

&lt;p&gt;Most importantly, the front matter is in the right spot (with and without a table of contents).
The next step is to make this work with the particulars of my publishing workflow.&lt;/p&gt;

&lt;h2 id=&quot;my-publishing-workflow-details&quot;&gt;My Publishing Workflow Details&lt;/h2&gt;

&lt;p&gt;There are a number of things I want my exporter to accomplish.
Many of which are particular to my workflow.&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;I use a single org file per post.&lt;/li&gt;
  &lt;li&gt;Upon export, the date (YYYY-MM-DD) should get added to the file name.&lt;/li&gt;
  &lt;li&gt;Subtree level matches export heading level (this is just how I design my site’s CSS)&lt;/li&gt;
  &lt;li&gt;Code snippets should be easy to export with appropriate syntax.
This is where many markdown converters differ, but jekyll currently wraps code blocks with &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;{ % highlight LANG %}&lt;/code&gt; / &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;{ % endhighlight %}&lt;/code&gt;.
[Ignore the extra space before the %]&lt;/li&gt;
  &lt;li&gt;Jekyll front matter should be added above org-inserted table of contents.
The manual HTML source block is just hideous.&lt;/li&gt;
  &lt;li&gt;It should be easy to move the generated file to a separate location (I think this addressed in the org-publish workflow).&lt;/li&gt;
  &lt;li&gt;Org-y way to add tags to the post.&lt;/li&gt;
  &lt;li&gt;Safe export of title (colon character mucks things up for Jekyll).&lt;/li&gt;
  &lt;li&gt;Fix up links and export connected images.
This one is really a nice to have, not necessary.&lt;/li&gt;
  &lt;li&gt;TOC should be an ordered list (with the option to make it unordered)
WTF is the HTML exporter doing making it an unordered list with numbers in the text.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Many of these are solved with code from org-octopress, particularly the yaml front matter.&lt;/p&gt;

&lt;h2 id=&quot;implementing-features&quot;&gt;Implementing Features&lt;/h2&gt;

&lt;p&gt;Here are some notes on my implementation.&lt;/p&gt;

&lt;h3 id=&quot;thinking-about-the-table-of-contents&quot;&gt;Thinking about the Table of Contents&lt;/h3&gt;

&lt;p&gt;I had been including a table of contents at the top of each of my posts.
I didn’t actually label it with “table of contents” and I prefer an un-numbered list.
This seems to be very contrary to what the org-exporter likes to do.
It pretty much does not allow for any fine-grained control of how the table of contents appears.&lt;/p&gt;

&lt;p&gt;While I was able to get the code to do what I wanted, it ended up being way too much of a hack.
In the end, I’ve decided that I don’t want a table of contents at all.
Really, it will be up to the markdown / jekyll / liquid parser to create a TOC if necessary.
This makes it easy to apply separate HTML styles to the TOC (to put it in a sidebar or something).&lt;/p&gt;

&lt;h3 id=&quot;preserving-the-headline-level&quot;&gt;Preserving the Headline Level&lt;/h3&gt;

&lt;p&gt;I would like &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;:headline-offset&lt;/code&gt; (as described &lt;a href=&quot;https://orgmode.org/worg/dev/org-export-reference.html&quot;&gt;here&lt;/a&gt;) to work on a file level.
This allows me to make sure the contents of my post match up the CSS on the web site (the content’s final destination).
This is definitely a more markdown-y way to do things rather than the org way.&lt;/p&gt;

&lt;p&gt;Unfortunately, the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;:headline-offset&lt;/code&gt; option is only supported per subtree.
I can hack it with a simple function that adds an “offset by 0” property to each subtree:&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-elisp&quot; data-lang=&quot;elisp&quot;&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;defun&lt;/span&gt; &lt;span class=&quot;nv&quot;&gt;org-jekyll-headline-offset&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;nv&quot;&gt;headline&lt;/span&gt; &lt;span class=&quot;nv&quot;&gt;contents&lt;/span&gt; &lt;span class=&quot;nv&quot;&gt;info&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
  &lt;span class=&quot;s&quot;&gt;&quot;proper headline offset&quot;&lt;/span&gt;
  &lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;let*&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;((&lt;/span&gt;&lt;span class=&quot;nv&quot;&gt;info&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;nv&quot;&gt;plist-put&lt;/span&gt; &lt;span class=&quot;nv&quot;&gt;info&lt;/span&gt; &lt;span class=&quot;ss&quot;&gt;:headline-offset&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)))&lt;/span&gt;
    &lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;nv&quot;&gt;org-md-headline&lt;/span&gt; &lt;span class=&quot;nv&quot;&gt;headline&lt;/span&gt; &lt;span class=&quot;nv&quot;&gt;contents&lt;/span&gt; &lt;span class=&quot;nv&quot;&gt;info&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)))&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;I add it to the derived backend &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;:translate-alist&lt;/code&gt; like so:&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-elisp&quot; data-lang=&quot;elisp&quot;&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;nv&quot;&gt;org-export-define-derived-backend&lt;/span&gt; &lt;span class=&quot;ss&quot;&gt;&apos;jekyll&lt;/span&gt; &lt;span class=&quot;ss&quot;&gt;&apos;md&lt;/span&gt;
  &lt;span class=&quot;c1&quot;&gt;;; ...&lt;/span&gt;
  &lt;span class=&quot;ss&quot;&gt;:translate-alist&lt;/span&gt;
  &lt;span class=&quot;o&quot;&gt;&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;((&lt;/span&gt;&lt;span class=&quot;nv&quot;&gt;headline&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;.&lt;/span&gt; &lt;span class=&quot;nv&quot;&gt;org-jekyll-headline-offset&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
  &lt;span class=&quot;c1&quot;&gt;;; ...&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;Now, this function is called each time a headline is translated by the export engine and my headline level is directly translated to markdown.&lt;/p&gt;

&lt;h3 id=&quot;setting-the-date&quot;&gt;Setting the Date&lt;/h3&gt;

&lt;p&gt;I have a strange workflow where I want the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;#+DATE:&lt;/code&gt; tag to be the day I started working on a post and the date in the filename to be the day I hit publish.
For my exporter, I can use the option &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;date:&lt;/code&gt; to trigger this behavior.
The &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;date:&lt;/code&gt; option takes precedence over the variable &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;org-export-with-date&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;While I would like my code to support putting the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;#+DATE:&lt;/code&gt; property into the filename, this seems impossible with the export engine.
The date property is stored in the info plist which I don’t have access to at file naming time.&lt;/p&gt;

&lt;p&gt;Instead, I’ve implemented this functionality:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;The &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;date:&lt;/code&gt; option controls if the value of the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;#+DATE&lt;/code&gt; property is put into the Jekyll front matter.&lt;/li&gt;
  &lt;li&gt;I’ve added a new option to the exporter: &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;org-jekyll-use-today-date&lt;/code&gt;.
If &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;t&lt;/code&gt;, the exporter will prepend the filename with today’s date.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 id=&quot;results&quot;&gt;Results&lt;/h2&gt;

&lt;p&gt;I’m quite happy with my exporter, I even used it to export this post!
I still need to figure out how to use the org-publish workflow, but for now I can successfully export my blog posts.&lt;/p&gt;

&lt;p&gt;As with most of my projects, you can find it &lt;a href=&quot;http://github.com/gonsie/ox-jekyll&quot;&gt;on GitHub&lt;/a&gt;.
Please feel free to file an issue and share any feed back you have.&lt;/p&gt;
</description>
                <pubDate>Sat, 12 May 2018 00:00:00 +0000</pubDate>
                <link>http://gonsie.com/blorg/ox-jekyll.html</link>
                <guid isPermaLink="true">http://gonsie.com/blorg/ox-jekyll.html</guid>
                
                <category>emacs</category>
                
                <category>org</category>
                
                <category>blog</category>
                
                <category>jekyll</category>
                
                
            </item>
        
        
        
            <item>
                <title>Blog Roll</title>
                <author>gonsie@me.com (Elsa Gonsiorowski)</author>
                <description>&lt;p&gt;There has been a lot of talk about blogs in my sphere recently.
First, Digg Reader was shut down and I was forced to transition the 40+ blogs that I follow to a new service.
Around the same time Jason Kottke (of &lt;a href=&quot;https://kottke.org&quot;&gt;kottke.org&lt;/a&gt;) asked his sustaining members about their favorite blogs.
He recently posted the results and included my response (&lt;a href=&quot;https://kottke.org/18/04/blogging-is-most-certainly-not-dead&quot;&gt;link here so I can treasure this moment&lt;/a&gt;)!!&lt;/p&gt;

&lt;p&gt;Let me take some more time to list of some of my favorite blogs.&lt;/p&gt;

&lt;p&gt;&lt;a id=&quot;org95080ed&quot;&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2 id=&quot;best-of-all-time&quot;&gt;Best of All time&lt;/h2&gt;

&lt;p&gt;Obviously, &lt;a href=&quot;http://kottke.org&quot;&gt;Jason Kottke&lt;/a&gt; is the best.
I have been following him for probably 15 years and I enjoy his blog so much that I am a &lt;a href=&quot;https://kottke.org/members/&quot;&gt;sustaining member&lt;/a&gt;.
His blog covers the best of the internet and talks about life, technology, design, and the intersection of it all.&lt;/p&gt;

&lt;p&gt;If you have ever been and Apple fan (and are old enough to remember when they actually were the underdogs), then you should already know about &lt;a href=&quot;https://daringfireball.net&quot;&gt;Daring Fireball&lt;/a&gt;.
John Gruber is a prolific blogger and well know for insightful commentary on the Apple news of the day.
Also, he invented &lt;a href=&quot;https://daringfireball.net/projects/markdown/&quot;&gt;Markdown&lt;/a&gt;.
The term ‘fireballed’ refers to a website that is essentially DDOS’d when DF shares a link to it.&lt;/p&gt;

&lt;p&gt;The &lt;a href=&quot;http://www.swiss-miss.com&quot;&gt;Swiss-Miss blog&lt;/a&gt; by Tina Roth Eisenberg is another favorite.
It is focused around design and creative work.
She shares a ton of inspirational videos and cool products that I wish I could buy.&lt;/p&gt;

&lt;p&gt;The last in this category is the &lt;a href=&quot;https://m.signalvnoise.com&quot;&gt;Signal-v-Noise&lt;/a&gt; blog by 37signals.
This is the group that develops Basecamp.
They are a 100% remote company and a huge inspiration for working in tech and loving your job.&lt;/p&gt;

&lt;p&gt;&lt;a id=&quot;orge5c805c&quot;&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2 id=&quot;niche-favorites&quot;&gt;Niche Favorites&lt;/h2&gt;

&lt;p&gt;&lt;a href=&quot;http://sachachua.com&quot;&gt;Sacha Chua&lt;/a&gt; is an amazing blogger.
Her style of writing is stream-of-thought, but she goes straight for the deep thoughts about how to improve her (and her family’s) life.
She is a prolific contributor the Emacs community and includes a weekly roundup of Emacs news.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://www.autostraddle.com&quot;&gt;Autostraddle&lt;/a&gt; is a website for the LGBTQ community.
This blog includes a ton of helpful resources for allies and helps me understand the community and important issues better.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://thestonesoup.com/blog&quot;&gt;The Stone Soup&lt;/a&gt; is the only blog on food that I follow.
Jules teaches you how to cook with the ingredients you have, so that you understand how to assemble a meal rather than just follow a recipe.
Plus, everything I have ever made from her is delicious.&lt;/p&gt;

&lt;p&gt;My favorite tech-life blogger is &lt;a href=&quot;http://cate.blog&quot;&gt;Cate&lt;/a&gt;.
Her style is incredibly intimate and &lt;em&gt;real&lt;/em&gt;; I connect with so much that she writes about.
My favorite project of hers are the &lt;a href=&quot;https://cate.blog/2017/08/15/i-send-love-letters-from-airports/&quot;&gt;love letters from airports&lt;/a&gt; (with the &lt;a href=&quot;https://techspeak.email&quot;&gt;Technically Speaking&lt;/a&gt; newsletter as a close second).&lt;/p&gt;

&lt;p&gt;&lt;a id=&quot;org32751dc&quot;&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2 id=&quot;a-few-more&quot;&gt;A Few More&lt;/h2&gt;

&lt;p&gt;&lt;a href=&quot;http://penelopetrunk.com&quot;&gt;Penelope Trunk&lt;/a&gt; covers career management.
&lt;a href=&quot;https://kate.io&quot;&gt;Kate Murphy&lt;/a&gt;, &lt;a href=&quot;http://natashatherobot.com&quot;&gt;Natasha the Robot&lt;/a&gt;, &lt;a href=&quot;http://jvns.ca&quot;&gt;Julia Evans&lt;/a&gt; (also featured by Kottke), &lt;a href=&quot;http://blog.bethcodes.com&quot;&gt;Beth Andres-Beck&lt;/a&gt;, &lt;a href=&quot;http://www.domesticated-engineer.com&quot;&gt;Domesticated Engineer&lt;/a&gt;, and &lt;a href=&quot;https://www.kaeheddleston.com&quot;&gt;Kate Heddleston&lt;/a&gt; all blog about working in technology (software).
And the &lt;a href=&quot;http://www.fancybeans.com&quot;&gt;Fancy Beans&lt;/a&gt; blog has left the tech industry behind and is FIRE.
The &lt;a href=&quot;http://programmingisterrible.com&quot;&gt;Programming is Terrible&lt;/a&gt; blog has one of my favorite posts of all time: &lt;em&gt;&lt;a href=&quot;https://programmingisterrible.com/post/139222674273/write-code-that-is-easy-to-delete-not-easy-to&quot;&gt;Write code that easy to delete&lt;/a&gt;&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://thekidshouldseethis.com&quot;&gt;The Kid Should See This&lt;/a&gt;: links to great youtube videos.
&lt;a href=&quot;http://toolsandtoys.net&quot;&gt;Tools and Toys&lt;/a&gt; links to some interesting products and includes interesting links in their Friday roundup.
On the more reflective side of things, &lt;a href=&quot;http://zenhabits.net&quot;&gt;zenhabits&lt;/a&gt; is quite popular and &lt;a href=&quot;http://patrickrhone.com&quot;&gt;PatrickRhone&lt;/a&gt; is very personal.
&lt;a href=&quot;http://irreal.org/blog&quot;&gt;Irreal&lt;/a&gt; is an Emacs blog which posts daily, usually short snippets about Emacs or what is going on the community.
&lt;a href=&quot;http://www.loopinsight.com&quot;&gt;The Loop&lt;/a&gt; and &lt;a href=&quot;http://pxlnv.com&quot;&gt;Pixel Envy&lt;/a&gt; are good tech and Apple blogs (see also &lt;a href=&quot;http://mattgemmell.com&quot;&gt;Matt Gemmell&lt;/a&gt;, &lt;a href=&quot;http://sivers.org&quot;&gt;Derek Sivers&lt;/a&gt;, &lt;a href=&quot;http://dcurt.is&quot;&gt;Dustin Curtis&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;&lt;a id=&quot;org8dbde1c&quot;&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2 id=&quot;rss-app&quot;&gt;RSS App&lt;/h2&gt;

&lt;p&gt;The final piece of the puzzle is actually reading the feeds.
In the very early days I would manually click on bookmarks (that was well before the iPhone).
Then, I was a huge fan of Safari’s built in RSS reader.
When that shut down I moved to Digg.
I loved Digg reader since it synced across both an iPhone app and a website.&lt;/p&gt;

&lt;p&gt;Currently, I’m using &lt;a href=&quot;https://www.inoreader.com&quot;&gt;Inoreader&lt;/a&gt;.
They just released a major update to the iOS app and I am really liking the new design.&lt;/p&gt;

&lt;p&gt;While I do like the built-in ability to bookmark or save an article for later, that really backfires when the service shut down.
I had about 400 saved articles in Digg, of which 300 or so made it to my &lt;a href=&quot;https://pinboard.in/u:gonsie&quot;&gt;pinboard.in&lt;/a&gt; account.&lt;/p&gt;
</description>
                <pubDate>Wed, 18 Apr 2018 00:00:00 +0000</pubDate>
                <link>http://gonsie.com/blorg/blog-roll.html</link>
                <guid isPermaLink="true">http://gonsie.com/blorg/blog-roll.html</guid>
                
                <category>blog</category>
                
                
            </item>
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
    </channel>
</rss>
