<rss version="2.0">
  <channel>
    <title>Apps on Numeric Citizen I/O — A Blog About Blogging</title>
    <link>https://meta.numericcitizen.me/categories/apps/</link>
    <description></description>
    
    <language>en-us</language>
    
    <lastBuildDate>Sat, 18 Jul 2026 17:07:43 -0400</lastBuildDate>
    
    <item>
      <title>AI made me replace another subscription: Ulysses</title>
      <link>https://meta.numericcitizen.me/2026/07/18/ai-made-me-replace-another.html</link>
      <pubDate>Sat, 18 Jul 2026 17:07:43 -0400</pubDate>
      
      <guid>http://numericcitizen-meta.micro.blog/2026/07/18/ai-made-me-replace-another.html</guid>
      <description>&lt;p&gt;I finally cancelled my subscription to Ulysses. Why? I was using Ulysses because it supported Craft&amp;rsquo;s export document so that I could then publish either to Ghost or Micro.blog. Since the beginning of this year, I&amp;rsquo;ve created two n8n automation workflows to publish directly from Craft to Ghost or Micro.blog.&lt;/p&gt;
&lt;h1 id=&#34;publishing-from-craft-to-microblog-with-a-single-n8n-workflow&#34;&gt;Publishing from Craft to Micro.blog with a Single n8n Workflow&lt;/h1&gt;
&lt;p&gt;This is a technical write-up of an n8n automation that takes a document written in &lt;a href=&#34;https://www.craft.do&#34;&gt;Craft&lt;/a&gt;, converts it to clean HTML, rehosts its images, and publishes it to &lt;a href=&#34;https://micro.blog&#34;&gt;Micro.blog&lt;/a&gt; as a draft — all from a single webhook call. It&amp;rsquo;s a companion to an earlier Craft → Ghost publisher and reuses the same document-fetching approach, but targets Micro.blog&amp;rsquo;s &lt;a href=&#34;https://www.w3.org/TR/micropub/&#34;&gt;Micropub&lt;/a&gt; API instead of a proprietary CMS.&lt;/p&gt;
&lt;p&gt;The goal is to write in one place (Craft) and let automation handle the tedious, error-prone part: block conversion and image migration.&lt;/p&gt;
&lt;h2 id=&#34;what-it-does&#34;&gt;What it does&lt;/h2&gt;
&lt;p&gt;An AI assistant (via n8n&amp;rsquo;s MCP integration) or any HTTP client sends a webhook request naming a Craft document by title. The workflow then:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Searches the Craft space for that title.&lt;/li&gt;
&lt;li&gt;Scores the search results to pick the &lt;em&gt;actual&lt;/em&gt; matching document.&lt;/li&gt;
&lt;li&gt;Fetches the document&amp;rsquo;s full block tree.&lt;/li&gt;
&lt;li&gt;Converts Craft blocks into Micropub-ready HTML.&lt;/li&gt;
&lt;li&gt;Extracts every Craft-hosted image, downloads it, and re-uploads it to Micro.blog&amp;rsquo;s media endpoint.&lt;/li&gt;
&lt;li&gt;Swaps the original image URLs for their new Micro.blog-hosted equivalents.&lt;/li&gt;
&lt;li&gt;Publishes the result as a &lt;strong&gt;draft&lt;/strong&gt; for manual review before it goes live.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;The whole run typically completes in about 4–6 seconds, with image uploads accounting for most of the overhead.&lt;/p&gt;
&lt;h2 id=&#34;trigger-and-input&#34;&gt;Trigger and input&lt;/h2&gt;
&lt;p&gt;The workflow is triggered by an HTTP &lt;code&gt;POST&lt;/code&gt; webhook that waits for the full run to complete before responding (a &amp;ldquo;response node&amp;rdquo; pattern), so the caller gets the final published URL back synchronously. It&amp;rsquo;s also exposed through n8n&amp;rsquo;s MCP server, which is what lets an assistant invoke it conversationally.&lt;/p&gt;
&lt;p&gt;The input payload is minimal:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;&#34;&gt;&lt;code class=&#34;language-json&#34; data-lang=&#34;json&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;{ &lt;span style=&#34;color:#f92672&#34;&gt;&amp;#34;targetTitle&amp;#34;&lt;/span&gt;: &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;My Article Title&amp;#34;&lt;/span&gt; }
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h2 id=&#34;flow-overview&#34;&gt;Flow overview&lt;/h2&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;Webhook
  → Search Document in Craft
  → Find Best Matching Document
  → Fetch Document Content
  → Convert Craft Blocks to HTML
  → Set Micro.blog Token
  → Extract Craft Image URLs
  → Has Images?
       ├─ true  → Split by Image URL → Download from Craft → Fix Filename
       │          → Upload to Micro.blog Media → Merge Upload Result
       │          → Reassemble HTML → Merge Before Publish
       └─ false → Format No-Image Post → Merge Before Publish
  → Publish to Micro.blog
  → Respond to Webhook
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;the-interesting-problems&#34;&gt;The interesting problems&lt;/h2&gt;
&lt;p&gt;Most of the engineering effort went into three areas that aren&amp;rsquo;t obvious until you hit them.&lt;/p&gt;
&lt;h3 id=&#34;1-title-matching-against-a-full-text-search&#34;&gt;1. Title matching against a full-text search&lt;/h3&gt;
&lt;p&gt;Craft&amp;rsquo;s search API does &lt;em&gt;full-text&lt;/em&gt; search, not title-only. That means a document that merely &lt;em&gt;mentions&lt;/em&gt; the target title somewhere in its body can rank above the document actually named that. Publishing the wrong document is a nasty failure mode.&lt;/p&gt;
&lt;p&gt;The fix is a small scoring node that runs after the search and ranks each candidate:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Exact title match:&lt;/strong&gt; 100&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Title starts with the query:&lt;/strong&gt; 80&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Title contains the query:&lt;/strong&gt; under 50, penalized by how much longer the title is than the query&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Before comparing, it strips Markdown noise — bold markers, italics, and heading prefixes — so formatting in a title doesn&amp;rsquo;t throw off the match. If nothing scores above zero, the node throws a descriptive error that lists every candidate it saw, which makes debugging a missed title trivial. The node emits the single best match in the same shape as the search results, so the downstream &amp;ldquo;fetch content&amp;rdquo; step doesn&amp;rsquo;t need to know any scoring happened.&lt;/p&gt;
&lt;h3 id=&#34;2-converting-craft-blocks-to-html&#34;&gt;2. Converting Craft blocks to HTML&lt;/h3&gt;
&lt;p&gt;Craft stores documents as a nested tree of typed blocks, not as HTML. A dedicated conversion node walks that tree and emits Micropub-ready markup. It covers:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Paragraphs and headings (h1–h4)&lt;/li&gt;
&lt;li&gt;Blockquotes and horizontal rules&lt;/li&gt;
&lt;li&gt;Unordered and ordered lists — consecutive list-item blocks are grouped into a single &lt;code&gt;&amp;lt;ul&amp;gt;&lt;/code&gt; or &lt;code&gt;&amp;lt;ol&amp;gt;&lt;/code&gt; rather than emitting one list per item&lt;/li&gt;
&lt;li&gt;Task checkboxes (rendered as ✅ / ☐)&lt;/li&gt;
&lt;li&gt;Images, wrapped in &lt;code&gt;&amp;lt;figure&amp;gt;&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Rich-link bookmarks, rendered as a styled bookmark block&lt;/li&gt;
&lt;li&gt;Code blocks (&lt;code&gt;&amp;lt;pre&amp;gt;&amp;lt;code&amp;gt;&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;Inline formatting: bold, italic, strikethrough, inline code, links, and proper HTML-entity escaping&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;It also handles two different document shapes — a notebook with sub-pages and a flat single document — with a fallback lookup, so it doesn&amp;rsquo;t matter how the source is organized.&lt;/p&gt;
&lt;h3 id=&#34;3-rehosting-images-across-services&#34;&gt;3. Rehosting images across services&lt;/h3&gt;
&lt;p&gt;Craft images live on Craft&amp;rsquo;s own CDN. If you publish those URLs directly, your post depends on Craft continuing to serve them — not acceptable for a permanent blog post. So every Craft image has to be pulled down and re-uploaded to Micro.blog.&lt;/p&gt;
&lt;p&gt;The image branch:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Regex-scans the generated HTML for Craft image URLs.&lt;/li&gt;
&lt;li&gt;Splits into one item per image.&lt;/li&gt;
&lt;li&gt;Downloads each image&amp;rsquo;s binary from Craft.&lt;/li&gt;
&lt;li&gt;Fixes the filename extension based on the response&amp;rsquo;s MIME type (Craft URLs don&amp;rsquo;t always carry a usable extension).&lt;/li&gt;
&lt;li&gt;Uploads each image to Micro.blog&amp;rsquo;s media endpoint as &lt;code&gt;multipart/form-data&lt;/code&gt;.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;A subtle detail: Micro.blog&amp;rsquo;s media endpoint returns &lt;code&gt;202 Accepted&lt;/code&gt; and puts the new image URL in the HTTP &lt;strong&gt;&lt;code&gt;Location&lt;/code&gt; response header&lt;/strong&gt;, not in the body. To capture a header you have to ask the HTTP node for the &lt;em&gt;full&lt;/em&gt; response rather than just the parsed body. A later node maps each uploaded image&amp;rsquo;s &lt;code&gt;Location&lt;/code&gt; back to its original Craft URL by index, and the HTML is reassembled with every Craft URL replaced by its Micro.blog equivalent.&lt;/p&gt;
&lt;p&gt;Image failures are handled gracefully: the upload node continues on error, so if one image fails (AVIF, for instance, tends to be rejected), the post still publishes — that image just keeps its original URL instead of breaking the whole run.&lt;/p&gt;
&lt;h2 id=&#34;why-micropub&#34;&gt;Why Micropub&lt;/h2&gt;
&lt;p&gt;The most reusable idea here is that Micro.blog speaks &lt;a href=&#34;https://www.w3.org/TR/micropub/&#34;&gt;Micropub&lt;/a&gt;, a W3C standard, rather than a proprietary publishing API. The final payload is a standard &lt;code&gt;h-entry&lt;/code&gt;:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;&#34;&gt;&lt;code class=&#34;language-json&#34; data-lang=&#34;json&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;{
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#f92672&#34;&gt;&amp;#34;type&amp;#34;&lt;/span&gt;: [&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;h-entry&amp;#34;&lt;/span&gt;],
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  &lt;span style=&#34;color:#f92672&#34;&gt;&amp;#34;properties&amp;#34;&lt;/span&gt;: {
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    &lt;span style=&#34;color:#f92672&#34;&gt;&amp;#34;name&amp;#34;&lt;/span&gt;: [&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;My Article Title&amp;#34;&lt;/span&gt;],
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    &lt;span style=&#34;color:#f92672&#34;&gt;&amp;#34;content&amp;#34;&lt;/span&gt;: [&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;&amp;lt;h2&amp;gt;...&amp;lt;/h2&amp;gt;&amp;lt;p&amp;gt;...&amp;lt;/p&amp;gt;&amp;#34;&lt;/span&gt;],
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    &lt;span style=&#34;color:#f92672&#34;&gt;&amp;#34;post-status&amp;#34;&lt;/span&gt;: [&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;draft&amp;#34;&lt;/span&gt;]
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;  }
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;}
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Any Micropub-compatible endpoint would accept the same shape, so the publishing half of this workflow isn&amp;rsquo;t locked to one host. The &lt;code&gt;post-status: draft&lt;/code&gt; field is deliberate — &lt;strong&gt;every post lands as a draft&lt;/strong&gt; so it can be reviewed in the editor before going public. The endpoint responds with the new post&amp;rsquo;s URL, a preview link, and an edit link, which the workflow passes straight back to the webhook caller.&lt;/p&gt;
&lt;h2 id=&#34;error-handling&#34;&gt;Error handling&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;A shared error-handler workflow catches failures across the automation.&lt;/li&gt;
&lt;li&gt;The webhook always responds, even on failure, so a caller never hangs.&lt;/li&gt;
&lt;li&gt;Image-upload failures are non-fatal (see above).&lt;/li&gt;
&lt;li&gt;A missing title produces an explicit, descriptive error listing what was searched.&lt;/li&gt;
&lt;li&gt;Full-text false positives are neutralized by the scoring node rather than by hoping the search ranks correctly.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;credentials-and-configuration-redacted&#34;&gt;Credentials and configuration (redacted)&lt;/h2&gt;
&lt;p&gt;For obvious reasons, the specifics below are not published:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Craft Connect REST link&lt;/strong&gt; — a private access link used to search Craft and fetch block content.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Micro.blog app token&lt;/strong&gt; — a Bearer token generated in Micro.blog account settings, stored in a dedicated &amp;ldquo;Set Token&amp;rdquo; node so it can be rotated in one place.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;n8n instance URL, webhook path, and internal workflow IDs&lt;/strong&gt; — infrastructure details specific to a self-hosted deployment.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;If you rebuild something like this, you&amp;rsquo;d supply your own Craft access link and your own Micro.blog token, and point the workflow at your own n8n instance.&lt;/p&gt;
&lt;h2 id=&#34;takeaways&#34;&gt;Takeaways&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Treat a full-text search as untrusted input and score its results before acting on them.&lt;/li&gt;
&lt;li&gt;When migrating content between hosts, migrate the &lt;em&gt;assets&lt;/em&gt; too — don&amp;rsquo;t hotlink another service&amp;rsquo;s CDN.&lt;/li&gt;
&lt;li&gt;Watch where an API returns the data you need; a &lt;code&gt;Location&lt;/code&gt; header is easy to miss if you only read response bodies.&lt;/li&gt;
&lt;li&gt;Prefer open standards (Micropub) over proprietary APIs where you can — it keeps the integration portable.&lt;/li&gt;
&lt;li&gt;Publish to draft first. Automation should hand you a reviewable result, not a live surprise.&lt;/li&gt;
&lt;/ul&gt;
</description>
    </item>
    
    <item>
      <title>The Numeric Citizen Digital Ecosystem — Edition 2026-04</title>
      <link>https://meta.numericcitizen.me/2026/04/27/the-numeric-citizen-digital-ecosystem.html</link>
      <pubDate>Mon, 27 Apr 2026 17:38:17 -0400</pubDate>
      
      <guid>http://numericcitizen-meta.micro.blog/2026/04/27/the-numeric-citizen-digital-ecosystem.html</guid>
      <description>&lt;p&gt;Today, I’m excited to share my latest digital ecosystem update, previously known as “The Numeric Citizen Content Creator Workflow”. The diagram sports a new title: “The Numeric Citizen Digital Ecosystem” to better reflect its scope: to enumerate services and apps at the center of my digital presence. It was entirely rebuilt in Apple Freeform, leaving Apple Keynote behind. Freeform is a joy to use; it’s much more flexible and powerful than Keynote, too. The content was also expanded to include a new set of tools I have built over the last few months since publishing &lt;a href=&#34;https://meta.numericcitizen.me/2025/11/02/my-content-creation-ecosystem-fall.html&#34;&gt;the previous update&lt;/a&gt;. Let&#39;s dive in for all the details. &lt;/p&gt;
&lt;figure&gt;&lt;img src=&#34;https://cdn.uploads.micro.blog/143495/2026/craft-image-0-1777325734547.png&#34; alt=&#34;&#34;&gt;&lt;/figure&gt;
&lt;p&gt;The entire ecosystem diagram was rebuilt from the ground up. Full resolution version available &lt;a href=&#34;https://go.numericcitizen.me/kXrGe2Fk&#34;&gt;&lt;strong&gt;here&lt;/strong&gt;&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;At a high level, both Micro.blog and Ghost remain the two hosting and publishing pillars for most of my *.numericcitizen.me websites, while a few other websites, like my Ko-fi page and my new about website, Who Is Numeric Citizen, are hosted elsewhere. On the diagram, my websites are positioned on the left and in the top-left portion. &lt;/p&gt;
&lt;p&gt;As you might notice, a lot has happened since my last update. Thanks to Claude AI and Claude Code, I made a major shift toward web app to meet two fundamental needs: a brand new bookmark manager (replacing AnyBox), and a lightweight RSS reader that integrates with my bookmark manager. Together, they support my reading workflow and help me produce the &lt;a href=&#34;https://numericcitizen.me/tag/ephemeral-scrapbook/&#34;&gt;Ephemeral Scrapbook newsletter&lt;/a&gt;. See both web apps in &lt;a href=&#34;A%20Quick%20Tour%20of%20the%20Best%20Bookmark%20Manager%20&amp;%20RSS%20Reader%20Built%20Entirely%20With%20Claude%20Code%20https://youtu.be/Wb5r61MeSQY&#34;&gt;this YouTube video&lt;/a&gt;.&lt;/p&gt;
&lt;figure&gt;&lt;img src=&#34;https://cdn.uploads.micro.blog/143495/2026/craft-image-1-1777325734547.png&#34; alt=&#34;&#34;&gt;&lt;/figure&gt;
&lt;p&gt;My custom-built RSS reader web application&lt;/p&gt;
&lt;h3&gt;What’s in, what changed since last fall &lt;/h3&gt;
&lt;p&gt;AI is now playing a more prominent role in my digital ecosystem since the beginning of 2026. It’s mainly used for vibe coding, maintaining my web applications, and content summarization. You’ll see little light bulbs (💡) in the diagram; they indicate where AI summarization is involved. Anthropic’s Claude AI replaced OpenAI’s ChatGPT in all my workflows. Plus, Claude AI and Claude Code enabled many new possibilities for helping me build small digital services and web apps for my personal needs. It’s something I couldn’t have imagined a year ago.&lt;/p&gt;
&lt;figure&gt;&lt;img src=&#34;https://cdn.uploads.micro.blog/143495/2026/craft-image-2-1777325734547.png&#34; alt=&#34;&#34;&gt;&lt;/figure&gt;
&lt;p&gt;Claude Code’s main window with some of my projects on the left sidebar and the DIFF view shown on the right&lt;/p&gt;
&lt;p&gt;Another milestone was to &lt;a href=&#34;https://blog.numericcitizen.me/2025/12/17/goodbye-ifttt.html&#34;&gt;replace IFTTT with n8n automation&lt;/a&gt;. It’s a major upgrade in functionality and usability. My n8n instance is running on the Digital Ocean hosting service, inside a pre-packaged “droplet” with 1 GB of RAM and 10 GB of disk space for $6 a month. Digital Ocean provides a one-click install of n8n which really made a difference in selecting Digital Ocean as a hosting service. I created more than a dozen automations, far more complex and useful than what I could build with IFTTT. Claude AI was also involved in optimizing many n8n workflows. It was possible because n8n supports the MCP endpoint that is exposed to Claude AI. In the following table, I present a summary of my n8n automation workflows. As you will see, Discord is a new entry, as it provides a custom server to receive n8n workflow outputs and some status reports from Tinylytics. Also good to know: all my n8n workflows are automatically documented in a Craft document, thanks to Claude Code, which connects to both the n8n and Craft backends. To get a well-structured documentation, I created a Claude Skill.&lt;/p&gt;
&lt;figure&gt;&lt;img src=&#34;https://cdn.uploads.micro.blog/143495/2026/craft-image-3-1777325734547.png&#34; alt=&#34;&#34;&gt;&lt;/figure&gt;
&lt;p&gt;A portion of an automation workflow shown in the n8n canvas&lt;/p&gt;
&lt;h4&gt;My automated n8n workflows &lt;/h4&gt;
&lt;p&gt;Here’s a list of utilities running as n8n workflows on my self-hosted DigitalOcean instance. &lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;API Credit Health Check&lt;/strong&gt; — Pre-flight check on Anthropic credits; alerts Discord if depleted&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Today&#39;s Forecast&lt;/strong&gt; — Pulls weather data into the Craft daily note&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Tinylytics Insights&lt;/strong&gt; — Injects site analytics summary into the Craft daily note&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Apple Daily News&lt;/strong&gt; — Fetches MacSurfer headlines into the Craft daily note&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Setup Craft Daily Note&lt;/strong&gt; — Creates the day&#39;s 8-section journaling scaffold in Craft&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Anthropic Daily Cost Report&lt;/strong&gt; — Posts 7-day and 30-day AI spend breakdown to Discord&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Example of automatically propulated Craft Daily note, thanks to n8n automation. &lt;/p&gt;
&lt;figure&gt;&lt;img src=&#34;https://cdn.uploads.micro.blog/143495/2026/craft-image-4-1777325734547.png&#34; alt=&#34;&#34;&gt;&lt;/figure&gt;
&lt;h4&gt;RSS &amp; News Aggregation &lt;/h4&gt;
&lt;p&gt;A few workflows are used for content processing in the context of news consumption and Micro.blog timeline processing. &lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;RSS Daily Summary&lt;/strong&gt; — Aggregates RSS feeds and delivers an AI-summarized digest&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Micro.blog Timeline Highlights&lt;/strong&gt; — Summarizes Micro.blog activity via Claude&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Apple News Flash Alerts&lt;/strong&gt; — Real-time Apple news alerts from RSS&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Apps &amp; Services Release Highlights&lt;/strong&gt; — Monitors release notes feeds for notable updates&lt;/li&gt;
&lt;/ul&gt;
&lt;h4&gt;Content &amp; Publishing &lt;/h4&gt;
&lt;p&gt;Other workflows for supporting my content creation include:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Craft → Ghost&lt;/strong&gt; — Two workflows (specific and generic) push Craft documents to Ghost as drafts&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Ghost Publish Proxy&lt;/strong&gt; — Triggers final publication on Ghost via webhook&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Craft Fetch Proxy&lt;/strong&gt; — Fetches Craft document content on demand for downstream processing&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Poke to Craft / Peek at Ghost&lt;/strong&gt; — Manual/chat-triggered utilities for quick content inspection&lt;/li&gt;
&lt;/ul&gt;
&lt;h4&gt;Newsletter &amp; Email &lt;/h4&gt;
&lt;p&gt;A special workflow automation is processing email summarization on demand: simply forwarding an email to a dedicated Gmail account and after a few seconds I’ll receive a summary on my Discord server.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Email Summarizer&lt;/strong&gt; — Polls Gmail every minute; summarizes newsletters and posts to Discord&lt;/li&gt;
&lt;/ul&gt;
&lt;h4&gt;Maintenance &lt;/h4&gt;
&lt;p&gt;Finally, backing up my workflows is a must, just in case something really bad happens on my n8n instance. &lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;GitHub Backup&lt;/strong&gt; — Backs up all n8n workflow definitions to a GitHub repo every Sunday&lt;/li&gt;
&lt;/ul&gt;
&lt;hr&gt;
&lt;figure&gt;&lt;img src=&#34;https://cdn.uploads.micro.blog/143495/2026/craft-image-5-1777325734547.png&#34; alt=&#34;&#34;&gt;&lt;/figure&gt;
&lt;p&gt;The Craft Agents main window&lt;/p&gt;
&lt;p&gt;The updated diagram illustrates this: Craft consists of two parts—Craft content stored in the Craft cloud backend and various Craft clients, including the native general-purpose client and Craft Agents. Additionally, Craft now supports MCP and offers a comprehensive set of APIs, emphasizing the division between data storage and client applications. These latest additions to Craft are game changers and enable new use cases. &lt;/p&gt;
&lt;p&gt;A few thoughts and observations about Craft Agents, a sort of spin-off of Craft, are worth sharing here. Think about Craft Agents as an orchestrator of AI agents. In many ways, Craft Agents can be compared to the Claude Desktop app. There is a high level of affinity between Craft Agents and Craft, connected via APIs or MCP. Consuming Craft content through Craft Agents is an obvious use case. Yet, I’m still not sure why the team behind Craft is spending so much effort on this, but it’s interesting to follow nonetheless. I’m still looking for clear use cases for it, hence the yellow dot (🟡) on its icon in the diagram. There are a few aspects of the app’s design and structure that I don’t like. I don’t like using the task manager to organize conversations. I don’t think task management belongs in this app. Plus, Craft Agents is a very hungry consumer of AI credits. It’s a major concern unless you subscribe to the highest tier of any AI provider (OpenAI, Anthropic, etc.). It’s worth noting that Craft also offers an assistant working inside Craft itself. &lt;/p&gt;
&lt;p&gt;Also added to my digital ecosystem is CleanShot Cloud for hosting publicly shared screenshots or short screen recordings. I use that to share bugs or feedback. CleanShot X is sort of the client to CleanShot Cloud and is the best Mac utility you can get if you tae a lot of screenshots. &lt;/p&gt;
&lt;figure&gt;&lt;img src=&#34;https://cdn.uploads.micro.blog/143495/2026/craft-image-6-1777325734547.png&#34; alt=&#34;&#34;&gt;&lt;/figure&gt;
&lt;p&gt;One last automation that prevented me from closing my IFTTT account was the process of automatically archiving my publications in DayOne. This process was briefly described in &lt;a href=&#34;https://meta.numericcitizen.me/2023/03/06/documenting-my-numeric-life-with.html&#34;&gt;this blog post&lt;/a&gt;. Each time I share a blog post or an article, it is saved in DayOne. Micro.blog added a send-to-DayOne feature, which was the last needed nail in the coffin of IFTTT. It was such a relief. &lt;/p&gt;
&lt;p&gt;Speaking of Micro.blog, I created a new website for sharing automated blog post digests on a monthly basis. Most of the process is supported by the use of AI summarization. It’s not fully automated but very effective. Each month I send my Micro.blog postss digest to Craft fo later processing using Craft Agents. The process takes less than 15 minutes to complete. I know there is a potential for a fully automated process. It’s on my todo list. &lt;/p&gt;
&lt;figure&gt;&lt;img src=&#34;https://cdn.uploads.micro.blog/143495/2026/craft-image-7-1777325734547.png&#34; alt=&#34;&#34;&gt;&lt;/figure&gt;
&lt;h3&gt;What’s out since the last update &lt;/h3&gt;
&lt;p&gt;&lt;strong&gt;Chillidog Web Hosting&lt;/strong&gt; is out (the service hosting the &lt;a href=&#34;https://whois.numericcitizen.me&#34;&gt;Who Is Numeric Citizen website&lt;/a&gt;). It was replaced with Realmac Software Elements’ hosting solution. You can read the doc &lt;a href=&#34;https://docs.realmacsoftware.com/elements-docs/hosting&#34;&gt;here&lt;/a&gt;. The transition was seamless. I prefer integrated solutions, which Realmac is now offering. Plus. &lt;a href=&#34;https://support.exacthosting.com/support/solutions/articles/201000125536-chillidog-hosting-customer-acquisition-guide-welcome-to-exact-hosting&#34;&gt;Chillidog was &lt;/a&gt;purchased last year by Exact Hosting, and the purchase has been reported to degrade customer service.&lt;/p&gt;
&lt;p&gt;Last fall, I added the &lt;strong&gt;ChatGPT Atlas&lt;/strong&gt; browser to my ecosystem, but I removed it after switching to Claude AI. OpenAI Atlas was mainly used for summarizing articles, but now I do this within the Claude Desktop app. I still prefer using the ARC Browser, even though it might eventually be discontinued. The new browser, Dia, could take its place, but I’m interested to see how things unfold. Dia appears to require a Pro subscription to enable AI features in the browser. At $20 a month, I’ll pass. &lt;/p&gt;
&lt;p&gt;Gone is &lt;strong&gt;Google News&lt;/strong&gt; for cross-posting from Micro.blog. It never took off. Also gone is AnyBox, the very well-done bookmark manager available on all Apple platforms, but not available on the web, like Raindrop.io. I never liked Raindrop.io, so I built my own bookmark manager as a web-only app. It’s one of my new custom-built web apps.&lt;/p&gt;
&lt;p&gt;Finally, the &lt;strong&gt;numericcitizen.io&lt;/strong&gt; domain will be retired when it expires later this year, and the content hosted on a dedicated Craft subscription has already been moved to my main Craft subscription, helping me reduce costs. The &lt;a href=&#34;https://meta.numericcitizen.me&#34;&gt;meta.numericcitizen.me&lt;/a&gt; is taking over (my previous content was migrated there during 2025). Some of my content was also simply removed from public access. &lt;/p&gt;
&lt;figure&gt;&lt;img src=&#34;https://cdn.uploads.micro.blog/143495/2026/craft-image-8-1777325734547.png&#34; alt=&#34;&#34;&gt;&lt;/figure&gt;
&lt;p&gt;My newly redesigned metablog as seen in dark mode&lt;/p&gt;
&lt;h3&gt;Still pondering about these &lt;/h3&gt;
&lt;p&gt;You’ll find yellow dots on the diagram which points to services or apps that I’m reconsidering. Let’s review a few of them. &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Plausible vs Tinylytics&lt;/strong&gt;: I use two web analytics. Plausible has been around in my ecosystem since I left Google Analytics. Then came long Tinylytics and I wanted to support its developer plus it provides a great design compared to Plausible. Yet, I have a lot of historic data in the latter. Plus, I started using Tinylytics APIs to feed one of my workflows who inject data inside Craft daily notes and dashboard web application. I could replace this with Plausible’s APIs but I don’t feel it’s worth the effort. &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Things 3&lt;/strong&gt;, a popular and highly regarded task manager, is currently being reconsidered. I like managing my to-dos, but I don’t have many. If I want to eliminate Things 3, I could switch to Craft’s basic task management, but it’s quite limited. For now, my most likely option is to create my own app, much like I did with my RSS reader or bookmark manager. However, I’m not in a hurry to switch away since it doesn’t require a subscription, giving me plenty of time to decide and develop a replacement. &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Ulysses&lt;/strong&gt; is another case where I’m pondering its long-term usefulness. If I can post to Micro.blog or Ghost directly from Craft (using my custom-made n8n workflows), why should I continue paying for this app? The next renewal is a year from now.&lt;/p&gt;
&lt;p&gt;Finally, my &lt;strong&gt;Flipboard&lt;/strong&gt; account hosts a magazine that pulls content from my main website via its RSS feed. I have 8 followers, apparently. I never get any reactions or comments from this place. The bigger question: is Flipboard still a thing these days?&lt;/p&gt;
&lt;h3&gt;Risk management &lt;/h3&gt;
&lt;p&gt;In this edition of the diagram, I included red dots (🔴) to indicate potential disruption risks. For example, Anthropic recently adjusted Claude&#39;s credit consumption, leading to a fivefold increase in the number of credits needed to perform the same task; something I&#39;ve noticed too. Additionally, Anthropic conducted an experiment in which new subscribers could access Claude Code only if they chose the Max subscription tier at $200 per month. Although they quickly reversed this change, it raises the concern that they might eliminate the $20 plan altogether. If that happened, I could face serious difficulties and might stop maintaining my web applications built with Claude Code. Vercel is another risk potential: I’m using the free tier, which is rather generous. If they decided to remove this free tier, I would have to reconsider my position: either drop my web application or accept paying the monthly price they charge. &lt;/p&gt;
&lt;h3&gt;Concluding thoughts &lt;/h3&gt;
&lt;p&gt;This evolution reflects a fundamental shift in how I approach my digital life. By embracing AI assistants like Claude and building custom tools tailored to my specific needs, I&#39;ve moved away from cobbling together disparate services toward a more cohesive, intentional ecosystem. The transition from automation platforms like IFTTT to n8n, coupled with the ability to code solutions with Claude Code, has given me both flexibility and control—rare commodities in the world of Software-as-a-Service.&lt;/p&gt;
&lt;p&gt;The introduction of AI summarization across my workflows has transformed how I consume information, while the consolidation of my web presence under fewer, better-managed domains simplifies my digital footprint. Yet this ecosystem remains dynamic and somewhat fragile, dependent on the sustained availability of key services and the pricing decisions of AI providers. The risk management considerations I&#39;ve outlined aren&#39;t just technical footnotes—they&#39;re essential guideposts for maintaining digital independence in an increasingly interconnected world.&lt;/p&gt;
&lt;p&gt;As I continue to iterate and refine this ecosystem, the principles remain constant: intentionality, control, and the ability to evolve. The next edition will likely bring even more changes, but I&#39;m optimistic that the foundations I&#39;ve built will prove resilient enough to adapt to whatever comes next.&lt;/p&gt;
&lt;p&gt;Previous update to my digital ecosystem can be found &lt;a href=&#34;https://meta.numericcitizen.me/categories/meta/&#34;&gt;here&lt;/a&gt;.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://meta.numericcitizen.me/2025/12/29/heres-a-quick-demonstration-of.html</link>
      <pubDate>Mon, 29 Dec 2025 17:38:22 -0400</pubDate>
      
      <guid>http://numericcitizen-meta.micro.blog/2025/12/29/heres-a-quick-demonstration-of.html</guid>
      <description>&lt;p&gt;Here&amp;rsquo;s a quick demonstration of &lt;strong&gt;the Microblog Poster web app&lt;/strong&gt; I mentioned in my previous blog post.&lt;/p&gt;
&lt;p&gt;&lt;video controls=&#34;controls&#34; playsinline=&#34;playsinline&#34; preload=&#34;none&#34; width=&#34;1460&#34; height=&#34;1440&#34; poster=&#34;https://cdn.uploads.micro.blog/143495/2025/frames/1647718-0-95bfb6.jpg&#34; src=&#34;https://cdn.uploads.micro.mov/143495/2025/cleanshot-microblog-poster2025-12-2916.31.08/playlist.m3u8&#34;&gt;&lt;/video&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>My Content Creation Ecosystem - Fall 2025 Update</title>
      <link>https://meta.numericcitizen.me/2025/11/02/my-content-creation-ecosystem-fall.html</link>
      <pubDate>Sun, 02 Nov 2025 09:28:27 -0400</pubDate>
      
      <guid>http://numericcitizen-meta.micro.blog/2025/11/02/my-content-creation-ecosystem-fall.html</guid>
      <description>&lt;p&gt;It has been a while since &lt;a href=&#34;https://meta.numericcitizen.me/2025/03/22/a-mandatory-update-to-my.html&#34;&gt;my last update&lt;/a&gt; in March 2025. Here&amp;rsquo;s a summary of the changes.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;I removed &lt;a href=&#34;https://www.brief.news/&#34;&gt;Brief.news&lt;/a&gt; because I no longer think it will replace Mailbrew.&lt;/li&gt;
&lt;li&gt;I removed Mailbrew because I no longer depend on it to consume Internet content. I tried to replace it with Inoreader email digests, but it didn&amp;rsquo;t work as &lt;a href=&#34;https://numericcitizen.me/inoreaders-new-email-digest-feature-promise-and-limitations/&#34;&gt;I wrote here&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;I decided to add ChatGPT Atlas because I now have a solid use case for it: articles summarization and analysis, as I explained in &lt;a href=&#34;https://youtu.be/cw0uF75Iv80&#34;&gt;this YouTube video&lt;/a&gt;. This means Perplexity didn&amp;rsquo;t stay from my previous update. I&amp;rsquo;m focusing and want to settle on OpenAI for the foreseeable future.&lt;/li&gt;
&lt;li&gt;My new personal landing page, which is mostly complete, has replaced the one previously hosted on Craft public documents.&lt;/li&gt;
&lt;li&gt;I also made several visual tweaks to make it cleaner and more visually appealing.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The pace of updates slowed considerably in the last two years. It&amp;rsquo;s a good thing, and it means I can focus more on content and less on tooling.&lt;/p&gt;
&lt;img src=&#34;https://cdn.uploads.micro.blog/143495/2025/mycontentcreatorworkflowtools-2025-11.png&#34;&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://meta.numericcitizen.me/2025/10/16/as-a-craft-power-user.html</link>
      <pubDate>Thu, 16 Oct 2025 19:23:38 -0400</pubDate>
      
      <guid>http://numericcitizen-meta.micro.blog/2025/10/16/as-a-craft-power-user.html</guid>
      <description>&lt;p&gt;As a Craft power user, I still need Ulysses to complete my writing and publishing workflow. I made &lt;a href=&#34;https://youtu.be/cKYwzRXfdVU&#34;&gt;a video&lt;/a&gt; about this.&lt;/p&gt;
&lt;div style=&#34;position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;&#34;&gt;
      &lt;iframe allow=&#34;accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share; fullscreen&#34; loading=&#34;eager&#34; referrerpolicy=&#34;strict-origin-when-cross-origin&#34; src=&#34;https://www.youtube.com/embed/cKYwzRXfdVU?autoplay=0&amp;amp;controls=1&amp;amp;end=0&amp;amp;loop=0&amp;amp;mute=0&amp;amp;start=0&#34; style=&#34;position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;&#34; title=&#34;YouTube video&#34;&gt;&lt;/iframe&gt;
    &lt;/div&gt;

</description>
    </item>
    
    <item>
      <title>Screenflow &#43; Screen Studio</title>
      <link>https://meta.numericcitizen.me/2025/09/28/screenflow-screen-studio.html</link>
      <pubDate>Sun, 28 Sep 2025 21:27:14 -0400</pubDate>
      
      <guid>http://numericcitizen-meta.micro.blog/2025/09/28/screenflow-screen-studio.html</guid>
      <description>&lt;p&gt;This week, I decided to add &lt;strong&gt;Screen Studio&lt;/strong&gt; to my YouTube recording workflow. Screen Studio brings simplicity for recording more dynamic screen sequences. Everything Screen Studio does can be done in &lt;strong&gt;ScreenFlow&lt;/strong&gt;, but it requires significantly more manual work. But Screen Studio has a severe limitation: we cannot merge recorded sequences. That’s why I’m keeping ScreenFlow.&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;https://cdn.uploads.micro.blog/143495/2025/cleanshot-project-02.-tags-and-the-need-for-rules2025-09-2820.54.382x.png&#34;
  alt=&#34;&#34;
  loading=&#34;lazy&#34;
  decoding=&#34;async&#34;&gt;
&lt;/p&gt;
&lt;p&gt;In summary, my workflow proceeds as follows: individual sequences are recorded in Screen Studio, exported as .mp4 files, and then imported into ScreenFlow to be assembled into a complete video sequence, which includes the intro and outro sequences with background music. Chapter markers are also added in ScreenFlow before final export. Finally, video subtitles are created using Whisper Transcription and exported as an .srt file, which is compatible with YouTube Studio.&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;https://cdn.uploads.micro.blog/143495/2025/cleanshot-91.-using-tags-effectively-in-craft2025-09-2820.48.512x.png&#34;
  alt=&#34;&#34;
  loading=&#34;lazy&#34;
  decoding=&#34;async&#34;&gt;
&lt;/p&gt;
&lt;p&gt;Overall, I do spend more time on video rendering, but I think it’s worth it. Lastly, disk space consumption is way higher than before, with 2x-3x more space consumed than with ScreenFlow alone. Ouch.&lt;/p&gt;
&lt;p&gt;One more thing: Screen Studio is the only app that makes the M4 Mac mini fan run at full speed. I wonder if Screen Studio uses Apple Metal technology?&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://meta.numericcitizen.me/2025/08/16/when-i-read-about-vibe.html</link>
      <pubDate>Sat, 16 Aug 2025 08:31:54 -0400</pubDate>
      
      <guid>http://numericcitizen-meta.micro.blog/2025/08/16/when-i-read-about-vibe.html</guid>
      <description>&lt;p&gt;When I read about vibe coding to quickly create app mockups or even &lt;a href=&#34;https://youtu.be/3ZlDty0nRPY?si=Pq9uixmqu5zHCuDK&#34;&gt;shipping an app to the App Store&lt;/a&gt;, I wonder if I could use genAI to vibe code a theme plugin for Micro.blog. That would allow me to use a unique visual theme inspired by my visual branding.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://meta.numericcitizen.me/2025/07/28/because-diagrams-for-mac-seems.html</link>
      <pubDate>Mon, 28 Jul 2025 07:50:55 -0400</pubDate>
      
      <guid>http://numericcitizen-meta.micro.blog/2025/07/28/because-diagrams-for-mac-seems.html</guid>
      <description>&lt;p&gt;Because &lt;a href=&#34;https://diagrams.app/&#34;&gt;Diagrams for Mac&lt;/a&gt; seems to fall in the category of abandonware, if the &lt;a href=&#34;https://diagrams.app/blog&#34;&gt;latest blog post date&lt;/a&gt; is any indication, I decided to drop if from my tool set. The app wasn&amp;rsquo;t updated since macOS Monterey in 2022. Too bad, it was a rather promising diagramming tool.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>An Update About My Journey with Realmac Software Elements</title>
      <link>https://meta.numericcitizen.me/2025/05/06/an-update-about-my-journey.html</link>
      <pubDate>Tue, 06 May 2025 06:50:36 -0400</pubDate>
      
      <guid>http://numericcitizen-meta.micro.blog/2025/05/06/an-update-about-my-journey.html</guid>
      <description>&lt;p&gt;I&amp;rsquo;ve been quiet lately because I&amp;rsquo;ve been dedicating more time to learning Realmac Software Elements. I plan to create a few websites for fun. The first will be a new landing page to replace the current one shared with Craft Docs (look &lt;a href=&#34;https://crafted.numericcitizen.me/about&#34;&gt;here&lt;/a&gt;). The second will be my professional website, which I’ll use when I transition to a freelance career. Ironically, the third will be a rework of my current employer&amp;rsquo;s corporate website, which I find quite unattractive.&lt;/p&gt;
&lt;p&gt;So far, it’s a rather exciting journey. Elements is an excellent Mac app, and the team behind it offers a stellar presence on their support forums. This adds to the excitement of being part of a small club trying to build a new app. Elements is still in beta and should launch this year. You should see &lt;a href=&#34;https://youtu.be/zas7L3rMX18?si=OFi6u-GSWrgo8R2b&#34;&gt;this video&lt;/a&gt; on YouTube showing the app’s user interface.&lt;/p&gt;
&lt;p&gt;My experience with Elements reminds me of &lt;a href=&#34;https://en.wikipedia.org/wiki/IWeb&#34;&gt;Apple’s iWeb website editor&lt;/a&gt;, which was part of the initial MobileMe rollout. However, Elements is much more powerful and geared toward a different crowd. The learning curve is much steeper, but it is reasonable for a guy like me. Elements is built around &lt;a href=&#34;https://tailwindcss.com/&#34;&gt;Tailwind CSS&lt;/a&gt;. I don’t know CSS or Tailwind CSS, but Elements hides its complexity.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Tailwind CSS is a utility-first CSS framework created by Adam Wathan and the team at Tailwind Labs in 2017. Designed to streamline web development, it provides a comprehensive set of low-level utility classes that allow developers to style elements directly in their HTML without writing custom CSS. This approach enables rapid prototyping and highly customizable designs, making Tailwind CSS a popular choice for developers seeking efficiency and flexibility in building modern web interfaces.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;As soon as my first project matures enough, I’ll share more about it.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>A Mandatory Update to my Content Creation Ecosystem</title>
      <link>https://meta.numericcitizen.me/2025/03/22/a-mandatory-update-to-my.html</link>
      <pubDate>Sat, 22 Mar 2025 13:38:46 -0400</pubDate>
      
      <guid>http://numericcitizen-meta.micro.blog/2025/03/22/a-mandatory-update-to-my.html</guid>
      <description>&lt;p&gt;&lt;div class=&#34;nc-image-wrap&#34;&gt;
  &lt;img src=&#34;https://cdn.uploads.micro.blog/143495/2025/cleanshotcleanshot2025-03-2208.46.572x.png&#34;
    alt=&#34;A visual look at my content creator ecosystem.&#34;
    loading=&#34;lazy&#34;
    decoding=&#34;async&#34;&gt;
  &lt;span class=&#34;nc-image-caption&#34; aria-hidden=&#34;true&#34;&gt;A visual look at my content creator ecosystem.&lt;/span&gt;
&lt;/div&gt;
&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Some cleanup:&lt;/strong&gt; Readwise is gone. Supporting services are now grouped at the bottom. Corrected a few typos. I made some visual adjustments to make things a little bit cleaner and easier to visualize, especially for website miniatures. I renamed the diagram to reflect the notion of an ecosystem instead of a workflow.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Many additions&lt;/strong&gt;: each enhanced service with generative AI features is marked as such with a little brain icon. That&amp;rsquo;s the case for Inoreader, Craft and Grammarly. All my Micro.blog-hosted websites are now indicated. Since adhering to POSSE principles, I added the Fediverse and Bluesky icons and drew the cross-posting arrow lines to them.&lt;/p&gt;
&lt;p&gt;A high-resolution version of this diagram is available &lt;a href=&#34;https://go.numericcitizen.me/Rom7IMym&#34;&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&#34;what-is-posse&#34;&gt;What is POSSE&lt;/h2&gt;
&lt;p&gt;The POSSE principle stands for &amp;ldquo;Publish (on your) Own Site, Syndicate Elsewhere.&amp;rdquo; It is a content distribution strategy often recommended for writers, bloggers, and publishers. The primary idea is to first publish your content on a platform you control, such as your personal website or blog, and then syndicate or share that content on other platforms like social media, Medium, or different online communities.&lt;/p&gt;
&lt;p&gt;Here are some key points about the POSSE principle:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;Ownership and Control&lt;/strong&gt;: By publishing on your own site first, you maintain control over your content and ensure it exists in a space you own. This helps protect your work from the risks of platform changes or shutdowns.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Centralized Content&lt;/strong&gt;: Your website becomes the central hub where all your content is stored and can be accessed by your audience.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Traffic and SEO&lt;/strong&gt;: By driving traffic to your own site, you can improve your website&amp;rsquo;s SEO, increase your audience, and potentially monetize traffic through ads, affiliate links, or direct sales.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Syndication&lt;/strong&gt;: After publishing on your own site, you can share your content with a wider audience by syndicating it to other platforms. This strategy helps reach readers who might not visit your site directly.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Preservation&lt;/strong&gt;: Content publishing on third-party platforms may be subject to their rules and policies. Publishing first on your own site ensures your content is preserved and remains unchanged regardless of policy changes elsewhere.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;The POSSE principle is popular among creators who value long-term control over their work and want to build a sustainable and direct relationship with their audience.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>My Content Creator Workflow &amp; Digital Tools — Edition 2024-12</title>
      <link>https://meta.numericcitizen.me/2024/12/23/my-content-creator-workflow-digital.html</link>
      <pubDate>Mon, 23 Dec 2024 08:15:32 -0400</pubDate>
      
      <guid>http://numericcitizen-meta.micro.blog/2024/12/23/my-content-creator-workflow-digital.html</guid>
      <description>&lt;p&gt;It’s been quite a long time since my previous content creator workflow update, more than a year actually, &lt;a href=&#34;https://world.numericcitizen.io/content-creator-workflow-update-as-of-2023-11&#34;&gt;back in November 2023&lt;/a&gt;. With 2024 coming to an end, it&amp;rsquo;s time for a detailed update. First, consider the following overall diagram, then continue reading.&lt;/p&gt;
&lt;p&gt;&lt;div class=&#34;nc-image-wrap&#34;&gt;
  &lt;img src=&#34;https://blog.numericcitizen.me/uploads/2024/-my-content-creator-workflowdigital-tools.001-optimised.png&#34;
    alt=&#34;An overview of my digital tools and workflows. &#34;
    loading=&#34;lazy&#34;
    decoding=&#34;async&#34;&gt;
  &lt;span class=&#34;nc-image-caption&#34; aria-hidden=&#34;true&#34;&gt;An overview of my digital tools and workflows. &lt;/span&gt;
&lt;/div&gt;
&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Outlining purposes&lt;/strong&gt;: Zavala, a free open-source outliner, is nearly perfect for outlining YouTube video production. I don’t do detailed scripting before recording videos, but I like to create the outline. I was using Zavala until the release of Mindnote Next, but this might change. Mindnote is a superbly designed mind-mapping application that also supports the creation of outlines, which are more beautiful than those created in Zavala. One of Zavala&amp;rsquo;s strengths is that it is free but also easily exports a document into Craft via a simple drag-and-drop. I will see how it goes in 2025.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Presentation purposes&lt;/strong&gt;: iA Presenter offers a unique approach to presentation creation. I rarely use presentation software outside of my day job, but when I do, it supports me while recording a YouTube video. A recent update to iA Presenter introduced an online presentation sharing feature that works really well and is beautifully implemented. For 2025, I&amp;rsquo;ll try to take advantage of this. iA Presenter is such a unique take on a very old software category I must keep trying to find a use for it.&lt;/p&gt;
&lt;img src=&#34;https://cdn.uploads.micro.blog/143495/2025/-iapresenter1.4-optimised.png.png&#34; width=&#34;600&#34; height=&#34;394&#34; alt=&#34;&#34;&gt;
&lt;p&gt;&lt;strong&gt;Website site analytics&lt;/strong&gt;: &lt;a href=&#34;https://tinylyics.app&#34;&gt;Tinylytics&lt;/a&gt; joins Plausible in my toolset. I was happy with Plausible until this year, but &lt;a href=&#34;https://social.vincentritter.com/&#34;&gt;the developer of Tinylytics&lt;/a&gt; is also the developer of &lt;a href=&#34;https://scribbles.page&#34;&gt;Scribble.pages&lt;/a&gt;, a blog hosting service I really like. I decided to subscribe to Tinylytics as a support gesture for all his hard work building simple yet valuable web services.&lt;/p&gt;
&lt;img src=&#34;https://cdn.uploads.micro.blog/143495/2025/-tinylytics-optimised.png.png&#34; width=&#34;600&#34; height=&#34;336&#34; alt=&#34;&#34;&gt;
&lt;p&gt;&lt;strong&gt;Web bookmark management&lt;/strong&gt;: I’m happy to introduce Anybox. Sure, it&amp;rsquo;s not raindrop.io, but it&amp;rsquo;s a great native Mac app, also available on the iPad and the iPhone. That&amp;rsquo;s all I need. My collection has less than four hundred bookmarks, all organized using folders and tags. It&amp;rsquo;s nothing fancy but practical.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;RSS feeds publishing&lt;/strong&gt;: FeedPress is a simple yet effective way for adding a unified feed in front of all my different websites (Ghost, Micro.blog, Scribbles, Medium). Also, I offer an RSS megafeed that encompasses all my other individual RSS feeds, which can be found here: &lt;a href=&#34;https://feeds.numericcitizen.me&#34;&gt;https://feeds.numericcitizen.me&lt;/a&gt;. The added value of using FeedPress is to enable RSS feed analytics, which other publishing platforms like Micro.blog, for example, won&amp;rsquo;t provide.&lt;/p&gt;
&lt;img src=&#34;https://cdn.uploads.micro.blog/143495/2025/-feedpressrssanalytics-optimised.png.png&#34; width=&#34;600&#34; height=&#34;366&#34; alt=&#34;&#34;&gt;
&lt;p&gt;&lt;strong&gt;Podcasting purposes&lt;/strong&gt;: Micro.blog is now my podcast hosting service of choice. The feature is built-in and very simple to configure and use. There are two ways for me to share a podcast episode: either use the narrated post feature of Micro.blog or use a traditional workflow, build an audio file using Screenflow, post-process it in &lt;a href=&#34;https://podcast.adobe.com/&#34;&gt;Adobe Podcast&lt;/a&gt;, and convert it from WAV to MP3 using Permute before uploading the audio file to Micro.blog.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Files-hosting and cloud storage service&lt;/strong&gt;: Dropshare will upload a file to Backblaze cloud storage, and &lt;a href=&#34;Short.io&#34;&gt;Short.io&lt;/a&gt; will shorten the resulting URL. All my files are shared under the following domain name: &lt;a href=&#34;https://go.numericcitizen.me&#34;&gt;https://go.numericcitizen.me&lt;/a&gt;, using my custom branding. Here is an example: &lt;a href=&#34;https://go.numericcitizen.me/PLx2st2Y&#34;&gt;https://go.numericcitizen.me/PLx2st2Y&lt;/a&gt;. This workflow was implemented in 2024 and works well. The only thing is that I don&amp;rsquo;t use it often enough, and it can compete with &lt;a href=&#34;https://cleanshot.cloud/&#34;&gt;CleanShot Cloud&lt;/a&gt;, which I use more often when sharing screenshots or short video clips. Those media files are using the following URL: &lt;a href=&#34;https://cloud.numericcitizen.me.&#34;&gt;cloud.numericcitizen.me.&lt;/a&gt;&lt;/p&gt;
&lt;img src=&#34;https://cdn.uploads.micro.blog/143495/2025/-numeric-citizen-cloud-storege-optimised.png&#34; width=&#34;600&#34; height=&#34;417&#34; alt=&#34;&#34;&gt;
&lt;p&gt;&lt;strong&gt;Specialized blog hosting&lt;/strong&gt;: Micro.blog. I created a metablog on Micro.blog using one of the five blogs in my Micro.blog subscription. As you can conclude, I&amp;rsquo;m increasing my foothold on Micro.blog because it is cheap, effective and unique on the market.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Read-later service&lt;/strong&gt;: I removed Omnivore because the service is no longer being developed, and I decided to focus on Inoreader instead. It&amp;rsquo;s not a perfect solution, but it is a cheaper one. I still depend on Readwise to sync text highlights from Inoreader.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Another blog hosting service&lt;/strong&gt;, Scribbles, was. I’m using it to host short-form posts called Blips or longer ones using the /Now spirit under the following URL: &lt;a href=&#34;https://blips.numericctizen.me&#34;&gt;https://blips.numericctizen.me&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;One-page website hosting&lt;/strong&gt;: &lt;a href=&#34;https://hub.numericcitizen.me&#34;&gt;Numeric Citizen Hub&lt;/a&gt; on Micro.blog has replaced my Linktr.ee page. I&amp;rsquo;m again focusing on Micro.blog for many of my online publishing needs while saving some money along the way. This one-page website is for hosting my visitor card, sort of. Micro.blog offers support for one-page websites, so I&amp;rsquo;m taking advantage of this.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;When saving bookmarks on Miicro.blog&lt;/strong&gt;, I take advantage of text highlights while reading the article that Micro.blog is keeping from the bookmark. Text highlights are synced to Readwise, too.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Website for my supporters&lt;/strong&gt;: For prople who wants to show their support for my work, I have built a Ko-fi page that can be reached here: &lt;a href=&#34;https://ko-fi.com/numericcitizen&#34;&gt;https://ko-fi.com/numericcitizen&lt;/a&gt;. It was created for the one dollars a month club initiative from &lt;a href=&#34;https://manuelmoreale.com/&#34;&gt;Manuel Moreale&lt;/a&gt;. I&amp;rsquo;m one of his supporter.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Document writing and editing needs&lt;/strong&gt;: Craft &amp;amp; Ulysses. Both apps are still at the center of my publishing needs. More than ever, I depend on Craft to gather my thoughts and notes, research, and write. Ultimately, content is exported into Ulysses for publishing to either Ghost, Micro.blog or, more recently, Medium.&lt;/p&gt;
&lt;img src=&#34;https://cdn.uploads.micro.blog/143495/2025/-my-craft-ecosystem-optimised.png&#34; width=&#34;600&#34; height=&#34;662&#34; alt=&#34;Auto-generated description: A digital mind map connects various productivity and content creation apps like Anybox, Mindnode, and Ulysses to Craft, highlighting their functionalities.&#34;&gt;
&lt;p&gt;&lt;strong&gt;Behind-the-scenes newcomers&lt;/strong&gt;: Apple Freeform plays a more prominent role in helping me create diagrams. Freeform is joining Mindnote and Keynote for creating visual content when needed.&lt;/p&gt;
&lt;img src=&#34;https://cdn.uploads.micro.blog/143495/2025/-applefreeform-optimised.png.png&#34; width=&#34;600&#34; height=&#34;403&#34; alt=&#34;Auto-generated description: A desktop application interface displays a design concept for a web clipping tool with labeled features and a colorful button layout against a gradient background.&#34;&gt;
&lt;p&gt;&lt;strong&gt;These are gone&lt;/strong&gt;: All my domain name registrations are now entirely moved to Cloudflare, and gone is GoDaddy. Omnivore is being phased out by its developers; it’s gone, too.&lt;/p&gt;
&lt;h2 id=&#34;until-next-time&#34;&gt;Until next time&lt;/h2&gt;
&lt;p&gt;The continuous evolution of toolsets reflects the dynamic nature of technology and the diverse needs of users. No toolset is flawless, and each comes with its own set of strengths and weaknesses. This notion is evident in your evolving content creator workflow, where you adapt and integrate new tools, illustrating digital tools’ perpetual state of change. For 2025, I don&amp;rsquo;t expect too much change in my workflows. Don’t forget to visit &lt;a href=&#34;https://world.numericcitizen.io/meta-toolset&#34;&gt;my complete content creator toolset&lt;/a&gt; if you are curious about the individual tools that I&amp;rsquo;m using.&lt;/p&gt;
&lt;p&gt;This document is also available as a &lt;a href=&#34;https://world.numericcitizen.io/content-creation-workflow-and-digital-tools-edition-2024-12&#34;&gt;Craft shared document&lt;/a&gt;.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://meta.numericcitizen.me/2024/09/02/for-those-who.html</link>
      <pubDate>Mon, 02 Sep 2024 08:15:52 -0400</pubDate>
      
      <guid>http://numericcitizen-meta.micro.blog/2024/09/02/for-those-who.html</guid>
      <description>&lt;p&gt;For those who didn&amp;rsquo;t know, I maintain a description of all the apps and services that I use on &amp;ldquo;&lt;a href=&#34;https://world.numericcitizen.io/meta-toolset&#34;&gt;My Complete Content Creator Toolset And Some More&lt;/a&gt;&amp;rdquo; page.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://meta.numericcitizen.me/2024/07/14/bye-bye-hookmark.html</link>
      <pubDate>Sun, 14 Jul 2024 14:27:58 -0400</pubDate>
      
      <guid>http://numericcitizen-meta.micro.blog/2024/07/14/bye-bye-hookmark.html</guid>
      <description>&lt;p&gt;Bye bye &lt;strong&gt;Hookmark&lt;/strong&gt;, apparently my current subscription ended. I cannot justify subscribing to this app just to be able to browse hookmark files created when my subscription was active. I&amp;rsquo;ll need to update some of my Craft templates to remove all my hookmark file references. Tedious.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://meta.numericcitizen.me/2024/06/15/i-spent-some.html</link>
      <pubDate>Sat, 15 Jun 2024 08:07:05 -0400</pubDate>
      
      <guid>http://numericcitizen-meta.micro.blog/2024/06/15/i-spent-some.html</guid>
      <description>&lt;p&gt;I spent some time this morning to update my content creator toolset &lt;a href=&#34;https://world.numericcitizen.io/meta-toolset&#34;&gt;mini website&lt;/a&gt;. It was long overdue.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Combining Craft And Things 3 For My Writing Projects</title>
      <link>https://meta.numericcitizen.me/2024/05/27/combining-craft-and.html</link>
      <pubDate>Mon, 27 May 2024 20:25:53 -0400</pubDate>
      
      <guid>http://numericcitizen-meta.micro.blog/2024/05/27/combining-craft-and.html</guid>
      <description>&lt;p&gt;This article is about how I’m using Craft and Things 3, which is behind any short or long article I share online. Here is what happens when I get a new post idea.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;In Things 3, Create an entry and set priority and desired or expected date of publication if known.&lt;/li&gt;
&lt;li&gt;In Craft, I create a new document, set the title and then copy the document’s deeplink to the clipboard.&lt;/li&gt;
&lt;li&gt;Still within Craft, I move the newly created document to the appropriate folder.&lt;/li&gt;
&lt;li&gt;Still within Craft, I update my private creator dashboard document optionally.&lt;/li&gt;
&lt;li&gt;Back to Things 3, and I paste the deeplink into the note field. It&amp;rsquo;s handy to jump from Things 3 to Craft with a single tap.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;At this point, I can start my research, writing and editing of my article or blog post in Craft. Now, here is what happens after publishing my article:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Mark the to-do item as done in Things 3.&lt;/li&gt;
&lt;li&gt;I update my private creator dashboard document by converting my deeplink to a new permalink that I put in the Recently Published section.&lt;/li&gt;
&lt;li&gt;I monitor the appropriate RSS feed for quality control. See &lt;a href=&#34;https://numericcitizen.me/three-reasons-why-i-subscribe-to-my-own-rss-feeds/&#34;&gt;this article&lt;/a&gt; about subscribing to my own RSS feeds.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;There you have it. Craft plays a central role in my blogger workflow&lt;sup id=&#34;fnref:1&#34;&gt;&lt;a href=&#34;#fn:1&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;1&lt;/a&gt;&lt;/sup&gt;. This blog post exposes what happens at the beginning and at the end of a new post idea. I hope you enjoyed it and maybe learned something.&lt;/p&gt;
&lt;div class=&#34;footnotes&#34; role=&#34;doc-endnotes&#34;&gt;
&lt;hr&gt;
&lt;ol&gt;
&lt;li id=&#34;fn:1&#34;&gt;
&lt;p&gt;Not all blog posts start in Craft. Far from it.&amp;#160;&lt;a href=&#34;#fnref:1&#34; class=&#34;footnote-backref&#34; role=&#34;doc-backlink&#34;&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
</description>
    </item>
    
    <item>
      <title>Combining Craft And Things 3 For My Writing Projects</title>
      <link>https://meta.numericcitizen.me/2024/05/07/combining-craft-and-things-for.html</link>
      <pubDate>Tue, 07 May 2024 20:00:00 -0400</pubDate>
      
      <guid>http://numericcitizen-meta.micro.blog/2024/05/07/combining-craft-and-things-for.html</guid>
      <description>&lt;p&gt;This article is about how I’m using Craft and Things 3, which is behind any short or long article I share online. Here is what happens when I get a new post idea.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;In Things 3, Create an entry and set priority and desired or expected date of publication if known.&lt;/li&gt;
&lt;li&gt;In Craft, I create a new document, set the title and then copy the document’s deeplink to the clipboard.&lt;/li&gt;
&lt;li&gt;Still within Craft, I move the newly created document in the appropriate folder.&lt;/li&gt;
&lt;li&gt;Still within Craft, I optionally update my private creator dashboard document.&lt;/li&gt;
&lt;li&gt;Back to Things 3 and I paste the deeplink in the note field. It&amp;rsquo;s handy to jump from Things 3 to Craft with a single tap.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;At this point, I can start my research, writing and editing of my article or blog post in Craft. Now, here is what happens after publishing my article:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Mark the to-do item as done in Things 3.&lt;/li&gt;
&lt;li&gt;I update my private creator dashboard document by converting my deeplink to a new a permalink that I put in the Recently Published section.&lt;/li&gt;
&lt;li&gt;I monitor the appropriate RSS feed for quality control. See &lt;a href=&#34;https://numericcitizen.me/three-reasons-why-i-subscribe-to-my-own-rss-feeds/&#34;&gt;this article&lt;/a&gt; about subscribing to my own RSS feeds.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;There you have it. Craft plays a central role in My Blogger Workflow. This blog post exposes what happens at the beginning and at the end of a new post idea. I hope you enjoyed it and maybe learned something.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title></title>
      <link>https://meta.numericcitizen.me/2024/03/10/if-you-want.html</link>
      <pubDate>Sun, 10 Mar 2024 09:55:49 -0400</pubDate>
      
      <guid>http://numericcitizen-meta.micro.blog/2024/03/10/if-you-want.html</guid>
      <description>&lt;p&gt;If you want a peak at my current reading notes management workflow, you might find &lt;a href=&#34;https://youtu.be/wZCgVYwqz8E&#34;&gt;this video&lt;/a&gt; interesting (Craft, Bear 2, Omnivore, Readwise).&lt;/p&gt;
&lt;div style=&#34;position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;&#34;&gt;
      &lt;iframe allow=&#34;accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share; fullscreen&#34; loading=&#34;eager&#34; referrerpolicy=&#34;strict-origin-when-cross-origin&#34; src=&#34;https://www.youtube.com/embed/wZCgVYwqz8E?autoplay=0&amp;amp;controls=1&amp;amp;end=0&amp;amp;loop=0&amp;amp;mute=0&amp;amp;start=0&#34; style=&#34;position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;&#34; title=&#34;YouTube video&#34;&gt;&lt;/iframe&gt;
    &lt;/div&gt;

</description>
    </item>
    
    <item>
      <title>My Content Creator Workflow as of 2023-11</title>
      <link>https://meta.numericcitizen.me/2023/11/24/my-content-creator-workflow-as.html</link>
      <pubDate>Fri, 24 Nov 2023 07:00:00 -0400</pubDate>
      
      <guid>http://numericcitizen-meta.micro.blog/2023/11/24/my-content-creator-workflow-as.html</guid>
      <description>&lt;p&gt;&lt;div class=&#34;nc-image-wrap&#34;&gt;
  &lt;img src=&#34;https://res.craft.do/user/full/2af24264-e3c1-fb23-4d31-e2491112f9ab/doc/4B0A4B79-C27F-40AF-B4EF-9E12289BEED7/4A09186B-F11A-4507-BC28-7B323532D60C_2/iyrNCc5crRtrsiLkCE703Ho9QZWzcGPcTOGyF2cYFz0z/My-Creative-Workflow-2023-11.png&#34;
    alt=&#34;My-Creative-Workflow-2023-11.png&#34;
    loading=&#34;lazy&#34;
    decoding=&#34;async&#34;&gt;
  &lt;span class=&#34;nc-image-caption&#34; aria-hidden=&#34;true&#34;&gt;My-Creative-Workflow-2023-11.png&lt;/span&gt;
&lt;/div&gt;
&lt;/p&gt;
&lt;p&gt;My creative workflow as of 2023-11. You can download an higher resolution &lt;a href=&#34;https://go.numericcitizen.me/BL815C7x&#34;&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;This 2023-11 version has a few changes and a cleaner and more focused workflow. Before going into specific details, I wanted to remind readers that I support the &amp;quot; POSSE &amp;quot; idea. You can read one post about it &lt;a href=&#34;https://blog.numericcitizen.me/2023/11/18/the-danger-of.html&#34;&gt;here&lt;/a&gt;. This workflow presented reflects this. As a reminder, here is one definition of the POSSE principle according to ChatGPT:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&amp;ldquo;POSSE&amp;rdquo; is an acronym that stands for &amp;ldquo;Publish (on your) Own Site, Syndicate Elsewhere.&amp;rdquo; It&amp;rsquo;s a content publishing model that first encourages publishing content on your own website, and then syndicating (or sharing) that content on other platforms or websites. This approach is often recommended in digital marketing and personal branding strategies, as it allows individuals to maintain control over their original content while still benefiting from the audience and engagement found on larger, established platforms. The POSSE model is particularly relevant in the context of blogging, social media, and online content creation.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2 id=&#34;welcome-ai-welcome-chatgpt-dall-e-midjourney&#34;&gt;Welcome AI, welcome ChatGPT, Dall-E, Midjourney&lt;/h2&gt;
&lt;p&gt;AI is making an official entry in my creative workflow. I wrote a long piece stating &lt;a href=&#34;https://numericcitizen.me/my-personal-guiding-principles-for-using-ai-tools-and-services/&#34;&gt;my guidelines&lt;/a&gt; for using AI in my creative work. You should read those and maybe get some inspiration out of them. The header image of this article was generated using Dall-E.&lt;/p&gt;
&lt;h2 id=&#34;a-new-setup-to-share-files-easily&#34;&gt;A new setup to share files easily&lt;/h2&gt;
&lt;p&gt;Dropshare coupled with Short.io enables me to share files like screenshots or other things. The setup was documented in detail in a previous article on &lt;a href=&#34;https://world.numericcitizen.io/meta&#34;&gt;this meta blog&lt;/a&gt;. Behind the scene, Dropshare is configured to use Backblaze to store files in a S3 bucket.&lt;/p&gt;
&lt;h2 id=&#34;bye-bye-to-my-digital-garden&#34;&gt;Bye bye to my Digital Garden&lt;/h2&gt;
&lt;p&gt;I came to the conclusion that a digital garden isn’t something for me. I decided to move some portions into &lt;a href=&#34;https://whois.numericcitizen.me&#34;&gt;my official about page&lt;/a&gt;. You can still access the remains of the garden, &lt;a href=&#34;https://crafted.numericcitizen.me/digitalgarden&#34;&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&#34;a-fun-experience-with-tinylytics&#34;&gt;A fun experience with Tinylytics&lt;/h2&gt;
&lt;p&gt;I’ve been using Plausible for my analytics needs but a cool guy (the same who’s also working with Manton Reece on Micro.blog hosting service, developed a lightweight version which I decided to support.&lt;/p&gt;
&lt;p&gt;&lt;div class=&#34;nc-image-wrap&#34;&gt;
  &lt;img src=&#34;https://res.craft.do/user/full/2af24264-e3c1-fb23-4d31-e2491112f9ab/doc/0C65FE84-B859-4058-84BD-400F443550B7/ED5F9C05-26DF-4FEC-95A8-9D7A1F70893B_2/NxQhTbJdw3vjgMHPzRkhxwZra2NZZ7rH3e7cD5fkUJkz/Safari-Personal%20Default%20%20Sites%20%20tinylytics2023-11-2320.13.492x.png&#34;
    alt=&#34;Safari-Personal (Default) — Sites tinylytics@2023-11-23@20.13.49@2x.png&#34;
    loading=&#34;lazy&#34;
    decoding=&#34;async&#34;&gt;
  &lt;span class=&#34;nc-image-caption&#34; aria-hidden=&#34;true&#34;&gt;Safari-Personal (Default) — Sites tinylytics@2023-11-23@20.13.49@2x.png&lt;/span&gt;
&lt;/div&gt;
&lt;/p&gt;
&lt;p&gt;The Tinylytics dashboard&lt;/p&gt;
&lt;h2 id=&#34;google-sheets-is-out-too&#34;&gt;Google Sheets is out too&lt;/h2&gt;
&lt;p&gt;I was using Google Sheets to save links to every post on Micro.blog via an IFTTT automation. I no longer feel the need to key this in place.&lt;/p&gt;
&lt;h2 id=&#34;brief&#34;&gt;Brief&lt;/h2&gt;
&lt;p&gt;Brief is now part of my workflow because they also took over Mailbrew, both are forming a powerful content consumption enabler duo. Some of my Mailbrew newsletters contain Brief as a source for news, which is heavily using AI for summarization.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Why It’s So Hard to Make Up My Mind About Digital Tools?</title>
      <link>https://meta.numericcitizen.me/2023/05/07/why-its-so-hard-to.html</link>
      <pubDate>Sun, 07 May 2023 10:00:00 -0400</pubDate>
      
      <guid>http://numericcitizen-meta.micro.blog/2023/05/07/why-its-so-hard-to.html</guid>
      <description>&lt;p&gt;This &lt;a href=&#34;https://blog.numericcitizen.me/2022/05/07/my-reading-workflow.html&#34;&gt;article&lt;/a&gt; posted back in 2022, was a glimpse at a great moment of confusion. Following the publication of “&lt;a href=&#34;http://numericcitizen.me/2022/07/03/things-that-dont-stick-with-me/&#34;&gt;Things That Don’t Stick With Me&lt;/a&gt;”, the next logical thing to do now is to talk about my seemingly permanent state of confusion with my choices of many digital tools.&lt;/p&gt;
&lt;p&gt;In short, the problem is that, in many cases, I use different apps to do the same thing. The worst case to come to my mind is RSS feeds readers. After many years with &lt;strong&gt;News Explorer&lt;/strong&gt;, I tried &lt;strong&gt;NetNewsWire&lt;/strong&gt;, &lt;strong&gt;Reeder&lt;/strong&gt; and &lt;strong&gt;Inoreader&lt;/strong&gt;. Oh, I forgot about &lt;strong&gt;ReadKit&lt;/strong&gt; too. The light at the end of the tunnel is in sight because News Explorer is now out. After discovering and experimenting with Inoreader, I concluded that News Explorer no longer fit my needs. One of them being the text-highlighting capability. That is one less app to use or consider. NetNewsWire simplicity makes the app attractive. Reeder’s design is also attractive. I do use Inoreader with Inoreader web service. I’m not decided yet on the next steps: which one should I keep?&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Twitter&lt;/strong&gt; vs &lt;strong&gt;Tweetbot&lt;/strong&gt; was another example. When I was on Twitter, I constantly switched between those two. The funny thing is that for those still on Twitter, third-party apps for Twitter are all dead. This would have fixed my issue! Now, with &lt;strong&gt;Mastodon&lt;/strong&gt;, it’s worst because of the plethora of available apps. There are too many to list here and the list keeps expanding. Thankfully, I don’t use Mastodon much, but if I did, well, you know the drill by now, right?&lt;/p&gt;
&lt;p&gt;On Micro.blog, same issue. I’m constantly moving between the original &lt;strong&gt;Micro.blog&lt;/strong&gt; app and &lt;strong&gt;Gluon&lt;/strong&gt;. Both are great but latter is a bit more complete.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Box&lt;/strong&gt; and &lt;strong&gt;Dropbox&lt;/strong&gt; used to be examples of my indecision before I went all in with &lt;strong&gt;iCloud Drive&lt;/strong&gt; a few years ago. I still use &lt;strong&gt;Google’s Drive&lt;/strong&gt; for storing Google’s Sheets updated via an IFTTT automation. That, I’m no longer sure about its usefulness.&lt;/p&gt;
&lt;p&gt;Clipboard managers were another source of conflicting views. There were three apps in that space: &lt;strong&gt;Copied&lt;/strong&gt;, &lt;strong&gt;Pastebot&lt;/strong&gt; and &lt;strong&gt;Unclutter&lt;/strong&gt;. I’ve settled on the latter because it is so much more than a clipboard manager. Yet, it took me way too long before deciding which one to keep. I don&amp;rsquo;t use a clipboard manager on the iPhone anymore.&lt;/p&gt;
&lt;p&gt;&lt;div class=&#34;nc-image-wrap&#34;&gt;
  &lt;img src=&#34;https://res.craft.do/user/full/2af24264-e3c1-fb23-4d31-e2491112f9ab/doc/4B0A4B79-C27F-40AF-B4EF-9E12289BEED7/41d9a2a6-5830-b345-9bf8-84a6ee505dea/72mCbnCj3NhwRBEgnEvyJOyki2FkuRlGx1txxxdKBLEz/Image.png&#34;
    alt=&#34;Unclutter window on my Mac — Three Areas: the clipboard history, content of a folder and content of a specific text file.&#34;
    loading=&#34;lazy&#34;
    decoding=&#34;async&#34;&gt;
  &lt;span class=&#34;nc-image-caption&#34; aria-hidden=&#34;true&#34;&gt;Unclutter window on my Mac — Three Areas: the clipboard history, content of a folder and content of a specific text file.&lt;/span&gt;
&lt;/div&gt;
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Here&amp;rsquo;s another one: Apple’s &lt;strong&gt;Notes&lt;/strong&gt;, &lt;strong&gt;Notion&lt;/strong&gt; or &lt;strong&gt;Craft&lt;/strong&gt;. I use Craft 95% of the time, Notes 4% of the time, and Notion 1% for the rest. Oh, I forgot to mention &lt;strong&gt;Tot&lt;/strong&gt;, a nifty tech editor! What is preventing me from settling on Craft for everything? I use Notion for storing information about a sideline project because Craft is not as good for that type of information.&lt;/li&gt;
&lt;li&gt;For my photo processing and retouching needs: &lt;strong&gt;Acorn 7&lt;/strong&gt;, &lt;strong&gt;Pixelmator Pro&lt;/strong&gt;, &lt;strong&gt;Photomator&lt;/strong&gt;, &lt;strong&gt;Adobe Lightroom CC&lt;/strong&gt; and &lt;strong&gt;Lightroom Classic&lt;/strong&gt; are installed somewhere on my devices. I should probably drop Adobe Suite, but It would be a mess to retrieve all my photos backed up to the Adobe Cloud. I’m being lazy here. I’m really enjoying Photomator on my iPad and iPhone. This application is better designed than Apple&amp;rsquo;s Photos for photo editing. Photomator is coming soon to the Mac, too, apparently, to make matters worst, I guess. I&amp;rsquo;m on the waiting list for a TestFlight invite.&lt;/li&gt;
&lt;li&gt;As a computer performance enthusiast, I use utilities like &lt;strong&gt;Sensei&lt;/strong&gt;, &lt;strong&gt;iStats Menu&lt;/strong&gt;, &lt;strong&gt;iStatistica Pro&lt;/strong&gt;, and the open-source project “&lt;strong&gt;Stats&lt;/strong&gt;” available on GitHub. I use iStats Menu on my Mac mini, Stats on my Mac Pro (used for &lt;a href=&#34;https://world.numericcitizen.io/sddcbox-project-reboot&#34;&gt;my SDDCbox project&lt;/a&gt;) and iStatistica Pro on my MacBook Air. Sensei should probably be dropped.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;div class=&#34;nc-image-wrap&#34;&gt;
  &lt;img src=&#34;https://res.craft.do/user/full/2af24264-e3c1-fb23-4d31-e2491112f9ab/doc/4B0A4B79-C27F-40AF-B4EF-9E12289BEED7/b963aff9-c1ff-fa40-ff2f-3a7e39e32a4d/dynR7vsksfPDHNeQk6ol0vxQTa5LSpWbEuj6kODodmkz/Image.png&#34;
    alt=&#34;Image.png&#34;
    loading=&#34;lazy&#34;
    decoding=&#34;async&#34;&gt;
  &lt;span class=&#34;nc-image-caption&#34; aria-hidden=&#34;true&#34;&gt;Image.png&lt;/span&gt;
&lt;/div&gt;
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Reddit,&lt;/strong&gt; &lt;strong&gt;Apollo&lt;/strong&gt;, &lt;strong&gt;Slide&lt;/strong&gt; and &lt;strong&gt;Comet&lt;/strong&gt;. There are all Reddit clients. They all offer nice and different things when consuming or interacting with Reddit content. For example, Slide comes with the best widgets, but is lacking active development and isn&amp;rsquo;t the best at browsing content. Comet isn&amp;rsquo;t been updated in two years. Apollo runs on Apple Silicon Macs but suffers from some display bugs.&lt;/li&gt;
&lt;li&gt;Password Managers, another story of indecision and laziness: &lt;strong&gt;1Password&lt;/strong&gt; and Apple’s &lt;strong&gt;Password Keychain&lt;/strong&gt;. I should move from 1Password to Apple’s solution once and for all. Maybe if Apple had a discreet password manager? I’m undecided.&lt;/li&gt;
&lt;li&gt;Tasks managers represent another case of spreading myself all over the place. For personal to-dos, I depend on &lt;strong&gt;Apple’s Reminders&lt;/strong&gt;. For my creative workflow, I depend on &lt;strong&gt;Things 3&lt;/strong&gt; but there was a time last year when I tried using Craft as a to-do manager. It didn’t go well, and I decided to bring back Things 3 in my workflow. I documented my change of heart in &lt;a href=&#34;https://youtu.be/GnKA9XyMaZg&#34;&gt;this video&lt;/a&gt;. One comforting thought, I know that I&amp;rsquo;m not alone in my quest for the best tools. This &lt;a href=&#34;https://www.curtisfamily.org.uk/technology/things-omnifocus-a-personal-story/&#34;&gt;documented case&lt;/a&gt; with Things 3 and OmniFocus is a good example.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;there-is-hope&#34;&gt;There is hope&lt;/h2&gt;
&lt;p&gt;I might sound like a tormented person, but I’m not. I would say that I’m not as focused as I should be. But there is hope because I do make decisions from time to time when things become clear or obvious. Let’s see a few examples.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;On the publishing platforms front, things are improving. Thankfully, this year, I’m focusing. There use to be &lt;strong&gt;WordPress&lt;/strong&gt;, &lt;strong&gt;Micro.blog&lt;/strong&gt;, &lt;strong&gt;Substack&lt;/strong&gt;, &lt;strong&gt;Ghost&lt;/strong&gt;, &lt;strong&gt;Blot&lt;/strong&gt; and &lt;strong&gt;Write.as&lt;/strong&gt;. WordPress is out. Substack is out. Blot is out. I’m down to two publishing platforms: Ghost and Micro.blog. That’s it. Sure, i cross-post some content to Mastodon, Bluesky and Flipboard. But that doesn’t count.&lt;/li&gt;
&lt;li&gt;On the photography side, at some point, there was &lt;strong&gt;500px&lt;/strong&gt;, &lt;strong&gt;Smugmug&lt;/strong&gt;, &lt;strong&gt;Unsplash&lt;/strong&gt;, &lt;strong&gt;Glass&lt;/strong&gt;, &lt;strong&gt;Exposure&lt;/strong&gt;. 500px is out. I decided to move out of Smugmug by the end of my subscription (next year), so that I can focus on Glass and Exposure.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;div class=&#34;nc-image-wrap&#34;&gt;
  &lt;img src=&#34;https://res.craft.do/user/full/2af24264-e3c1-fb23-4d31-e2491112f9ab/doc/4B0A4B79-C27F-40AF-B4EF-9E12289BEED7/41b95e3d-c609-b03b-77d2-3a25cc46b8d2/utHpHOROYVAUprCeJGBOPV8G5yxye06DRj24Lyv15UMz/Image.png&#34;
    alt=&#34;Image.png&#34;
    loading=&#34;lazy&#34;
    decoding=&#34;async&#34;&gt;
  &lt;span class=&#34;nc-image-caption&#34; aria-hidden=&#34;true&#34;&gt;Image.png&lt;/span&gt;
&lt;/div&gt;
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;I recently dropped &lt;strong&gt;Pocket&lt;/strong&gt;, &lt;strong&gt;Matter&lt;/strong&gt; and &lt;strong&gt;Readwise Reader&lt;/strong&gt;. So, you see, there is hope!&lt;/li&gt;
&lt;li&gt;For bookmarking, at some point, I was using Apple’s Safari &lt;strong&gt;Reading List&lt;/strong&gt;, &lt;strong&gt;Pocket&lt;/strong&gt;, &lt;strong&gt;Craft bookmarks&lt;/strong&gt;, &lt;strong&gt;Apple’s Quick Notes&lt;/strong&gt;, and &lt;strong&gt;Mailbrew&lt;/strong&gt; saved items. I dropped all of these in the last year to focus on &lt;strong&gt;Anybox&lt;/strong&gt;. I couldn’t be happier. Oh, I sometimes use Micro.blog bookmarking feature to archive articles than I can highlight then create a linkpost using these highlights.&lt;/li&gt;
&lt;li&gt;Ever since I got my M1-based &lt;strong&gt;Mac mini&lt;/strong&gt;, I bought a M1 &lt;strong&gt;MacBook Air&lt;/strong&gt;. I constantly use both of them. One thing that I like to do is to use on app on one Mac and another competitive app on the other Mac. For example, on my MacBook Air, I use “Stats” and on my Mac mini, I use iStats Menu.&lt;/li&gt;
&lt;li&gt;iPad Pro vs MacBook Air: because &lt;a href=&#34;https://numericcitizen.me/coming-out-of-a-rabbit-hole-and-buying-two-macbook-air/&#34;&gt;reasons&lt;/a&gt;. I love both but in different usage scenarios. I’m fortunate enough to have both.&lt;/li&gt;
&lt;li&gt;My reading workflow was  in a state of flux: &lt;a href=&#34;https://numericcitizen.micro.blog/2022/05/07/my-reading-workflow.html&#34;&gt;https://numericcitizen.micro.blog/2022/05/07/my-reading-workflow.html&lt;/a&gt;. But, thanks to my decisions to drop traditional read-later services like Matter or Pocket, I&amp;rsquo;m more focused now in that area.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I should probably update this article occasionally because my digital toolkit is constantly evolving. You probably should keep an eye on &lt;a href=&#34;https://world.numericcitizen.io/meta-toolset&#34;&gt;my documented toolset&lt;/a&gt; that I keep up to date.&lt;/p&gt;
&lt;p&gt;This article was previously published on Numeric Citizen Space:&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://numericcitizen.me/why-its-so-hard-to-make-up-my-mind-about-digital-tools/&#34;&gt;Why It’s So Hard to Make Up My Mind About Digital Tools?&lt;/a&gt;&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>My Content Creator Workflow as of 2023-04</title>
      <link>https://meta.numericcitizen.me/2023/03/26/my-content-creator-workflow-as.html</link>
      <pubDate>Sun, 26 Mar 2023 07:00:00 -0400</pubDate>
      
      <guid>http://numericcitizen-meta.micro.blog/2023/03/26/my-content-creator-workflow-as.html</guid>
      <description>&lt;p&gt;Time for another workflow update (the previous update can be found &lt;a href=&#34;https://world.numericcitizen.io/content-creator-workflow-update-as-of-2022-12&#34;&gt;here&lt;/a&gt;). This update probably contains the most profound changes in a long time. My journey with WordPress as a CMS (content management platform) has ended. It started in 2015, after closing my indie developer blog hosted on Google’s Blogger. There are a lot of moving parts. The dust is starting to settle a bit now. Let’s dig in.&lt;/p&gt;
&lt;p&gt;&lt;div class=&#34;nc-image-wrap&#34;&gt;
  &lt;img src=&#34;https://res.craft.do/user/full/2af24264-e3c1-fb23-4d31-e2491112f9ab/doc/3DF03DEB-2A27-48F9-AAE2-6E379DF4180B/9d868d2f-4b3a-a30e-f487-f18a63d605d9/kdswLTHrFU1sj2XaWtFs1f8I1qFCEuSh3l6w11aymr4z/CleanShot-CleanShot2023-03-2620.05.482x.png&#34;
    alt=&#34;CleanShot-CleanShot@2023-03-26@20.05.48@2x.png&#34;
    loading=&#34;lazy&#34;
    decoding=&#34;async&#34;&gt;
  &lt;span class=&#34;nc-image-caption&#34; aria-hidden=&#34;true&#34;&gt;CleanShot-CleanShot@2023-03-26@20.05.48@2x.png&lt;/span&gt;
&lt;/div&gt;
&lt;/p&gt;
&lt;p&gt;As for the diagram, I wanted to make it more focused on digital tools and how they relate to each other, so I removed the devices representation as well as icons of apps that are better documented in my toolset (see down below). I kept the essential making the foundation of my workflow.&lt;/p&gt;
&lt;h2 id=&#34;bye-bye-wordpresscom&#34;&gt;Bye Bye WordPress.com&lt;/h2&gt;
&lt;p&gt;Following &lt;a href=&#34;https://world.numericcitizen.io/migrating-from-wordpress-to-ghost&#34;&gt;the completion of my migration from WordPress to Ghost&lt;/a&gt;, I think it’s the right time for an update to my content creator workflow. This WordPress migration forced a reconsideration of many tools that I use to create. This post will highlight most of these changes.&lt;/p&gt;
&lt;h2 id=&#34;bye-bye-twitter&#34;&gt;Bye bye Twitter&lt;/h2&gt;
&lt;p&gt;Up until a few months ago, Twitter was really at the center of my online presence. It’s no longer the case. It’s (nearly) nowhere to be seen (except for searches through Inoreader). With Twitter out from my digital landscape, the following are no longer needed.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Birdbrain, an iPhone app that allowed me to track who was following or unfollowing me.&lt;/li&gt;
&lt;li&gt;Buffer, a scheduling service to post content on Twitter. It was used to repost past content to stimulate exposure and traction. If I consider the price of the service, I don’t think the return on investment was worth it.&lt;/li&gt;
&lt;li&gt;My &lt;a href=&#34;https://micro.blog/Apple&#34;&gt;@Apple&lt;/a&gt;_Observer Twitter account is in read-only mode. My &lt;a href=&#34;https://micro.blog/numericcitizen&#34;&gt;@numericcitizen&lt;/a&gt; Twitter account is also in read-only mode but is used in conjunction with Inoreader for searching and scrapping Twitter for specific content using specific keywords.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;changing-reading-habits&#34;&gt;Changing reading habits&lt;/h2&gt;
&lt;p&gt;My reading habits are evolving too. Reading is the fuel behind my creative activities.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Speaking of Inoreader earlier, this content consumption service appeared on my radar and was later adopted. It is replacing News Explorer, an RSS reader. Inoreader allows for much more than reading RSS feeds. Reeder (read my review here) and ReadKit are two RSS readers that I use alternatively to consume my content on Inoreader simply because these two apps offer a native experience on the Mac that Inoreader currently doesn&amp;rsquo;t offer. I&amp;rsquo;m still undecided as to which of the two apps I&amp;rsquo;m going to keep. That&amp;rsquo;s for another content creator workflow update.&lt;/li&gt;
&lt;li&gt;Gone is Matter and Readwise Reader. Since I’m mostly reading content through RSS feeds, these two services are no longer needed. I keep Readwise highlights subscription, though. It serves as an archiving service of some sort. All text annotations by Inoreader are saved to Readwise.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;a-more-focused-publication-channel&#34;&gt;A more focused publication channel&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Content publishing services were also reconsidered. Medium is out. Spending time there’s no longer viable as readership is stagnant at best. Tumblr is out too. I was cross-posting content there, but it is no longer viable too. Even if it was an automated process, thanks to Micro.blog cross-posting ability and to IFTTT, it doesn&amp;rsquo;t make sense to maintain Tumblr as this platform is a walking dead.&lt;/li&gt;
&lt;li&gt;Back to the WordPress migration, for obvious reasons, all my WordPress plugins, like Yoast, are no longer needed. Many others were dropped, too, saving me quite a lot on recurring expenses. Yoast was useful when writing a blog post to optimize SEO content but added some friction and probably didn’t make a big difference for my SEO optimization aspirations.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;is-my-craft-usage-fading-out&#34;&gt;Is my Craft usage fading out?&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;My Craft usage is still important, but a few use cases were dropped. I don’t use daily notes to manage my things to do (as explained in this &lt;a href=&#34;https://youtu.be/GnKA9XyMaZg&#34;&gt;video&lt;/a&gt; “Why I’m No Longer Using Craft Daily Notes”). I went back to Things 3 for this. The other use case that was removed from Craft is bookmarks management, as explained in detail in &lt;a href=&#34;https://youtu.be/I6CFHFOH7mc&#34;&gt;this video&lt;/a&gt; “Why I&amp;rsquo;m Moving My Bookmarks Out of Craft”. Now, I&amp;rsquo;m depending on the excellent Anybox bookmarks manager, as I explained in this article: &amp;ldquo;&lt;a href=&#34;https://numeric-citizen-introspection.ghost.io/ghost/#/editor/post/641c812d022f30003d58d064&#34;&gt;Anybox – My Experience with a Bookmarks Manager&lt;/a&gt;”. Switching to Anybox also means I dropped Raindrop.io too. Even as a free service, it was redundant to keep.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Finally, since my tool set is always changing, I created and shared a Craft document where you can have a complete view of the apps and services I depend on to create things and put them out there on the net. You&amp;rsquo;ll also see tools that are under consideration and the tools that I dropped in the past. Link: &lt;a href=&#34;https://world.numericcitizen.io/meta-toolset&#34;&gt;https://world.numericcitizen.io/meta-toolset&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;div class=&#34;nc-image-wrap&#34;&gt;
  &lt;img src=&#34;https://res.craft.do/user/full/2af24264-e3c1-fb23-4d31-e2491112f9ab/doc/3DF03DEB-2A27-48F9-AAE2-6E379DF4180B/b4627840-e6a1-f696-65ad-4976d5210403/ghpHCq3yo3ryN1z6XpBJrcBkiyp6PiKQ6iKx4fto4RUz/Image.png&#34;
    alt=&#34;Image.png&#34;
    loading=&#34;lazy&#34;
    decoding=&#34;async&#34;&gt;
  &lt;span class=&#34;nc-image-caption&#34; aria-hidden=&#34;true&#34;&gt;Image.png&lt;/span&gt;
&lt;/div&gt;
&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>My Content Creator Workflow as of 2022-12</title>
      <link>https://meta.numericcitizen.me/2022/12/04/my-content-creator-workflow-as.html</link>
      <pubDate>Sun, 04 Dec 2022 10:00:00 -0400</pubDate>
      
      <guid>http://numericcitizen-meta.micro.blog/2022/12/04/my-content-creator-workflow-as.html</guid>
      <description>&lt;p&gt;It’s been a while since I shared details about my blogger creator workflow. From now on, I’m renaming it to “my content creator workflow” as it better reflects the coverage of my work. As you might expect, a lot has changed in a year. Without further due, let’s begin.&lt;/p&gt;
&lt;p&gt;&lt;img src=&#34;https://res.craft.do/user/full/2af24264-e3c1-fb23-4d31-e2491112f9ab/BA5FDE7C-204C-4C8A-9F39-335BEADD314E_2/j8rkvx5WDaUo2o4Tehz7wxE12SxwFN8rMLSf6hnL2dEz/My%20Blogger%20Workflow%20as%20of%202022-12.png&#34;
  alt=&#34;&#34;
  loading=&#34;lazy&#34;
  decoding=&#34;async&#34;&gt;
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Cleanshot Cloud&lt;/strong&gt; has been added to my toolset following an update to the Cleanshot application. I think it’s one of the best Mac utilities out there. I even wrote a &lt;a href=&#34;http://numericcitizen.me/2022/02/04/cleanshot-x-my-love-letter-to-the-best-macos-utility/&#34;&gt;love letter&lt;/a&gt;. The most recent update brings screenshots history which is really nice.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Raindrop.io&lt;/strong&gt; is making a small comeback using the free tier for storing non-text bookmarks like things to watch. I didn’t subscribe to the service, and I explain why in this blog post “&lt;a href=&#34;https://numericcitizen.me/2022/05/18/when-war-in-ukraine-influences-my-application-choices/&#34;&gt;When War in Ukraine Influences My Application Choices - Numeric Citizen Blog&lt;/a&gt;.” I rarely use it, but when needed, it&amp;rsquo;s there.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Notion&lt;/strong&gt; was dormant since I switched to Craft until recently when I started to use it more often in combination with IFTTT. I use it to store information like popular discussions about Craft on Reddit or YouTube videos that I liked. More details in &lt;a href=&#34;https://youtu.be/EbxXTUkE5mg&#34;&gt;this YouTube video&lt;/a&gt; that I made.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I became a subscriber of &lt;strong&gt;write.as&lt;/strong&gt; as explained in [this article](&lt;a href=&#34;https://numericcitizen-introspection.blog/friday-notes-63-i-writeas-myself/%5D(https://numericcitizen-introspection.blog/friday-notes-63-i-writeas-myself/)&#34;&gt;https://numericcitizen-introspection.blog/friday-notes-63-i-writeas-myself/](https://numericcitizen-introspection.blog/friday-notes-63-i-writeas-myself/)&lt;/a&gt;. There was a promotion earlier this year for a five-year subscription plan. I decided to make the plunge and give it a try. I’m using Write.as mostly when I’m musing about a very specific subject. The war in Ukraine has been one of those subjects. I like Write.as for its simplicity and its connection to Ghost, albeit without using it for every post.&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;https://write.as/numericcitizen/&#34;&gt;My write.as page&lt;/a&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Matter&lt;/strong&gt; is becoming more of a nice read-later service. I like it a lot. But then, the long-awaited Readwise Reader is coming into beta and looks like a serious contender. In Early October, I was finally able to try the Readwise Reader application. I like it a lot too, but it offers a quite different experience than Matter. Which one will stick with me is still unclear, though, like many things as I wrote in [this article](&lt;a href=&#34;https://numericcitizen.me/2022/07/03/things-that-dont-stick-with-me/&#34;&gt;numericcitizen.me/2022/07/0&amp;hellip;&lt;/a&gt;](&lt;a href=&#34;http://numericcitizen.me/2022/07/03/things-that-dont-stick-with-me/)&#34;&gt;http://numericcitizen.me/2022/07/03/things-that-dont-stick-with-me/)&lt;/a&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;The &lt;strong&gt;Reminders&lt;/strong&gt; app from Apple is removed from my workflow, as I&amp;rsquo;m trying to focus on fewer tools. Instead, I came back to using Things 3 for my weekly planning instead of relying on Craft’s to-do list and daily notes. What’s better than a task manager to manage… tasks? More details about this change in this YouTube Video “&lt;a href=&#34;https://youtu.be/GnKA9XyMaZg&#34;&gt;Why I’m No Longer Using Craft for My Daily Notes&lt;/a&gt;.”&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Vimeo&lt;/strong&gt; is out, but &lt;strong&gt;YouTube&lt;/strong&gt; is in for hosting a series of videos about Craft. I could see myself creating videos about other subjects too in the future. At the time of publishing, I made 35 videos so far, I currently have a bit less than 500 subscribers. My goal is to hit the 1000 mark within the first year of producing videos.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I settled on using a few Apple &lt;strong&gt;shortcuts&lt;/strong&gt; for storing web clips in Craft Inbox. I discovered &lt;strong&gt;&lt;a href=&#34;https://apps.apple.com/ca/app/markdownload/id1554029832?mt=12&#34;&gt;MarkDownload&lt;/a&gt;&lt;/strong&gt;, a Safari extension for downloading web articles in markdown files that are easy to import in Craft for reading and processing. CraftClip 1.3 is also in there for use on my iPad when I&amp;rsquo;m browsing the web and want to save an article for further processing and inclusion in Craft. My reading workflow is still in flux, though. I’m thorn between Matter and Readwise Reader. As described in my YouTube video, Craft plays an important role too as explained in this YouTube video “&lt;a href=&#34;https://youtu.be/xEe2FqIPABo&#34;&gt;My Reading Workflow Using Craft&lt;/a&gt;”&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;I closed my &lt;strong&gt;Blot.im&lt;/strong&gt; account and move to &lt;strong&gt;Craft&lt;/strong&gt; for hosting the Numeric Citizen I/O website, representing a 60$ savings that will serve to pay for the Craft Business plan. What if Blot.im disappeared? I asked myself this question &lt;a href=&#34;https://numericcitizen.me/2022/05/15/what-if-blotim-is-dead/&#34;&gt;recently&lt;/a&gt;.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;A side-effect of moving to Craft for hosting my content is the loss of RSS feed support.&lt;/li&gt;
&lt;li&gt;Blot.im was based on a GIT repo and for publishing I needed Nova, it has been removed from my workflow too as well as WorkingCopy for the iPad.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Commento&lt;/strong&gt; was disabled and closed on all my blogs after closing my Blot.im account (another 260$ of yearly savings) and when &lt;a href=&#34;https://ghost.org/changelog/native-comments/&#34;&gt;Ghost introduced native comments&lt;/a&gt;. I was never or very rarely used by visitors to post comments anyway. What a waste of time and money.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
</description>
    </item>
    
    <item>
      <title>Instapaper vs Pocket — Which Read Later Service is Better for Me</title>
      <link>https://meta.numericcitizen.me/2022/12/03/instapaper-vs-pocket.html</link>
      <pubDate>Sat, 03 Dec 2022 08:00:00 -0400</pubDate>
      
      <guid>http://numericcitizen-meta.micro.blog/2022/12/03/instapaper-vs-pocket.html</guid>
      <description>&lt;p&gt;As much as &lt;a href=&#34;https://numericcitizen.me/2021/03/12/craft-vs-notion-from-a-bloggers-perspective/&#34;&gt;I love Craft&lt;/a&gt;, its current version is unsuitable as a read-later solution. I do keep a list of bookmarks within Craft, but the article’s content is not fetched and saved into Craft, something Notion is able to do. This list is kept for other purposes, like helping me build my newsletter and other long-form articles. I need a better reading solution.&lt;/p&gt;
&lt;p&gt;Reading is something that requires the least distraction possible. Safari reader mode is great. I use it quite frequently to remove the noise from a webpage, but it lacks the highlighting feature of Instapaper or Pocket. Using a shortcut to save a text highlight is possible but distracting. This is where an app like Instapaper or Pocket comes into play. But which one is the best? For me, it is Pocket&lt;sup id=&#34;fnref:1&#34;&gt;&lt;a href=&#34;#fn:1&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;1&lt;/a&gt;&lt;/sup&gt;, here is a quick comparison of both solutions.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Pocket design is richer, while Instapaper&amp;rsquo;s is minimalistic, which could be seen as an advantage. Yet, Pocket is still frictionless for reading.&lt;/li&gt;
&lt;li&gt;Pocket updates are more frequent.&lt;/li&gt;
&lt;li&gt;Pocket is more expansive than Instapaper.&lt;/li&gt;
&lt;li&gt;IFTTT support is more extensive with Instapaper than it is with Pocket.&lt;/li&gt;
&lt;li&gt;Instapaper allows quick notes to be created next to the highlighted text. This could prove useful. Think of it as meta-highlighting.&lt;/li&gt;
&lt;li&gt;Instapaper seems stuck in the past when it was created by Marco Arment.&lt;/li&gt;
&lt;li&gt;Instapaper allows you to organize bookmarks into folders, something I wish Pocket would support. I’m a bit compulsive about organizing my content.&lt;/li&gt;
&lt;li&gt;Pocket supports iOS widgets, not Instapaper.&lt;/li&gt;
&lt;li&gt;Share sheet allows tagging with Pocket, which makes me more efficient.&lt;/li&gt;
&lt;li&gt;Page rendering seems better in Pocket.&lt;/li&gt;
&lt;li&gt;On the Mac, Instapaper Safari extension doesn’t work. It keeps asking me to authenticate with the application, which I did. See next observation.&lt;/li&gt;
&lt;li&gt;Both Pocket and Instapaper don’t support Sign in with Apple within the macOS application; only on the website. Because of this, the Instapaper is useless on the Mac, while Pocket supports creating a password for the account, which fixes this issue.&lt;/li&gt;
&lt;li&gt;Pocket offers a public profile page where article recommendations can be shared.&lt;/li&gt;
&lt;li&gt;I have more confidence in Pocket’s future and sustainability than in Instapaper’s.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The following screenshots are page rendering examples of the same article from both services.&lt;/p&gt;
&lt;p&gt;&lt;div class=&#34;nc-image-wrap&#34;&gt;
  &lt;img src=&#34;https://blog.numericcitizen.me/uploads/2024/-how-facebook-makes-money-instapaper-version.jpeg&#34;
    alt=&#34;Instapaper page rendering example.&#34;
    loading=&#34;lazy&#34;
    decoding=&#34;async&#34;&gt;
  &lt;span class=&#34;nc-image-caption&#34; aria-hidden=&#34;true&#34;&gt;Instapaper page rendering example.&lt;/span&gt;
&lt;/div&gt;
&lt;/p&gt;
&lt;p&gt;&lt;div class=&#34;nc-image-wrap&#34;&gt;
  &lt;img src=&#34;https://blog.numericcitizen.me/uploads/2024/-how-facebook-makes-money-pocket-version.jpeg&#34;
    alt=&#34;Pocket page rendering example.&#34;
    loading=&#34;lazy&#34;
    decoding=&#34;async&#34;&gt;
  &lt;span class=&#34;nc-image-caption&#34; aria-hidden=&#34;true&#34;&gt;Pocket page rendering example.&lt;/span&gt;
&lt;/div&gt;
&lt;/p&gt;
&lt;p&gt;If Craft is ever updated to extract an article from a website, allows tagging and highlighting, I’ll probably reconsider my use of Pocket. For now, I’m a very happy user of Pocket, &lt;a href=&#34;https://numericcitizen.micro.blog/2021/04/04/my-trick-to.html&#34;&gt;a service which helps me read more and better&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;My Pocket &lt;a href=&#34;https://getpocket.com/@numericcitizen&#34;&gt;profile&lt;/a&gt;. My Matter &lt;a href=&#34;https://getmatter.app/numericcitizen/&#34;&gt;profile&lt;/a&gt;.&lt;/p&gt;
&lt;div class=&#34;footnotes&#34; role=&#34;doc-endnotes&#34;&gt;
&lt;hr&gt;
&lt;ol&gt;
&lt;li id=&#34;fn:1&#34;&gt;
&lt;p&gt;I used Pocket when the service was first started, but somehow, I stopped using it, maybe because of Apple’s introduction of the Read Later feature in Safari.&amp;#160;&lt;a href=&#34;#fnref:1&#34; class=&#34;footnote-backref&#34; role=&#34;doc-backlink&#34;&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
</description>
    </item>
    
    <item>
      <title>A Peek At My Photo Processing Workflow</title>
      <link>https://meta.numericcitizen.me/2022/11/21/a-peek-at-my-photo.html</link>
      <pubDate>Mon, 21 Nov 2022 12:00:00 -0400</pubDate>
      
      <guid>http://numericcitizen-meta.micro.blog/2022/11/21/a-peek-at-my-photo.html</guid>
      <description>&lt;p&gt;This meta blog is mostly about my content creation workflows. Photography is a big part of it, so I posted an update last week-end about it, after a two-year period.&lt;/p&gt;
&lt;p&gt;My last photo processing update is more than two years old. Quite a few things have happened since 2020: many things are in, but many things are out too. I learned to use new services while dropping those that don’t fit my content creation journey. Let’s see what’s in and what’s out.&lt;/p&gt;
&lt;h2 id=&#34;whats-in&#34;&gt;What’s in&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Glass&lt;/strong&gt;, the new kid on the block of photo-sharing services, is in, and I like it a lot, as I wrote in “&lt;a href=&#34;https://numericcitizen.me/2021/08/18/thoughts-and-observations-from-my-experience-with-glass/&#34;&gt;my experience with the service&lt;/a&gt;.”&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Exposure&lt;/strong&gt; is in, and I love it so much that it will replace Smugmug as my official home. The main reason is the possibility of a great mix of images and text forming beautiful posts. All posts published on Exposure are cross-posted to Micro.blog.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Adobe Spark&lt;/strong&gt; was renamed to &lt;strong&gt;Adobe Express&lt;/strong&gt; recently. I’m rarely using it, but when I do, I like this creative tool.&lt;/li&gt;
&lt;li&gt;On the hardware side, my &lt;strong&gt;iPhone 11 Pro&lt;/strong&gt; was upgraded to an iPhone 13 Pro back in the fall of 2021, and I wrote in detail in &lt;a href=&#34;https://numericcitizen.me/2021/11/13/upgrading-from-the-iphone-11-pro-to-iphone-13-pro-the-love-story-continues/&#34;&gt;Upgrading From the iPhone 11 Pro to iPhone 13 Pro — the Love Story Continues – Numeric Citizen Blog&lt;/a&gt;. In summary, it was a great upgrade for my photography creativity.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;whats-out&#34;&gt;What’s out&lt;/h2&gt;
&lt;p&gt;I guess the following items should be added to my long list of “&lt;a href=&#34;https://numericcitizen.me/2022/07/03/things-that-dont-stick-with-me/&#34;&gt;Things that don’t stick with me&lt;/a&gt;” article. Let’s see one by one the ousted service or app.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;My iPhone 13 Pro played a major role during my trip to Italy last summer. Two-thirds of my shots came through my iPhone 13 Pro device, one third with my Nikon D750. The trend is worrisome. Is my &lt;strong&gt;Nikon D750&lt;/strong&gt; on the way out? Not yet, but… I know it won’t be part of my next trip to South America this coming December.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;500px&lt;/strong&gt; is out (&lt;a href=&#34;https://numericcitizen.me/2020/02/02/online-photo-sharing-services-my-experience-with-500px/&#34;&gt;it previously replaced Flickr&lt;/a&gt;) and eventually was, in turn, &lt;a href=&#34;https://numericcitizen.me/2021/05/29/smugmug-the-definitive-home-for-my-online-photo-library/&#34;&gt;replaced by Smugmug&lt;/a&gt;. The latter is on the way out too, and will be replaced by Exposure. The process has already started (read &lt;a href=&#34;https://numericcitizen.me/2022/11/19/my-experience-with-exposure-a-visual-storytelling-service/&#34;&gt;my Experience using the service&lt;/a&gt; recently published).&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Universe&lt;/strong&gt; was a one-year experience but was later abandoned. It gave me the unique experience of building a simple website showing my urban exploration photographic work.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Gurushots&lt;/strong&gt;, a photo contest community, is out of my digital life. I still have an account but I no longer spend time on this website. It’s a big waste of time as fully documented &lt;a href=&#34;https://numericcitizen.me/2021/02/07/gurushots-tips-and-tricks-guide-the-2021-edition-part-i/&#34;&gt;GuruShots Tips and Tricks Guide — The 2021 Edition — Part I – Numeric Citizen Blog&lt;/a&gt; and in &lt;a href=&#34;https://numericcitizen.me/2021/02/10/gurushots-tips-and-tricks-guide-the-2021-edition-part-2/&#34;&gt;GuruShots Tips and Tricks Guide — The 2021 Edition — Part 2 – Numeric Citizen Blog&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Camera+&lt;/strong&gt; is another victim of my workflow constant optimization. It was briefly replaced by the excellent Halide, but again it was dropped in favour of Apple’s stock Camera app. If I had an iPhone 14 Pro, I would probably switch back to Halide as it offers an easy way to turn on and off the 48-megapixels camera mode.&lt;/li&gt;
&lt;li&gt;Also out is my content on &lt;strong&gt;Adobe Portfolio&lt;/strong&gt; (I wrote &lt;a href=&#34;https://numericcitizen.me/2019/02/17/adobe-portfolio-review/&#34;&gt;a small review&lt;/a&gt; about the service a while back). While the tied integration with Adobe Lightroom is nice, it wasn’t easy to create a website to my liking, and I eventually dropped the service. Exposure is a photo-sharing service that goes way beyond Adobe Portfolio.&lt;/li&gt;
&lt;li&gt;My use of Adobe Lightroom Classic has significantly decreased since my last workflow update. My go-to photo editing app is Adobe Lightroom (both on iPad or M1 MacBook Air), and Pixelmator Photo on the iPad comes in second. The latter was extensively used during &lt;a href=&#34;https://www.craft.do/s/pquiPWve2Ov3kj&#34;&gt;my summer trip to Italy&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;I also stopped using &lt;strong&gt;Skylum Aurora HDR &amp;amp; Luminar&lt;/strong&gt; as my need for HDR is nonexistent (it used to be the case when I was doing urban exploration, which is no longer the case, sadly).&lt;/li&gt;
&lt;li&gt;On the hardware side, I sold my &lt;strong&gt;2017 4K Retina iMac&lt;/strong&gt; (read “&lt;a href=&#34;https://numericcitizen.me/2022/10/29/remembering-my-story-of-owning-the-4k-retina-21-inches-imac-2017-2021/&#34;&gt;Remembering My Story of Owning The 4K Retina 21.5 inches iMac — 2017-2021 – Numeric Citizen Blog&lt;/a&gt;”) and bought an M1 Mac mini shortly after it came out on the market. I wrote a must-read article on &lt;a href=&#34;https://numericcitizen.me/2021/09/07/migrating-adobe-lightroom-classic-to-a-new-computer-my-experience/&#34;&gt;how to migrate Adobe Lightroom Classic from one Mac to another&lt;/a&gt;. A few months later, I got an M1 MacBook Air. Both of these machines are simply incredibly mighty.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;miscellaneous&#34;&gt;Miscellaneous&lt;/h2&gt;
&lt;p&gt;I’m still using &lt;strong&gt;Unsplash&lt;/strong&gt; for selecting photos for addition to my content when it makes sense. I contribute from time to time, and that ok. I’m not investing much time in selecting photo content for publication on Unsplash. Sometimes, less is more.&lt;/p&gt;
&lt;p&gt;I used to have an &lt;strong&gt;Instagram&lt;/strong&gt; account (&lt;a href=&#34;https://www.instagram.com/theperfectimperfctions/&#34;&gt;The Perfect Imperfctions&lt;/a&gt;) and mostly stopped posting on it. Time is a finite resource, and I have to make choices on where I spend my time creating new and meaningful content. One thing is for sure, Instagram is not what it used to be for photography lovers like me.&lt;/p&gt;
&lt;h2 id=&#34;concluding-words&#34;&gt;Concluding words&lt;/h2&gt;
&lt;p&gt;My photography workflow is constantly changing but maybe not as often as &lt;a href=&#34;https://world.numericcitizen.io/meta&#34;&gt;my blogger workflow&lt;/a&gt;. It has been more than two years since my last workflow update, and a lot has changed in two years. I don’t see major changes in the future, as I’d like to keep things a bit more stable for now and use my creativity to make good use of my toolset.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Making YouTubes Videos - Observations &amp; Notes</title>
      <link>https://meta.numericcitizen.me/2022/07/29/making-youtubes-videos-observations-notes.html</link>
      <pubDate>Fri, 29 Jul 2022 08:00:00 -0400</pubDate>
      
      <guid>http://numericcitizen-meta.micro.blog/2022/07/29/making-youtubes-videos-observations-notes.html</guid>
      <description>&lt;p&gt;I’ve been making videos since early June of 2022. I wasn’t destined to produce content for YouTube as I’m more of a “written words” type of guy. So far, I have made 18 videos totalling more than two hours and a half of viewing time. Along the way of producing those videos, I learned a lot, and at this point, I feel pretty satisfied with my workflow. Here are my gathered observations and notes about my endeavour.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Craft is a great application for helping me stay organized and support my video creation workflow. I’m using a template for each new video with things to do, research notes, documentation, video script, and post-process steps are all part of the template. I also maintain a table of past and future videos. I’m very happy with Craft in that respect.&lt;/li&gt;
&lt;li&gt;I did learn a few things about Craft along the way of producing these videos, for example, while preparing the video about explaining &lt;a href=&#34;https://youtu.be/cCvKh16pCC0&#34;&gt;the differences between a document and a page in Craft&lt;/a&gt;, I learned that dragging a page to the navigation pane on the left portion of Craft main window, the page gets converted to a document.&lt;/li&gt;
&lt;li&gt;As much as I love my M1 MacBook Air, exporting videos using ScreenFlow can take up to an hour. It’s the use case that makes me wish I had a more powerful MacBook Pro.&lt;/li&gt;
&lt;li&gt;At Episode 15, I decided to use an external 1TB SanDisk SSD drive to store all my past and present episodes instead of my MacBook air internal drive. This way, I can plug the drive on my M1 Mac mini when I’m ready to export a finished video. Remember that a MacBook Air has no fan, and after 10 or 15 minutes of intensive use, the Mac will throttle down the CPU to prevent overheating. There is no such thing on the Mac mini; the CPU can run at max power for as long as needed, shortening the video rendering time.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&#34;https://res.craft.do/user/full/2af24264-e3c1-fb23-4d31-e2491112f9ab/doc/4B0A4B79-C27F-40AF-B4EF-9E12289BEED7/a2f9c3a1-caee-842d-d9a0-6c4760ab45b2/ov9LIPjtWmvMw3toees1RLcptX0ZLhx6655afhJv9uAz/Image.png&#34;
  alt=&#34;&#34;
  loading=&#34;lazy&#34;
  decoding=&#34;async&#34;&gt;
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Having an external drive to store my videos also enabled me to use my Mac mini which uses an Apple Studio Display which brings much more space to work with while doing video editing.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&#34;https://res.craft.do/user/full/2af24264-e3c1-fb23-4d31-e2491112f9ab/9213de72-8be3-f238-7dde-340e1a0a9908/Xq3aomEyuvchxD2NMpy5VeRUfHSMC856KCXV1h3rhMkz/IMG_1710.jpeg&#34;
  alt=&#34;&#34;
  loading=&#34;lazy&#34;
  decoding=&#34;async&#34;&gt;
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Doing the video montage on the Apple Studio Display helps a lot and helps me reduce the time it takes to create a new rendering.&lt;/li&gt;
&lt;li&gt;A typical folder containing a recorded episode contains the Screenflow document, the episode header image in full and lower resolution and the resulting .MP4 video file, ready for upload in YouTube Studio.&lt;/li&gt;
&lt;li&gt;Speaking of Screenflow: it&amp;rsquo;s a great application, but it is afflicted with a few bugs here and there. Updates to fix those are slow in coming. At some point, I contemplated the idea of switching to Final Cut Pro but doing so would still require me to keep Screenflow. So I’m sticking to it. Oh and I don’t like iMovie. Maybe I should look back at LumaFusion? But I don’t want to do production on the iPad.&lt;/li&gt;
&lt;li&gt;With each video, I&amp;rsquo;m perfecting something in my process or in the final product. My best montage can be found in &lt;a href=&#34;https://youtu.be/nWUiRGtVPxs&#34;&gt;Craft Doesn’t Need to be Notion&lt;/a&gt; and “&lt;a href=&#34;https://youtu.be/cCvKh16pCC0&#34;&gt;Learn the Differences Between Documents and Pages&lt;/a&gt;.” I’m recording with a 4K Logitech Brio webcam, but I’m planning to use the &lt;a href=&#34;https://opalcamera.com/&#34;&gt;Opal C1 webcam&lt;/a&gt; when the software gets more mature, and bugs are fixed. I’ll update this post after putting it to work and compare it with the Logitech.&lt;/li&gt;
&lt;li&gt;It took me a while to understand how chapters on YouTube work. Publishing from within Screenflow doesn’t export chapter markers (another Screenflow bug?). To get my markers exported, I need to first export them to an .MP4 file, then manually upload them to YouTube. That’s annoying.&lt;/li&gt;
&lt;li&gt;Google, unsurprisingly, offers a comprehensive plethora of analytics. It’s really a rabbit hole for those like me who love numbers. So far, I’m happy with the numbers, except for people retention. Surprisingly, people don’t stick around for a long time at my videos. Is my content that bad? Is this a major trend on YouTube or something that is closely tied to my content? Looking at my comments and likes ratio, these are vastly positive and aren&amp;rsquo;t indicating a problem with the content and the visual quality of my work. The retention time tends to increase as I produce longer videos.&lt;/li&gt;
&lt;li&gt;It makes a noticeable difference when posting a new video is coupled with a post on Reddit, Circle and Slack, as well as Buffer on Twitter.&lt;/li&gt;
&lt;li&gt;Being active on Reddit, Slack and Circle helps a lot to increase awareness about my videos, and I’m getting many new subscribers each day. On average, I’m getting about three new subscribers per day, which could mean that by the end of my first year of publishing content on YouTube, I could reach close to 1000 subscribers. This looks unrealistic. If I ever get past 500 subscribers, I’ll be happy.&lt;/li&gt;
&lt;li&gt;When I&amp;rsquo;m referring to one of my blog articles in the episode notes, I do get visitors. YouTube seems a great way to help grow visitor traffic.&lt;/li&gt;
&lt;li&gt;According to my Linktr.ee analytics, I can see positive impacts on visitors and conversion rates.&lt;/li&gt;
&lt;li&gt;Credibility seems to be building over time as I’m posting on a regular basis new content. I’m getting a score of close to a 100% likes ratio, which is a good indication that I’m doing good, but is this sustainable?&lt;/li&gt;
&lt;li&gt;I don’t pay too much attention to time release timing of a new video. YouTube processing into 4K takes forever. I tend to release a new video on the day after it has been uploaded and transcoded by the YouTube back-end.&lt;/li&gt;
&lt;li&gt;Most popular video: “&lt;a href=&#34;https://youtu.be/-so7fuJWMNQ&#34;&gt;Planning my week ahead using Craft Daily Notes&lt;/a&gt;.“ People are looking for productivity hacks, and I should probably do more of these videos in the future.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;You can view a behind-the-scenes video &lt;a href=&#34;https://youtu.be/5gKRtiyapQY&#34;&gt;here&lt;/a&gt;.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>My Blogger Workflow as of 2021-12</title>
      <link>https://meta.numericcitizen.me/2021/12/18/my-blogger-workflow.html</link>
      <pubDate>Sat, 18 Dec 2021 17:00:00 -0400</pubDate>
      
      <guid>http://numericcitizen-meta.micro.blog/2021/12/18/my-blogger-workflow.html</guid>
      <description>&lt;p&gt;&lt;a href=&#34;https://numericcitizen.io/2021/03/20/my-blogger-workflow-as-of-2021-03&#34;&gt;My previous blogger workflow update&lt;/a&gt; was in March 2021. Quite many things have happened since then. It’s time for another update. Buckle up because this is a big one, and enjoy the ride!&lt;/p&gt;
&lt;p&gt;&lt;div class=&#34;nc-image-wrap&#34;&gt;
  &lt;img src=&#34;https://blog.numericcitizen.me/uploads/2024/-blogger-workflow-as-of-2021-12.png&#34;
    alt=&#34;My blogger workflow as of 2021-12.&#34;
    loading=&#34;lazy&#34;
    decoding=&#34;async&#34;&gt;
  &lt;span class=&#34;nc-image-caption&#34; aria-hidden=&#34;true&#34;&gt;My blogger workflow as of 2021-12.&lt;/span&gt;
&lt;/div&gt;
&lt;/p&gt;
&lt;h2 id=&#34;whats-in&#34;&gt;What’s in&lt;/h2&gt;
&lt;p&gt;For 2021, I was expecting a year without many changes to my blogger workflow, and yet, I was in for quite a few surprises.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Probably some of the most important additions this year are &lt;strong&gt;Toggl&lt;/strong&gt;, &lt;strong&gt;Timery&lt;/strong&gt;, and &lt;strong&gt;Focused Work&lt;/strong&gt; to track my time while creating content (consider bookmarking and reading &amp;ldquo;&lt;a href=&#34;https://numericcitizen.me/2021/09/19/why-and-how-im-tracking-time-with-toggl/&#34;&gt;Why and How I&amp;rsquo;m Tracking Time With Toggl&lt;/a&gt;” if you want to know all the details.) Tracking my time does take some time, but I like the results.&lt;/li&gt;
&lt;li&gt;Hello &lt;strong&gt;Ghost&lt;/strong&gt; (&lt;a href=&#34;https://numericcitizen.me/2020/05/09/my-ghost-experiment/&#34;&gt;again&lt;/a&gt;)! I started experimenting with Ghost during the 14-day trial period, during which all features were available for testing. I started building automation with the Zapier integration. After the trial period ended, the integration with &lt;strong&gt;Zapier&lt;/strong&gt; stopped working for some reason. I quickly found out that many features like custom themes, custom integrations, and commenting support are only available with certain subscription tiers. Commenting on each blog post isn&amp;rsquo;t available by default unless I’m on the Creator tier and customize one of the provided themes. To use &lt;strong&gt;Commento&lt;/strong&gt;, I needed an API key, as well as a custom theme and a custom integration. And moreover, a custom version of &lt;strong&gt;Casper&lt;/strong&gt; with some script invocation was added to enable Commento integration. Forking such a built-in theme requires staying in sync with the official theme, as Ghost updates them from time to time to benefit from all Ghost&amp;rsquo;s additions. Finally, I visited Google Search Console to add my Ghost website for better SEO management and optimizations. I became a subscriber at the entry-level tier for $9 per month, but I quickly realized that the $25 was the one I needed (consider bookmarking and reading “&lt;a href=&#34;https://numericcitizen.io/2021/12/2/moving-from-substack-to-ghost-%E2%80%94-my-experience&#34;&gt;Moving From Substack to Ghost–My Experience&lt;/a&gt;” for more details.)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;iPadOS 15&lt;/strong&gt; introduced support for Safari extensions. Working on the iPad now feels less and less a compromise, as &lt;strong&gt;Grammarly&lt;/strong&gt; support and many other extensions are now available. For people depending on the iPad, it is a much-welcomed addition. Unexpectedly, in 2021, my workflow shifted towards the MacBook Air (read “&lt;a href=&#34;https://numericcitizen.me/2021/09/01/coming-out-of-a-rabbit-hole-and-buying-two-macbook-air/&#34;&gt;Coming Out of a Rabbit Hole and Buying Two MacBook Air&lt;/a&gt;”).&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Pocket&lt;/strong&gt; made a comeback in addition to &lt;strong&gt;Readwise&lt;/strong&gt; (consider bookmarking and read “&lt;a href=&#34;https://numericcitizen.io/2021/04/5/instapaper-vs-pocket-%E2%80%94-which-read-later-service-is-better-for-me&#34;&gt;Instapaper vs Pocket — Which Read Later Service Is Better for Me&lt;/a&gt;”). Pocket is well-known and doesn&amp;rsquo;t need much introduction. According to Readwise website: &lt;em&gt;“Readwise makes it easy to revisit and learn from your ebook &amp;amp; article highlights.”&lt;/em&gt; Resurfacing previously highlighted text snippets is fun and helps build a lasting memory of past readings. I added Readwise as a source to my weekly newsletter built using Mailbrew.&lt;/li&gt;
&lt;li&gt;Using the &lt;strong&gt;Readwise&lt;/strong&gt; sharing feature to repost quotes on Twitter is handy. I don&amp;rsquo;t use it too often, though.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;div class=&#34;nc-image-wrap&#34;&gt;
  &lt;img src=&#34;https://blog.numericcitizen.me/uploads/2024/-sharing-readwise-text-highlight.png&#34;
    alt=&#34;Sharing a Readwise highlight.&#34;
    loading=&#34;lazy&#34;
    decoding=&#34;async&#34;&gt;
  &lt;span class=&#34;nc-image-caption&#34; aria-hidden=&#34;true&#34;&gt;Sharing a Readwise highlight.&lt;/span&gt;
&lt;/div&gt;
&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;WordPress plugin&lt;/strong&gt;: I’m using the paid version of “&lt;strong&gt;WB to Buffer&lt;/strong&gt;” for reposting previously published posts to Buffer. With another WordPress plugin named “&lt;a href=&#34;https://wordpress.org/plugins/feedzy-rss-feeds/&#34;&gt;Feedzy&lt;/a&gt;” it imports RSS feeds from Substack and Microblog and creates “Also on my …” type of blog posts automatically. It didn&amp;rsquo;t generate much traction and added too much noise to my original content feed. This was disabled after a few months when I moved out of Substack.&lt;/li&gt;
&lt;li&gt;I unexpectedly started using &lt;strong&gt;Matter&lt;/strong&gt; when Matter officially became public. Matter seems to have gained some traction over &lt;strong&gt;Pocket&lt;/strong&gt; as the best read-later service. Compared to Pocket, it creates great link posts that can be saved or shared online, just like Readwise and Pocket.&lt;/li&gt;
&lt;li&gt;I became a subscriber of &lt;strong&gt;Typefully (&lt;/strong&gt;&lt;a href=&#34;https://typefully.com&#34;&gt;&lt;strong&gt;typefully.com&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt;)&lt;/strong&gt;, a web application for writing threads on Twitter. Some features of Typefully are similar to Buffer&amp;rsquo;s, like being able to schedule tweets. I use it to write threads to complement some of my articles. The latest example of &lt;a href=&#34;https://twitter.com/apple_observer/status/1471450041701191682&#34;&gt;things to watch in 2022&lt;/a&gt;. Finally, Typefully brings great engagement analytics.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;div class=&#34;nc-image-wrap&#34;&gt;
  &lt;img src=&#34;https://blog.numericcitizen.me/uploads/2024/-typefully-analytics.png&#34;
    alt=&#34;Typefully analytics.&#34;
    loading=&#34;lazy&#34;
    decoding=&#34;async&#34;&gt;
  &lt;span class=&#34;nc-image-caption&#34; aria-hidden=&#34;true&#34;&gt;Typefully analytics.&lt;/span&gt;
&lt;/div&gt;
&lt;/p&gt;
&lt;h2 id=&#34;whats-out&#34;&gt;What’s out&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;My experience with &lt;strong&gt;HEY World&lt;/strong&gt; didn’t last long. I’ve been moving out of HEY World to go to Substack for my Friday Notes* and Photo Legend* Series (consider bookmarking and reading “&lt;a href=&#34;https://numericcitizen.io/2021/05/16/migrating-my-content-from-hey-world-to-substack&#34;&gt;￼Migrating My Content From Hey World to Substack&lt;/a&gt;￼”). I can say the same thing about my Substack experience. These services, while attractive, didn&amp;rsquo;t stick in my workflow.&lt;/li&gt;
&lt;li&gt;HEY is no longer on the &lt;strong&gt;workflow diagram&lt;/strong&gt;. HEY doesn’t really contribute to my blogger workflow. Most of my readings don’t happen there anyway, even if HEY provides newsletters dedicated feed, one of the tent pole features of the mail client.&lt;/li&gt;
&lt;li&gt;As mentioned earlier, &lt;strong&gt;Substack&lt;/strong&gt; is out. The popularity of a platform doesn&amp;rsquo;t guarantee the popularity of your content.&lt;/li&gt;
&lt;li&gt;I closed my &lt;strong&gt;Telegram&lt;/strong&gt; account. Read more ￼&lt;a href=&#34;https://numericcitizen.micro.blog/2021/05/19/im-closing-my.html&#34;&gt;here&lt;/a&gt;￼ to learn why. I’m contemplating &lt;strong&gt;Signals&lt;/strong&gt; instead.&lt;/li&gt;
&lt;li&gt;WordPress Plugin: &lt;a href=&#34;https://wordpress.org/plugins/coblocks/&#34;&gt;&lt;strong&gt;Coblock&lt;/strong&gt;&lt;/a&gt; was disabled to remove overhead in webpage processing. It didn’t make a difference, though.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;in-progress&#34;&gt;In progress&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;I do spend more time maintaining &lt;strong&gt;my digital garden&lt;/strong&gt; in Craft all year long. You can find a lot of stuff in there.&lt;/li&gt;
&lt;li&gt;I’m still trying to figure out how to use &lt;strong&gt;Apple’s Quick Notes&lt;/strong&gt; feature in iPadOS 15 and macOS Monterey. I may end up having no use for this after all, which is too bad because, on paper, the idea is cool.&lt;/li&gt;
&lt;li&gt;I’m always thinking about using Apple’s &lt;strong&gt;Reminders&lt;/strong&gt; in my workflow. Reminders have improved quite a lot over the years, but occasionally, I think &lt;strong&gt;Craft&lt;/strong&gt; could take over if table support was better (sorting, tagging, etc.). The more things I’ll do with Craft, the more synergy it creates. I’ll watch Craft’s evolution in 2022, and maybe make a move.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;things-to-improve&#34;&gt;Things to improve&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Adding &lt;strong&gt;text clipping&lt;/strong&gt; in Craft would be so helpful. There are shortcuts that work with Craft that do just that, but I don&amp;rsquo;t find the experience very satisfying.&lt;/li&gt;
&lt;li&gt;Speaking of &lt;strong&gt;Apple’s Shortcuts&lt;/strong&gt;, I do find more use cases for them to speed up a few key tasks, like setting up my work session after logging into my account on macOS.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Templates in Craft&lt;/strong&gt; to kickstart the creation of a new article would be very handy. It is expected in 2022, in an upcoming update in 2022 or via an extension.&lt;/li&gt;
&lt;li&gt;As much as I would like to see the addition of &lt;strong&gt;tags in Craft&lt;/strong&gt;, implementing this feature could be tricky. Where should we be able to tag things? In a page’s properties, inline in the page’s content?&lt;/li&gt;
&lt;li&gt;I have to work on &lt;strong&gt;my reading workflow&lt;/strong&gt; and decide what I’m going to do with &lt;strong&gt;Pocket&lt;/strong&gt;, &lt;strong&gt;Readwise&lt;/strong&gt; and &lt;strong&gt;Matter&lt;/strong&gt;. Pocket will probably go as it is entirely covered with Matter.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;miscellaneous&#34;&gt;Miscellaneous&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;My usage of ** Craft ** has significantly increased this year. It is becoming my second brain (Fun fact: ￼find out the name of my MacBook Air￼). Lately, I decided to use the Craft calendaring feature to prepare a weekly plan containing my content creation objectives. As the week progresses, I keep it up-to-date and check items off the list. It’s a satisfying experience, trust me.&lt;/li&gt;
&lt;li&gt;I’m still using &lt;strong&gt;Notion&lt;/strong&gt; to keep my old data and connect &lt;strong&gt;Matter&lt;/strong&gt; to Notion to save my reading highlights automatically. As soon as a Craft extension allows me to pump my data out of Notion, I might be done with Notion once and for all. Notion is not shown on my workflow diagram but will be in an upcoming post covering my reading workflow.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Twitter Revue&lt;/strong&gt;: I had a Revue account before Twitter bought them. Now that it is integrated into their platform, I experimented with it (read a sample issue &lt;a href=&#34;https://www.getrevue.co/profile/apple_observer/issues/through-apple-observer-s-eyes-issue-1-728712&#34;&gt;here&lt;/a&gt;). I love Twitter Revue, but I have yet to find a unique and useful use case for it. I currently have five subscribers.&lt;/li&gt;
&lt;li&gt;Furthermore, I should consider closing my &lt;strong&gt;Flipboard&lt;/strong&gt; account. I never go there; it’s not what it used to be, and I don’t get any traffic from this platform.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Google News&lt;/strong&gt;, where I cross-post my main blog content, could also go down the drain. I don’t get any traction there.&lt;/li&gt;
&lt;li&gt;Finally, &lt;strong&gt;Tumblr&lt;/strong&gt; is another place where I cross-post content. Tumblr has become a ghost town in recent years, and it doesn’t help at all. Even if cross-posting is done automatically using WordPress’ built-in feature, I should consider stopping using this platform.&lt;/li&gt;
&lt;li&gt;In my previous workflow update, I considered moving my Photo Legend Series to Hey, which I did for a short while. Now, it is hosted on Ghost, along with my Friday Notes Series and monthly newsletter. I like consolidating stuff sporadically.&lt;/li&gt;
&lt;li&gt;Since getting a &lt;strong&gt;MacBook Air&lt;/strong&gt;, my &lt;strong&gt;iPad Pro&lt;/strong&gt; usage significantly dropped. The Mac is the power user tool. I cannot be as productive on an iPad.&lt;/li&gt;
&lt;li&gt;I worked a lot on my WordPress blog to improve its score on &lt;a href=&#34;https://pagespeed.web.dev&#34;&gt;Google’s PageSpeed Insights,&lt;/a&gt; as &lt;a href=&#34;https://numericcitizen.io/2021/04/17/getting-ready-for-google-s-may-2021-algorithm-update&#34;&gt;documented here&lt;/a&gt;. Did it make a difference? According to my blog visitor statistics, the answer is no. Here is a strange thing: if I run &lt;strong&gt;PageSpeed&lt;/strong&gt; tests twice in a row, the final score is quite different. Usually, the second try gives much better results. How much trust should I put in these results? Another observation: my score for this blog, a static website, is the worst. Is Blot hosted on a low-end performance tier in the cloud?&lt;/li&gt;
&lt;li&gt;I’ve been using &lt;strong&gt;Commento&lt;/strong&gt; with &lt;strong&gt;Blot&lt;/strong&gt; to add comments support on this blog. I never got a single comment! It’s a high price to pay for a service that nobody takes advantage of. Maybe it will be a better fit with my newsletter website on Ghost? Time will tell.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;IFTTT&lt;/strong&gt; still plays an important role in my publishing workflow as it works with &lt;strong&gt;Buffer&lt;/strong&gt; to help me control the cross-posting flow. Each day, I spend some time managing the Buffer queue to spread out posts to be published. I also use IFTTT to cross-post anything I post on Reddit to my Twitter channel on Buffer. Buffer has a new calendar view that helps you see a timeline overview of all future publishing. Buffer isn&amp;rsquo;t cheap, but I like what it does for me. Cross-posting content does help create traffic and improves engagement.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Well, that was a long one. I want to walk you through my reading workflow for an upcoming article. I read a lot of stuff online, and many applications and services are involved here. Reading is the source of my inspiration for most of my work as a content creator. I think there are some interesting things to write about. Stay tuned, and see you in 2022.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Getting Ready for Google&#39;s May 2021 Algorithm Update</title>
      <link>https://meta.numericcitizen.me/2021/04/17/getting-ready-for.html</link>
      <pubDate>Sat, 17 Apr 2021 10:00:00 -0400</pubDate>
      
      <guid>http://numericcitizen-meta.micro.blog/2021/04/17/getting-ready-for.html</guid>
      <description>&lt;p&gt;&lt;strong&gt;Getting ready for the upcoming Google May 2021 algorithm update. See how I improved my Page Insights score by more than 225%.&lt;/strong&gt;
&lt;div class=&#34;nc-image-wrap&#34;&gt;
  &lt;img src=&#34;https://blog.numericcitizen.me/uploads/2024/-visitors-2019-2021.png&#34;
    alt=&#34;My blog visitors traffic from 2019 to 2021.&#34;
    loading=&#34;lazy&#34;
    decoding=&#34;async&#34;&gt;
  &lt;span class=&#34;nc-image-caption&#34; aria-hidden=&#34;true&#34;&gt;My blog visitors traffic from 2019 to 2021.&lt;/span&gt;
&lt;/div&gt;
&lt;/p&gt;
&lt;p&gt;In May, Google will tweak its ranking algorithm again by including new &lt;em&gt;experience metrics&lt;/em&gt; into the equation. Those changes were first announced back in May 2020. According to a recent post on Yoast&amp;rsquo;s blog:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;In May 2021, Google will add Core Web Vitals as ranking factors in its algorithm. This means your site’s page speed and page loading time will impact your rankings.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;And, from &lt;a href=&#34;https://www.impactplus.com/team/liz-murphy&#34;&gt;Liz Moorehead&lt;/a&gt; of ImpactPlus:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;…these &amp;ldquo;page experience signals&amp;rdquo; will be rolling out in May 2021 as part of an algorithm update, meaning how well you measure up against these page experience factors will positively or negatively affect your rankings after this update takes effect.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;After reading this, I was expecting the worst. I felt like it was like a storm waiting to strike. The feeling is not really cool, a feeling of “deja vue”. In November 2019, &lt;a href=&#34;https://numericcitizen.me/2020/06/01/will-this-blog-ever-recover/&#34;&gt;something happened&lt;/a&gt; to &lt;a href=&#34;https://numericcitizen.me&#34;&gt;my blog&lt;/a&gt; visitors analytics: it dropped by more than 50% in just a few days. I was astonished and didn&amp;rsquo;t really know what happened or if I broke something with my blog. I did some research and found out that it was the consequence of a ranking algorithm change by Google&lt;sup id=&#34;fnref:1&#34;&gt;&lt;a href=&#34;#fn:1&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;1&lt;/a&gt;&lt;/sup&gt;, an update that put my blog at a disadvantage&lt;sup id=&#34;fnref:2&#34;&gt;&lt;a href=&#34;#fn:2&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;2&lt;/a&gt;&lt;/sup&gt;.&lt;/p&gt;
&lt;p&gt;Preparing for this upcoming change, I had to find ways to minimize the impacts on my main blog, fearing I would lose traffic again.&lt;/p&gt;
&lt;h2 id=&#34;the-starting-point&#34;&gt;The starting point&lt;/h2&gt;
&lt;p&gt;At first, when I started to look into this matter, I discovered the &lt;a href=&#34;https://developers.google.com/speed/pagespeed/insights/&#34;&gt;pagespeed insights tool from Google&lt;/a&gt;&lt;sup id=&#34;fnref:3&#34;&gt;&lt;a href=&#34;#fn:3&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;3&lt;/a&gt;&lt;/sup&gt;. Don’t miss &lt;a href=&#34;https://wp-rocket.me/blog/the-truth-about-google-pagespeed-insights/&#34;&gt;this insightful article&lt;/a&gt; about why PageSpeed Insights is an important tool. As you might expect, I tried it against my websites. According to this tool, my main blog didn&amp;rsquo;t score well, both from a mobile user perspective and a desktop user perspective, albeit it did a bit better for the latter. Both scores weren&amp;rsquo;t in the “green range”. I ran the test many times, and sure enough, on average, the scores were bad. Consider the following two scorecards.&lt;/p&gt;
&lt;p&gt;&lt;div class=&#34;nc-image-wrap&#34;&gt;
  &lt;img src=&#34;https://res.craft.do/user/full/2af24264-e3c1-fb23-4d31-e2491112f9ab/3FB5824F-911A-410B-8951-7A0634555E46_2/Q0YIPpl8E7MyTc7gsc7gJe5TMxcZpyRiN1F23iNhy4Mz/_Initial-Score-Desktop-version.png&#34;
    alt=&#34;Initial scorecard for the desktop version of Numeric Citizen Blog.&#34;
    loading=&#34;lazy&#34;
    decoding=&#34;async&#34;&gt;
  &lt;span class=&#34;nc-image-caption&#34; aria-hidden=&#34;true&#34;&gt;Initial scorecard for the desktop version of Numeric Citizen Blog.&lt;/span&gt;
&lt;/div&gt;
&lt;/p&gt;
&lt;p&gt;&lt;div class=&#34;nc-image-wrap&#34;&gt;
  &lt;img src=&#34;https://blog.numericcitizen.me/uploads/2024/-initial-score-mobile-version.png&#34;
    alt=&#34;Initial scorecard for the mobile version of Numeric Citizen Blog with AMP pages enabled.&#34;
    loading=&#34;lazy&#34;
    decoding=&#34;async&#34;&gt;
  &lt;span class=&#34;nc-image-caption&#34; aria-hidden=&#34;true&#34;&gt;Initial scorecard for the mobile version of Numeric Citizen Blog with AMP pages enabled.&lt;/span&gt;
&lt;/div&gt;
&lt;/p&gt;
&lt;p&gt;That’s not good, but it serves as the starting point. I had to make improvements on all fronts. Does all WordPress websites need to be slow? They certainly have a bad reputation in that respect. As a Business Plan subscriber on &lt;a href=&#34;http://WordPress.com&#34;&gt;WordPress.com&lt;/a&gt;, I get to run my website on its own virtual instance. This makes a big difference. Yet, the next steps weren’t clear to me.&lt;/p&gt;
&lt;h2 id=&#34;improving-the-mobile-experience&#34;&gt;Improving the mobile experience&lt;/h2&gt;
&lt;p&gt;The worst score shows that mobile users were the most affected. How many visitors come from the desktop, and how many come from mobile devices? According to &lt;a href=&#34;https://plausible.io/numericcitizen.me&#34;&gt;my Plausible analytics&lt;/a&gt;, surprisingly, most of my visitors come from desktops, not mobile devices, as shown in the following table. Yet, the score needed some improvements.&lt;/p&gt;
&lt;p&gt;&lt;div class=&#34;nc-image-wrap&#34;&gt;
  &lt;img src=&#34;https://res.craft.do/user/full/2af24264-e3c1-fb23-4d31-e2491112f9ab/329709F5-D7B9-44A9-A103-979F3DB48EA0_2/A6wzeIKgWNHihwXF745mgv7ZpPN12eEO2E0C1DbTW9Az/_Visitors-types.png&#34;
    alt=&#34;Blog visitors by device types.&#34;
    loading=&#34;lazy&#34;
    decoding=&#34;async&#34;&gt;
  &lt;span class=&#34;nc-image-caption&#34; aria-hidden=&#34;true&#34;&gt;Blog visitors by device types.&lt;/span&gt;
&lt;/div&gt;
&lt;/p&gt;
&lt;p&gt;A big change was to remove support for Google&amp;rsquo;s AMP page format. AMP pages aren’t the best idea for the open web and, according to my testing, made my website run slower. Disabling AMP support in &lt;a href=&#34;http://WordPress.com&#34;&gt;WordPress.com&lt;/a&gt; is as simple as &lt;a href=&#34;https://www.wpbeginner.com/wp-tutorials/how-to-properly-disable-google-amp-in-wordpress/&#34;&gt;turning off a switch&lt;/a&gt;. After doing so, I could already observe big improvements in loading time, but that wasn’t enough to get my score into the green zone. What else could I do?&lt;/p&gt;
&lt;h2 id=&#34;revisiting-my-wordpress-plug-in-usage&#34;&gt;Revisiting my WordPress plug-in usage&lt;/h2&gt;
&lt;p&gt;WordPress is well-known for its support of plug-ins. The more plug-ins installed, the higher the possibility of a slower-than-normal website. It’s easy to have a plug-in overload. For my optimization work, I had to revisit the usefulness of each of them.&lt;/p&gt;
&lt;p&gt;I simplified my blog’s main page a bit by removing a rarely used footer widget. This widget allowed people to subscribe to my Mailbrew newsletter. This change improved response time quite a bit. For some reason, the Mailbrew widget contained many scripts calling Mailbrew’s home, which increased latency.&lt;/p&gt;
&lt;p&gt;The Twitter timeline widget was also removed; I don’t think people cared much about my latest tweets showing up there&lt;sup id=&#34;fnref:4&#34;&gt;&lt;a href=&#34;#fn:4&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;4&lt;/a&gt;&lt;/sup&gt;. By removing the sidebar on the main page, content retakes the center stage in a cleaner page layout.&lt;/p&gt;
&lt;p&gt;The IndieWeb support plug-ins (three in total: IndieWeb, Micropub, IndieAuth) were disabled because I suspected they could negatively impact the performance. After re-testing the website, the speed didn’t change much; those plugins were re-enabled&lt;sup id=&#34;fnref:5&#34;&gt;&lt;a href=&#34;#fn:5&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;5&lt;/a&gt;&lt;/sup&gt;. Media Cleaner and Mailchimp support were no longer needed and were removed, too, but I don’t think they negatively impacted my website loading time.&lt;/p&gt;
&lt;p&gt;Other plug-ins like &lt;a href=&#34;https://wordpress.com/support/wordpress-editor/blocks/coblocks/&#34;&gt;CoBlocks&lt;/a&gt;, add a richer set of block types in the WordPress editor. This plug-in adds a few scripts and CSS according to my research. By disabling this plug-in, some of my posts would break, not that there are many of them but still, some care is required here.&lt;/p&gt;
&lt;h2 id=&#34;adding-two-optimization-services-to-my-toolbox&#34;&gt;Adding two optimization services to my toolbox&lt;/h2&gt;
&lt;p&gt;In “&lt;a href=&#34;https://kevq.uk/how-to-speed-up-wordpress/&#34;&gt;How to speed up WordPress&lt;/a&gt;”, I discovered two paying services: the first one is &lt;a href=&#34;https://wp-rocket.me&#34;&gt;&lt;strong&gt;WP Rocket&lt;/strong&gt;&lt;/a&gt;, to optimize many internal aspects of my WordPress website and &lt;a href=&#34;https://imagify.io&#34;&gt;Imagify&lt;/a&gt; to optimize images.&lt;/p&gt;
&lt;p&gt;After reading about WP Rocket’s capabilities, I installed the plug-in. After installing the plug-in, WP Rockets does many optimizations behind the scenes without any intervention. Then, I poked around the provided features and started to enable options one by one, carefully testing my website at each step, as suggested in the plug-in documentation, to see if anything was broken. At each step, everything was loading perfectly. At the end of this process, I did a new round of performance testing using the page insight tool, and to my delight, my score went up even more.&lt;/p&gt;
&lt;p&gt;In summary, the following options in WP Rocket were enabled:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Cache / Enable caching for mobile devices&lt;/li&gt;
&lt;li&gt;Cache / Enable caching for logged-in WordPress users&lt;/li&gt;
&lt;li&gt;File Optimization / Minify CSS files&lt;/li&gt;
&lt;li&gt;File Optimization / Optimize CSS delivery&lt;/li&gt;
&lt;li&gt;File Optimization / Minify JavaScript files&lt;/li&gt;
&lt;li&gt;File Optimization / Load JavaScript deferred&lt;/li&gt;
&lt;li&gt;File Optimization / Delay JavaScript execution&lt;/li&gt;
&lt;li&gt;Media / LazyLoad for images&lt;/li&gt;
&lt;li&gt;Media / LazyLoad for iframes and videos&lt;/li&gt;
&lt;li&gt;Media / Add missing image dimensions&lt;/li&gt;
&lt;li&gt;Preload cache&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;All in all, I’m pleased with WP Rocket. The optimizations may not provide a night and day difference, but they do add up to make my website a better web citizen.&lt;/p&gt;
&lt;p&gt;Next up is a companion service to WB Rocket, Imagify. It is simple to install and configure. The free version allows for optimizing 500 MB of image content. I went with the unlimited version so I could process all my published content. It took 12 hours to process about 5 GB of images. The end result is that my image library size was reduced by 62%. That’s a big improvement. As expected, optimized images look pretty much the same as before.&lt;/p&gt;
&lt;h2 id=&#34;other-considerations&#34;&gt;Other considerations&lt;/h2&gt;
&lt;p&gt;I considered using a content delivery network service (CDN), but after much thought, some internet research, I decided not to do so. My blog doesn’t use a lot of heavy content like videos, only some pictures and many screenshots. I don’t think this would have made much of a difference&lt;sup id=&#34;fnref:6&#34;&gt;&lt;a href=&#34;#fn:6&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;6&lt;/a&gt;&lt;/sup&gt; for most of my visitors&lt;sup id=&#34;fnref:7&#34;&gt;&lt;a href=&#34;#fn:7&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;7&lt;/a&gt;&lt;/sup&gt;. The following is a Lighthouse test result for speed access according to geographic locations. The next graphic shows where my visitors are coming from.&lt;/p&gt;
&lt;p&gt;&lt;div class=&#34;nc-image-wrap&#34;&gt;
  &lt;img src=&#34;https://res.craft.do/user/full/2af24264-e3c1-fb23-4d31-e2491112f9ab/CC28BA87-38C1-4BA1-948B-A1673AF600CF_2/bGdSNYKUgchyPG7yasnUHe5tHop1irV64uMfN5iCGAgz/_Imagify-optimization-results.png&#34;
    alt=&#34;_Imagify-optimization-results.png&#34;
    loading=&#34;lazy&#34;
    decoding=&#34;async&#34;&gt;
  &lt;span class=&#34;nc-image-caption&#34; aria-hidden=&#34;true&#34;&gt;_Imagify-optimization-results.png&lt;/span&gt;
&lt;/div&gt;
&lt;/p&gt;
&lt;p&gt;My website performance by geographic locations&lt;/p&gt;
&lt;p&gt;&lt;div class=&#34;nc-image-wrap&#34;&gt;
  &lt;img src=&#34;https://res.craft.do/user/full/2af24264-e3c1-fb23-4d31-e2491112f9ab/66B9E456-6E5A-4127-B26D-06B23763EE8E_2/sSJQb3Z6PAuGkszZcYtuzOcoiyhxcxYUUQH4yz7W6UYz/_Speed-access-by-geo-locations.png&#34;
    alt=&#34;_Speed-access-by-geo-locations.png&#34;
    loading=&#34;lazy&#34;
    decoding=&#34;async&#34;&gt;
  &lt;span class=&#34;nc-image-caption&#34; aria-hidden=&#34;true&#34;&gt;_Speed-access-by-geo-locations.png&lt;/span&gt;
&lt;/div&gt;
&lt;/p&gt;
&lt;p&gt;My website visitors’ origins&lt;/p&gt;
&lt;p&gt;My WordPress theme is flexible and allows for many customizations. This means a lot of CSS is involved. I’m also using custom fonts that add some weight to the website. According to SolarWinds’ &lt;a href=&#34;https://tools.pingdom.com&#34;&gt;Pingdom tool&lt;/a&gt;, the main page of my blog weighs about 784K, where 40% is for the fonts, 27% for images and 26% for scripts and CSS. Repeated tests show the main page loads in about 3 seconds or less. This doesn’t fit with my observation when I’m visiting my website from my machine, which seems to load faster than in 3 seconds. Three seconds isn’t bad, isn’t it? Anyway, I’m not planning to undo my font selection, as the standard ones are ugly as hell.&lt;/p&gt;
&lt;p&gt;Another step was to look at Google-related stuff. Since I’m using Plausible Analytics, references to Google Analytics were no longer needed and were removed from &lt;a href=&#34;http://WordPress.com&#34;&gt;WordPress.com&lt;/a&gt; configuration settings found in the JetPack settings. Good riddance.&lt;/p&gt;
&lt;h2 id=&#34;final-scores-and-looking-forward&#34;&gt;Final scores and looking forward&lt;/h2&gt;
&lt;p&gt;&lt;div class=&#34;nc-image-wrap&#34;&gt;
  &lt;img src=&#34;https://blog.numericcitizen.me/uploads/2024/-blog-desktop-version-scores-after-optimization.png&#34;
    alt=&#34;Final scorecard for the desktop version.&#34;
    loading=&#34;lazy&#34;
    decoding=&#34;async&#34;&gt;
  &lt;span class=&#34;nc-image-caption&#34; aria-hidden=&#34;true&#34;&gt;Final scorecard for the desktop version.&lt;/span&gt;
&lt;/div&gt;
&lt;/p&gt;
&lt;p&gt;&lt;div class=&#34;nc-image-wrap&#34;&gt;
  &lt;img src=&#34;https://blog.numericcitizen.me/uploads/2024/-blog-final-score-mobile.png&#34;
    alt=&#34;Final scorecard for the mobile version with AMP pages enabled.&#34;
    loading=&#34;lazy&#34;
    decoding=&#34;async&#34;&gt;
  &lt;span class=&#34;nc-image-caption&#34; aria-hidden=&#34;true&#34;&gt;Final scorecard for the mobile version with AMP pages enabled.&lt;/span&gt;
&lt;/div&gt;
&lt;/p&gt;
&lt;p&gt;I’m happy with all the improvements I’ve made to my website. The improvements were the most impressive on the mobile version. It could be better, but I’m utterly happy with where the score stands now.&lt;/p&gt;
&lt;p&gt;Keep in mind that WordPress-based sites are dynamically generated. A lot of processing happens behind the scenes when hitting the homepage with a browser. My microblog and the site you are reading are static-generated and fast to load. But, if you compare the loading times of all these sites, you’ll find that they are comparable.&lt;/p&gt;
&lt;p&gt;Now, the big question: Am I ready for Google’s 2021 algorithm update? I think so. Will my optimization efforts be rewarded? Who knows? Google is like a beast that we have to feed, and please, who knows if he will like the meal served this time.&lt;/p&gt;
&lt;p&gt;By increasing my website’s score for mobile users by as much as 225% and by more than 25% for desktop users, and by meeting most of Google’s requirements for “website providing a great user experience,” I hope that the upcoming Google changes in May will be beneficial.&lt;/p&gt;
&lt;div class=&#34;footnotes&#34; role=&#34;doc-endnotes&#34;&gt;
&lt;hr&gt;
&lt;ol&gt;
&lt;li id=&#34;fn:1&#34;&gt;
&lt;p&gt;I wasn’t the only victim of Google’s action.&amp;#160;&lt;a href=&#34;#fnref:1&#34; class=&#34;footnote-backref&#34; role=&#34;doc-backlink&#34;&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&#34;fn:2&#34;&gt;
&lt;p&gt;This change prompted me to change the type of content that I post on my main blog: longer posts with more meaningful content.&amp;#160;&lt;a href=&#34;#fnref:2&#34; class=&#34;footnote-backref&#34; role=&#34;doc-backlink&#34;&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&#34;fn:3&#34;&gt;
&lt;p&gt;Another useful tool is &lt;a href=&#34;https://www.gtmetrix.com&#34;&gt;GTmetrix&lt;/a&gt;.&amp;#160;&lt;a href=&#34;#fnref:3&#34; class=&#34;footnote-backref&#34; role=&#34;doc-backlink&#34;&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&#34;fn:4&#34;&gt;
&lt;p&gt;Anyway, I recently reduced my Twitter usage by a lot, as fully documented in &lt;a href=&#34;https://numericcitizen.me/2021/01/24/the-ultimate-twitter-tips-and-tricks-for-mastering-your-twitter-experience/&#34;&gt;this blog post&lt;/a&gt;.&amp;#160;&lt;a href=&#34;#fnref:4&#34; class=&#34;footnote-backref&#34; role=&#34;doc-backlink&#34;&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&#34;fn:5&#34;&gt;
&lt;p&gt;IndieWeb plugins provide a useful integration of comments from other websites.&amp;#160;&lt;a href=&#34;#fnref:5&#34; class=&#34;footnote-backref&#34; role=&#34;doc-backlink&#34;&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&#34;fn:6&#34;&gt;
&lt;p&gt;According to my research, my blog is hosted on &lt;a href=&#34;http://WordPress.com&#34;&gt;WordPress.com&lt;/a&gt; in the US, where most of my visitors come from.&amp;#160;&lt;a href=&#34;#fnref:6&#34; class=&#34;footnote-backref&#34; role=&#34;doc-backlink&#34;&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&#34;fn:7&#34;&gt;
&lt;p&gt;WP Rocket offers a CDN service for 7$ a month. I’m not willing to pay for that.&amp;#160;&lt;a href=&#34;#fnref:7&#34; class=&#34;footnote-backref&#34; role=&#34;doc-backlink&#34;&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
</description>
    </item>
    
    <item>
      <title>Which App or Service is Best?</title>
      <link>https://meta.numericcitizen.me/2021/03/25/which-app-or.html</link>
      <pubDate>Thu, 25 Mar 2021 07:45:00 -0400</pubDate>
      
      <guid>http://numericcitizen-meta.micro.blog/2021/03/25/which-app-or.html</guid>
      <description>&lt;p&gt;Recently, I had a chance to read and participate in two different discussions about which app, feature or service is better for a specific task or use case. &lt;a href=&#34;https://rnv.letterspace.org/2021/03/22/how-does-anyone.html&#34;&gt;In the first case&lt;/a&gt;, someone was asking about &lt;strong&gt;Ulysses&lt;/strong&gt; handling of &lt;strong&gt;Markdown&lt;/strong&gt; links. The question triggered a really enlightening discussion about how Ulysses, and many more writing apps for that matter, was good or not at certain things like Markdown handling in general&lt;sup id=&#34;fnref:1&#34;&gt;&lt;a href=&#34;#fn:1&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;1&lt;/a&gt;&lt;/sup&gt;. &lt;a href=&#34;https://ljpuk.net/2021/03/24/wordpress-losing-its-way-for-traditional-blogging&#34;&gt;In the second case&lt;/a&gt;, Lee Peterson exposes his disdain for being forced into using the block-based &lt;strong&gt;Gutenberg editor&lt;/strong&gt;, replacing the venerable classic editor. Again, a simple blog post triggered a &lt;a href=&#34;https://gr36.micro.blog/2021/03/24/did-not-realise.html&#34;&gt;great exchange&lt;/a&gt; about where WordPress seems to be heading&lt;sup id=&#34;fnref:2&#34;&gt;&lt;a href=&#34;#fn:2&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;2&lt;/a&gt;&lt;/sup&gt;.&lt;/p&gt;
&lt;p&gt;Regarding Ulysses, I’m a fan of its Markdown handling. The fact that I don’t see Markdown tags while writing is a big plus for me. However, I wouldn’t mind having the option to toggle this feature on and off so I can appreciate Markdown in all its glory. As for the Gutenberg editor, I admit I wasn’t a fan at first. But over time, it grew on me to the point where I wouldn’t consider going back. The block-based editor is also the approach Craft is taking, and it’s working its magic.&lt;/p&gt;
&lt;p&gt;Ultimately, the beauty of these discussions lies in the diversity of opinions. It’s not about who’s right or wrong but about each of us finding the app that best suits our needs and preferences for the task at hand.&lt;/p&gt;
&lt;div class=&#34;footnotes&#34; role=&#34;doc-endnotes&#34;&gt;
&lt;hr&gt;
&lt;ol&gt;
&lt;li id=&#34;fn:1&#34;&gt;
&lt;p&gt;I’m a big fan of Ulysses, but there are definitely areas where improvements would be welcomed. One such area is the publishing workflow.&amp;#160;&lt;a href=&#34;#fnref:1&#34; class=&#34;footnote-backref&#34; role=&#34;doc-backlink&#34;&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&#34;fn:2&#34;&gt;
&lt;p&gt;The idea of introducing Stories on &lt;a href=&#34;http://WordPress.com&#34;&gt;WordPress.com&lt;/a&gt; is simply stupid. I don’t want WordPress to copy Snapchat or Instagram.&amp;#160;&lt;a href=&#34;#fnref:2&#34; class=&#34;footnote-backref&#34; role=&#34;doc-backlink&#34;&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
</description>
    </item>
    
    <item>
      <title>My Blogger Workflow as of 2021-03</title>
      <link>https://meta.numericcitizen.me/2021/03/20/my-blogger-workflow.html</link>
      <pubDate>Sat, 20 Mar 2021 10:00:00 -0400</pubDate>
      
      <guid>http://numericcitizen-meta.micro.blog/2021/03/20/my-blogger-workflow.html</guid>
      <description>&lt;p&gt;This is the first post on Numeric Citizen I/O about my blogger workflow. This website’s mission is metablogging, which means writing about the tools and services that I use as a blogger and content creator. I hope you enjoy the ride here. This is the most comprehensive update yet. In this workflow release, as of 2021-03, there are many important changes. Here is a run-down, in no particular order.&lt;/p&gt;
&lt;p&gt;&lt;div class=&#34;nc-image-wrap&#34;&gt;
  &lt;img src=&#34;https://cdn.uploads.micro.blog/143495/2024/-blogger-workflow-as-of-2021-03.png&#34;
    alt=&#34;My blogger workflow as of 2021-03.&#34;
    loading=&#34;lazy&#34;
    decoding=&#34;async&#34;&gt;
  &lt;span class=&#34;nc-image-caption&#34; aria-hidden=&#34;true&#34;&gt;My blogger workflow as of 2021-03.&lt;/span&gt;
&lt;/div&gt;
&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;First, as stated earlier, I created a new website about meta-blogging. It’s called &lt;strong&gt;Numeric Citizen I/O&lt;/strong&gt;, which is hosted on &lt;strong&gt;Blot&lt;/strong&gt;&lt;sup id=&#34;fnref:1&#34;&gt;&lt;a href=&#34;#fn:1&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;1&lt;/a&gt;&lt;/sup&gt;. That’s where I’m talking about the tools and experience as a blogger and content creator. The domain name is hosted on &lt;strong&gt;GoDaddy&lt;/strong&gt;. Domains ending with .io aren’t cheap, here are &lt;a href=&#34;https://abhijitrawool.com/why-are-io-domains-so-expensive/&#34;&gt;possible reasons why&lt;/a&gt;. I’m super happy with Blot. Their support is excellent. I learned how to properly use Git in my endeavour. I’m using &lt;a href=&#34;https://commento.io&#34;&gt;Commento&lt;/a&gt; as a commenting service which is privacy friendly.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;http://Linktr.ee&#34;&gt;&lt;strong&gt;Linktr.ee&lt;/strong&gt;&lt;/a&gt;: is now &lt;a href=&#34;https://linktr.ee/numericcitizen&#34;&gt;my virtual visitor card&lt;/a&gt;. Super easy to set up. Lots of formatting options. Not cheap, though. In the past, I had an account on &lt;a href=&#34;https://about.me&#34;&gt;about.me&lt;/a&gt; which I closed because of its lack of formatting features. I&amp;rsquo;m pleased with &lt;a href=&#34;http://Linktr.ee&#34;&gt;Linktr.ee&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Gone is the venerable &lt;strong&gt;MarsEdit on my Mac&lt;/strong&gt;. &lt;strong&gt;Ulysses&lt;/strong&gt; version 22 supports publishing to Micro.blog&lt;sup id=&#34;fnref:2&#34;&gt;&lt;a href=&#34;#fn:2&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;2&lt;/a&gt;&lt;/sup&gt;. I do like MarsEdit, but I prefer Ulysses which is available on all Apple platforms.&lt;/li&gt;
&lt;li&gt;Gone is &lt;a href=&#34;https://pragmaticcode.com/linky/&#34;&gt;&lt;strong&gt;Linky&lt;/strong&gt;&lt;/a&gt;, from my iOS devices. Used to be a great app for sharing links on Twitter and text highlighting. As my Twitter usage has dramatically reduced in recent months, I no longer need it. The app is no longer being updated, apparently, which is also contributing to its demise.&lt;/li&gt;
&lt;li&gt;Now in: &lt;strong&gt;Nova&lt;/strong&gt; and &lt;strong&gt;Working Copy&lt;/strong&gt; for publishing to Blot. Nova was recently &lt;a href=&#34;https://www.macstories.net/reviews/nova-review-panics-code-editor-demonstrates-why-mac-like-design-matters/&#34;&gt;reviewed on MacStories.net&lt;/a&gt;. I think it is important to show support for those developers who care to create real Mac software, not just ports of Windows apps.&lt;/li&gt;
&lt;li&gt;Now enabled is the &lt;a href=&#34;https://numericcitizen.io/2021/03/2/archiving-my-content-from-micro-blog-to-github&#34;&gt;automatic archive of my Micro.blog content&lt;/a&gt; to a &lt;strong&gt;Github&lt;/strong&gt; &lt;a href=&#34;https://github.com/jfmartin67/numericcitizen-archives&#34;&gt;repo&lt;/a&gt;. I like the idea of having my content available on Github. Using Nova, I cloned the repo on my Mac too. From time to time, I make pull requests to update my local repo.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Craft&lt;/strong&gt; is my new note-taking application, replacing &lt;strong&gt;Notion&lt;/strong&gt;. Read &lt;a href=&#34;https://numericcitizen.me/2021/03/12/craft-vs-notion-from-a-bloggers-perspective/&#34;&gt;my recent article on Craft&lt;/a&gt;. I still have content on Notion and I don’t know ye how and when I’ll be able to take it out. I’m waiting for their APIs release. I’m in no rush.&lt;/li&gt;
&lt;li&gt;Speaking of Craft, I’m using it to maintain a &lt;a href=&#34;https://medium.com/numeric-citizen-tidbits/friday-notes-11-digital-gardens-are-cool-7ca0b4c8fdd9&#34;&gt;&lt;strong&gt;digital garden&lt;/strong&gt;&lt;/a&gt; which can be found &lt;a href=&#34;https://www.craft.do/s/prWu9ohKSgta1T&#34;&gt;here&lt;/a&gt;. It&amp;rsquo;s super easy to nurture and the extensive formatting options of Craft allows me to have a decent website. You can leave comments by the way!&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Apple’s shortcuts&lt;/strong&gt;, not shown here, play a small part in my workflow. One of them is to generate quotes from a web page by selecting the text that I want to quote. Another one is to create a page in Craft from a website. It’s very handy and covers a use case not available in Craft but which is available in Notion.&lt;/li&gt;
&lt;li&gt;I restarted &lt;a href=&#34;https://vimeo.com/numericcitizen&#34;&gt;&lt;strong&gt;my Vimeo page&lt;/strong&gt;&lt;/a&gt; as an experiment and for storing short clips of user-interface micro-interactions from apps that I use and like a lot. You’ll find many examples from Craft. Vimeo is not cheap. Microinteractions are created using the screen recording feature of iOS, but are converted to GIF when needed in a blog post using &lt;a href=&#34;https://imgplay.net&#34;&gt;IMGplay&lt;/a&gt;, an excellent GIF maker available on all Apple platforms.&lt;/li&gt;
&lt;li&gt;I’m still super happy with &lt;strong&gt;Plausible&lt;/strong&gt;, a Google Analytics replacement. You can have a look at my &lt;a href=&#34;https://plausible.io/numericcitizen.io&#34;&gt;visitor statistics for this site&lt;/a&gt;, for example.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;div class=&#34;nc-image-wrap&#34;&gt;
  &lt;img src=&#34;https://cdn.uploads.micro.blog/143495/2024/-blogger-workflow-from-ideas-to-posts-2021-03.png&#34;
    alt=&#34;From an idea to a blog post.&#34;
    loading=&#34;lazy&#34;
    decoding=&#34;async&#34;&gt;
  &lt;span class=&#34;nc-image-caption&#34; aria-hidden=&#34;true&#34;&gt;From an idea to a blog post.&lt;/span&gt;
&lt;/div&gt;
&lt;/p&gt;
&lt;h2 id=&#34;under-consideration&#34;&gt;Under consideration&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Reeder&lt;/strong&gt; for maintaining a list of read later articles. I could use Craft for this instead. I created a page that contains all the bookmarks. This page is accessible from my digital garden, too. I like Reeder’s design for reading, though. Maybe there is a more profound problem: read later features like the one with Safari or with an app like Reeder don’t make me read more. I tend to forget about things I save in these lists. So, why give a damn about those app and service? If I don’t read an article that I find interesting in the first few hours or days, I’ll never read it. I’ll give myself some more time to think about this one.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Readwise&lt;/strong&gt;: It is a fascinating service, but as my Twitter usage has dropped significantly, its usefulness is uncertain. Syncing highlights from Medium is interesting, though, because I’m a big reader of Medium content. The iPad app is lacking in certain areas. There is no Safari Extension that I’m aware of. Let’s see where it all goes from here.&lt;/p&gt;
&lt;p&gt;A return of &lt;strong&gt;Things&lt;/strong&gt;. Craft is able to export and import data to and from Things but not from Apple’s Reminder. The problem is that Things doesn’t have an URL field, which I depend on in Apple’s Reminder. I asked the Craft developers if support for Reminders was coming. It is coming. Things won&amp;rsquo;t make it back, I think.&lt;/p&gt;
&lt;p&gt;Using &lt;strong&gt;Square&lt;/strong&gt; on &lt;a href=&#34;http://Linktr.ee&#34;&gt;Linktr.ee&lt;/a&gt; to enable tips from my readers. Too bad only Square is supported, I would have preferred Stripes on which I already have an account setup to receive Medium payments. Furthermore, my experience shows that people don&amp;rsquo;t tip bloggers. Nobody really cares to support marginal content creator like me. Oh well, &lt;a href=&#34;https://numericcitizen.me/2021/02/06/the-journey-is-the-reward/&#34;&gt;getting my rewards from the journey&lt;/a&gt;, instead.&lt;/p&gt;
&lt;p&gt;Moving my &lt;a href=&#34;https://numericcitizen.me/series/the-photo-legend-series/&#34;&gt;&lt;strong&gt;Photo Legend Series&lt;/strong&gt;&lt;/a&gt; to HEY World. I think it would be interesting to restart this photo series but this time on HEY World. It is super easy to publish, much easier than WordPress. That’s enough to consider this move.&lt;/p&gt;
&lt;h2 id=&#34;closing-remarks&#34;&gt;Closing remarks&lt;/h2&gt;
&lt;p&gt;That’s it for this blogger workflow update. Things are starting to settle a bit. I don’t see major changes in the foreseeable future. I hope you made some discoveries with this blog post. Let me know in the comment section.&lt;/p&gt;
&lt;div class=&#34;footnotes&#34; role=&#34;doc-endnotes&#34;&gt;
&lt;hr&gt;
&lt;ol&gt;
&lt;li id=&#34;fn:1&#34;&gt;
&lt;p&gt;That’s the website you are currently reading!&amp;#160;&lt;a href=&#34;#fnref:1&#34; class=&#34;footnote-backref&#34; role=&#34;doc-backlink&#34;&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li id=&#34;fn:2&#34;&gt;
&lt;p&gt;The exact date of Ulysses version 22 is still unknown at the time of publishing this post.&amp;#160;&lt;a href=&#34;#fnref:2&#34; class=&#34;footnote-backref&#34; role=&#34;doc-backlink&#34;&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
</description>
    </item>
    
    <item>
      <title>Showing Support for Real Mac Software</title>
      <link>https://meta.numericcitizen.me/2021/03/18/showing-support-for.html</link>
      <pubDate>Thu, 18 Mar 2021 08:00:00 -0400</pubDate>
      
      <guid>http://numericcitizen-meta.micro.blog/2021/03/18/showing-support-for.html</guid>
      <description>&lt;p&gt;&lt;strong&gt;I bought Nova in support of real Mac software developers&lt;/strong&gt;
&lt;div class=&#34;nc-image-wrap&#34;&gt;
  &lt;img src=&#34;https://blog.numericcitizen.me/uploads/2024/-nova-main-window.png&#34;
    alt=&#34;Nova&amp;rsquo;s main windows.&#34;
    loading=&#34;lazy&#34;
    decoding=&#34;async&#34;&gt;
  &lt;span class=&#34;nc-image-caption&#34; aria-hidden=&#34;true&#34;&gt;Nova&amp;rsquo;s main windows.&lt;/span&gt;
&lt;/div&gt;

So, I decided to buy &lt;a href=&#34;https://www.nova.app&#34;&gt;Nova&lt;/a&gt;, the best client for editing and publishing content to this Blot website using Git and Markdown. MacStories published a review of Nova just yesterday, emphasizing that Nova feels like a real MacOS application. I felt the need to show my support to Nova developers. We should celebrate great Mac apps. There are free alternatives like Atom or Visual Source Code, but they feel weird on the Mac.&lt;/p&gt;
&lt;p&gt;Update: 2024-05-20: I no longer use Nova since I migrated from Blot to Craft &amp;amp; Micro.blog. I no longer need this type of editor.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>A Really Useful Git Beginner’s Guide</title>
      <link>https://meta.numericcitizen.me/2021/03/14/a-really-useful.html</link>
      <pubDate>Sun, 14 Mar 2021 09:00:00 -0400</pubDate>
      
      <guid>http://numericcitizen-meta.micro.blog/2021/03/14/a-really-useful.html</guid>
      <description>&lt;p&gt;I’m using Git to maintain this blog, which runs on Blot. Up until now, my Git knowledge has come from YouTube. Today, I came across this &lt;a href=&#34;https://kevq.uk/getting-started-with-git-a-simple-beginners-guide/&#34;&gt;Git beginner’s guide&lt;/a&gt; that I wish I had on hand before starting this blog. The nice thing about this guide is that it covers the command line commands plus a GUI-based tool, Atom, in that case. I’m mostly a GUI type of guy, but it’s always interesting to see what happens behind the scenes when interacting with Git.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Editing on the Go Is a Must</title>
      <link>https://meta.numericcitizen.me/2021/03/13/editing-on-the.html</link>
      <pubDate>Sat, 13 Mar 2021 08:45:00 -0400</pubDate>
      
      <guid>http://numericcitizen-meta.micro.blog/2021/03/13/editing-on-the.html</guid>
      <description>&lt;p&gt;&lt;strong&gt;Editing and publishing on the go is a must, after all.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;This weekend, I’m away from home. I thought I could get away with it and skip editing Blot posts on the go on the iPad. I was wrong. As I wrote at length &lt;a href=&#34;https://numericcitizen.io/2021/03/6/using-the-ipad-for-editing-blot-posts-with-a-git-client&#34;&gt;here&lt;/a&gt;, the jury is still out on the best way to achieve this. For now, on the iPad, Working Copy is the best GIT client, and Ulysses is my preferred text editor. They have to work together.&lt;/p&gt;
&lt;p&gt;So, I sat down and cloned the Git repo from Blot to my iPad using Working Copy. It took about a minute to complete. After confirming everything was set up correctly, I created an empty text file with the .md extension in Working Copy. From the Files.app￼, I tapped on it, and sure enough, Ulysses was launched. The file is shown in the “External Files” section in the library view. The publishing process went smoothly via a Working Copy commit followed by a push&lt;sup id=&#34;fnref:1&#34;&gt;&lt;a href=&#34;#fn:1&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;1&lt;/a&gt;&lt;/sup&gt;.&lt;/p&gt;
&lt;p&gt;This blog post was not just created, but also edited, previewed, and published from my iPad, away from home￼. I guess I found a satisfying solution, and it feels great to have accomplished this.&lt;/p&gt;
&lt;div class=&#34;footnotes&#34; role=&#34;doc-endnotes&#34;&gt;
&lt;hr&gt;
&lt;ol&gt;
&lt;li id=&#34;fn:1&#34;&gt;
&lt;p&gt;When I get home, I’ll have to update my local repo on my Mac with a pull request with Nova (better than a fetch request; I don’t have any pending changes on my Mac).&amp;#160;&lt;a href=&#34;#fnref:1&#34; class=&#34;footnote-backref&#34; role=&#34;doc-backlink&#34;&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
</description>
    </item>
    
    <item>
      <title>Thinking Again About Text Editors</title>
      <link>https://meta.numericcitizen.me/2021/03/05/thinking-again-about.html</link>
      <pubDate>Fri, 05 Mar 2021 08:00:00 -0400</pubDate>
      
      <guid>http://numericcitizen-meta.micro.blog/2021/03/05/thinking-again-about.html</guid>
      <description>&lt;p&gt;&lt;strong&gt;Thinking about text editor apps.&lt;/strong&gt;
Following a &lt;a href=&#34;https://sixcolors.com/post/2021/03/searching-for-the-perfect-ios-markdown-writing-tool/&#34;&gt;recent article&lt;/a&gt; from Jason Snell about finding the best markdown editor for the iPad, I started thinking about using Ulysses for all my text editing needs. Is it the best tool for all use cases? Probably not. But it is cross-platform, and for me, it&amp;rsquo;s a must. As I write this blog post, I&amp;rsquo;m using &lt;strong&gt;Nova&lt;/strong&gt; text editor on my Mac to start editing, finishing in &lt;strong&gt;Ulysses&lt;/strong&gt;. It depends. I&amp;rsquo;m unsure how my text editor selection happens when I start writing a new blog post. Maybe I should do the same as Mr. Snell, build a table of much-needed features, and see if Ulysses still fits my needs.
On my to-do list, I plan to write a blog post about GIT clients for the iPad. &lt;strong&gt;Working Copy&lt;/strong&gt; is a very popular one and includes a text editor. Jason Snell&amp;rsquo;s article refers to Textastic too. They compete against Ulysses, but the latter doesn&amp;rsquo;t do Git stuff. Like many blogs, it may be okay to use a different text editor, depending on the platform. I could use &lt;strong&gt;iA Writer&lt;/strong&gt; on the iPad for this blog and Ulysses for the rest. Or maybe Working Copy would be a better choice because I&amp;rsquo;ll need to use it to push updates here anyway?
As you can see, I&amp;rsquo;m constantly reflecting on the tools I use or plan to use and my workflow. It’s a never-ending process. Back to Ulysses. For now.
&lt;strong&gt;Update #1&lt;/strong&gt;: I’m not alone in rethinking my text editor choices. &lt;a href=&#34;https://chrishannah.me/using-1writer-as-my-writing-app/&#34;&gt;Chris Hannah, too&lt;/a&gt;.&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>Documenting Blog Changes</title>
      <link>https://meta.numericcitizen.me/2021/03/02/documenting-blog-changes.html</link>
      <pubDate>Tue, 02 Mar 2021 15:00:00 -0400</pubDate>
      
      <guid>http://numericcitizen-meta.micro.blog/2021/03/02/documenting-blog-changes.html</guid>
      <description>&lt;p&gt;&lt;strong&gt;Using Git instead of Dropbox for Blot content syncing provides an unexpected benefit.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;As I &lt;a href=&#34;https://numericcitizen.io/2021/02/28/selecting-a-git-client&#34;&gt;recently wrote&lt;/a&gt;, Blot supports two mechanisms for synchronizing content from my Mac to the web: Dropbox or Git. I chose Git. As I write this, I’m still testing Nova as the Git front-end (I’m a GUI type of guy). One of the great benefits of using Git is the built-in history of commits that is at the core of any Git repo. As shown below, as I push updates to my Blot-based website, I make sure to write a short comment in the commit action to document the commit action. I think this is an important asset in managing a blog and owning its content.&lt;/p&gt;
&lt;p&gt;&lt;div class=&#34;nc-image-wrap&#34;&gt;
  &lt;img src=&#34;https://blog.numericcitizen.me/uploads/2024/-git-repo-commit-history.png&#34;
    alt=&#34;Commit history to the blog report using Nova&#34;
    loading=&#34;lazy&#34;
    decoding=&#34;async&#34;&gt;
  &lt;span class=&#34;nc-image-caption&#34; aria-hidden=&#34;true&#34;&gt;Commit history to the blog report using Nova&lt;/span&gt;
&lt;/div&gt;
&lt;/p&gt;
&lt;p&gt;A better view at the GIT panel in Nova:&lt;/p&gt;
&lt;p&gt;&lt;div class=&#34;nc-image-wrap&#34;&gt;
  &lt;img src=&#34;https://res.craft.do/user/full/2af24264-e3c1-fb23-4d31-e2491112f9ab/1524BBEE-239E-4283-950D-DE8122729DB1_2/GQAhclIful6uywpYyOH0Efriq5EpNtE37gduH8k9QHcz/_Nova-Commit-message.png&#34;
    alt=&#34;Nova GIT panel with commit message area&#34;
    loading=&#34;lazy&#34;
    decoding=&#34;async&#34;&gt;
  &lt;span class=&#34;nc-image-caption&#34; aria-hidden=&#34;true&#34;&gt;Nova GIT panel with commit message area&lt;/span&gt;
&lt;/div&gt;
&lt;/p&gt;
</description>
    </item>
    
    <item>
      <title>The Initial Blot Setup</title>
      <link>https://meta.numericcitizen.me/2021/03/01/the-initial-blot.html</link>
      <pubDate>Mon, 01 Mar 2021 08:00:00 -0400</pubDate>
      
      <guid>http://numericcitizen-meta.micro.blog/2021/03/01/the-initial-blot.html</guid>
      <description>&lt;p&gt;Setting up this blog with Blot was pretty straightforward.&lt;/p&gt;
&lt;p&gt;It all started as an experiment. But now, it’s not. It’s something permanent&lt;sup id=&#34;fnref:1&#34;&gt;&lt;a href=&#34;#fn:1&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;1&lt;/a&gt;&lt;/sup&gt;. In less than a day, everything was set up and running. From the setup of the domain name (with &lt;strong&gt;GoDaddy&lt;/strong&gt;) to having an actual site available for browsing. This is the very short story behind setting up the &lt;strong&gt;Numeric Citizen I/O&lt;/strong&gt; website with &lt;strong&gt;Blot&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;&lt;div class=&#34;nc-image-wrap&#34;&gt;
  &lt;img src=&#34;https://res.craft.do/user/full/2af24264-e3c1-fb23-4d31-e2491112f9ab/5E4DCB28-03A7-4211-A766-B9229ABE06A3_2/kgnLx28RyfSCXhJKWpNqeF1hlx6ZLWIEG6hC3yjQg7wz/_Blot-main-setup-blot-page.png&#34;
    alt=&#34;Blot&amp;rsquo;s dashboard page for this blog.&#34;
    loading=&#34;lazy&#34;
    decoding=&#34;async&#34;&gt;
  &lt;span class=&#34;nc-image-caption&#34; aria-hidden=&#34;true&#34;&gt;Blot&amp;rsquo;s dashboard page for this blog.&lt;/span&gt;
&lt;/div&gt;
&lt;/p&gt;
&lt;p&gt;My interest in Blot came from the desire to have better control over the visual appearance of my microblog, which is hosted on Micro.blog. Micro.blog supports some customization but it’s too demanding as you have to have some knowledge of HTML, CSS and Hugo templates inner working. Another goal was to own my content.&lt;/p&gt;
&lt;p&gt;Blot is a nice solution to my objectives: owning the content, easy visual styling, and easy publishing. Blot allows me to keep using my current applications like Craft for initial post writing &lt;strong&gt;Ulysses&lt;/strong&gt; on the Mac, which supports Markdown files for editing. I had to select a GIT client to complete my workflow for publishing blog posts.&lt;/p&gt;
&lt;p&gt;Opening my account on Blot was super easy. Before going further with any of the Blot settings, configuring my GIT client was mandatory. Cloning the Blot repo on my machine was quick and easy, too. Any non-fixable issues at this stage would have jeopardized the whole initiative.&lt;/p&gt;
&lt;p&gt;&lt;div class=&#34;nc-image-wrap&#34;&gt;
  &lt;img src=&#34;https://res.craft.do/user/full/2af24264-e3c1-fb23-4d31-e2491112f9ab/FEA1D5F2-FABF-4FD3-B019-BF91E18E346D_2/gUSKrsvCaOLXSIBNQ8cSPGq7MvwIuxUmEn0xCLUxYokz/_Blot-Settings-page.png&#34;
    alt=&#34;The Blot settings page for this blog.&#34;
    loading=&#34;lazy&#34;
    decoding=&#34;async&#34;&gt;
  &lt;span class=&#34;nc-image-caption&#34; aria-hidden=&#34;true&#34;&gt;The Blot settings page for this blog.&lt;/span&gt;
&lt;/div&gt;
&lt;/p&gt;
&lt;p&gt;Next up: setting up analytics, page structure, support for commenting blog posts, and closing a link format. All of this was dead simple to set up. But I wasn’t done yet. The next step was to select a visual theme. I wasn’t satisfied with the available themes, so I asked for support for help as I knew there were other themes available. After describing what I was looking for, the guy behind Blot agreed to bring back one of the decommissioned themes (for an unknown reason). In fact, it was the previously available default one. This closed the loop. I’m a happy camper now. I like this theme because it gives this blog a “scientific paper” look, and I love it; it aligns with the blog’s purposes.&lt;/p&gt;
&lt;div class=&#34;footnotes&#34; role=&#34;doc-endnotes&#34;&gt;
&lt;hr&gt;
&lt;ol&gt;
&lt;li id=&#34;fn:1&#34;&gt;
&lt;p&gt;As I’m porting this content to my Micro.blog hosted metablog, I recognize that nothing is permanent.&amp;#160;&lt;a href=&#34;#fnref:1&#34; class=&#34;footnote-backref&#34; role=&#34;doc-backlink&#34;&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
</description>
    </item>
    
    <item>
      <title>Selecting a GIT Client</title>
      <link>https://meta.numericcitizen.me/2021/02/28/selecting-a-git.html</link>
      <pubDate>Sun, 28 Feb 2021 17:00:00 -0400</pubDate>
      
      <guid>http://numericcitizen-meta.micro.blog/2021/02/28/selecting-a-git.html</guid>
      <description>&lt;p&gt;&lt;strong&gt;Selecting a GIT client for the Mac is a bit harder than I thought.&lt;/strong&gt;
When I decided to create this blog using &lt;a href=&#34;http://Blot.im&#34;&gt;Blot.im&lt;/a&gt;, I had to select the synchronization mechanism between my Mac and the &lt;a href=&#34;http://Blot.im&#34;&gt;Blot.im&lt;/a&gt; service. &lt;a href=&#34;http://Blot.im&#34;&gt;Blot.im&lt;/a&gt; offers two choices: Dropbox (easy, seamless, &lt;a href=&#34;https://tech.slashdot.org/story/20/06/18/1522201/dropbox-is-a-total-mess&#34;&gt;but too invasive and bloated software&lt;/a&gt;) or GIT. I decided to use GIT, for a few reasons.&lt;/p&gt;
&lt;p&gt;First, GIT is geeky. I like geeky stuff. This blog is about being geeky, so why not! More seriously, using GIT means that I have to select a GIT client on my Mac (and eventually on the iPad, too, for on-the-go publishing). The leanest way to manage content sync could have been to settle for the command line only. It is super easy to install GIT in the command line on the Mac. But, now, that’s too geeky to my taste. I prefer going GUI, being able to preview commits, file content, etc.&lt;/p&gt;
&lt;p&gt;Here is a list of GIT clients for the Mac that I more or less tested with my impressions for each.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;https://github.com&#34;&gt;&lt;strong&gt;GITHUB Desktop Client&lt;/strong&gt;&lt;/a&gt;. I think this one is mandatory as it is the official Github client. Works fine as a GitHub client. Super easy to use but limited in editing functionalities, but I can configure it to open files in Nova&lt;sup id=&#34;fnref:1&#34;&gt;&lt;a href=&#34;#fn:1&#34; class=&#34;footnote-ref&#34; role=&#34;doc-noteref&#34;&gt;1&lt;/a&gt;&lt;/sup&gt;. But it cannot connect to &lt;a href=&#34;http://Blat.im&#34;&gt;Blot.im&lt;/a&gt; GIT remote repo. Yet, it’s a keeper because of Github. It’s free.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://code.visualstudio.com&#34;&gt;&lt;strong&gt;Microsoft Visual Studio Code&lt;/strong&gt;&lt;/a&gt;. This one is impressive but also overwhelming. Do I need this complexity? Probably not. I don’t like its look and feel either: too Microsoft, not enough Apple-like. It’s still not optimized for my M1-based Mac mini, which is not good! It’s free. I will probably delete it from my machine.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://www.git-tower.com/mac&#34;&gt;&lt;strong&gt;Tower&lt;/strong&gt;&lt;/a&gt;. This one was mentioned by someone I follow on Micro.blog. It’s not free. I like the look and feel of this app. It’s clean. Works great on macOS Big Sur. But somehow, I find it less intuitive compared to Nova. It’s a fully native application (not Electron-based). Will be deleted.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://www.sourcetreeapp.com&#34;&gt;&lt;strong&gt;Sourcetree&lt;/strong&gt;&lt;/a&gt;. Another GIT client but for Gitlab only (could not find a way to connect to &lt;a href=&#34;http://Blot.im&#34;&gt;Blot.im&lt;/a&gt; GIT repo). Still Intel only, not optimized for M1-based machines. No go. Deleted. Thanks to App Cleaner.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://atom.io&#34;&gt;&lt;strong&gt;Atom&lt;/strong&gt;&lt;/a&gt;. It’s still Intel-only, sadly. It looks good, but I cannot connect to &lt;a href=&#34;http://Blot.im&#34;&gt;Blot.im&lt;/a&gt; GIT repo. It only supports Github.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;https://www.nova.app&#34;&gt;&lt;strong&gt;Nova&lt;/strong&gt;&lt;/a&gt;. This app is well-known in the Mac community. They recently released version 5.0. It looks great: a tad busier and crowded interface and costs more than Tower. It comes with a local web server, so I can preview my Markdown file edits effortlessly. It also supports many file types (HTML, CSS, to name a few). It does support extensions to augment its features which is cool. I installed a few of them (Prettier, for example). Finally, Nova supports connecting to many types of servers (FTP, SFTP, WebDAV, etc.). I feel Nova will serve me better in my blogger workflow in the long run or could be used if I ever want to test a local installation of Hugo. Who knows.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;As I write this blog post, I choose to settle on Nova for now. I’m still on the trial period. I have 18 days left. I can still change my mind. Meanwhile, if you have any suggestions, feel free to post a comment at the end of this blog post (not from the main page but by hitting the date &amp;amp; time of the post, which will bring you to the post page where you can comment).&lt;/p&gt;
&lt;p&gt;In a future post, I’ll explore GIT clients for the iPad. WorkingCopy seems pretty popular.&lt;/p&gt;
&lt;div class=&#34;footnotes&#34; role=&#34;doc-endnotes&#34;&gt;
&lt;hr&gt;
&lt;ol&gt;
&lt;li id=&#34;fn:1&#34;&gt;
&lt;p&gt;Nova does both, GIT and file editing.&amp;#160;&lt;a href=&#34;#fnref:1&#34; class=&#34;footnote-backref&#34; role=&#34;doc-backlink&#34;&gt;&amp;#x21a9;&amp;#xfe0e;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
</description>
    </item>
    
  </channel>
</rss>