<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>mcjones.ca</title>
    <link>https://mcjones.ca/</link>
    <description>Recent content on mcjones.ca</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en-ca</language>
    <managingEditor>chealion@chealion.ca (Micheal Jones)</managingEditor>
    <webMaster>chealion@chealion.ca (Micheal Jones)</webMaster>
    <lastBuildDate>Fri, 19 Dec 2025 23:19:06 +0000</lastBuildDate>
    
        <atom:link href="https://mcjones.ca/index.xml" rel="self" type="application/rss+xml" />
    
    
    <item>
      <title>Quick git worktrees</title>
      <link>https://mcjones.ca/docs/quick-git-worktrees/</link>
      <pubDate>Fri, 19 Dec 2025 23:11:16 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/quick-git-worktrees/</guid>
      <description>&lt;h1 id=&#34;quick-git-worktrees&#34;&gt;Quick git worktrees&lt;/h1&gt;&#xA;&lt;p&gt;You’re in your repo on some other branch and need a quick clone?&lt;/p&gt;&#xA;&lt;h2 id=&#34;create&#34;&gt;Create&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;git worktree add ../&amp;lt;path&amp;gt; &amp;lt;branch&amp;gt;&#xA;&#xA;git worktree add ../$(basename $(pwd))-main main&#xA;cd ../$(basename $(pwd))-main&#xA;&#xA;git switch -c my-new-feature-branch&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;clean-up&#34;&gt;Clean up&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;git worktree remove $(basename $(pwd))-main&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;!-- #public #git --&gt;&#xA;&lt;!-- {BearID:B8750DB4-71EC-447D-803F-F0224136F53E} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>sqlite3 Frequent Commands</title>
      <link>https://mcjones.ca/docs/sqlite3-frequent-commands/</link>
      <pubDate>Sun, 16 Nov 2025 17:04:17 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sqlite3-frequent-commands/</guid>
      <description>&lt;h1 id=&#34;sqlite3-frequent-commands&#34;&gt;sqlite3 Frequent Commands&lt;/h1&gt;&#xA;&lt;h2 id=&#34;tables-and-schema&#34;&gt;Tables and Schema&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;.tables&#xA;.schema user&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;pretty-print--columns--headers&#34;&gt;Pretty Print / Columns / Headers&lt;/h2&gt;&#xA;&lt;p&gt;Column mode turns on columns all on it’s own.&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;.headers on&#xA;&#xA;ward_id|ward_num&#xA;1|6&#xA;&#xA;.mode column&#xA;ward_id  ward_num&#xA;-------  --------&#xA;1        6&#xA;&#xA;.width 10 10&#xA;ward_id     ward_num&#xA;----------  ----------&#xA;1           6&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;!-- #public #snippet #sqlite --&gt;&#xA;&lt;!-- {BearID:C3517FFD-E0BE-47B5-A3C5-5D39C9D29A1C} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Using 1Password SDK with External Secrets Operator</title>
      <link>https://mcjones.ca/docs/using-1password-sdk-with-external-secrets-operator/</link>
      <pubDate>Thu, 02 Oct 2025 01:53:18 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/using-1password-sdk-with-external-secrets-operator/</guid>
      <description>&lt;h1 id=&#34;using-1password-sdk-with-external-secrets-operator&#34;&gt;Using 1Password SDK with External Secrets Operator&lt;/h1&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://external-secrets.io/latest/provider/1password-sdk/&#34;&gt;https://external-secrets.io/latest/provider/1password-sdk/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;The downside with the upstream docs is it’s a copy and paste from the deprecated Connect Server documentation. It does not cover setting up authenticating to 1Password at all. Do we still need Connect in some way? Service Accounts?&lt;/p&gt;&#xA;&lt;p&gt;We’ll be following part 1 from the SDK setup tutorial (&lt;a href=&#34;https://developer.1password.com/docs/sdks/setup-tutorial&#34;&gt;https://developer.1password.com/docs/sdks/setup-tutorial&lt;/a&gt;) and then where part 2 starts using Node, we’ll configure External Secrets Operator.&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;(Optional) Create a vault to use with External Secrets operator. In this example we’ve made one called k8s.&lt;/li&gt;&#xA;&lt;li&gt;Log into your 1Password account online&lt;/li&gt;&#xA;&lt;li&gt;Create a service account for 1Password:&#xA;&lt;ol&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://my.1password.com/developer-tools/infrastructure-secrets/serviceaccount&#34;&gt;https://my.1password.com/developer-tools/infrastructure-secrets/serviceaccount&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;Give the account a name (eg. eso)&lt;/li&gt;&#xA;&lt;li&gt;Grant read only access only to the vault you created. &lt;em&gt;Service accounts can&amp;rsquo;t be modified after they&amp;rsquo;re created. If you need to make changes, revoke the service account and create a new one.&lt;/em&gt;&lt;/li&gt;&#xA;&lt;li&gt;Save the token to a different vault in 1Password. We will need to inject this into Kubernetes so ESO can use it. There is a helpful “Save in 1Password” button right there to do it as well.&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;(Optional) Create a secret to test with: &lt;code&gt;op item create --category login --title &amp;quot;test-login-1&amp;quot; --vault &amp;quot;k8s&amp;quot;  &#39;username=example&#39; &#39;password=password&#39;&lt;/code&gt;&lt;/li&gt;&#xA;&lt;li&gt;Inject the service account token into your cluster so K8s can connect. You can either use &lt;code&gt;kubectl apply&lt;/code&gt; to apply a yaml file or do it as a one liner.&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;---&#xA;apiVersion: v1&#xA;kind: Secret&#xA;metadata:&#xA;  name: onepassword-eso&#xA;type: Opaque&#xA;stringData:&#xA;  token: |-&#xA;BASE_64&amp;#39;d_TOKEN_VALUE_SAVED_IN_STEP_3&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;kubectl create secret generic onepassword-eso \&#xA;    --from-literal=token=&amp;#39;TOKEN_VALUE_SAVED_IN_STEP_3&amp;#39; \&#xA;--namespace external-secrets&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;ol start=&#34;6&#34;&gt;&#xA;&lt;li&gt;Create your secret store and optionally, the example item to confirm it works:&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;---&#xA;apiVersion: external-secrets.io/v1&#xA;kind: SecretStore&#xA;metadata:&#xA;  name: 1password-sdk&#xA;spec:&#xA;  provider:&#xA;    onepasswordSDK:&#xA;      vault: k8s&#xA;      auth:&#xA;        serviceAccountSecretRef:&#xA;          name: onepassword-eso&#xA;          key: token&#xA;&#xA;---&#xA;apiVersion: external-secrets.io/v1&#xA;kind: ExternalSecret&#xA;metadata:&#xA;  name: fetch-from-onepassword&#xA;spec:&#xA;  secretStoreRef:&#xA;    kind: SecretStore&#xA;    name: 1password-sdk&#xA;  target:&#xA;    creationPolicy: Owner&#xA;  data:&#xA;    - secretKey: test-login-1&#xA;      remoteRef:&#xA;        key: test-login-1/username&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;ol start=&#34;7&#34;&gt;&#xA;&lt;li&gt;Last let’s check the value:&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;kubectl get secret -n external-secrets fetch-from-onepassword -o jsonpath=&amp;#39;{.data.test-login-1}&amp;#39; | base64 --decode&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;!-- #public #snippet #kubernetes #external-secrets-operator --&gt;&#xA;&lt;!-- {BearID:E1C51231-ED25-42BE-A851-EB038B0FBF18} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Enabling IPv6 with Telus on a Unifi Express</title>
      <link>https://mcjones.ca/docs/enabling-ipv6-with-telus-on-a-unifi-express/</link>
      <pubDate>Sat, 06 Sep 2025 01:17:39 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/enabling-ipv6-with-telus-on-a-unifi-express/</guid>
      <description>&lt;h1 id=&#34;enabling-ipv6-with-telus-on-a-unifi-express&#34;&gt;Enabling IPv6 with Telus on a Unifi Express&lt;/h1&gt;&#xA;&lt;h2 id=&#34;internet-settings-page&#34;&gt;Internet Settings Page&lt;/h2&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;th&gt;Setting&lt;/th&gt;&#xA;          &lt;th&gt;Value&lt;/th&gt;&#xA;      &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;IPv6 Connection&lt;/td&gt;&#xA;          &lt;td&gt;DHCPv6&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;Prefix Delegation Size&lt;/td&gt;&#xA;          &lt;td&gt;56&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;h2 id=&#34;network-settings&#34;&gt;Network Settings&lt;/h2&gt;&#xA;&lt;p&gt;Click the IPv6 tab!&lt;/p&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;th&gt;Setting&lt;/th&gt;&#xA;          &lt;th&gt;Value&lt;/th&gt;&#xA;      &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;Interface Type&lt;/td&gt;&#xA;          &lt;td&gt;Prefix Delegation&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;Prefix Delegation Interface&lt;/td&gt;&#xA;          &lt;td&gt;&lt;code&gt;&amp;lt;name of your WAN&amp;gt;&lt;/code&gt;&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;p&gt;Once the prefix delegation goes through you’ll see your &lt;code&gt;/56&lt;/code&gt; show up below Gateway IP/Subnet.&lt;/p&gt;&#xA;&lt;p&gt;Using the auto settings (SLAAC) works great for my home network.&lt;/p&gt;&#xA;&lt;!-- #public #ubiquiti #telus --&gt;&#xA;&lt;!-- {BearID:C9E8FF0B-489A-4C70-B58C-364A9FC826BA} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Recipes for Pegasus</title>
      <link>https://mcjones.ca/docs/recipes-for-pegasus/</link>
      <pubDate>Sun, 24 Aug 2025 16:22:54 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/recipes-for-pegasus/</guid>
      <description>&lt;h1 id=&#34;recipes-for-pegasus&#34;&gt;Recipes for Pegasus&lt;/h1&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://www.hario-canada.ca/products/hario-pegasus-02-dripper-plastic&#34;&gt;Hario Pegasus&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;See the V60 - very similar, same settings.&lt;/p&gt;&#xA;&lt;h3 id=&#34;dino-balidoy&#34;&gt;Dino Balidoy&lt;/h3&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://www.youtube.com/watch?v=N1__9Xu5jBY&#34;&gt;https://www.youtube.com/watch?v=N1__9Xu5jBY&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;A modified version of the 4:6 method (brewed 92C and lower temp on last pour), and agitate at end.&lt;/p&gt;&#xA;&lt;p&gt;1:14 ratio&#xA;20g coffee&#xA;280g water&lt;/p&gt;&#xA;&lt;p&gt;Aim for 3 minute brew time.&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Bloom with 60g, let sit for 30 seconds&lt;/li&gt;&#xA;&lt;li&gt;Second pour of 50g&lt;/li&gt;&#xA;&lt;li&gt;Third pour of 60g&lt;/li&gt;&#xA;&lt;li&gt;Fourth pour of 50g&lt;/li&gt;&#xA;&lt;li&gt;Fifth pour (80C) of 60g, agitate&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;!-- #public #recipe #coffee --&gt;&#xA;&lt;!-- {BearID:869072CF-D399-49ED-8CA9-F20444C1E516} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Recipes for Suiren</title>
      <link>https://mcjones.ca/docs/recipes-for-suiren/</link>
      <pubDate>Sun, 24 Aug 2025 16:22:31 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/recipes-for-suiren/</guid>
      <description>&lt;h1 id=&#34;recipes-for-suiren&#34;&gt;Recipes for Suiren&lt;/h1&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://www.hario-canada.ca/products/hario-v60-02-suiren-dripper&#34;&gt;Hario Suiren&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Recipes same as V60?&lt;/p&gt;&#xA;&lt;!-- #public #recipe #coffee --&gt;&#xA;&lt;!-- {BearID:625B77AE-6635-42B5-A0B8-3D5A2EF2D022} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>West of Centre - The problem with GDP per capita</title>
      <link>https://mcjones.ca/docs/west-of-centre---the-problem-with-gdp-per-capita/</link>
      <pubDate>Tue, 22 Jul 2025 00:40:11 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/west-of-centre---the-problem-with-gdp-per-capita/</guid>
      <description>&lt;h1 id=&#34;west-of-centre---the-problem-with-gdp-per-capita&#34;&gt;West of Centre - The problem with GDP per capita&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded - title says it all&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;west-of-centre---short-the-problem-with-gdp-per-capita&#34;&gt;West of Centre - Short: The problem with GDP per capita&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+AAXSpwsKxMI&#34;&gt;https://overcast.fm/+AAXSpwsKxMI&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/listen/live-radio/1-407-west-of-centre/clip/16159103-short-the-problem-gdp-per-capita&#34;&gt;https://www.cbc.ca/listen/live-radio/1-407-west-of-centre/clip/16159103-short-the-problem-gdp-per-capita&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #West of Centre# --&gt;&#xA;&lt;!-- {BearID:4E8BD3CE-4A43-4B60-B6F8-4D8D1318FEF1} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>iCloud Tab Data</title>
      <link>https://mcjones.ca/docs/icloud-tab-data/</link>
      <pubDate>Mon, 16 Jun 2025 14:47:38 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/icloud-tab-data/</guid>
      <description>&lt;h1 id=&#34;icloud-tab-data&#34;&gt;iCloud Tab Data&lt;/h1&gt;&#xA;&lt;p&gt;Your iCloud shared tab data is saved in a sqlite database on your computer.&lt;/p&gt;&#xA;&lt;p&gt;While it used to live in &lt;code&gt;~/Library/Safari/CloudTabs.db&lt;/code&gt;, it now lives at &lt;code&gt;~/Library/Containers/com.apple.Safari/Data/Library/Safari/CloudTabs.db&lt;/code&gt; (a lot of things have moved to &lt;code&gt;~/Library/Containers&lt;/code&gt; over the years to wall them off from the rest of the system without permission)&lt;/p&gt;&#xA;&lt;h2 id=&#34;all-the-tabs-one-liner&#34;&gt;All the Tabs One Liner&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;sqlite3 ~/Library/Containers/com.apple.Safari/Data/Library/Safari/CloudTabs.db &amp;#39;select url from cloud_tabs&amp;#39;&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;!-- #snippet #public --&gt;&#xA;&lt;!-- {BearID:41ACBF90-0162-4B6B-BE3F-3A49526D726E} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Prettifying JSON with Zed with an unsaved file</title>
      <link>https://mcjones.ca/docs/prettifying-json-with-zed-with-an-unsaved-file/</link>
      <pubDate>Fri, 30 May 2025 15:31:15 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/prettifying-json-with-zed-with-an-unsaved-file/</guid>
      <description>&lt;h1 id=&#34;prettifying-json-with-zed-with-an-unsaved-file&#34;&gt;Prettifying JSON with Zed with an unsaved file&lt;/h1&gt;&#xA;&#xA;&#xA;&#xA;  &lt;blockquote&gt;&#xA;    &lt;p&gt;cmd+k, m, &lt;language&gt;, cmd+shift+i&lt;/p&gt;&#xA;&#xA;  &lt;/blockquote&gt;&#xA;&#xA;&lt;p&gt;Source: &lt;a href=&#34;https://github.com/zed-industries/zed/issues/4858#issuecomment-2189888214&#34;&gt;https://github.com/zed-industries/zed/issues/4858#issuecomment-2189888214&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #snippet #zed --&gt;&#xA;&lt;!-- {BearID:3017AC6E-0255-4CAE-B588-195211DD9E80} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Deleting an item from Atuin&#39;s history</title>
      <link>https://mcjones.ca/docs/deleting-an-item-from-atuins-history/</link>
      <pubDate>Tue, 20 May 2025 18:12:49 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/deleting-an-item-from-atuins-history/</guid>
      <description>&lt;h1 id=&#34;deleting-an-item-from-atuins-history&#34;&gt;Deleting an item from Atuin&amp;rsquo;s history&lt;/h1&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Find the item using the interactive search:&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;atuin search -i &amp;lt;something&amp;gt;&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;ol start=&#34;2&#34;&gt;&#xA;&lt;li&gt;Open the item using Control-O&lt;/li&gt;&#xA;&lt;li&gt;Delete the item using Control-D&lt;/li&gt;&#xA;&lt;li&gt;Quit by using Control-D again&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;!-- #public #snippet #atuin --&gt;&#xA;&lt;!-- {BearID:A1883924-A1B4-4171-A712-88A6CCACB397} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Heavy Strategy - 086 - Next Highlights</title>
      <link>https://mcjones.ca/docs/heavy-strategy---086---next-highlights/</link>
      <pubDate>Sun, 11 May 2025 21:21:57 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/heavy-strategy---086---next-highlights/</guid>
      <description>&lt;h1 id=&#34;heavy-strategy---086---next-highlights&#34;&gt;Heavy Strategy - 086 - Next Highlights&lt;/h1&gt;&#xA;&lt;h2 id=&#34;1746---user-story-rationale-the-importance-of-explaining-why&#34;&gt;10:45 - “How if scientists want people to understand what they’re learning, what they’re trying to learn, they need to be telling the story themselves. Because when other people tell the stories of the sciences, they tend to either get it wrong or shape it towards their own ends rather than having it being about science.”&lt;br&gt;&#xA;11:30 - facts don’t change minds. Facts in the context of a story change minds&lt;br&gt;&#xA;17:46 - user story rationale. The importance of explaining why.&lt;/h2&gt;&#xA;&lt;h6 id=&#34;heavy-strategy---hs086-next-highlights-drone-to-titan-and-more&#34;&gt;Heavy Strategy - HS086: [Next] Highlights: Drone to Titan, and More!&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+AAkr1YsRjRo&#34;&gt;https://overcast.fm/+AAkr1YsRjRo&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://packetpushers.net/podcasts/heavy-strategy/hs086-next-highlights-drone-to-titan-and-more/&#34;&gt;https://packetpushers.net/podcasts/heavy-strategy/hs086-next-highlights-drone-to-titan-and-more/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #Heavy Strategy# --&gt;&#xA;&lt;!-- {BearID:746E19DD-8984-4E14-92A9-8C936A7DA4C2} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - How White Evangelicals Corrupted a Faith and Fractured a Nation</title>
      <link>https://mcjones.ca/docs/cbc-ideas---how-white-evangelicals-corrupted-a-faith-and-fractured-a-nation/</link>
      <pubDate>Tue, 06 May 2025 14:15:34 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---how-white-evangelicals-corrupted-a-faith-and-fractured-a-nation/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---how-white-evangelicals-corrupted-a-faith-and-fractured-a-nation&#34;&gt;CBC Ideas - How White Evangelicals Corrupted a Faith and Fractured a Nation&lt;/h1&gt;&#xA;&lt;p&gt;3:40 the only way to be a faithful…&lt;/p&gt;&#xA;&lt;p&gt;5:30 - Imperial US evangelicalism&#xA;6:48 - the victim/persecution complex is fundamental to evangelicalism&lt;/p&gt;&#xA;&lt;p&gt;24:00 - the undercurrent and basis for why white was used in the title. It was inherently racist and patriarchal despite its ability for folks of colour or women to use the church as an organization for good. Until it became inconvenient for the march towards taking power.&#xA;25:45 - the myth of colour blind Christians.&#xA;30:30- the efficacy of evangelicals at gate keeping and erasing history&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;ideas---how-white-evangelicals-corrupted-a-faith-and-fractured-a-nation&#34;&gt;Ideas - How White Evangelicals Corrupted a Faith and Fractured a Nation&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+AAAAcT6APh4&#34;&gt;https://overcast.fm/+AAAAcT6APh4&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/jesus-and-john-wayne-white-evangelical-christians-1.7355223&#34;&gt;https://www.cbc.ca/radio/ideas/jesus-and-john-wayne-white-evangelical-christians-1.7355223&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:76616C45-16EB-4E53-90E4-14E7533CAD5D} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Cisco SecureClient (AnyConnect), macOS, DNS, and IPv6</title>
      <link>https://mcjones.ca/docs/cisco-secureclient-anyconnect-macos-dns-and-ipv6/</link>
      <pubDate>Tue, 29 Apr 2025 09:39:32 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cisco-secureclient-anyconnect-macos-dns-and-ipv6/</guid>
      <description>&lt;h1 id=&#34;cisco-secureclient-anyconnect-macos-dns-and-ipv6&#34;&gt;Cisco SecureClient (AnyConnect), macOS, DNS, and IPv6&lt;/h1&gt;&#xA;&lt;p&gt;So you don’t have native IPv6 but now you have IPv6 via your VPN and DNS/connections just won’t work?&lt;/p&gt;&#xA;&lt;p&gt;Welcome to a macOS feature that’s been around since 2018 to ignore IPv6 if your primary interface doesn’t support it.&lt;/p&gt;&#xA;&lt;p&gt;While this was fixed for a bit in macOS 13.4 it came back.&lt;/p&gt;&#xA;&lt;p&gt;Run BEFORE you connect to the VPN:&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;sudo scutil --disable-service-coupling on&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Related Tunnelblick issue:&#xA;&lt;a href=&#34;https://github.com/Tunnelblick/Tunnelblick/issues/490#issuecomment-447085756&#34;&gt;https://github.com/Tunnelblick/Tunnelblick/issues/490#issuecomment-447085756&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #macos --&gt;&#xA;&lt;!-- {BearID:B1DBD96F-8449-448E-A597-BF470038EE65} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Pre-Accident Investigation Podcast - PAPod 508 - Leadership and Capacity: A Deep Dive into Modern Management</title>
      <link>https://mcjones.ca/docs/pre-accident-investigation-podcast---papod-508---leadership-and-capacity--a-deep-dive-into-modern-management/</link>
      <pubDate>Sat, 29 Mar 2025 11:02:16 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/pre-accident-investigation-podcast---papod-508---leadership-and-capacity--a-deep-dive-into-modern-management/</guid>
      <description>&lt;h1 id=&#34;pre-accident-investigation-podcast---papod-508---leadership-and-capacity-a-deep-dive-into-modern-management&#34;&gt;Pre-Accident Investigation Podcast - PAPod 508 - Leadership and Capacity: A Deep Dive into Modern Management&lt;/h1&gt;&#xA;&lt;p&gt;Improvement is a deliberate effort.&#xA;Leaders can “only actually” manage confidence (in people, org) and capacity (extensibility).&lt;/p&gt;&#xA;&lt;p&gt;The gotcha of running too lean means you don’t have the capacity to problem solve, and makes everything brittle and fail catastrophically.&lt;/p&gt;&#xA;&lt;p&gt;Make it safe to fail.&lt;/p&gt;&#xA;&lt;p&gt;Finding where capacity is low can be more effective than looking for where there is risk. Having the capacity to manage the risk. Eg. Wanting to have your people to deal with the unexpected.&lt;/p&gt;&#xA;&lt;p&gt;If you’re having difficulty developing - check if you have the correct definition of the problem.&lt;/p&gt;&#xA;&lt;p&gt;The advantage of asking how and not just why as a leader. N&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;preaccident-investigation-podcast---papod-508---leadership-and-capacity-a-deep-dive-into-modern-management&#34;&gt;PreAccident Investigation Podcast - PAPod 508 - Leadership and Capacity: A Deep Dive into Modern Management&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+AAtF0A6NSfQ&#34;&gt;https://overcast.fm/+AAtF0A6NSfQ&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://preaccidentpodcast.podbean.com/e/leadership-and-capacity-a-deep-dive-into-modern-management/&#34;&gt;https://preaccidentpodcast.podbean.com/e/leadership-and-capacity-a-deep-dive-into-modern-management/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #PreAccident Investigation Podcast# --&gt;&#xA;&lt;!-- {BearID:C0660E5C-60E6-4186-AD07-615BC342B3BA} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Software Misadventures - Ditching the rules to build a team that lasts with Bryan Cantrill and Steve Tuck</title>
      <link>https://mcjones.ca/docs/software-misadventures---ditching-the-rules-to-build-a-team-that-lasts-with-bryan-cantrill-and-steve-tuck/</link>
      <pubDate>Fri, 14 Mar 2025 06:09:37 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/software-misadventures---ditching-the-rules-to-build-a-team-that-lasts-with-bryan-cantrill-and-steve-tuck/</guid>
      <description>&lt;h1 id=&#34;software-misadventures---ditching-the-rules-to-build-a-team-that-lasts-with-bryan-cantrill-and-steve-tuck&#34;&gt;Software Misadventures - Ditching the rules to build a team that lasts with Bryan Cantrill and Steve Tuck&lt;/h1&gt;&#xA;&lt;p&gt;Honest, in depth look at making curious teams that last and the importance of not letting yourself myopically only looking at one portion of a business.&lt;/p&gt;&#xA;&lt;p&gt;Why to ask someone’s happiest time in interviews, and the importance of folks empowered by helping others. That gratification and validation is not only at promotion time.&lt;/p&gt;&#xA;&lt;h2 id=&#34;the-importance-of-transparency---how-open-meetings-and-recorded-meetings-can-help-with-that&#34;&gt;The importance of transparency - how open meetings and recorded meetings can help with that.&lt;/h2&gt;&#xA;&lt;h6 id=&#34;software-misadventures---ditching-the-rules-to-build-a-team-that-lasts--bryan-cantrill-steve-tuck-oxide&#34;&gt;Software Misadventures - Ditching the rules to build a team that lasts | Bryan Cantrill, Steve Tuck (Oxide)&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+AAmkoobweI8&#34;&gt;https://overcast.fm/+AAmkoobweI8&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://softwaremisadventures.com/p/oxide-ditching-the-rules&#34;&gt;https://softwaremisadventures.com/p/oxide-ditching-the-rules&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #Software Misadventures# --&gt;&#xA;&lt;!-- {BearID:6FBF4DED-67AF-4A86-A0E7-2E6CDB9199F2} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Alberta Advantage Podcast - Imagined Alberta - Western Canadian National Fantasies</title>
      <link>https://mcjones.ca/docs/alberta-advantage-podcast---imagined-alberta---western-canadian-national-fantasies/</link>
      <pubDate>Thu, 06 Mar 2025 02:29:15 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/alberta-advantage-podcast---imagined-alberta---western-canadian-national-fantasies/</guid>
      <description>&lt;h1 id=&#34;alberta-advantage-podcast---imagined-alberta---western-canadian-national-fantasies&#34;&gt;Alberta Advantage Podcast - Imagined Alberta - Western Canadian National Fantasies&lt;/h1&gt;&#xA;&lt;p&gt;A fantastic academic exploration of the evolution of the fringe view of Western Canadian exceptionalism that our current provincial government subscribes to.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;alberta-advantage-podcast---imagined-alberta-western-canadian-national-fantasies&#34;&gt;Alberta Advantage Podcast - Imagined Alberta: Western Canadian National Fantasies&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+AAKvqowGmN4&#34;&gt;https://overcast.fm/+AAKvqowGmN4&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://albertaadvantagepod.com/2025/03/02/imagined-alberta-western-canadian-national-fantasies/&#34;&gt;https://albertaadvantagepod.com/2025/03/02/imagined-alberta-western-canadian-national-fantasies/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #Alberta Advantage# --&gt;&#xA;&lt;!-- {BearID:31610F5F-CC24-4E12-8F4E-6B7597B78413} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - On Culture Wars in Christianity</title>
      <link>https://mcjones.ca/docs/cbc-ideas---on-culture-wars-in-christianity/</link>
      <pubDate>Wed, 22 Jan 2025 22:44:49 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---on-culture-wars-in-christianity/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---on-culture-wars-in-christianity&#34;&gt;CBC Ideas - On Culture Wars in Christianity&lt;/h1&gt;&#xA;&lt;p&gt;06:00 - “culture war is internalized in religious communities when we are susceptible to what I&amp;rsquo;m gonna call ideological capture”&#xA;“ideological capture is when we become the sorts of people for whom we think what makes us who we are, our identity, is what we know, what we believe, the truths that we proclaim. But here&amp;rsquo;s the piece that I think we often don&amp;rsquo;t appreciate. I think it&amp;rsquo;s also very, very, very important for us to be seen as the people who know those things.”&lt;/p&gt;&#xA;&lt;p&gt;10:40 - “If we recover the thickness and almost the kinesthetic aspects of being a believer, ironically, we wouldn&amp;rsquo;t think of it as just believing. It would be about loving and longing and desiring. And this is what the spiritual adventure is about.”&lt;/p&gt;&#xA;&lt;p&gt;16:40 - “What I&amp;rsquo;m more interested in is then all of the religious folks and Christians who have to go through the work of rationalization of why they would then support this person who is utterly cynical about such things, I think, but they have to do a sort of internal rationalization in which they know this is symbolizing that this is someone who&amp;rsquo;s going to fight for our interests.”&lt;/p&gt;&#xA;&lt;p&gt;21:00 - “third way here is not just some brokered compromise between the two poles. Instead, the third way requires a kind of new level of consciousness and self-consciousness where we recognize ourselves anew because we can see ourselves locked in this polar mirror opposite wrangling. And in that sense, the third way recognizes the gifts and goods that each of the poles represent.”&lt;/p&gt;&#xA;&lt;p&gt;23:21 - “I&amp;rsquo;m really intrigued by your suggestion, because in many ways, I think those moments of Jesus&amp;rsquo; discourse are the moments in which he&amp;rsquo;s trying to implode our tendency to set up everything as binaries.”&lt;/p&gt;&#xA;&lt;p&gt;The rest doesn’t fit with quotes but explores mysticism, exploring, and finding communion.&lt;/p&gt;&#xA;&lt;p&gt;41:30 - “The question we should be asking ourselves in the midst of the culture wars is not what do you believe, what do you think, what do you know? It should be asking, what are we afraid of?”&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;ideas---on-culture-wars-in-christianity&#34;&gt;Ideas - On Culture Wars in Christianity&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+AAAAcRns4Bw&#34;&gt;https://overcast.fm/+AAAAcRns4Bw&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/culture-wars-christianity-james-smith-1.7225356&#34;&gt;https://www.cbc.ca/radio/ideas/culture-wars-christianity-james-smith-1.7225356&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:1278CCE8-C3E3-4942-8DF8-95ADECD376EC} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Heavy Strategy - 073 - Failure and Resilience</title>
      <link>https://mcjones.ca/docs/heavy-strategy---073---failure-and-resilience/</link>
      <pubDate>Sun, 05 Jan 2025 17:30:11 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/heavy-strategy---073---failure-and-resilience/</guid>
      <description>&lt;h1 id=&#34;heavy-strategy---073---failure-and-resilience&#34;&gt;Heavy Strategy - 073 - Failure and Resilience&lt;/h1&gt;&#xA;&lt;p&gt;Ned @ 3:30 - “But when they say, I dropped out of college and look how well it worked out for me, there&amp;rsquo;s a lot of asterisks after that. So it&amp;rsquo;s important to bear in mind that failure itself is not a great thing. It&amp;rsquo;s the way in which you fail and what you learn from that failure that actually helps you succeed later.”&lt;/p&gt;&#xA;&lt;p&gt;Greg @ 6:00 - Has an interesting point that it’s a mistake to treat failure casually - to let it become an abrogation of responsibility.&lt;/p&gt;&#xA;&lt;p&gt;My note: I think this is a bit of pointing out “move fast and break things” has tradeoffs, and hand waving away the negatives is irresponsible. Also underscores an importance to understand the scope of your failure compared to a mistake.&lt;/p&gt;&#xA;&lt;p&gt;Kyler in response - “Well, I like that idea. I think that mindset of no matter what I do, whether I succeed or fail, I have learned, which means this is a success, makes you very resilient”&lt;/p&gt;&#xA;&lt;p&gt;My note: There’s no short pithy answer to underline that failure is not good - but you can definitely build from it.&lt;/p&gt;&#xA;&lt;p&gt;Greg @ 11:00 - Interesting point on top of the family side - did working those extra hours take an opportunity away from someone else?&lt;/p&gt;&#xA;&lt;p&gt;Joanna @ 14:50 - schedule messages on Slack and don’t feed an imbalance that contributes to a toxic environment.&lt;/p&gt;&#xA;&lt;p&gt;Ned @ 20:45 summarizing Joanna’s story - “It&amp;rsquo;s what you do in after a failure that sort of defines how you look at it in retrospect. So you decided to make a decision to try to make it better as opposed to just kind of covering it up and not talking about it.”&lt;/p&gt;&#xA;&lt;p&gt;Kyler @ 24:30 has a good story on how not owning up and the cover up is a million times worse than the initial issue.&lt;/p&gt;&#xA;&lt;p&gt;28:00 - touches on intellectual safety - NTSB rules, 5 whys, rubber duck debugging, etc.&lt;/p&gt;&#xA;&lt;p&gt;If it’s a systemic problem, putting it on an individual to fix it may not be the right answer. But there is no perfect process.&lt;/p&gt;&#xA;&lt;p&gt;Joanna @ 36:30 - “at some point, you have to depend on people to do the right thing, regardless of what the process is, which means they need to internalize what the right thing is. And that&amp;rsquo;s much more complicated than it sounds. It&amp;rsquo;s something we actually do a lot of training on.&lt;/p&gt;&#xA;&lt;p&gt;There&amp;rsquo;s a whole concept called mission command that has to do with, why are you doing what you&amp;rsquo;re doing? And whose mission is it? And whose mission is that in support of? And how do the missions join together?”&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;heavy-strategy---hs073-failure-and-resilience&#34;&gt;Heavy Strategy - HS073: Failure and Resilience&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+AAkr1bEotm8&#34;&gt;https://overcast.fm/+AAkr1bEotm8&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://packetpushers.net/podcasts/day-two-devops/heavy-strategy-failure-and-resilience/&#34;&gt;https://packetpushers.net/podcasts/day-two-devops/heavy-strategy-failure-and-resilience/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #Heavy Strategy# --&gt;&#xA;&lt;!-- {BearID:91356958-4D3B-4C75-8C99-A459512B3EA8} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Heavy Strategy - 072 - Making Distributed Work Successful</title>
      <link>https://mcjones.ca/docs/heavy-strategy---072---making-distributed-work-successful/</link>
      <pubDate>Tue, 31 Dec 2024 23:26:42 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/heavy-strategy---072---making-distributed-work-successful/</guid>
      <description>&lt;h1 id=&#34;heavy-strategy---072---making-distributed-work-successful&#34;&gt;Heavy Strategy - 072 - Making Distributed Work Successful&lt;/h1&gt;&#xA;&lt;p&gt;01:30 - the difference between distributed vs remote.&#xA;Remote/hybrid assume there is a correct place for where work gets done.&#xA;Distributed accepts work gets done where the worker is&lt;/p&gt;&#xA;&lt;p&gt;06:00 - team building has changed. We don’t have management by walking around anymore.&lt;/p&gt;&#xA;&lt;p&gt;07:00 - video calls require change.&lt;/p&gt;&#xA;&lt;p&gt;One option - good meeting hygiene. What is the point of this meeting? What do we need to get out of it? How do we avoid the meeting being the start of the discussion about something OR make it clear that is the point.&lt;/p&gt;&#xA;&lt;p&gt;Is this done with a pre-meeting? Amazon like read the briefing notes at the start of the meeting?&lt;/p&gt;&#xA;&lt;p&gt;On the other side and something not discussed is how do we offer space for organic discussion?&lt;/p&gt;&#xA;&lt;p&gt;13:00 - treat meeting time as far more precious.&lt;/p&gt;&#xA;&lt;p&gt;14:00 - “It&amp;rsquo;s just that in person, we&amp;rsquo;ve been cheating and treating time as free, because essentially, once you&amp;rsquo;re on the clock, you&amp;rsquo;re in the office, we basically pretend like your time is worth nothing. And the real issue with distributed work is all of a sudden, people are realizing how long it does or doesn&amp;rsquo;t take to get stuff done.”&lt;/p&gt;&#xA;&lt;p&gt;24:00 - example of distributed work&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;heavy-strategy---hs072-making-distributed-work-successful&#34;&gt;Heavy Strategy - HS072: Making Distributed Work Successful&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+AAkr1Y0Vyhk&#34;&gt;https://overcast.fm/+AAkr1Y0Vyhk&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://packetpushers.net/podcasts/heavy-strategy/hs072-making-distributed-work-successful/&#34;&gt;https://packetpushers.net/podcasts/heavy-strategy/hs072-making-distributed-work-successful/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #Heavy Strategy# --&gt;&#xA;&lt;!-- {BearID:1C01BB12-31E0-41FA-AC03-5922FF457938} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - The Return of Inequality - Lessons of History</title>
      <link>https://mcjones.ca/docs/cbc-ideas---the-return-of-inequality---lessons-of-history/</link>
      <pubDate>Wed, 25 Dec 2024 04:49:52 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---the-return-of-inequality---lessons-of-history/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---the-return-of-inequality---lessons-of-history&#34;&gt;CBC Ideas - The Return of Inequality - Lessons of History&lt;/h1&gt;&#xA;&lt;p&gt;The exploration on how wealth inequality is reaching breaking points and how this is part of liberal democracy’s largest existential threats.&lt;/p&gt;&#xA;&lt;p&gt;12:20 - in Canada 1% have 37% of the income growth.&lt;/p&gt;&#xA;&lt;p&gt;“David Hulchansky, who&amp;rsquo;s a professor of housing and social work at the University of Toronto, has written a fascinating study entitled The Three Cities Within Toronto about the geographic distribution of inequality and the gradual creation of an island of wealth surrounded by poor suburbs.”&lt;/p&gt;&#xA;&lt;p&gt;“even more alarming for me is the source and the nature of today&amp;rsquo;s inequality and in particular how it&amp;rsquo;s undermining the meritocratic values that are so crucial for liberal democracy to thrive.”&lt;/p&gt;&#xA;&lt;p&gt;And following this how the inequality leads to your inheritance being the primary determinant for your wealth and success.&lt;/p&gt;&#xA;&lt;p&gt;“Individuals will become better off not primarily through a lifetime of hard work, as suggested by the American Dream, but through how much capital they inherit.”&lt;/p&gt;&#xA;&lt;p&gt;21:30 - increases in mental illness, drug addiction, obesity, loss of community life, etc. all increase with an increase in inequality.&lt;/p&gt;&#xA;&lt;p&gt;The effects of inequality damage our social fabric - especially when it creates an inequality of opportunity. (Eg. Having to buy your way into things)&lt;/p&gt;&#xA;&lt;p&gt;24:30 - “the vast majority within the 1% pursue what economists call rent seeking, appropriating a greater share of the existing pie rather than enlarging the pie. And many derive their wealth from connections, whether familiar or political.”&lt;/p&gt;&#xA;&lt;p&gt;26:00 - “there&amp;rsquo;s a feedback loop that&amp;rsquo;s been established whereby economic inequality translates into political inequality and political inequality creates further social stratification.”&lt;/p&gt;&#xA;&lt;p&gt;40:00 - a good reminder how fragile liberal democracy is and its weakness to being overconfident it’s structures will help it survive.&lt;/p&gt;&#xA;&lt;p&gt;43:00 - we don’t talk about the positives anymore because inequality has destroyed them. And because of that - it leads to anger, frustration for some, and extreme entitlement for others.&lt;/p&gt;&#xA;&lt;p&gt;45:20 - “researchers consistently found that as levels of wealth increase, feelings of entitlement also rise, and levels of empathy and obligation towards others decline.&#xA;…&#xA;statistically speaking, the tendency to look out for number one increases as a person rises to the top of the status hierarchy”&lt;/p&gt;&#xA;&lt;p&gt;This leads right into the research showing more expensive cars are more likely to break the rules of the road - failing to stop&lt;/p&gt;&#xA;&lt;p&gt;48:05 - “Having more means that you can rely less on others, leading in turn to a reduced feeling that you owe anyone anything.”&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;ideas---the-return-of-inequality--lessons-of-history&#34;&gt;Ideas - The Return of Inequality | Lessons of History&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+AAAAcSWF8qk&#34;&gt;https://overcast.fm/+AAAAcSWF8qk&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/listen/live-radio/1-23-ideas/clip/16066042-the-return-inequality-or-lessons-history&#34;&gt;https://www.cbc.ca/listen/live-radio/1-23-ideas/clip/16066042-the-return-inequality-or-lessons-history&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:2A2B1820-2474-4027-ADCA-B997F66F44F0} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>It Shipped That Way - Continuous Discovery Habits, with Teresa Torres</title>
      <link>https://mcjones.ca/docs/it-shipped-that-way---continuous-discovery-habits-with-teresa-torres/</link>
      <pubDate>Thu, 12 Dec 2024 14:41:27 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/it-shipped-that-way---continuous-discovery-habits-with-teresa-torres/</guid>
      <description>&lt;h1 id=&#34;it-shipped-that-way---continuous-discovery-habits-with-teresa-torres&#34;&gt;It Shipped That Way - Continuous Discovery Habits, with Teresa Torres&lt;/h1&gt;&#xA;&lt;p&gt;5:20 - the reminder to remember the context of the advice that comes out of FAANG companies and the survivorship bias intrinsic in it.&lt;/p&gt;&#xA;&lt;p&gt;6:30 - focus on what leads to good decisions&lt;/p&gt;&#xA;&lt;p&gt;8:45 - you have agency to change your habits even if the org is not interested.&lt;/p&gt;&#xA;&lt;p&gt;12:00 - the book mentions a product trio - it should be read more as a set of five cross functional focuses - feasibility, usability/accessibility, viability, desirability, ethical. The team should cover and collaborate on all 5.&lt;/p&gt;&#xA;&lt;p&gt;36:30 - “Have we developed our own practice and our point of view?” - something folks develop as they mature.&lt;/p&gt;&#xA;&lt;p&gt;“And a lot of that is not having a step by step process. It&amp;rsquo;s being willing to like react to what you&amp;rsquo;re hearing back from that feedback loop and then matching the right tool based on what you&amp;rsquo;re hearing.”&lt;/p&gt;&#xA;&lt;p&gt;38:00 - References a quote from Daniel Kahneman - “The confidence people have in their beliefs is not a measure of the quality of evidence but of the coherence of the story that the mind has managed to construct.”&lt;/p&gt;&#xA;&lt;p&gt;38:46 - “And I get to the very end, and one of the things he says at the end is, even knowing about these biases doesn&amp;rsquo;t protect you from them.”&lt;/p&gt;&#xA;&lt;p&gt;“Like even being aware of these biases, this is not how you overcome them because your brain will still construct a coherent story and it&amp;rsquo;s gonna feel like truth. And I think this is a big reason why we need to do discovery together because somebody else can see your bias way better than you can”&lt;/p&gt;&#xA;&lt;p&gt;40:00 - folks believe their fast system 1 response. Asking more helps shows the reality with a system 2 response and pulls away some of the biases.&lt;/p&gt;&#xA;&lt;p&gt;“if we interview people asking where our questions don&amp;rsquo;t get around that filter, we&amp;rsquo;re gonna build products that people aspire to use, but don&amp;rsquo;t use. In fact, gyms, their whole business model is based on this.”&lt;/p&gt;&#xA;&lt;p&gt;“I think the challenge is, we&amp;rsquo;re aspiring to live to a standard. We literally wouldn&amp;rsquo;t hold another human being to, right? And so we have to understand that, and then we have to ask questions that counteract that.”&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;it-shipped-that-way---continuous-discovery-habits-with-teresa-torres-1&#34;&gt;It Shipped That Way - Continuous Discovery Habits, with Teresa Torres&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+AA9k5rZcyHQ&#34;&gt;https://overcast.fm/+AA9k5rZcyHQ&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.itshipped.fm/episodes/27&#34;&gt;https://www.itshipped.fm/episodes/27&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #It Shipped That Way# --&gt;&#xA;&lt;!-- {BearID:7FA6C46B-E8C6-4722-B587-39F97AE0EB22} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Does A Frog Have Scorpion Nature? - Jokes For Jokers with Jesse Alford</title>
      <link>https://mcjones.ca/docs/does-a-frog-have-scorpion-nature---jokes-for-jokers-with-jesse-alford/</link>
      <pubDate>Thu, 28 Nov 2024 14:25:29 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/does-a-frog-have-scorpion-nature---jokes-for-jokers-with-jesse-alford/</guid>
      <description>&lt;ul&gt;&#xA;&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; # Does A Frog Have Scorpion Nature? - Jokes For Jokers with Jesse Alford&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;1:30 - People tend to rail against something that is really shallow.&#xA;Then showing how this applies to Scrum&lt;/p&gt;&#xA;&lt;p&gt;3:15 - “And it&amp;rsquo;s kind of tedious, but it can also be fun. But, like, Scrum specifically, I&amp;rsquo;m going to say when the most virulent and common version of a thing is the shallow version of it, maybe that&amp;rsquo;s the thing. Like, there is a point at which the identity switches from being like, oh, yeah, there&amp;rsquo;s a real Scrum where people are doing it right and they&amp;rsquo;re having good experiences.&lt;/p&gt;&#xA;&lt;p&gt;Those become the weirdos. And actual Scrum, I think, has to own the outcomes that it actually, to my eyes, reliably produces.”&lt;/p&gt;&#xA;&lt;p&gt;“Scrum is the shallow version of Scrum.”&lt;/p&gt;&#xA;&lt;p&gt;“The good ship Scrum has been sunk by its consequences”&lt;/p&gt;&#xA;&lt;p&gt;10:45 - Reiterating a line from Patrick McKenzie - &lt;a href=&#34;https://training.kalzumeus.com/newsletters/archive/consulting_1&#34;&gt;“I solve business problems — occasionally a computer is involved.”&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Another Patrick McKenzie line about how businesses are fundamentally unserious about certain items such as &lt;a href=&#34;https://threadreaderapp.com/thread/936615043126370306.html&#34;&gt;hiring&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;From the above link:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;“All value is in the execution.”&lt;/li&gt;&#xA;&lt;li&gt;“Companies find it incredibly hard to reliably staff positions with hard-working generalists who operate autonomously and have high risk tolerances.”&lt;/li&gt;&#xA;&lt;li&gt;“The tech industry is fundamentally unserious about how it recruits, hires, and retains candidates.”&lt;/li&gt;&#xA;&lt;li&gt;“Startups are (by necessity) filled with generalists; big companies are filled with specialists. People underestimate how effective a generalist can be at things which are done by specialists. People underestimate how deep specialties can run. These are simultaneously true.”&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;11:30 - “people are fundamentally unserious about a lot of the things that they&amp;rsquo;re doing. And when someone is fundamentally unserious about something, you kind of don&amp;rsquo;t want to update your opinion about that thing too much from it”&lt;/p&gt;&#xA;&lt;p&gt;Hiring practices are falling into two categories - beacon protection where they’re big enough to have their internal management structure to deal with bad actors that get through.&lt;/p&gt;&#xA;&lt;p&gt;And the rest are fundamentally unserious. The tiny fraction that are serious are “we have roles open and we need to find good fits for them because if we don&amp;rsquo;t find the right productive people for these, we will suffer negative consequences.”&lt;/p&gt;&#xA;&lt;p&gt;14:00 - another Patrick McKenzie article got mentioned - &lt;a href=&#34;https://www.kalzumeus.com/2011/10/28/dont-call-yourself-a-programmer/&#34;&gt;Don&amp;rsquo;t Call Yourself A Programmer, And Other Career Advice&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;24:00 - exploring how pay bands, levels, and promotion expectations creates a system to create agency less agent - a line manager who has little to no ability to affect compensation and promotion.&lt;/p&gt;&#xA;&lt;p&gt;01:37:00 - “I just paid a million dollars to teach you this lesson. I didn’t want to and it was not a good price. But I’m not about to let someone else benefit from my investment”&lt;/p&gt;&#xA;&lt;p&gt;And how companies struggle to turn failure into success because someone can use their failure experience.&lt;/p&gt;&#xA;&lt;p&gt;01:45:00 - “I&amp;rsquo;m really curious what the reputation of ops and DevOps and similar type roles will be in a few years, because the domain of doing things to production offers the type of pulse pounding feedback that tends to cause people to become really careful and thoughtful and iterate on their systems. And as a community and a practice and a discipline over the last decade, it has by and large been filled with people who are very good”&lt;/p&gt;&#xA;&lt;p&gt;02:20:00 - A fantastic exploring how planning poker points can actually be useful - &lt;strong&gt;if&lt;/strong&gt; they are not a shallow practice. If used as the start to a discussion, for nuance, and backed by team culture they can have value. Examples included complexity levels, unknowns,  - so when there was a divide it would require a conversation of why folks thought it was more or less challenging or complex as appropriate.&lt;/p&gt;&#xA;&lt;p&gt;“Looking at this as a practice that can be shallow or deep is a really interesting example because it has all these characteristics about being such bullshit and so on.&lt;/p&gt;&#xA;&lt;p&gt;“Ultimately, pointing is in service of something. And the way to tell if you&amp;rsquo;re experiencing a very shallow version of it or a potentially useful version that you can get value out of is basically whether or not everyone wants to do it. At Pivotal, people would all have reasons for why they wanted to do this pointing, why they wanted to use a particular scale.”&lt;/p&gt;&#xA;&lt;p&gt;“These are all deep practice reasons. These are all deep practice benefits. And everyone has to be realizing them.”&lt;/p&gt;&#xA;&lt;p&gt;If you ask for the rationale behind a team’s pointing system “and “you get just sort of a ravel of contradictory reasons or of like, well, it&amp;rsquo;s just what we do, or for velocity or something else, okay, now you&amp;rsquo;ve got a shallow practice on your hand.”&lt;/p&gt;&#xA;&lt;p&gt;02:31:00 - interesting point on avoiding shallow comments - don’t allow them because it destroys the ability for deep conversations.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;does-a-frog-have-scorpion-nature---jokes-for-jokers-with-jesse-alford&#34;&gt;Does A Frog Have Scorpion Nature? - “Jokes For Jokers” with Jesse Alford&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+ABHj6YQshXE&#34;&gt;https://overcast.fm/+ABHj6YQshXE&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://podcasters.spotify.com/pod/show/nik9125/episodes/Jokes-For-Jokers-with-Jesse-Alford-e2imrad&#34;&gt;https://podcasters.spotify.com/pod/show/nik9125/episodes/Jokes-For-Jokers-with-Jesse-Alford-e2imrad&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #Does A Frog Have Scorpion Nature?# --&gt;&#xA;&lt;!-- {BearID:C85E3968-2915-4844-B814-23B4366C91A7} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Tech Lead Journal - 171 - The Delicate Art of Bureaucracy and Adaptive Ethics - Mark Schwartz</title>
      <link>https://mcjones.ca/docs/tech-lead-journal---171---the-delicate-art-of-bureaucracy-and-adaptive-ethics---mark-schwartz/</link>
      <pubDate>Wed, 27 Nov 2024 06:05:34 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/tech-lead-journal---171---the-delicate-art-of-bureaucracy-and-adaptive-ethics---mark-schwartz/</guid>
      <description>&lt;h1 id=&#34;tech-lead-journal---171---the-delicate-art-of-bureaucracy-and-adaptive-ethics---mark-schwartz&#34;&gt;Tech Lead Journal - 171 - The Delicate Art of Bureaucracy and Adaptive Ethics - Mark Schwartz&lt;/h1&gt;&#xA;&lt;p&gt;Bureaucracy is neither good, nor bad.&lt;/p&gt;&#xA;&lt;p&gt;9:30 - learned helplessness in the face of bureaucracy is not good&#xA;10:20 - Max Weber’s definition of a bureaucracy has 6 characteristics:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Division of labour&lt;/li&gt;&#xA;&lt;li&gt;Hierarchy&lt;/li&gt;&#xA;&lt;li&gt;Technical competence (a set of skills required for a position)&lt;/li&gt;&#xA;&lt;li&gt;Rules (processes as well)&lt;/li&gt;&#xA;&lt;li&gt;Flow of paper&lt;/li&gt;&#xA;&lt;li&gt;Impersonality (people follow the rules)&#xA;This is a way of doing things - eg. Open a ticket and anyone can take it and it has process to be done.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;22:00 - What makes a bureaucracy bad?&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;bloated - controls are heavy handed, lots of waste&lt;/li&gt;&#xA;&lt;li&gt;Petrified - doesn’t change&lt;/li&gt;&#xA;&lt;li&gt;Coercive - controls ensure you say no and keep the status quo&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;23:45 - the opposites&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Lean - how can we make this control so it doesn’t get in the way? Or less burdensome&lt;/li&gt;&#xA;&lt;li&gt;Learning - do controls evolve?&lt;/li&gt;&#xA;&lt;li&gt;Enabling - do you use the rules/controls to better get your job done&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;And it should be clear that each of the above “bad” and “good” descriptors could be used to describe the exact same control.&lt;/p&gt;&#xA;&lt;p&gt;Author has 3 personalities/types on how to push bureaucratic to evolve:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Monkey&lt;/li&gt;&#xA;&lt;li&gt;Razor&lt;/li&gt;&#xA;&lt;li&gt;Sumo wrestler&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Monkey - provoke and observe.&#xA;Try changing to see what rules actually matter, eg. Change answers in documents or look&lt;/p&gt;&#xA;&lt;p&gt;Razor is all about lean/six sigma/etc.&#xA;Can we take waste out by revisiting how a control objectives can be better handled.&lt;/p&gt;&#xA;&lt;p&gt;Sumo - use the system against itself. Eg. Make processes and policies to do the right thing.&lt;/p&gt;&#xA;&lt;p&gt;45 min mark on the issue with how bureaucracy focuses on fairness and can not do equitable. Also how the digital approach vs traditional approach for inclusion creates a tension.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;tech-lead-journal---171---the-delicate-art-of-bureaucracy-and-adaptive-ethics---mark-schwartz-1&#34;&gt;Tech Lead Journal - 171 - The Delicate Art of Bureaucracy and Adaptive Ethics - Mark Schwartz&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+AAfKlzwgz9Q&#34;&gt;https://overcast.fm/+AAfKlzwgz9Q&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://techleadjournal.dev/episodes/171/&#34;&gt;https://techleadjournal.dev/episodes/171/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #Tech Lead Journal# --&gt;&#xA;&lt;!-- {BearID:D5B05AF1-BF66-4508-8CD7-FA86FA3837FA} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - Sometimes I think this city is trying to kill me</title>
      <link>https://mcjones.ca/docs/cbc-ideas---sometimes-i-think-this-city-is-trying-to-kill-me/</link>
      <pubDate>Sat, 23 Nov 2024 23:00:29 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---sometimes-i-think-this-city-is-trying-to-kill-me/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---sometimes-i-think-this-city-is-trying-to-kill-me&#34;&gt;CBC Ideas - Sometimes I think this city is trying to kill me&lt;/h1&gt;&#xA;&lt;p&gt;Robin shared his journey in real time on Twitter. It was part of what educated me on the need to be engaged, on the need to push for designs for people. Additionally his exploration on how urban design decides the scraps we argue to get a piece of.&lt;/p&gt;&#xA;&lt;p&gt;Sadly, this history and threads are yet another little piece that we lost with the destruction of Twitter by a petulant billionaire.&lt;/p&gt;&#xA;&lt;p&gt;08:12 - “the city is a medical intervention”&lt;br&gt;&#xA;09:30 - debate quote. Resources are finite.&lt;br&gt;&#xA;10:30 - they have a budget and it’s turned into a healthcare budget and the police are major sources of that we’re sitting our cities up the field&lt;br&gt;&#xA;11:00 a shared understanding of a single organism,&lt;br&gt;&#xA;￼19:15 - urban planning is political act that verifiably causes harm. This is why it’s so important our politicians represent everyone.&lt;br&gt;&#xA;22:15 - the importance of understanding that we are the environment for others. We affect others.￼ whether or not you want to believe it.&lt;br&gt;&#xA;26:35 - cars are the major source for noise pollution in major cities.&lt;br&gt;&#xA;27:49 - “Sometimes I think the city is trying to kill me”&lt;br&gt;&#xA;32:35 - part of what makes nature so healing is the drastically smaller amount of task demands - navigating cars, police (Robin is a PoC)&lt;br&gt;&#xA;37:04 - you can not dream, when you can not sleep.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---sometimes-i-think-this-city-is-trying-to-kill-me-1&#34;&gt;CBC Ideas - “Sometimes I think this city is trying to kill me…”&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+AAAAcRXyUmI&#34;&gt;https://overcast.fm/+AAAAcRXyUmI&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/robin-mazumder-zeidler-evans-lecture-1.7030125&#34;&gt;https://www.cbc.ca/radio/ideas/robin-mazumder-zeidler-evans-lecture-1.7030125&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:3EAFB63A-D052-4B21-A3D2-757188EDB6E7} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Using jq to modify files</title>
      <link>https://mcjones.ca/docs/using-jq-to-modify-files/</link>
      <pubDate>Sun, 10 Nov 2024 06:22:48 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/using-jq-to-modify-files/</guid>
      <description>&lt;h1 id=&#34;using-jq-to-modify-files&#34;&gt;Using jq to modify files&lt;/h1&gt;&#xA;&lt;h2 id=&#34;insertappend&#34;&gt;Insert/Append&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;echo &amp;#39;{&amp;#34;hello&amp;#34;: &amp;#34;world&amp;#34;}&amp;#39; | jq --arg foo bar &amp;#39;. + {foo: $foo}&amp;#39;&#xA;OR&#xA;echo &amp;#39;{&amp;#34;hello&amp;#34;: &amp;#34;world&amp;#34;}&amp;#39; | jq &amp;#39;. + {foo: &amp;#34;bar&amp;#34;}&amp;#39;&#xA;&#xA;{&#xA;  &amp;#34;hello&amp;#34;: &amp;#34;world&amp;#34;,&#xA;  &amp;#34;foo&amp;#34;: &amp;#34;bar&amp;#34;&#xA;}&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;And “directly” in a file:&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;jq &amp;#39;.path += { &amp;#34;claims&amp;#34;: &amp;#34;bar&amp;#34; } &amp;#39; file.json &amp;gt; file1.json &amp;amp;&amp;amp; mv file1.json file.json&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;code&gt;jq&lt;/code&gt; can not edit in place.&lt;/p&gt;&#xA;&lt;h2 id=&#34;replace&#34;&gt;Replace&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;echo &amp;#39;{&amp;#34;hello&amp;#34;: &amp;#34;world&amp;#34;}&amp;#39; | jq &amp;#39;. + {hello: &amp;#34;bar&amp;#34;}&amp;#39;&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;delete&#34;&gt;Delete&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;echo &amp;#39;{&amp;#34;hello&amp;#34;: &amp;#34;world&amp;#34;, &amp;#34;foo&amp;#34;: &amp;#34;bar&amp;#34;}&amp;#39; | jq &amp;#39;. | del(.foo)&amp;#39;&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;!-- #public #snippet #jq --&gt;&#xA;&lt;!-- {BearID:1424BB80-64D2-41D8-BE1F-31CEA8A690BD} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>It Shipped That Way - The Problems Get Squishier, with Luke Hutscal</title>
      <link>https://mcjones.ca/docs/it-shipped-that-way---the-problems-get-squishier-with-luke-hutscal/</link>
      <pubDate>Sat, 09 Nov 2024 21:47:13 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/it-shipped-that-way---the-problems-get-squishier-with-luke-hutscal/</guid>
      <description>&lt;h1 id=&#34;it-shipped-that-way---the-problems-get-squishier-with-luke-hutscal&#34;&gt;It Shipped That Way - The Problems Get Squishier, with Luke Hutscal&lt;/h1&gt;&#xA;&lt;p&gt;“There’s no right or wrong to any of this. Everything will work. Are you comfortable paying the costs to make it work. Do you know what your costs are and can you make it work?”&lt;/p&gt;&#xA;&lt;p&gt;Find people really interested in learning and growing&lt;/p&gt;&#xA;&lt;p&gt;Make wrong things feel wrong.&lt;/p&gt;&#xA;&lt;p&gt;Understand the adage - “Choose Boring Technology”&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;it-shipped-that-way---the-problems-get-squishier-with-luke-hutscal-1&#34;&gt;It Shipped That Way - The Problems Get Squishier, with Luke Hutscal&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+AA9k5r-rqos&#34;&gt;https://overcast.fm/+AA9k5r-rqos&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.itshipped.fm/episodes/26&#34;&gt;https://www.itshipped.fm/episodes/26&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #It Shipped That Way# --&gt;&#xA;&lt;!-- {BearID:08FBC00F-7F92-4400-9FCC-E0B474E6F12C} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Day Two Cloud - 239 - (Almost) Every Infrastructure Decision I Endorse or Regret</title>
      <link>https://mcjones.ca/docs/day-two-cloud---239---almost-every-infrastructure-decision-i-endorse-or-regret/</link>
      <pubDate>Sat, 09 Nov 2024 21:25:56 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/day-two-cloud---239---almost-every-infrastructure-decision-i-endorse-or-regret/</guid>
      <description>&lt;h1 id=&#34;day-two-cloud---239---almost-every-infrastructure-decision-i-endorse-or-regret&#34;&gt;Day Two Cloud - 239 - (Almost) Every Infrastructure Decision I Endorse or Regret&lt;/h1&gt;&#xA;&lt;p&gt;Social media posts will tend negative, research will tend to suffer from survivorship bias. Be aware of the information’s limitations.&lt;/p&gt;&#xA;&lt;p&gt;Approach things by knowing the problem you need to solve - don’t have a solution to find a problem.&lt;/p&gt;&#xA;&lt;p&gt;This can lead to tool sprawl - documentation/golden paths help - but it’s a mistake to think of it this way. Complexity sprawl is a much bigger deal than tool sprawl - 3 smaller tools can work better than one much larger complicated tool.&lt;/p&gt;&#xA;&lt;p&gt;The importance of being intentionally public - makes it easier to add folks who were missed and also makes it easier to see why decisions were made.&lt;/p&gt;&#xA;&lt;p&gt;Tools are culture.&lt;/p&gt;&#xA;&lt;p&gt;Approach gen AI like a search engine - requires skills to use it correctly and able to judge the results just like search results.&lt;/p&gt;&#xA;&lt;p&gt;Incentives matter - if you don’t have incentives to prevent throwing things over the fence, you get pain.&lt;/p&gt;&#xA;&lt;p&gt;Create a process only if it will solve a problem.&lt;/p&gt;&#xA;&lt;p&gt;Manage the impacts of alerts.&lt;/p&gt;&#xA;&lt;p&gt;The power of saying no. Articulate the consequences of saying yes.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-fat-pipe---most-popular-packet-pushers-pods---d2c239-almost-every-infrastructure-decision-i-endorse-or-regret&#34;&gt;The Fat Pipe - Most Popular Packet Pushers Pods - D2C239: “(Almost) Every Infrastructure Decision I Endorse or Regret”&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+AAKN3IjAIfY&#34;&gt;https://overcast.fm/+AAKN3IjAIfY&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://packetpushers.net/podcasts/day-two-devops/d2c239-almost-every-infrastructure-decision-i-endorse-or-regret/&#34;&gt;https://packetpushers.net/podcasts/day-two-devops/d2c239-almost-every-infrastructure-decision-i-endorse-or-regret/&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://cep.dev/posts/every-infrastructure-decision-i-endorse-or-regret-after-4-years-running-infrastructure-at-a-startup/&#34;&gt;https://cep.dev/posts/every-infrastructure-decision-i-endorse-or-regret-after-4-years-running-infrastructure-at-a-startup/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #packet pushers# --&gt;&#xA;&lt;!-- #day two cloud# --&gt;&#xA;&lt;!-- {BearID:239FC6BD-9024-4751-97C6-37A695E534FE} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Kustomize and Resource URLs</title>
      <link>https://mcjones.ca/docs/kustomize-and-resource-urls/</link>
      <pubDate>Tue, 29 Oct 2024 00:55:16 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/kustomize-and-resource-urls/</guid>
      <description>&lt;h1 id=&#34;kustomize-and-resource-urls&#34;&gt;Kustomize and Resource URLs&lt;/h1&gt;&#xA;&lt;h2 id=&#34;assumptions&#34;&gt;Assumptions&lt;/h2&gt;&#xA;&lt;p&gt;You have a .tar.gz file and/or a folder of yaml files that can be downloaded (https) or found in a cloned repository.&lt;/p&gt;&#xA;&lt;p&gt;In your &lt;code&gt;kustomization.yaml&lt;/code&gt; you can include the following resource types:&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Clones the repository and assumes it can build from the yaml files at the root of the repository.&lt;/li&gt;&#xA;&lt;li&gt;Clones the repository and assumes it can build from the yaml files in the &lt;code&gt;directory&lt;/code&gt; directory at tag &lt;code&gt;1.0.0&lt;/code&gt;&lt;/li&gt;&#xA;&lt;li&gt;Download a specific file - hence the &lt;code&gt;https://&lt;/code&gt; at the start.&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;resources:&#xA;  - github.com/example/clone&#xA;  - github.com/example/directory?ref=1.0.0&#xA;  - https://github.com/example/example2/releases/download/tag/abc.yaml&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;!-- #snippet #kubernetes #kustomize #public --&gt;&#xA;&lt;!-- {BearID:987473DF-873E-4784-A0C2-01C709AFEED2} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Step CA SSL</title>
      <link>https://mcjones.ca/docs/step-ca-ssl/</link>
      <pubDate>Mon, 28 Oct 2024 21:33:08 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/step-ca-ssl/</guid>
      <description>&lt;h1 id=&#34;step-ca-ssl&#34;&gt;Step CA SSL&lt;/h1&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://smallstep.com/&#34;&gt;https://smallstep.com/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Step CA offers to run as a service/server. So you can use it as an ACME endpoint or for other integrations.&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://smallstep.com/blog/everything-pki/&#34;&gt;https://smallstep.com/blog/everything-pki/&lt;/a&gt; is a great overview.&lt;/p&gt;&#xA;&lt;p&gt;A big note - Step strongly encourages automation - so the default certificate length is a single day.&lt;/p&gt;&#xA;&lt;h2 id=&#34;create-your-ca&#34;&gt;Create your CA&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;step ca init&#xA;&#xA;step-ca $(step path)/config/ca.json&#xA;step ca root root_ca.crt&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;create-a-certificate&#34;&gt;Create a certificate&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;step ca certificate localhost localhost.crt localhost.key&#xA;step ca certificate svc.example.com svc.crt svc.key&#xA;&#xA;step ca certificate localhost localhost.crt localhost.key --not-after=5m&#xA;step ca certificate localhost localhost.crt localhost.key --not-after=90d&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;bundle-certs&#34;&gt;Bundle Certs&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;step certificate bundle localhost.crt root_ca.crt localhost-bundle.crt&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;check-a-certificate&#34;&gt;Check a certificate&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;step certificate inspect svc.crt --short&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;creating-a-cert-in-two-steps-with-csr&#34;&gt;Creating a cert in two steps (with CSR)&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;step certificate create --csr foo.example.com foo.csr foo.key&#xA;step ca sign foo.csr foo.crt&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;export-your-ca-root&#34;&gt;Export your CA root&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;ssh-certificates&#34;&gt;SSH Certificates&lt;/h2&gt;&#xA;&lt;p&gt;Step will also help deal with SSH certs which allows you to rotate your SSH keys frequently.&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Bootstrap your CA:&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;step ca bootstrap --ca-url [CA URL] --fingerprint [CA fingerprint]&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;ol start=&#34;2&#34;&gt;&#xA;&lt;li&gt;Configure SSH:&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;step ssh config --roots &amp;gt; /path/to/ssh_user_key.pub&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;ol start=&#34;3&#34;&gt;&#xA;&lt;li&gt;Configure SSHD:&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;cat &amp;lt;&amp;lt;EOF &amp;gt;&amp;gt; /etc/ssh/sshd_config&#xA;# This is the CA&amp;#39;s public key for authenticating user certificates:&#xA;TrustedUserCAKeys /path/to/ssh_user_key.pub&#xA;EOF&#xA;&#xA;systemctl restart ssh&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;create-ssh-cert&#34;&gt;Create SSH Cert&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;step ssh certificate alice@smallstep.com id_ecdsa&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;!-- #ssl #stepca #public --&gt;&#xA;&lt;!-- {BearID:9E9FBCAD-D253-43F1-8CEA-527A3831C7E7} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Linking directly to text fragments</title>
      <link>https://mcjones.ca/docs/linking-directly-to-text-fragments/</link>
      <pubDate>Thu, 24 Oct 2024 16:36:55 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/linking-directly-to-text-fragments/</guid>
      <description>&lt;h1 id=&#34;linking-directly-to-text-fragments&#34;&gt;Linking directly to text fragments&lt;/h1&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://alfy.blog/2024/10/19/linking-directly-to-web-page-content.html&#34;&gt;https://alfy.blog/2024/10/19/linking-directly-to-web-page-content.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;https://example.com/page.html#:~:text=[prefix-,]textStart[,textEnd][,-suffix]&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Links to “hidden” elements only works in Chrome at present.&lt;/p&gt;&#xA;&#xA;&#xA;&#xA;  &lt;blockquote&gt;&#xA;    &lt;p&gt;If you’re using Chrome, simply highlight some text, right-click, and you’ll find the “Copy link to highlight” option in the context menu.&lt;/p&gt;&#xA;&#xA;  &lt;/blockquote&gt;&#xA;&#xA;&lt;p&gt;Has been a thing since Chrome 90 (Apr. 2021)&lt;br&gt;&#xA;Safari with 16.1 (Sept. 2022)&lt;br&gt;&#xA;Firefox added the ability for the links to work as of Firefox 131 (October 2024)&lt;/p&gt;&#xA;&lt;!-- #public #webdev --&gt;&#xA;&lt;!-- {BearID:52C158FF-E23D-410D-A184-0A77ADA16974} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>City Population in Communities and Peaks</title>
      <link>https://mcjones.ca/docs/city-population-in-communities-and-peaks/</link>
      <pubDate>Mon, 21 Oct 2024 23:56:20 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/city-population-in-communities-and-peaks/</guid>
      <description>&lt;h1 id=&#34;city-population-in-communities-and-peaks&#34;&gt;City Population in Communities and Peaks&lt;/h1&gt;&#xA;&lt;p&gt;Historical Populations: &lt;a href=&#34;https://data.calgary.ca/Demographics/Historical-Community-Populations/jtpc-xgsh/about_data&#34;&gt;https://data.calgary.ca/Demographics/Historical-Community-Populations/jtpc-xgsh/about_data&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Unfortunately Socrata’s UI can’t find the max population and show the date, so a little data science is needed.&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://gist.github.com/Chealion/6205500530b33c97ee2c58d12af8e226&#34;&gt;https://gist.github.com/Chealion/6205500530b33c97ee2c58d12af8e226&lt;/a&gt; has the max pops and their years and how I did it.&lt;/p&gt;&#xA;&lt;p&gt;Other data sources:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Calgary’s 2019 Census: &lt;a href=&#34;https://www.calgary.ca/content/dam/www/ca/city-clerks/documents/election-and-information-services/census2019/2019-censusresultsbook.pdf&#34;&gt;https://www.calgary.ca/content/dam/www/ca/city-clerks/documents/election-and-information-services/census2019/2019-censusresultsbook.pdf&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;Calgary Community Profiles: &lt;a href=&#34;https://www.calgary.ca/communities/profiles.html&#34;&gt;https://www.calgary.ca/communities/profiles.html&lt;/a&gt; based on the 2021 federal census&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;For some background/context - this is a good older article (from 2016) showing the results with maps focused on just 2000 vs 2015 populations: &lt;a href=&#34;https://calgaryherald.com/news/local-news/one-map-that-shows-calgarys-doughnut-of-decline-neighbourhoods-may-be-facing-trouble-ahead&#34;&gt;https://calgaryherald.com/news/local-news/one-map-that-shows-calgarys-doughnut-of-decline-neighbourhoods-may-be-facing-trouble-ahead&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;The article is limited in that it only looks at two dates - not the peak populations of communities, which for some go back to the 60s or 70s.&lt;/p&gt;&#xA;&lt;p&gt;Another item to be aware of is Calgary’s household size has held firm at 2.6/household across the city for 20 years because of our general growth. That number has been declining continent wide since the 50s. The point being - to maintain a population without adding units, the household size needs to stay the same.&lt;/p&gt;&#xA;&lt;p&gt;The above context is important when figuring out if the fact we have old numbers is enough to majorly change what was seen pre-COVID. We can thank the massive 2019 budget cuts for killing the census and why I’m so glad we’ll be getting it back after it got added as an amendment to the rezoning for housing work in May.&lt;/p&gt;&#xA;&lt;!-- #calgary #public #yyccc --&gt;&#xA;&lt;!-- {BearID:717B551F-F8FC-40F4-BADF-15FF6A7A84C8} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Software Misadventures - The hard power of management and the soft power of senior ICs  - Josh Wills</title>
      <link>https://mcjones.ca/docs/software-misadventures---the-hard-power-of-management-and-the-soft-power-of-senior-ics----josh-wills/</link>
      <pubDate>Fri, 04 Oct 2024 03:00:22 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/software-misadventures---the-hard-power-of-management-and-the-soft-power-of-senior-ics----josh-wills/</guid>
      <description>&lt;h1 id=&#34;software-misadventures---the-hard-power-of-management-and-the-soft-power-of-senior-ics----josh-wills&#34;&gt;Software Misadventures - The hard power of management and the soft power of senior ICs  - Josh Wills&lt;/h1&gt;&#xA;&lt;p&gt;This microservice could have been a SQL query&#xA;“Is this the simplest thing we could have done and why didn’t we do it?”&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;software-misadventures---the-hard-power-of-management-and-the-soft-power-of-senior-ics--josh-wills&#34;&gt;Software Misadventures - The hard power of management and the soft power of senior ICs | Josh Wills&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+AAmkooaQHyc&#34;&gt;https://overcast.fm/+AAmkooaQHyc&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://softwaremisadventures.com/p/josh-wills&#34;&gt;https://softwaremisadventures.com/p/josh-wills&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #Software Misadventures# --&gt;&#xA;&lt;!-- {BearID:50D9D2AF-94C7-4D2B-B617-D54A5175C00B} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Software Misadventures - From High School Suspension to US Chief Data Scientist | DJ Patil</title>
      <link>https://mcjones.ca/docs/software-misadventures---from-high-school-suspension-to-us-chief-data-scientist--dj-patil/</link>
      <pubDate>Sun, 15 Sep 2024 21:14:09 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/software-misadventures---from-high-school-suspension-to-us-chief-data-scientist--dj-patil/</guid>
      <description>&lt;h1 id=&#34;software-misadventures---from-high-school-suspension-to-us-chief-data-scientist--dj-patil&#34;&gt;Software Misadventures - From High School Suspension to US Chief Data Scientist | DJ Patil&lt;/h1&gt;&#xA;&lt;p&gt;00:06:00 - the importance of taking a chance of folks and investing on people&#xA;00:19:00 - guidelines, not rules. But is based on the assumption of a solid ethics understanding.&#xA;00:22:30 - formal learning vs life learning&#xA;00:25:27 - finding ethics classes, and exploring things you know nothing about to broaden your horizons and ground yourself.&#xA;00:27:00 - “… as technologists, we really suck at this. We really suck at understanding who our customers are.”&#xA;“Until I sat down with someone, I didn’t really understand it” (re: criminal justice reform)&#xA;00:29:29 - where’s the real people? (Are the right people impacted at the table?)&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;software-misadventures---from-high-school-suspension-to-us-chief-data-scientist--dj-patil-1&#34;&gt;Software Misadventures - From High School Suspension to US Chief Data Scientist | DJ Patil&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+AAmkopC2j5Y&#34;&gt;https://overcast.fm/+AAmkopC2j5Y&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://softwaremisadventures.com/p/dj-patil&#34;&gt;https://softwaremisadventures.com/p/dj-patil&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #Software Misadventures# --&gt;&#xA;&lt;!-- {BearID:70E18D80-9EDA-4226-91B2-DDB789522AF7} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>vim Snippets</title>
      <link>https://mcjones.ca/docs/vim-snippets/</link>
      <pubDate>Sun, 18 Aug 2024 03:58:44 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/vim-snippets/</guid>
      <description>&lt;h1 id=&#34;vim-snippets&#34;&gt;vim Snippets&lt;/h1&gt;&#xA;&lt;h2 id=&#34;moving-around&#34;&gt;Moving around&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;code&gt;f&lt;/code&gt; and &lt;code&gt;F&lt;/code&gt; will jump the character on the line that you enter. Shift F will go backwards.&lt;/li&gt;&#xA;&lt;li&gt;&lt;code&gt;t&lt;/code&gt; and &lt;code&gt;T&lt;/code&gt; are similar but will put you one character in front of where you want go&lt;/li&gt;&#xA;&lt;li&gt;&lt;code&gt;gu&lt;/code&gt; and &lt;code&gt;gU&lt;/code&gt; - and number for lines to make upper or lower case.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;showing-spaces&#34;&gt;Showing Spaces&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;:set listchars=eol:$,tab:&amp;gt;-,trail:~,space:␣&#xA;:set list&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;The &lt;code&gt;space:␣&lt;/code&gt; is gold. Thank you &lt;a href=&#34;https://askubuntu.com/questions/74485/how-to-display-hidden-characters-in-vim#comment1621885_74503&#34;&gt;loxaxs&lt;/a&gt;!&lt;/p&gt;&#xA;&lt;h2 id=&#34;preventing-indenting-when-commenting&#34;&gt;Preventing Indenting when Commenting&lt;/h2&gt;&#xA;&lt;p&gt;You’ll need to add the following to any filetype. (In this case we’re showing # and yaml)&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;set indentkeys-=0#&#xA;&#xA;autocmd FileType yaml setlocal ts=2 sts=2 sw=2 expandtab indentkeys-=0#&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;block-editing&#34;&gt;Block Editing&lt;/h2&gt;&#xA;&lt;p&gt;Enter visual mode: Control-V&#xA;Select lines: eg. 5j for the next 5 lines&#xA;Enter Insert with Shift-I&#xA;Type stuff/make changes&#xA;Hit Escape&lt;/p&gt;&#xA;&lt;!-- #public #snippet #vim --&gt;&#xA;&lt;!-- {BearID:09311C43-4C73-4A67-B9F4-88E85BF628A3} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Software Misadventures - Stories behind building HashiCorp - Mitchell Hashimoto</title>
      <link>https://mcjones.ca/docs/software-misadventures---stories-behind-building-hashicorp---mitchell-hashimoto/</link>
      <pubDate>Fri, 16 Aug 2024 04:18:36 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/software-misadventures---stories-behind-building-hashicorp---mitchell-hashimoto/</guid>
      <description>&lt;h1 id=&#34;software-misadventures---stories-behind-building-hashicorp---mitchell-hashimoto&#34;&gt;Software Misadventures - Stories behind building HashiCorp - Mitchell Hashimoto&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;software-misadventures---stories-behind-building-hashicorp--mitchell-hashimoto&#34;&gt;Software Misadventures - Stories behind building HashiCorp | Mitchell Hashimoto&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+AAmkorOxUsQ&#34;&gt;https://overcast.fm/+AAmkorOxUsQ&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://softwaremisadventures.com/p/stories-behind-building-hashicorp&#34;&gt;https://softwaremisadventures.com/p/stories-behind-building-hashicorp&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #Software Misadventures# --&gt;&#xA;&lt;!-- {BearID:4DDF5D72-176F-4961-9AF6-207447E4CD0F} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>ffmpeg Snippets</title>
      <link>https://mcjones.ca/docs/ffmpeg-snippets/</link>
      <pubDate>Thu, 08 Aug 2024 05:10:22 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/ffmpeg-snippets/</guid>
      <description>&lt;h1 id=&#34;ffmpeg-snippets&#34;&gt;ffmpeg Snippets&lt;/h1&gt;&#xA;&lt;h2 id=&#34;ogg-vorbis-to-aac&#34;&gt;Ogg Vorbis to AAC&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;ffmpeg -i myaudio.ogg -c:a aac -vn -b:a 160k myaudio.m4a&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;image-sequence-to-h264&#34;&gt;Image Sequence to H.264&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;ffmpeg -framerate 10 -pattern_type glob -i &amp;#39;*.jpg&amp;#39; -c:v libx264 -crf 18 -pix_fmt yuv420p out.mp4&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;!-- #ffmpeg #public --&gt;&#xA;&lt;!-- {BearID:6D4DFCCD-ECA2-4D91-A9F6-B5FB8CEF21C8} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Using community.general.cloudflare_dns</title>
      <link>https://mcjones.ca/docs/using-community.general.cloudflare_dns/</link>
      <pubDate>Mon, 29 Jul 2024 06:14:22 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/using-community.general.cloudflare_dns/</guid>
      <description>&lt;h1 id=&#34;using-communitygeneralcloudflare_dns&#34;&gt;Using community.general.cloudflare_dns&lt;/h1&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;- name: Create AAAA record&#xA;  community.general.cloudflare_dns:&#xA;    zone: ZONE NAME&#xA;    record: &amp;#34;{{ ansible_hostname }}&amp;#34;&#xA;    type: AAAA&#xA;    value: &amp;#34;{{ ansible_default_ipv6.address }}&amp;#34;&#xA;    api_token: &amp;lt;TOKEN HERE&amp;gt;&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;!-- #ansible #snippet #public --&gt;&#xA;&lt;!-- {BearID:D995CC11-3C4B-4D6B-968B-61D7306B9381} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>The War on Cars - Fixing America&#39;s Car Culture with David Zipper</title>
      <link>https://mcjones.ca/docs/the-war-on-cars---fixing-americas-car-culture-with-david-zipper/</link>
      <pubDate>Fri, 26 Jul 2024 15:32:31 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/the-war-on-cars---fixing-americas-car-culture-with-david-zipper/</guid>
      <description>&lt;h1 id=&#34;the-war-on-cars---fixing-americas-car-culture-with-david-zipper&#34;&gt;The War on Cars - Fixing America&amp;rsquo;s Car Culture with David Zipper&lt;/h1&gt;&#xA;&lt;p&gt;This is a banger full of really good sound bites.&lt;/p&gt;&#xA;&lt;p&gt;5 min mark:&lt;/p&gt;&#xA;&#xA;&#xA;&#xA;  &lt;blockquote&gt;&#xA;    &lt;p&gt;“At some point, you have to make a choice of whether it’s more important to save lives or to facilitate fast car traffic.”&lt;/p&gt;&#xA;&#xA;  &lt;/blockquote&gt;&#xA;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;85th percentile, right on red, parking minimums. All “feels rightish” starting points that have proven to be key to the negative reinforcement cycles in safety on roads.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;15:40:&lt;/p&gt;&#xA;&#xA;&#xA;&#xA;  &lt;blockquote&gt;&#xA;    &lt;p&gt;“due to some federal regulations like the CAFE loophole that allowed SUVs to be treated as light trucks, and there are some other federal rules, but a lot of that is due to the car companies trying to figure out how to make more money from a given sale. SUVs and trucks are more expensive and more profitable than smaller cars, sedans and station wagons. That is a big part of it.”&lt;/p&gt;&#xA;&#xA;  &lt;/blockquote&gt;&#xA;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Zipper’s article from 2022 noting just how much worse the growing size of vehicles is for anyone not in a vehicle: &lt;a href=&#34;https://slate.com/business/2022/11/suv-size-truck-bloat-pedestrian-deaths.html&#34;&gt;https://slate.com/business/2022/11/suv-size-truck-bloat-pedestrian-deaths.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Interesting public sector actions:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;speed governors on the public fleet can cause a noticeable impact in average speed when non emergency vehicles can’t speed.&lt;/li&gt;&#xA;&lt;li&gt;Weight based car fees&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-war-on-cars---fixing-americas-car-culture-with-david-zipper-1&#34;&gt;The War on Cars - Fixing America’s Car Culture with David Zipper&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+AAO31o3BirI&#34;&gt;https://overcast.fm/+AAO31o3BirI&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://thewaroncars.org/2024/01/02/fixing-americas-car-culture-with-david-zipper/&#34;&gt;https://thewaroncars.org/2024/01/02/fixing-americas-car-culture-with-david-zipper/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #The War on Cars# --&gt;&#xA;&lt;!-- {BearID:30C72061-3F2D-4167-A81B-2FA0C9694AD4} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Mask Change of a Prefix in Netbox in Python</title>
      <link>https://mcjones.ca/docs/mask-change-of-a-prefix-in-netbox-in-python/</link>
      <pubDate>Mon, 22 Jul 2024 23:27:20 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/mask-change-of-a-prefix-in-netbox-in-python/</guid>
      <description>&lt;h1 id=&#34;mask-change-of-a-prefix-in-netbox-in-python&#34;&gt;Mask Change of a Prefix in Netbox in Python&lt;/h1&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;import pynetbox&#xA;&#xA;def main():&#xA;    nb = pynetbox.api(&amp;#39;NETBOX_URL&amp;#39;, &amp;#39;NETBOX_TOKEN&amp;#39;)&#xA;&#xA;    ip_addresses = nb.ipam.ip_addresses.filter(parent=&amp;#34;192.168.0.0/24&amp;#34;)&#xA;    for ip in ip_addresses:&#xA;        if &amp;#34;/32&amp;#34; in str(ip):&#xA;            corrected = str(ip)[:-3] + &amp;#34;/24&amp;#34;&#xA;            ip.address = corrected&#xA;            ip.display = corrected&#xA;            ip.save()&#xA;            print ip + &amp;#34; -&amp;gt; &amp;#34; + corrected&#xA;&#xA;if __name__ == &amp;#39;__main__&amp;#39;:&#xA;    main()&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;!-- #python #snippet #public #netbox --&gt;&#xA;&lt;!-- {BearID:67503A4F-7F3A-49ED-9FFF-AD01C96B690E} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Escape Pod - 918 - Conference of the Birds</title>
      <link>https://mcjones.ca/docs/escape-pod---918---conference-of-the-birds/</link>
      <pubDate>Wed, 10 Jul 2024 23:36:07 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/escape-pod---918---conference-of-the-birds/</guid>
      <description>&lt;h1 id=&#34;escape-pod---918---conference-of-the-birds&#34;&gt;Escape Pod - 918 - Conference of the Birds&lt;/h1&gt;&#xA;&lt;h2 id=&#34;by-benjamin-c-kinney&#34;&gt;By &lt;a href=&#34;https://escapepod.org/people/benjamin-c-kinney/&#34;&gt;Benjamin C. Kinney&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;Short story exploring a program creating its own personality.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;escape-pod---escape-pod-918-conference-of-the-birds&#34;&gt;Escape Pod - Escape Pod 918: Conference of the Birds&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJrp1brpU&#34;&gt;https://overcast.fm/+GJrp1brpU&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://escapepod.org/2023/12/07/escape-pod-918-conference-of-the-birds/&#34;&gt;https://escapepod.org/2023/12/07/escape-pod-918-conference-of-the-birds/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #Escape Pod# --&gt;&#xA;&lt;!-- {BearID:33746CA8-84B4-4B04-AB86-0188DEFB032E} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>COMMONS - CULTS - Multilevel Marketing (Episode 7 and 8)</title>
      <link>https://mcjones.ca/docs/commons---cults---multilevel-marketing-episode-7-and-8/</link>
      <pubDate>Mon, 08 Jul 2024 15:19:02 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/commons---cults---multilevel-marketing-episode-7-and-8/</guid>
      <description>&lt;h1 id=&#34;commons---cults---multilevel-marketing-episode-7-and-8&#34;&gt;COMMONS - CULTS - Multilevel Marketing (Episode 7 and 8)&lt;/h1&gt;&#xA;&lt;h3 id=&#34;episode-7&#34;&gt;Episode 7&lt;/h3&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;MLMs have moved from co-opting femnist and suffragist terminology to holistic, all nautral, non toxic, etc.&lt;/li&gt;&#xA;&lt;li&gt;Pseudo-religious experience&lt;/li&gt;&#xA;&lt;li&gt;Completely adjacent to the &lt;a href=&#34;https://en.wikipedia.org/wiki/Prosperity_theology&#34;&gt;prosperity gospel&lt;/a&gt; grift.&lt;/li&gt;&#xA;&lt;li&gt;The requirement for folks involved to only operate on hope and dreams.&lt;/li&gt;&#xA;&lt;li&gt;If you fail - it’s a character defect. If you succeed - then it’s part of the system. This is part of how it becomes a belief system.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h3 id=&#34;episode-8&#34;&gt;Episode 8&lt;/h3&gt;&#xA;&#xA;&#xA;&#xA;  &lt;blockquote&gt;&#xA;    &lt;p&gt;Multilevel marketing isn’t based on rational business logic, it’s not even built on a irrational business logic. It’s ideology. It’s faith. It’s a particularly American form of faith. The Protestant ethic stripped away of even the pretensions of Christian charity.&lt;/p&gt;&#xA;&#xA;  &lt;/blockquote&gt;&#xA;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Amway’s DNA and creation is all prosperity theology and making the 99% set up to fail to feel shame and not blame Amway.&lt;/li&gt;&#xA;&lt;li&gt;To do fraud on an industrial scale you need a belief system, propaganda. Authoritarian control is a requirement&lt;/li&gt;&#xA;&lt;li&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;commons---cults-7---hey-bossbabe&#34;&gt;COMMONS - CULTS 7 - Hey Bossbabe!&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+7ppdxFQeo&#34;&gt;https://overcast.fm/+7ppdxFQeo&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.canadaland.com/podcast/cults-7-hey-bossbabe/&#34;&gt;https://www.canadaland.com/podcast/cults-7-hey-bossbabe/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h6 id=&#34;commons---cults-8---the-eye-of-the-pyramid&#34;&gt;COMMONS - CULTS 8 - The Eye of the Pyramid&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+7ppetVn2M&#34;&gt;https://overcast.fm/+7ppetVn2M&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.canadaland.com/podcast/cults-8-the-eye-of-the-pyramid/&#34;&gt;https://www.canadaland.com/podcast/cults-8-the-eye-of-the-pyramid/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #COMMONS# --&gt;&#xA;&lt;!-- {BearID:AEE81B1E-D3D9-4826-9001-A7F8341B3347} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Code Complexity Clock</title>
      <link>https://mcjones.ca/docs/code-complexity-clock/</link>
      <pubDate>Wed, 03 Jul 2024 03:53:53 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/code-complexity-clock/</guid>
      <description>&lt;h1 id=&#34;code-complexity-clock&#34;&gt;Code Complexity Clock&lt;/h1&gt;&#xA;&lt;p&gt;Source: &lt;a href=&#34;http://mikehadlow.blogspot.com/2012/05/configuration-complexity-clock.html&#34;&gt;http://mikehadlow.blogspot.com/2012/05/configuration-complexity-clock.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;12:00 - Hard code&#xA;3:00 - Config Values&#xA;6:00 - Rules Engine&#xA;9:00 - DSL&lt;/p&gt;&#xA;&lt;p&gt;Noting the fun of how you keep moving around the clock. This has been very, very clear in my last decade of work.&lt;/p&gt;&#xA;&lt;p&gt;Florian Haas did a fantastic talk referencing this again. See &lt;a href=&#34;https://xahteiwi.eu/quit-simplifying/#/3/5&#34;&gt;slides&lt;/a&gt; and &lt;a href=&#34;https://www.youtube.com/watch?v=KlE-VyUYLts&#34;&gt;YouTube video&lt;/a&gt; - quit pretending you can get off the complexity clock.&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Docs or it didn’t happen&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://en.wikipedia.org/wiki/Principle_of_least_astonishment&#34;&gt;Principle of Least Astonishment&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;Test cases or else&lt;/li&gt;&#xA;&lt;li&gt;Feature flag or else&lt;/li&gt;&#xA;&lt;li&gt;Aim to keep things simple, because you can’t make them simple&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- {BearID:28CE2166-A23B-4B6A-AD08-C51653C4580F} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Recipes for Mugen</title>
      <link>https://mcjones.ca/docs/recipes-for-mugen/</link>
      <pubDate>Sun, 23 Jun 2024 16:27:33 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/recipes-for-mugen/</guid>
      <description>&lt;h1 id=&#34;recipes-for-mugen&#34;&gt;Recipes for Mugen&lt;/h1&gt;&#xA;&lt;h2 id=&#34;hario&#34;&gt;Hario&lt;/h2&gt;&#xA;&lt;p&gt;20g coffee&lt;br&gt;&#xA;240g water&lt;/p&gt;&#xA;&lt;p&gt;Single pour. Let draw down ~ 2 minutes&lt;/p&gt;&#xA;&lt;p&gt;Find it on the thin side but solid.&lt;/p&gt;&#xA;&lt;h2 id=&#34;reddit-recipes&#34;&gt;Reddit Recipes&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://new.reddit.com/r/pourover/comments/17dzs3u/mugen_how_is_it_so_good_is_the_v60_a_lie/&#34;&gt;https://new.reddit.com/r/pourover/comments/17dzs3u/mugen_how_is_it_so_good_is_the_v60_a_lie/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;17g coffee&lt;br&gt;&#xA;270g water&lt;br&gt;&#xA;One pour&lt;/p&gt;&#xA;&lt;p&gt;Takes 2:15-2:30&lt;/p&gt;&#xA;&lt;!-- #coffee #recipe #public --&gt;&#xA;&lt;!-- {BearID:C4B74862-DC1F-4B7D-AA09-E14FD3B94D9B} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Recipes for V60</title>
      <link>https://mcjones.ca/docs/recipes-for-v60/</link>
      <pubDate>Sun, 23 Jun 2024 16:26:05 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/recipes-for-v60/</guid>
      <description>&lt;h1 id=&#34;recipes-for-v60&#34;&gt;Recipes for V60&lt;/h1&gt;&#xA;&lt;h3 id=&#34;iced-coffee&#34;&gt;Iced Coffee&lt;/h3&gt;&#xA;&lt;p&gt;15 g coffee (slightly finer than table salt)&lt;br&gt;&#xA;155g hot water (196F)&lt;br&gt;&#xA;130g ice&lt;/p&gt;&#xA;&lt;p&gt;50g water&lt;br&gt;&#xA;Bloom 35 seconds&lt;br&gt;&#xA;105g water&lt;/p&gt;&#xA;&lt;h3 id=&#34;mike-devlin-recipe-go-to-recipe&#34;&gt;Mike Devlin Recipe (Go to recipe)&lt;/h3&gt;&#xA;&lt;p&gt;29 g coffee (slightly finer than French press)&lt;br&gt;&#xA;440 mL water (just off boil)&lt;br&gt;&#xA;Rinse filter&lt;br&gt;&#xA;Infuse and let bloom 45 seconds.&lt;br&gt;&#xA;Pour from centre out clockwise&lt;/p&gt;&#xA;&lt;h3 id=&#34;tonx-recipe&#34;&gt;Tonx Recipe&lt;/h3&gt;&#xA;&lt;p&gt;27g coffee&lt;br&gt;&#xA;414 mL water&lt;br&gt;&#xA;Rinse filter&lt;br&gt;&#xA;Infuse. Let bloom 30-45 seconds&lt;br&gt;&#xA;Pour in centre in small circles until full. (“Ride the bloom”)&lt;br&gt;&#xA;Should have a uniform heavy layer of grounds coating filter when done.&lt;/p&gt;&#xA;&lt;h3 id=&#34;monogram&#34;&gt;Monogram&lt;/h3&gt;&#xA;&lt;p&gt;22g coffee&lt;br&gt;&#xA;350g water&lt;br&gt;&#xA;Rinse filter&lt;br&gt;&#xA;Infused with 50g water and let bloom 30 seconds&lt;br&gt;&#xA;Pour 100g in circles going from centre to outside and back. Wait until water is almost back to grounds.&lt;br&gt;&#xA;Second pulse: Pour 100g in circles going from centre to outside and back. Wait until water is almost back to grounds.&lt;br&gt;&#xA;Third pulse: Pour 100g in circles going from centre to outside and back. Using a spoon give the outside grounds a gentle stir&lt;/p&gt;&#xA;&lt;h3 id=&#34;james-hoffmann&#34;&gt;James Hoffmann&lt;/h3&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://www.youtube.com/watch?v=AI4ynXzkSQo&#34;&gt;https://www.youtube.com/watch?v=AI4ynXzkSQo&lt;/a&gt;&#xA;30g coffee&lt;br&gt;&#xA;500g water&lt;/p&gt;&#xA;&lt;p&gt;Rinse&lt;br&gt;&#xA;Poke grounds&lt;br&gt;&#xA;Add 60g water, swirl to mix&lt;br&gt;&#xA;Wait 30 seconds&lt;br&gt;&#xA;Add to 300g (60%) by 1:15&lt;br&gt;&#xA;Cone should stay full&lt;br&gt;&#xA;Pour the remaining gently&lt;br&gt;&#xA;When done with weight, stir one way and then the other to get grounds off side&lt;br&gt;&#xA;Allow to drain and then give the brewer one last swirl&lt;/p&gt;&#xA;&lt;h3 id=&#34;cafec-osmotic&#34;&gt;Cafec Osmotic&lt;/h3&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://www.youtube.com/watch?v=t9hR77mfqe0&#34;&gt;https://www.youtube.com/watch?v=t9hR77mfqe0&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Pour slowly and more frequently - stop when you see the coffee bed rise.&lt;/p&gt;&#xA;&lt;p&gt;18g coffee (coarser)&#xA;250g water&lt;/p&gt;&#xA;&lt;p&gt;Pour initial 45g for bloom (40 seconds)&#xA;Second pour until 150g (should finish at ~1:45 mark)&#xA;Third pour in small circles until 300g&#xA;Last pour - circle out to the edge. (should finish in 3:30-4)&lt;/p&gt;&#xA;&lt;h3 id=&#34;46-method-tetsu-kasuya&#34;&gt;4:6 Method (Tetsu Kasuya)&lt;/h3&gt;&#xA;&lt;p&gt;2016 V60 winning recipe. The tl;dr is 40% of the water in the first two pours, while the other 60% split up more. The first portion affects the brightness, while the second affects the body. See &lt;a href=&#34;https://en.philocoffea.com/blogs/blog/coffee-brewing-method&#34;&gt;their blog post&lt;/a&gt; on it.&lt;/p&gt;&#xA;&lt;p&gt;40g coffee&lt;br&gt;&#xA;600g water&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;(00:00) Bloom with 100g, wait 45 seconds&lt;/li&gt;&#xA;&lt;li&gt;(00:45) Add next pulse (140g), wait 45 seconds&lt;/li&gt;&#xA;&lt;li&gt;(01:30) Add next pulse (120g), wait 45 seconds&lt;/li&gt;&#xA;&lt;li&gt;(02:15) Add next pulse (120g), wait 45 seconds&lt;/li&gt;&#xA;&lt;li&gt;(03:00) Add next pulse (120g), wait 45 seconds&lt;/li&gt;&#xA;&lt;li&gt;(03:30) Remove&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;p&gt;The basic is 5 x 120g pours&#xA;But tweak the pours slightly for sweetness (long second pour) or acidity (longer first pour).&#xA;Last 3 pours affect the strength of the coffee - 4 x 90 instead of 3 x120 can increase. 2 x 180 would reduce.&lt;/p&gt;&#xA;&lt;!-- #coffee #recipe #public --&gt;&#xA;&lt;!-- {BearID:46A1A56A-8607-4243-BC8F-63FF29AE81E1} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Recipes for AeroPress</title>
      <link>https://mcjones.ca/docs/recipes-for-aeropress/</link>
      <pubDate>Sun, 23 Jun 2024 16:24:20 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/recipes-for-aeropress/</guid>
      <description>&lt;h1 id=&#34;recipes-for-aeropress&#34;&gt;Recipes for AeroPress&lt;/h1&gt;&#xA;&lt;h2 id=&#34;espresso&#34;&gt;Espresso&lt;/h2&gt;&#xA;&lt;p&gt;From the AeroPress manual&lt;/p&gt;&#xA;&lt;p&gt;Normal with filter in&lt;br&gt;&#xA;22g coffee fine&lt;br&gt;&#xA;Water up to the 2.&lt;/p&gt;&#xA;&lt;h2 id=&#34;my-standard&#34;&gt;My Standard&lt;/h2&gt;&#xA;&lt;p&gt;Water 195F&lt;br&gt;&#xA;16g coffee&lt;br&gt;&#xA;almost full.&lt;br&gt;&#xA;Wait 30. Stir back and forth with paddle 5 times.&lt;br&gt;&#xA;Wait till 2:00 mark.&lt;br&gt;&#xA;Screw on filter and press out. Stop when you hit air&lt;/p&gt;&#xA;&lt;h2 id=&#34;aeropress-inverted&#34;&gt;AeroPress Inverted&lt;/h2&gt;&#xA;&lt;p&gt;13g coffee - slightly coarser&lt;br&gt;&#xA;170g water&lt;br&gt;&#xA;Stir 5 times clockwise, 5 times counter&lt;br&gt;&#xA;Sit for 60 seconds&lt;br&gt;&#xA;Stir again&lt;br&gt;&#xA;Screw on filter, remove air, flip and press out&lt;/p&gt;&#xA;&lt;h2 id=&#34;stubby&#34;&gt;Stubby&lt;/h2&gt;&#xA;&lt;p&gt;25g coffee&lt;br&gt;&#xA;Inverted&lt;br&gt;&#xA;Fill 50g, stir&lt;br&gt;&#xA;Fill 100g (150 total)&lt;br&gt;&#xA;Cap and press air out&lt;br&gt;&#xA;Flip at 1:00&lt;br&gt;&#xA;Press for 30 seconds&lt;br&gt;&#xA;Fill mug with 100g&#xA;&lt;a href=&#34;https://aeroprecipe.com/recipes/the-stubby&#34;&gt;https://aeroprecipe.com/recipes/the-stubby&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;jeremy-moore-us-champ-2014&#34;&gt;Jeremy Moore (US Champ 2014)&lt;/h2&gt;&#xA;&lt;p&gt;Standard&lt;br&gt;&#xA;17g coffee&lt;br&gt;&#xA;260g Water 202F&lt;br&gt;&#xA;Pour water in circular motion over coffee - ~46 seconds&lt;br&gt;&#xA;Stir Once&lt;br&gt;&#xA;Let sit for 47 seconds&lt;br&gt;&#xA;Plunge for 48 seconds&lt;br&gt;&#xA;&lt;a href=&#34;http://usaeropress.tumblr.com/post/83960788636/jeremys-winning-aeropress-recipe&#34;&gt;http://usaeropress.tumblr.com/post/83960788636/jeremys-winning-aeropress-recipe&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;lukas-zahradnik-world-champ-2015&#34;&gt;Lukas Zahradnik (World Champ 2015)&lt;/h2&gt;&#xA;&lt;p&gt;Standard&lt;br&gt;&#xA;20g coffee&lt;br&gt;&#xA;230g Water 73C (165F)&lt;br&gt;&#xA;Bloom 15 seconds with 60g water&lt;br&gt;&#xA;Turbulent wiggle for 15 seconds&lt;br&gt;&#xA;Pour rest of water for 10 seconds&lt;br&gt;&#xA;Press&lt;br&gt;&#xA;Stop Pressing just under the 1&lt;br&gt;&#xA;1:30 total brew time&lt;br&gt;&#xA;&lt;a href=&#34;http://worldaeropresschampionship.com/2015/06/23/lukas-zahradniks-winning-recipe/&#34;&gt;http://worldaeropresschampionship.com/2015/06/23/lukas-zahradniks-winning-recipe/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;nick-hatch-world-2nd-2015&#34;&gt;Nick Hatch (World 2nd 2015)&lt;/h2&gt;&#xA;&lt;p&gt;Standard&lt;br&gt;&#xA;17.5g coffee&lt;br&gt;&#xA;280g Water 85C (185F)&lt;br&gt;&#xA;Add 50-60g Water&lt;br&gt;&#xA;Stir 5 times&lt;br&gt;&#xA;Let bloom for 25 seconds&lt;br&gt;&#xA;Add rest of water in 20 seconds&lt;br&gt;&#xA;1 minute plunge into cold cup&lt;br&gt;&#xA;More: &lt;a href=&#34;http://worldaeropresschampionship.com/recipes/&#34;&gt;http://worldaeropresschampionship.com/recipes/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;tim-wendelboe&#34;&gt;Tim Wendelboe&lt;/h2&gt;&#xA;&lt;p&gt;Standard&lt;br&gt;&#xA;14g coffee&lt;br&gt;&#xA;215g boiling water&lt;br&gt;&#xA;Stir, 45 sec steep, stir, press for 10 sec.&lt;/p&gt;&#xA;&lt;h2 id=&#34;lukas-zahradnik&#34;&gt;Lukas Zahradnik&lt;/h2&gt;&#xA;&lt;p&gt;Inverted&lt;br&gt;&#xA;20g coffee&lt;br&gt;&#xA;220g water at 79C&lt;br&gt;&#xA;Add 60g water. Let bloom for 30 seconds&lt;br&gt;&#xA;Pour remaining to 220g.&lt;br&gt;&#xA;Attach and press after 1:40.&lt;/p&gt;&#xA;&lt;h2 id=&#34;ben-kaminsky&#34;&gt;Ben Kaminsky&lt;/h2&gt;&#xA;&lt;p&gt;Inverted&lt;br&gt;&#xA;14g coffee (fine)&lt;br&gt;&#xA;190g water off the boil&lt;br&gt;&#xA;Recommends pushing boiling water through filter first.&lt;br&gt;&#xA;Wait 30 seconds off boil, add 95g of water. Zero scale.&lt;br&gt;&#xA;Add coffee, one stir.&lt;br&gt;&#xA;Add rest (95g) of water.&lt;br&gt;&#xA;Wait 50 seconds.&lt;br&gt;&#xA;Flip, and take 25 seconds to plunge. Stop at air sound.&lt;/p&gt;&#xA;&lt;h2 id=&#34;james-hoffmann&#34;&gt;James Hoffmann&lt;/h2&gt;&#xA;&lt;p&gt;Standard&lt;br&gt;&#xA;11g coffee (grind fine - 12?)&lt;br&gt;&#xA;200g water at boil&lt;br&gt;&#xA;Place piston in to create vacuum&lt;br&gt;&#xA;At 2:00, gentle swirl&lt;br&gt;&#xA;At 2:30, press gently all the way&lt;/p&gt;&#xA;&lt;p&gt;Sour - grind size too coarse&lt;br&gt;&#xA;Bitter - grind size too fine&lt;/p&gt;&#xA;&lt;h2 id=&#34;love-me-some-acid-kata-muhel&#34;&gt;Love me some acid (Kata Muhel)&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://aeroprecipe.com/recipes/love-me-some-acid&#34;&gt;https://aeroprecipe.com/recipes/love-me-some-acid&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Inverted&lt;br&gt;&#xA;Double paper filter&lt;br&gt;&#xA;20g coffee (medium)&lt;br&gt;&#xA;230mL water @ 81C&lt;br&gt;&#xA;Soak coffee with 70 grams water&lt;br&gt;&#xA;Swirl for 15 seconds&lt;br&gt;&#xA;Fill remaining water&lt;br&gt;&#xA;At 1:00 mark, put cap on&lt;br&gt;&#xA;Invert at 1:20&lt;br&gt;&#xA;Start plunge at 1:30 to be done around 1:45.&lt;/p&gt;&#xA;&lt;h2 id=&#34;more-recipes&#34;&gt;More Recipes?&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://aeroprecipe.com/&#34;&gt;https://aeroprecipe.com/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #coffee #recipe #public --&gt;&#xA;&lt;!-- {BearID:0438F9F4-9914-4945-BE58-DF8814F8F87D} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Recipes for Chemex</title>
      <link>https://mcjones.ca/docs/recipes-for-chemex/</link>
      <pubDate>Sun, 23 Jun 2024 16:23:15 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/recipes-for-chemex/</guid>
      <description>&lt;h1 id=&#34;recipes-for-chemex&#34;&gt;Recipes for Chemex&lt;/h1&gt;&#xA;&lt;p&gt;Wet filter with warm water. Discard water&lt;br&gt;&#xA;50g coffee paper filter&lt;br&gt;&#xA;Wet grounds and let bloom. Once deflated, pour rest of water in circular pattern&lt;br&gt;&#xA;650 grams water&lt;/p&gt;&#xA;&lt;!-- #coffee #recipe #public --&gt;&#xA;&lt;!-- {BearID:B14A6ED3-8E95-47A3-B66D-277FDB49145D} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Recipes for Kone</title>
      <link>https://mcjones.ca/docs/recipes-for-kone/</link>
      <pubDate>Sun, 23 Jun 2024 16:22:24 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/recipes-for-kone/</guid>
      <description>&lt;h1 id=&#34;recipes-for-kone&#34;&gt;Recipes for Kone&lt;/h1&gt;&#xA;&lt;h2 id=&#34;go-to&#34;&gt;Go To&lt;/h2&gt;&#xA;&lt;p&gt;26g coffee&#xA;420g water&lt;/p&gt;&#xA;&lt;p&gt;26g finer than paper filter&lt;br&gt;&#xA;Pour 100g water to soak grinds&lt;br&gt;&#xA;Allow to settle&lt;br&gt;&#xA;320g more water&lt;br&gt;&#xA;~2-3mL per second in centre&lt;/p&gt;&#xA;&lt;h2 id=&#34;large&#34;&gt;Large&lt;/h2&gt;&#xA;&lt;p&gt;45g&lt;br&gt;&#xA;Pour 100mL to soak&lt;br&gt;&#xA;Allow to settle&lt;br&gt;&#xA;550 mL more water (~3 minutes to pour)&lt;br&gt;&#xA;Let drip for 1 minute&lt;/p&gt;&#xA;&lt;!-- #public #recipe #coffee --&gt;&#xA;&lt;!-- {BearID:D1ABC6F7-63D0-4904-9C5D-F1D8215027DB} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Recipes for Japanese Style Iced Coffee</title>
      <link>https://mcjones.ca/docs/recipes-for-japanese-style-iced-coffee/</link>
      <pubDate>Sun, 23 Jun 2024 16:21:52 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/recipes-for-japanese-style-iced-coffee/</guid>
      <description>&lt;h1 id=&#34;recipes-for-japanese-style-iced-coffee&#34;&gt;Recipes for Japanese Style Iced Coffee&lt;/h1&gt;&#xA;&lt;h3 id=&#34;rule-of-thumb&#34;&gt;Rule of Thumb&lt;/h3&gt;&#xA;&lt;p&gt;To accommodate the melting ice, use a hot water to coffee ratio:&lt;br&gt;&#xA;Chemex (ice in Chemex) 12:1&lt;br&gt;&#xA;Aeropress 10:1&lt;br&gt;&#xA;V60 13:1&lt;br&gt;&#xA;Kone 11:1&lt;/p&gt;&#xA;&lt;p&gt;Grind finer than you would normally for hot.&lt;/p&gt;&#xA;&lt;h3 id=&#34;eight-ounce-coffee&#34;&gt;Eight Ounce Coffee&lt;/h3&gt;&#xA;&lt;p&gt;53g coffee&lt;br&gt;&#xA;(Roughly 1/3rd ice, 2/3 ice on the 15:1)&lt;br&gt;&#xA;235 grams ice&lt;br&gt;&#xA;560 grams water&lt;/p&gt;&#xA;&lt;!-- #public #coffee #recipe --&gt;&#xA;&lt;!-- {BearID:C3B26E8C-28F5-4BC9-B588-EE69A17B2247} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>IPv6 subnet sizing Reminder</title>
      <link>https://mcjones.ca/docs/ipv6-subnet-sizing-reminder/</link>
      <pubDate>Sun, 16 Jun 2024 18:42:36 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/ipv6-subnet-sizing-reminder/</guid>
      <description>&lt;h1 id=&#34;ipv6-subnet-sizing-reminder&#34;&gt;IPv6 subnet sizing Reminder&lt;/h1&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;/64 - local subnet&lt;/li&gt;&#xA;&lt;li&gt;/56 (256 x /64) - site/subscriber&lt;/li&gt;&#xA;&lt;li&gt;/48 (65k /64 or 256 x /56) - if you know you want to give out /56s&lt;/li&gt;&#xA;&lt;li&gt;/32 - 65k x /48s&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Generally you’ll use a /32 to give /48s.&lt;br&gt;&#xA;/48s will give /56s.&lt;br&gt;&#xA;/56s will give /64s&lt;br&gt;&#xA;And the smallest you go is the /64 (with some very minor exceptions)&lt;/p&gt;&#xA;&lt;!-- #public #ipv6 --&gt;&#xA;&lt;!-- {BearID:71F64264-4608-4727-B4A0-8B9E127FAA93} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>It Shipped That Way - The Culture You Want to Build, with Charity Majors</title>
      <link>https://mcjones.ca/docs/it-shipped-that-way---the-culture-you-want-to-build-with-charity-majors/</link>
      <pubDate>Wed, 12 Jun 2024 23:57:08 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/it-shipped-that-way---the-culture-you-want-to-build-with-charity-majors/</guid>
      <description>&lt;h1 id=&#34;it-shipped-that-way---the-culture-you-want-to-build-with-charity-majors&#34;&gt;It Shipped That Way - The Culture You Want to Build, with Charity Majors&lt;/h1&gt;&#xA;&lt;p&gt;Management Journey&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;The challenges of - did you support enough? Too much?&lt;/li&gt;&#xA;&lt;li&gt;￼ is someone contributing or detracting through a team sense of trust&lt;/li&gt;&#xA;&lt;li&gt;incentivize getting it right&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;FAE = Fundamental Attribution Error. Systems thinking can help - over analyzing actions leads to bad conclusions.&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Patrick Lencioni - The Advantage - &lt;a href=&#34;https://www.tablegroup.com/product/the-advantage/&#34;&gt;https://www.tablegroup.com/product/the-advantage/&lt;/a&gt;&#xA;Organizational Health is paramount&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;it-shipped-that-way---the-culture-you-want-to-build-with-charity-majors-1&#34;&gt;It Shipped That Way - The Culture You Want to Build, with Charity Majors&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+9k5oW88Gs&#34;&gt;https://overcast.fm/+9k5oW88Gs&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.itshipped.fm/episodes/19&#34;&gt;https://www.itshipped.fm/episodes/19&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #It Shipped That Way# --&gt;&#xA;&lt;!-- {BearID:70787AED-9297-4D24-8975-98282E1415EB} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Escape Pod - 911 - Driftwood in the Sea of Time</title>
      <link>https://mcjones.ca/docs/escape-pod---911---driftwood-in-the-sea-of-time/</link>
      <pubDate>Sun, 12 May 2024 16:54:24 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/escape-pod---911---driftwood-in-the-sea-of-time/</guid>
      <description>&lt;h1 id=&#34;escape-pod---911---driftwood-in-the-sea-of-time&#34;&gt;Escape Pod - 911 - Driftwood in the Sea of Time&lt;/h1&gt;&#xA;&lt;h2 id=&#34;by-wendy-nikel&#34;&gt;By &lt;a href=&#34;https://escapepod.org/people/wendy-nikel/&#34;&gt;Wendy Nikel&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;What is more human? The hubris that leads to time paradoxes, or the fact we can make community to make something more than ourselves?&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;escape-pod---escape-pod-911-driftwood-in-the-sea-of-time&#34;&gt;Escape Pod - Escape Pod 911: Driftwood in the Sea of Time&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJrplZadc&#34;&gt;https://overcast.fm/+GJrplZadc&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://escapepod.org/2023/10/19/escape-pod-911-driftwood-in-the-sea-of-time/&#34;&gt;https://escapepod.org/2023/10/19/escape-pod-911-driftwood-in-the-sea-of-time/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #Escape Pod# --&gt;&#xA;&lt;!-- {BearID:AB1075C6-05F6-433E-89AD-F0E14FD00591} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Getting into a K8s Cluster - externalIPs, nodePorts, load balancers that all lead to Ingress or Gateway API</title>
      <link>https://mcjones.ca/docs/getting-into-a-k8s-cluster---externalips-nodeports-load-balancers-that-all-lead-to-ingress-or-gateway-api/</link>
      <pubDate>Sat, 04 May 2024 17:21:33 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/getting-into-a-k8s-cluster---externalips-nodeports-load-balancers-that-all-lead-to-ingress-or-gateway-api/</guid>
      <description>&lt;h1 id=&#34;getting-into-a-k8s-cluster---externalips-nodeports-load-balancers-that-all-lead-to-ingress-or-gateway-api&#34;&gt;Getting into a K8s Cluster - externalIPs, nodePorts, load balancers that all lead to Ingress or Gateway API&lt;/h1&gt;&#xA;&lt;p&gt;The tl;dr is that if you want to get external access you need to get an IP to forward traffic. This can be separate, or using a load balancer service.&lt;/p&gt;&#xA;&lt;h2 id=&#34;externalips&#34;&gt;externalIPs&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://kubernetes.io/docs/concepts/services-networking/service/#external-ips&#34;&gt;https://kubernetes.io/docs/concepts/services-networking/service/#external-ips&lt;/a&gt;&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;externalIPs:&#xA;    - 198.51.100.32&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Is added to your service definition.&lt;/p&gt;&#xA;&lt;p&gt;Kubernetes does NOT manage these IPs or the routing for this. The assumption is that this IP is on a node in the cluster.&lt;/p&gt;&#xA;&lt;p&gt;This can work well with only a handful of IPs and tight coupling between the cluster and applications.&lt;/p&gt;&#xA;&lt;h2 id=&#34;nodeport&#34;&gt;nodePort&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport&#34;&gt;https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;A port available on all nodes can be used.&#xA;Eg. &lt;a href=&#34;http://my-k8s-node.domain:31234&#34;&gt;http://my-k8s-node.domain:31234&lt;/a&gt;&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;spec:&#xA;  type: NodePort&#xA;  selector:&#xA;    app.kubernetes.io/name: MyApp&#xA;  ports:&#xA;    - port: 80&#xA;         # By default and for convenience, the Kubernetes control plane&#xA;      # will allocate a port from a range (default: 30000-32767)&#xA;      nodePort: 30007&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;load-balancers&#34;&gt;Load Balancers&lt;/h2&gt;&#xA;&lt;p&gt;Use a cloud based load balancer to get traffic in.&#xA;Alternatively you can leverage MetalLB, PureLB, or Porter&lt;/p&gt;&#xA;&lt;h3 id=&#34;metallb&#34;&gt;MetalLB&lt;/h3&gt;&#xA;&lt;p&gt;Either L2 mode or BGP mode. Needs a controller, and a speaker to configure nodes.&lt;/p&gt;&#xA;&lt;h3 id=&#34;purelb&#34;&gt;PureLB&lt;/h3&gt;&#xA;&lt;p&gt;For fun - it can hook into Netbox to get info for IPAM.&lt;/p&gt;&#xA;&lt;h3 id=&#34;cilium-l2-lb&#34;&gt;Cilium L2 LB&lt;/h3&gt;&#xA;&lt;p&gt;Baked right into Cilium.&lt;/p&gt;&#xA;&lt;h2 id=&#34;ingress&#34;&gt;Ingress&lt;/h2&gt;&#xA;&lt;p&gt;Ingress requires Ingress Controllers. Ingress Controllers do &lt;strong&gt;not&lt;/strong&gt; manage the IPs - they are configured to use externalIPs, nodePorts, or load balancers to get the traffic to the Ingress Controller.&lt;/p&gt;&#xA;&lt;h2 id=&#34;gateway-api&#34;&gt;Gateway API&lt;/h2&gt;&#xA;&lt;p&gt;Gateway API is a replacement/evolution of Ingress. While Ingress was HTTP only in design, Gateway API is less specific.&lt;/p&gt;&#xA;&lt;p&gt;The Gateway API spec is also about including items like Service Mesh - it also means that instead of a separate Ingress Controller you can leverage your CNI.&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://cilium.io/use-cases/gateway-api/&#34;&gt;https://cilium.io/use-cases/gateway-api/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #kubernetes #cilium --&gt;&#xA;&lt;!-- {BearID:A8C5A668-0A98-4285-9F50-0D9824FC4ABA} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Day Two Cloud - 214 - Preparing People, Teams, And Infrastructure For Automation</title>
      <link>https://mcjones.ca/docs/day-two-cloud---214---preparing-people-teams-and-infrastructure-for-automation/</link>
      <pubDate>Sat, 20 Apr 2024 20:40:25 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/day-two-cloud---214---preparing-people-teams-and-infrastructure-for-automation/</guid>
      <description>&lt;h1 id=&#34;day-two-cloud---214---preparing-people-teams-and-infrastructure-for-automation&#34;&gt;Day Two Cloud - 214 - Preparing People, Teams, And Infrastructure For Automation&lt;/h1&gt;&#xA;&lt;p&gt;Is not overly prescriptive and something I can point folks to on how to get things prepared and starting on the addition of automation.&lt;/p&gt;&#xA;&lt;p&gt;12 min mark - the importance of observability of what’s happening. The illusion of control was always there and folks need that certainty.&lt;/p&gt;&#xA;&lt;p&gt;Version control is the tool/process necessary to start this. It should be your source of truth. Beware tool proliferation - you can’t buy a DevOps (they’ll sell you one though)&lt;/p&gt;&#xA;&lt;p&gt;Repository approach - you can change. Undersegmentation and over segmentation is always an issue - find what works for your org. Guest is not a fan of monorepos - but also clear other orgs make it work. (Eg. Google - but they have tooling just for it)&lt;/p&gt;&#xA;&lt;p&gt;Proponent for using Terraform whenever possible - if need be drop to Ansible. Most of it is to do with resource management than config of existing resources.&lt;/p&gt;&#xA;&lt;p&gt;Other side suggestions:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Use Postman to explore a device’s API.&lt;/li&gt;&#xA;&lt;li&gt;Copilot and/or ChatGPT is awesome for commenting your code&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-fat-pipe---all-of-the-packet-pushers-podcasts---day-two-cloud-214-preparing-people-teams-and-infrastructure-for-automation&#34;&gt;The Fat Pipe - All of the Packet Pushers Podcasts - Day Two Cloud 214: Preparing People, Teams, And Infrastructure For Automation&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+KN3Kzc0kI&#34;&gt;https://overcast.fm/+KN3Kzc0kI&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://packetpushers.net/podcasts/day-two-cloud/d2c214-preparing-people-teams-and-infrastructure-for-automation/&#34;&gt;https://packetpushers.net/podcasts/day-two-cloud/d2c214-preparing-people-teams-and-infrastructure-for-automation/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #day two cloud# --&gt;&#xA;&lt;!-- #packet pushers# --&gt;&#xA;&lt;!-- {BearID:F69A235E-C1BB-45EF-A98A-3744F5685FDD} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Governor Francis Sargent</title>
      <link>https://mcjones.ca/docs/governor-francis-sargent/</link>
      <pubDate>Thu, 18 Apr 2024 01:41:40 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/governor-francis-sargent/</guid>
      <description>&lt;h1 id=&#34;governor-francis-sargent&#34;&gt;Governor Francis Sargent&lt;/h1&gt;&#xA;&lt;p&gt;“And there is this to remember as we begin: the risks we take come down to betting on ourselves. On people vs things, on people vs automobiles, on people vs the reckless destruction of our homes, our environment, the very quality of our lives all in the false name of progress. The only real progress is the progress of people. I don&amp;rsquo;t think we can go wrong when we put our money on ourselves. I&amp;rsquo;ve counted on your help before and it&amp;rsquo;s been there. I call upon you once again and I&amp;rsquo;m sure that you will answer that call.”&lt;/p&gt;&#xA;&lt;p&gt;Discovered this listening to the &lt;a href=&#34;%EF%BF%BChttps://www.wgbh.org/podcasts/the-big-dig/eps-1-we-were-wrong&#34;&gt;big dig podcast&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #quotes #public --&gt;&#xA;&lt;!-- {BearID:A2428D24-9BBE-4BEF-929F-2D9D62070980} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>City Council to YouTube</title>
      <link>https://mcjones.ca/docs/city-council-to-youtube/</link>
      <pubDate>Wed, 17 Apr 2024 19:16:02 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/city-council-to-youtube/</guid>
      <description>&lt;h1 id=&#34;city-council-to-youtube&#34;&gt;City Council to YouTube&lt;/h1&gt;&#xA;&lt;p&gt;Thanks to qntmpkts on GitHub for the initial confirmation this is possible to take a HLS stream (m3u8) and send it to YouTube:&#xA;&lt;a href=&#34;https://gist.github.com/qntmpkts/403a027a4bfe99812ebf8952c41f8789&#34;&gt;https://gist.github.com/qntmpkts/403a027a4bfe99812ebf8952c41f8789&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Also check out ffmpeg’s documenation page on this: &lt;a href=&#34;https://trac.ffmpeg.org/wiki/EncodingForStreamingSites&#34;&gt;https://trac.ffmpeg.org/wiki/EncodingForStreamingSites&lt;/a&gt;&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;ffmpeg -re -i protocol://domain.tld/stream.m3u8 -c:v copy -c:a aac -ar 44100 -ab 128k -ac 2 -strict -2 -flags +global_header -bsf:a aac_adtstoasc -bufsize 3000k -f mp4 &amp;#34;rtmp://a.rtmp.youtube.com/live2/&amp;lt;STREAMNAME/KEY&amp;gt;&amp;#34;&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;calgary-city-council-stream&#34;&gt;Calgary City Council Stream&lt;/h2&gt;&#xA;&lt;p&gt;Current Link: &lt;a href=&#34;https://lin12.isilive.ca/live/calgarycc/live/chunklist.m3u8&#34;&gt;https://lin12.isilive.ca/live/calgarycc/live/chunklist.m3u8&lt;/a&gt;&#xA;(The 12 in the URL can change as there are multiple servers)&lt;/p&gt;&#xA;&lt;p&gt;This link can be found most easily by going to &lt;a href=&#34;https://video.isilive.ca/play/calgarycc/live&#34;&gt;https://video.isilive.ca/play/calgarycc/live&lt;/a&gt; and then looking at the network tab in your browser to find the m3u8 URL it’s hitting.&lt;/p&gt;&#xA;&lt;h3 id=&#34;codec-details&#34;&gt;Codec Details&lt;/h3&gt;&#xA;&lt;p&gt;HLS&#xA;H264 (Main), yuv420p, 1080p&#xA;AAC 48hz&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;ffmpeg -re -i https://lin12.isilive.ca/live/calgarycc/live/chunklist.m3u8 -c:v copy -c:a aac -ar 44100 -ab 128k -ac 2 -strict -2 -flags +global_header -bufsize 3000k -f flv &amp;#34;rtmp://a.rtmp.youtube.com/live2/STREAM_KEY&amp;#34;&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;test-to-local-file&#34;&gt;Test to local file&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;ffmpeg -re -i https://lin12.isilive.ca/live/calgarycc/live/chunklist.m3u8 -c:v copy -c:a aac -ar 44100 -ab 128k -ac 2 -strict -2 -flags +global_header -bsf:a aac_adtstoasc -bufsize 3000k -f mp4 test30seconds.mp4&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;test-local-file-to-youtube&#34;&gt;Test local file to YouTube&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;ffmpeg -re -i test30seconds.mp4 -c:v copy -c:a copy -strict -2 -flags +global_header -bufsize 3000k -f flv &amp;#34;rtmp://a.rtmp.youtube.com/live2/STREAM_KEY&amp;#34;&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;downloading-a-previous-days-stream&#34;&gt;Downloading a previous day’s stream&lt;/h2&gt;&#xA;&lt;p&gt;Don’t use ffmpeg since we aren’t needing to copy/transcode. &lt;code&gt;youtube-dl&lt;/code&gt; is great.&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;youtube-dl -f 0 --hls-prefer-native https://vod.isilive.ca/nospace/hls/calgary/Council-_-Primary_Public-_-Hearing-_-Meeting-_-of-_-Council_2024-05-02-11-21.mp4/index.m3u8&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;notes-from-trying-this&#34;&gt;Notes from trying this&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;The audio starts to fall apart whenever the stream switches after a long break. This is fixed by ensuring you re-encode the audio to aac like the original snippet.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;other-options&#34;&gt;Other options&lt;/h2&gt;&#xA;&lt;p&gt;Other folks recommend using &lt;a href=&#34;https://new.reddit.com/r/Calgary/comments/1ccxaka/comment/l18bj8q/&#34;&gt;OBS&lt;/a&gt; to take the input and send to YouTube and then have more control over the stream.&lt;/p&gt;&#xA;&lt;!-- #public #yyccc #ffmpeg #snippet #calgary --&gt;&#xA;&lt;!-- {BearID:B8174ABC-4511-47EC-BDF3-3A4EE79F1A46} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - The Dark Side of Charisma: Molly Worthen</title>
      <link>https://mcjones.ca/docs/cbc-ideas---the-dark-side-of-charisma--molly-worthen/</link>
      <pubDate>Wed, 17 Apr 2024 14:54:09 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---the-dark-side-of-charisma--molly-worthen/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---the-dark-side-of-charisma-molly-worthen&#34;&gt;CBC Ideas - The Dark Side of Charisma: Molly Worthen&lt;/h1&gt;&#xA;&#xA;&#xA;&#xA;  &lt;blockquote&gt;&#xA;    &lt;p&gt;“Charisma is sometimes dangerous allure￼ that gives a leader to move a crowd.”&lt;/p&gt;&#xA;&#xA;  &lt;/blockquote&gt;&#xA;&#xA;&#xA;&#xA;&#xA;  &lt;blockquote&gt;&#xA;    &lt;p&gt;“To me what charisma is really about is the impulse to worship, to connect with someone or something transcendent that lends meaning to our puny, mortal lives. And gives us a sense of control over the chaos even if we’re not the ones in control. A confidence that someone is”&lt;/p&gt;&#xA;&#xA;  &lt;/blockquote&gt;&#xA;&#xA;&#xA;&#xA;&#xA;  &lt;blockquote&gt;&#xA;    &lt;p&gt;“The flip side of that allure is revulsion”&lt;/p&gt;&#xA;&#xA;  &lt;/blockquote&gt;&#xA;&#xA;&lt;p&gt;The exploration of how and why quasi magical words have been used to explain charisma going back to Max Weber.&lt;/p&gt;&#xA;&lt;p&gt;The North American tendency/theme to swing in level of trust in authority and expert knowledge - and its downside where embracing conspiracy theories and similar rises quickly. “44% of Canadian adults believe that big events like wars, recessions, and outcomes of elections are controlled by small groups of people working in secret” (from an Abacus poll)&lt;/p&gt;&#xA;&lt;p&gt;The rise of the “guru” (&lt;em&gt;cough&lt;/em&gt; grifter &lt;em&gt;cough&lt;/em&gt;) in all areas continues - and you can see the same&lt;/p&gt;&#xA;&lt;p&gt;The concept on how the charismatic renewal movement set the stage to the destruction of traditional North American religious institutions and the rise of non denominational “gurus”. It couples nicely with secularism - less the move away from religion and more that folks moved away from organizations.&lt;/p&gt;&#xA;&lt;p&gt;42:40&lt;/p&gt;&#xA;&#xA;&#xA;&#xA;  &lt;blockquote&gt;&#xA;    &lt;p&gt;“How can they fall for this false authority. These are all very reasonable questions, but they are usually questions we ought to ask ourselves about the “gurus” and “sages” who might have a little too much influence in our own lives.”&lt;/p&gt;&#xA;&#xA;  &lt;/blockquote&gt;&#xA;&#xA;&lt;p&gt;43 min mark - these are impulses and it’s important to be aware of these impulses.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;ideas---the-dark-side-of-charisma-molly-worthen&#34;&gt;Ideas - The Dark Side of Charisma: Molly Worthen&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cT6RuQo&#34;&gt;https://overcast.fm/+cT6RuQo&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/molly-worthen-charisma-politics-1.6984410&#34;&gt;https://www.cbc.ca/radio/ideas/molly-worthen-charisma-politics-1.6984410&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:3F64B911-CCB0-44D9-862F-7878DCD79427} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Sprawlcast - The Rumble Over Rezoning in Calgary</title>
      <link>https://mcjones.ca/docs/sprawlcast---the-rumble-over-rezoning-in-calgary/</link>
      <pubDate>Sun, 14 Apr 2024 01:21:22 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sprawlcast---the-rumble-over-rezoning-in-calgary/</guid>
      <description>&lt;h1 id=&#34;sprawlcast---the-rumble-over-rezoning-in-calgary&#34;&gt;Sprawlcast - The Rumble Over Rezoning in Calgary&lt;/h1&gt;&#xA;&lt;p&gt;A fantastic look at how and why the base land use needs shifting.&lt;/p&gt;&#xA;&lt;p&gt;“the only thing I can guarantee you about your community is that it’s changing.”&lt;/p&gt;&#xA;&lt;p&gt;“…inclusionary zoning or upzoning. It’s an element of the city’s housing strategy, which council approved in September of 2023.”&lt;/p&gt;&#xA;&lt;p&gt;For the above - upzoning is &lt;em&gt;one&lt;/em&gt; tool in addressing our housing crisis.&lt;/p&gt;&#xA;&lt;p&gt;“We got way better [than if we hadn’t provided input], and understand that you&amp;rsquo;re going to have 300 nice new neighbors. And once you get to know them, you&amp;rsquo;re not going to see the building. And and that&amp;rsquo;s the truth, right?”&lt;/p&gt;&#xA;&lt;p&gt;“The housing strategy is about the entirety of the housing continuum. That&amp;rsquo;s not why it&amp;rsquo;s just one action to do a rezoning. It&amp;rsquo;s about 90-plus actions to deal with everything from sheltering to deeply subsidized housing to every part of the market continuum.”&lt;/p&gt;&#xA;&lt;p&gt;“All the previous measures have been, okay, let&amp;rsquo;s have some growth inward—but just in a few places. In some corridors, in some nodes, close to LRT stations. And that all seemed to be very reasonable. But what doesn&amp;rsquo;t really work—and we have seen it over more than a decade—is that doesn&amp;rsquo;t provide enough diversity. In the end, it doesn&amp;rsquo;t open up enough land for growth.”&lt;/p&gt;&#xA;&lt;p&gt;“So what builders are doing is they&amp;rsquo;re clustering in places where there&amp;rsquo;s the least market risk, and that&amp;rsquo;s the premium neighborhoods. It is neighborhoods like Inglewood. It is neighborhoods like Altadore. It is neighborhoods like West Hillhurst where the land is more expensive, but there&amp;rsquo;s a proven and tested market.&lt;/p&gt;&#xA;&lt;p&gt;And so what we think this change will allow is by taking away some of that regulatory time and risk and cost, and allowing more neighborhoods to have that opportunity, that peanut butter gets spread way more across a larger geography of the city. So it&amp;rsquo;s not just about building in Altadore or Inglewood. It’s about building in Acadia and Bowness and Dalhousie and Mayland Heights. And land costs in those areas are less.”&lt;/p&gt;&#xA;&lt;p&gt;“For example, in 1920, just west of Inglewood in Victoria Park, white Calgarians fought city hall in an effort to keep black Calgarians out of the neighbourhood.”&lt;/p&gt;&#xA;&lt;p&gt;“while many people aren&amp;rsquo;t arguing anymore for racialized segregation, by nature zoning is in itself class and economic segregation.”&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;sprawlcast---the-rumble-over-rezoning-in-calgary-1&#34;&gt;Sprawlcast - The Rumble Over Rezoning in Calgary&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+MdpkHIrCY&#34;&gt;https://overcast.fm/+MdpkHIrCY&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.sprawlcalgary.com/blanket-rezoning-inglewood&#34;&gt;https://www.sprawlcalgary.com/blanket-rezoning-inglewood&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #Sprawlcast# --&gt;&#xA;&lt;!-- {BearID:8C0F8D04-DD2D-462C-8CE7-FF1D989372E9} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>IPv6 Subnet Tips</title>
      <link>https://mcjones.ca/docs/ipv6-subnet-tips/</link>
      <pubDate>Fri, 12 Apr 2024 03:59:11 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/ipv6-subnet-tips/</guid>
      <description>&lt;h1 id=&#34;ipv6-subnet-tips&#34;&gt;IPv6 Subnet Tips&lt;/h1&gt;&#xA;&lt;h2 id=&#34;112--last-nibble&#34;&gt;&lt;code&gt;/112&lt;/code&gt; / Last Nibble&lt;/h2&gt;&#xA;&lt;p&gt;&lt;code&gt;fc00:0000:0000:0000:0000:0000:xxxx&lt;/code&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;96--last-two-nibbles&#34;&gt;&lt;code&gt;/96&lt;/code&gt; / Last Two Nibbles&lt;/h2&gt;&#xA;&lt;p&gt;&lt;code&gt;fc00:0000:0000:0000:0000:xxxx:xxxx&lt;/code&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;80--last-three-nibbles&#34;&gt;&lt;code&gt;/80&lt;/code&gt; / Last Three Nibbles&lt;/h2&gt;&#xA;&lt;p&gt;&lt;code&gt;fc00:0000:0000:0000:xxxx:xxxx:xxxx&lt;/code&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;64--half-the-nibbles&#34;&gt;&lt;code&gt;/64&lt;/code&gt; / Half the Nibbles&lt;/h2&gt;&#xA;&lt;p&gt;&lt;code&gt;fc00::xxxx:xxxx:xxxx:xxxx&lt;/code&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;48---but-first-3-nibbles&#34;&gt;&lt;code&gt;/48&lt;/code&gt; /  But first 3 Nibbles&lt;/h2&gt;&#xA;&lt;p&gt;&lt;code&gt;fc00:xxxx:xxxx:xxxx:xxxx:xxxx&lt;/code&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;32--but-first-2-nibbles&#34;&gt;&lt;code&gt;/32&lt;/code&gt; / But first 2 Nibbles&lt;/h2&gt;&#xA;&lt;p&gt;&lt;code&gt;fc00:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx&lt;/code&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;16--but-first-nibble&#34;&gt;&lt;code&gt;/16&lt;/code&gt; / But first Nibble&lt;/h2&gt;&#xA;&lt;p&gt;&lt;code&gt;fc00:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx&lt;/code&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;0--the-whole-shebang&#34;&gt;&lt;code&gt;/0&lt;/code&gt; / The whole shebang&lt;/h2&gt;&#xA;&lt;p&gt;&lt;code&gt;fc00::xxxx:xxxx:xxxx:xxxx&lt;/code&gt;&lt;/p&gt;&#xA;&lt;!-- #public #ipv6 #snippet --&gt;&#xA;&lt;!-- {BearID:520510AF-26A4-4AE8-8B0E-2DFBA9031571} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>vim, ale, and fun</title>
      <link>https://mcjones.ca/docs/vim-ale-and-fun/</link>
      <pubDate>Fri, 12 Apr 2024 03:43:54 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/vim-ale-and-fun/</guid>
      <description>&lt;h1 id=&#34;vim-ale-and-fun&#34;&gt;vim, ale, and fun&lt;/h1&gt;&#xA;&lt;h2 id=&#34;ale&#34;&gt;ale&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://github.com/dense-analysis/ale&#34;&gt;https://github.com/dense-analysis/ale&lt;/a&gt;&lt;br&gt;&#xA;Asynchronous Lint Engine&lt;/p&gt;&#xA;&lt;p&gt;Ale is a fantastic syntax checker for vim and neovim and has made my life a lot easier.&lt;/p&gt;&#xA;&lt;h2 id=&#34;toggling-ale-on-and-off&#34;&gt;Toggling ale on and off&lt;/h2&gt;&#xA;&lt;p&gt;However there are many times I just want it to shut up so I can read the file in question…&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;:ALEToggle&#xA;:ALEDisable&#xA;:ALEEnable&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;customizing-ale&#34;&gt;Customizing Ale&lt;/h2&gt;&#xA;&lt;p&gt;There are two use cases that Ale drives me nuts because while fantastic defaults I run into issues where they cause issues:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Spell check&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;:set nospell&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;!-- #public #vim #ale --&gt;&#xA;&lt;!-- {BearID:C1AF76CB-8BB5-44E7-A9EF-F8DD1580A388} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Pre-Accident Investigation Podcast 463 - Don&#39;t Fix People, Fix Processes</title>
      <link>https://mcjones.ca/docs/pre-accident-investigation-podcast-463---dont-fix-people-fix-processes/</link>
      <pubDate>Thu, 11 Apr 2024 01:52:31 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/pre-accident-investigation-podcast-463---dont-fix-people-fix-processes/</guid>
      <description>&lt;h1 id=&#34;pre-accident-investigation-podcast-463---dont-fix-people-fix-processes&#34;&gt;Pre-Accident Investigation Podcast 463 - Don&amp;rsquo;t Fix People, Fix Processes&lt;/h1&gt;&#xA;&lt;p&gt;11 min mark - “Don’t ask who failed. Ask what failed”&lt;br&gt;&#xA;Deming’s 14 points - &lt;a href=&#34;https://deming.org/explore/fourteen-points/&#34;&gt;https://deming.org/explore/fourteen-points/&lt;/a&gt;&lt;br&gt;&#xA;17 min mark - “when something happens, the tendency to push back and go to the old way is very attractive”. Going back to punishment, pushing back is something to know will try to happen but the old way wasn’t good - how happy were you with the old way?&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;preaccident-investigation-podcast---papod-463---dont-fix-people-fix-processes&#34;&gt;PreAccident Investigation Podcast - PAPod 463 - Don’t Fix People, Fix Processes&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+tF0AD6Eow&#34;&gt;https://overcast.fm/+tF0AD6Eow&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://preaccidentpodcast.podbean.com/e/papod-463-don-t-fix-people-fix-processes/&#34;&gt;https://preaccidentpodcast.podbean.com/e/papod-463-don-t-fix-people-fix-processes/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #PreAccident Investigation Podcast# --&gt;&#xA;&lt;!-- {BearID:542EC7ED-A80E-479E-A1B8-ACC4F5092FDC} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>1Password CLI Snippets</title>
      <link>https://mcjones.ca/docs/1password-cli-snippets/</link>
      <pubDate>Tue, 02 Apr 2024 04:07:13 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/1password-cli-snippets/</guid>
      <description>&lt;h1 id=&#34;1password-cli-snippets&#34;&gt;1Password CLI Snippets&lt;/h1&gt;&#xA;&lt;h2 id=&#34;password-generated-elsewhere&#34;&gt;Password generated elsewhere&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;op item create \&#xA;--category login \&#xA;--title &amp;#34;TITLE&amp;#34; \&#xA;--vault &amp;#34;VAULT NAME&amp;#34; \&#xA;password=&amp;#34;Password&amp;#34;&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;NOTE: Not recommended since this stores it in your history and other places. Using JSON files or having 1Password generated is the correct way (versus the quick and dirty for a temp password way).&lt;/p&gt;&#xA;&lt;p&gt;The password/field values are found by looking at the template:&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;op item template get Login&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;And then assigned with assignment statements (see &lt;a href=&#34;https://developer.1password.com/docs/cli/item-create/#with-assignment-statements&#34;&gt;https://developer.1password.com/docs/cli/item-create/#with-assignment-statements&lt;/a&gt;)&lt;/p&gt;&#xA;&lt;h2 id=&#34;1password-generates-the-password&#34;&gt;1Password generates the password&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;op item create \&#xA;--category login \&#xA;--title &amp;#34;TITLE&amp;#34; \&#xA;--vault &amp;#34;VAULT NAME&amp;#34; \&#xA;--generate-password=&amp;#39;letters,digits,symbols,32&amp;#39;&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;a href=&#34;https://developer.1password.com/docs/cli/item-create/&#34;&gt;https://developer.1password.com/docs/cli/item-create/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #snippet #public --&gt;&#xA;&lt;!-- {BearID:82BD52AB-2C9C-465D-A73E-BDE9A3390221} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - The North Star: Canada and the Civil War Plots Against Lincoln by Julian Sher</title>
      <link>https://mcjones.ca/docs/cbc-ideas---the-north-star--canada-and-the-civil-war-plots-against-lincoln-by-julian-sher/</link>
      <pubDate>Tue, 19 Mar 2024 00:32:02 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---the-north-star--canada-and-the-civil-war-plots-against-lincoln-by-julian-sher/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---the-north-star-canada-and-the-civil-war-plots-against-lincoln-by-julian-sher&#34;&gt;CBC Ideas - The North Star: Canada and the Civil War Plots Against Lincoln by Julian Sher&lt;/h1&gt;&#xA;&lt;p&gt;A fantastic trip through the story of how much Montreal was used as a safe haven during the Civil War, how happy Canada was to profit off of the Civil War, and just how much Canadian elites like Sir John A MacDonald supported the South.&lt;/p&gt;&#xA;&lt;p&gt;We (Canada) has blood on our hands and we love the fantasy that we don’t.&lt;/p&gt;&#xA;&lt;p&gt;Counter intuitively we have the Daughters of the Confederacy for their memorialization to remind us how party Canada was to the civil war and classism.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;ideas---the-north-star-canada-and-the-civil-war-plots-against-lincoln-by-julian-sher&#34;&gt;Ideas - The North Star: Canada and the Civil War Plots Against Lincoln by Julian Sher&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cTaDg1I&#34;&gt;https://overcast.fm/+cTaDg1I&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/player/play/1.6964456&#34;&gt;https://www.cbc.ca/player/play/1.6964456&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:B9C8BEF2-0427-4567-A586-22DCA8B6F7C3} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - Astra Taylor - The Hidden Truth of the World</title>
      <link>https://mcjones.ca/docs/cbc-ideas---astra-taylor---the-hidden-truth-of-the-world/</link>
      <pubDate>Tue, 12 Mar 2024 14:19:14 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---astra-taylor---the-hidden-truth-of-the-world/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---astra-taylor---the-hidden-truth-of-the-world&#34;&gt;CBC Ideas - Astra Taylor - The Hidden Truth of the World&lt;/h1&gt;&#xA;&lt;p&gt;“The ultimate hidden truth of the world is that it is something we make and just as easily make differently” - David Gregor, Anthropologist&lt;/p&gt;&#xA;&lt;p&gt;Things I liked:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;14 min - The corruption/evolution of the words freedom, security, and democracy following 9/11&lt;/li&gt;&#xA;&lt;li&gt;Part of “Democracy May Not Exist, but We&amp;rsquo;ll Miss It When It&amp;rsquo;s Gone“ contrasts direct democracy (Occupy) compared to the captured representative democracy at the time. Now I’m curious to read it.&lt;/li&gt;&#xA;&lt;li&gt;25:40 - “it’s actually a system where we all have to think, deliberate, and govern together“&lt;/li&gt;&#xA;&lt;li&gt;The point that voting is not democracy - it may be an action but is not democracy in of itself.&lt;/li&gt;&#xA;&lt;li&gt;28 min mark - The framing that elections are more aristocratic rather than democratic due to the barriers to entry.&lt;/li&gt;&#xA;&lt;li&gt;31 min mark started a section on how public spaces and institutions represent key components of democracy - how accessible are spaces? Are there bathrooms?&lt;/li&gt;&#xA;&lt;li&gt;A library or a park can be a cathedral to democracy - accessibility, common good, etc.&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Me: democracy does not have exclusivity on this but shows the strength of a democracy&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;People don’t feel inequality - they feel instability.&lt;/li&gt;&#xA;&lt;li&gt;Debtors revolts are not new.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---astra-taylor-the-hidden-truth-of-the-world&#34;&gt;CBC Ideas - Astra Taylor: The Hidden Truth of the World&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cRspvyk&#34;&gt;https://overcast.fm/+cRspvyk&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/listen/live-radio/1-23-ideas/clip/16049642-astra-taylor-the-hidden-truth-world&#34;&gt;https://www.cbc.ca/listen/live-radio/1-23-ideas/clip/16049642-astra-taylor-the-hidden-truth-world&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:460B53E0-782E-46A8-9D2D-4B3BD23D9E9B} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Fund Management Fee Translation</title>
      <link>https://mcjones.ca/docs/fund-management-fee-translation/</link>
      <pubDate>Tue, 27 Feb 2024 01:45:06 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/fund-management-fee-translation/</guid>
      <description>&lt;h1 id=&#34;fund-management-fee-translation&#34;&gt;Fund Management Fee Translation&lt;/h1&gt;&#xA;&lt;p&gt;On a default $1000 annual contribution at 5% with various MERs over 15 years:&lt;/p&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;th&gt;Type&lt;/th&gt;&#xA;          &lt;th&gt;Value&lt;/th&gt;&#xA;          &lt;th&gt;Fees&lt;/th&gt;&#xA;          &lt;th&gt;% in fees&lt;/th&gt;&#xA;      &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;No fees&lt;/td&gt;&#xA;          &lt;td&gt;22,657&lt;/td&gt;&#xA;          &lt;td&gt;0&lt;/td&gt;&#xA;          &lt;td&gt;0&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;Standard (2%)&lt;/td&gt;&#xA;          &lt;td&gt;19,157&lt;/td&gt;&#xA;          &lt;td&gt;3,501&lt;/td&gt;&#xA;          &lt;td&gt;-15.45&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;Tangerine (0.85%)&lt;/td&gt;&#xA;          &lt;td&gt;21,089&lt;/td&gt;&#xA;          &lt;td&gt;1,569&lt;/td&gt;&#xA;          &lt;td&gt;-6.92&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;Wealthsimple (0.5%)&lt;/td&gt;&#xA;          &lt;td&gt;21,719&lt;/td&gt;&#xA;          &lt;td&gt;938&lt;/td&gt;&#xA;          &lt;td&gt;-4.14&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;Vanguard ETF (0.24%)&lt;/td&gt;&#xA;          &lt;td&gt;22,202&lt;/td&gt;&#xA;          &lt;td&gt;456&lt;/td&gt;&#xA;          &lt;td&gt;-2.01&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;p&gt;(Thanks &lt;a href=&#34;https://www.getsmarteraboutmoney.ca/calculators/fee-calculator/&#34;&gt;https://www.getsmarteraboutmoney.ca/calculators/fee-calculator/&lt;/a&gt;)&lt;/p&gt;&#xA;&lt;!-- #public #management-fees #finance --&gt;&#xA;&lt;!-- {BearID:C4388E5C-CB01-4F7C-B5B7-97B2A0344DBB} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Management Fee Translation</title>
      <link>https://mcjones.ca/docs/management-fee-translation/</link>
      <pubDate>Tue, 27 Feb 2024 01:45:06 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/management-fee-translation/</guid>
      <description>&lt;h1 id=&#34;management-fee-translation&#34;&gt;Management Fee Translation&lt;/h1&gt;&#xA;&lt;p&gt;On a default $1000 annual contribution at 5% with various MERs over 15 years:&lt;/p&gt;&#xA;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;th&gt;Type&lt;/th&gt;&#xA;          &lt;th&gt;Value&lt;/th&gt;&#xA;          &lt;th&gt;Fees&lt;/th&gt;&#xA;          &lt;th&gt;% in fees&lt;/th&gt;&#xA;      &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;No fees&lt;/td&gt;&#xA;          &lt;td&gt;22,657&lt;/td&gt;&#xA;          &lt;td&gt;0&lt;/td&gt;&#xA;          &lt;td&gt;0&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;Standard (2%)&lt;/td&gt;&#xA;          &lt;td&gt;19,157&lt;/td&gt;&#xA;          &lt;td&gt;3,501&lt;/td&gt;&#xA;          &lt;td&gt;-15.45&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;Tangerine (0.85%)&lt;/td&gt;&#xA;          &lt;td&gt;21,089&lt;/td&gt;&#xA;          &lt;td&gt;1,569&lt;/td&gt;&#xA;          &lt;td&gt;-6.92&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;Wealthsimple (0.5%)&lt;/td&gt;&#xA;          &lt;td&gt;21,719&lt;/td&gt;&#xA;          &lt;td&gt;938&lt;/td&gt;&#xA;          &lt;td&gt;-4.14&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td&gt;Vanguard ETF (0.24%)&lt;/td&gt;&#xA;          &lt;td&gt;22,202&lt;/td&gt;&#xA;          &lt;td&gt;456&lt;/td&gt;&#xA;          &lt;td&gt;-2.01&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;p&gt;(Thanks &lt;a href=&#34;https://www.getsmarteraboutmoney.ca/calculators/fee-calculator/&#34;&gt;https://www.getsmarteraboutmoney.ca/calculators/fee-calculator/&lt;/a&gt;)&lt;/p&gt;&#xA;&lt;!-- #public #management-fees #finance --&gt;&#xA;&lt;!-- {BearID:C4388E5C-CB01-4F7C-B5B7-97B2A0344DBB} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Postfix Queue Commands</title>
      <link>https://mcjones.ca/docs/postfix-queue-commands/</link>
      <pubDate>Sun, 25 Feb 2024 03:30:04 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/postfix-queue-commands/</guid>
      <description>&lt;h1 id=&#34;postfix-queue-commands&#34;&gt;Postfix Queue Commands&lt;/h1&gt;&#xA;&lt;h2 id=&#34;see-queue&#34;&gt;See queue&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;postqueue -p&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;flush-queue&#34;&gt;Flush queue&lt;/h2&gt;&#xA;&lt;p&gt;Set to deliver again&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;postqueue -f&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;nuke-entire-queue&#34;&gt;Nuke entire queue&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;postsuper -d ALL&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;delete-just-one-message&#34;&gt;Delete just one message&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;postsuper -d &amp;lt;message id&amp;gt;&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;!-- #postfix #snippet #public --&gt;&#xA;&lt;!-- {BearID:B813D902-4ABA-4073-91A1-FB9B5ED097AF} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Tech Lead Journal - 144 - Better Value Sooner Safer Happier - Jonathan Smart &amp; Simon Rohrer</title>
      <link>https://mcjones.ca/docs/tech-lead-journal---144---better-value-sooner-safer-happier---jonathan-smart--simon-rohrer/</link>
      <pubDate>Sun, 18 Feb 2024 02:21:47 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/tech-lead-journal---144---better-value-sooner-safer-happier---jonathan-smart--simon-rohrer/</guid>
      <description>&lt;h1 id=&#34;tech-lead-journal---144---better-value-sooner-safer-happier---jonathan-smart--simon-rohrer&#34;&gt;Tech Lead Journal - 144 - Better Value Sooner Safer Happier - Jonathan Smart &amp;amp; Simon Rohrer&lt;/h1&gt;&#xA;&lt;p&gt;12:43&lt;/p&gt;&#xA;&#xA;&#xA;&#xA;  &lt;blockquote&gt;&#xA;    &lt;p&gt;“There is no playbook. There is no one size fits all. That’s why I like the words patterns and anti-patterns. Usually successful, usually less successful with the  anti-patterns. There is no playbook because every organization is unique. Because every organization is a complex adaptive system. Every organization has its own unique history and culture and incentives”&lt;/p&gt;&#xA;&#xA;  &lt;/blockquote&gt;&#xA;&#xA;&lt;p&gt;Value is at the heart but not at any cost.&lt;/p&gt;&#xA;&lt;p&gt;If you want to do an agile transformation - don’t. Instead focus on outcomes. Beware the focus on a tool/process instead of the why.&lt;/p&gt;&#xA;&lt;p&gt;“Better products faster” became “Better value sooner”&lt;/p&gt;&#xA;&lt;p&gt;There must be an incentive. The flip side of incentive is a threat and not enough orgs remember this. You need to nurture psychological safety to minimize threat.&lt;/p&gt;&#xA;&lt;p&gt;Change is only some process and mostly culture.&lt;/p&gt;&#xA;&lt;p&gt;Role Model&lt;br&gt;&#xA;Psychological Safety&lt;br&gt;&#xA;Emergent Mindset - acknowledging the future is not knowable and to have hypothesis and test.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;tech-lead-journal---144---better-value-sooner-safer-happier---jonathan-smart--simon-rohrer-1&#34;&gt;Tech Lead Journal - 144 - Better Value Sooner Safer Happier - Jonathan Smart &amp;amp; Simon Rohrer&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+fKlzoCOoM&#34;&gt;https://overcast.fm/+fKlzoCOoM&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://techleadjournal.dev/episodes/144/&#34;&gt;https://techleadjournal.dev/episodes/144/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #Tech Lead Journal# --&gt;&#xA;&lt;!-- {BearID:32E66E09-EE83-4377-BD46-969CEFDA899A} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Addigy and Launchd</title>
      <link>https://mcjones.ca/docs/addigy-and-launchd/</link>
      <pubDate>Mon, 12 Feb 2024 23:24:22 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/addigy-and-launchd/</guid>
      <description>&lt;h1 id=&#34;addigy-and-launchd&#34;&gt;Addigy and Launchd&lt;/h1&gt;&#xA;&lt;p&gt;Addigy records Launchd items in “Third-Party Agents” and “Third-Party Daemons”&lt;/p&gt;&#xA;&lt;p&gt;You can make a monitoring item on it for when these facts change.&lt;/p&gt;&#xA;&lt;p&gt;Alternatively use the API to take a look see:&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;curl --location --request GET &amp;#39;https://prod.addigy.com/api/devices?client_id=CLIENT_ID&amp;amp;client_secret=SECRET&amp;#39; | jq &amp;#39;.[] | {&amp;#34;TAG&amp;#34;: .&amp;#34;Asset Tag&amp;#34;, &amp;#34;Agents&amp;#34;: .&amp;#34;Third-Party Agents&amp;#34;, &amp;#34;Daemons&amp;#34;: .&amp;#34;Third-Party Daemons&amp;#34;}&amp;#39; | grep -v addigy | grep -v Nudge | grep -v munki&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;!-- #addigy #snippet #launchd #public --&gt;&#xA;&lt;!-- {BearID:62F85941-08DA-4B7C-B234-4D3D20AA125B} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>The Gray Area with Sean Illing - The new crisis of masculinity</title>
      <link>https://mcjones.ca/docs/the-gray-area-with-sean-illing---the-new-crisis-of-masculinity/</link>
      <pubDate>Sun, 11 Feb 2024 20:33:58 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/the-gray-area-with-sean-illing---the-new-crisis-of-masculinity/</guid>
      <description>&lt;h1 id=&#34;the-gray-area-with-sean-illing---the-new-crisis-of-masculinity&#34;&gt;The Gray Area with Sean Illing - The new crisis of masculinity&lt;/h1&gt;&#xA;&lt;p&gt;Christine Emba gives a fantastic look into how masculinity’s place has been morphed and turned into fertile ground for grifters with toxicity to sell.&lt;/p&gt;&#xA;&lt;p&gt;When the only available vision is a toxic version of masculinity are we surprised at the results?&lt;/p&gt;&#xA;&lt;p&gt;12 min markish - Beware the trap of falling into things being a zero sum game. The same issue that created hesitancy to affirmative action, is the same issue that is creating hesitancy to support because things have changed.&lt;/p&gt;&#xA;&lt;p&gt;The void created over the last decades is like progressivism leaving labour behind. The space has been ceded and anything recognizing them is seen as better than nothing.&lt;/p&gt;&#xA;&lt;p&gt;36 min mark dives into the ease of blaming of others and the hypocrisy of those who are behind the policies that created the situation in the first place - eg. offshoring and then surprised at impacts of that.&lt;/p&gt;&#xA;&lt;p&gt;39 min mark underlines the erosion of communities - the chance for folks to find others in their community to provide good role models has eroded significantly.&lt;/p&gt;&#xA;&lt;p&gt;40 min mark - You can’t mandate community&lt;/p&gt;&#xA;&lt;p&gt;The overlap with programs to prevent youth from joining gangs oddly wasn’t noted.&lt;/p&gt;&#xA;&lt;p&gt;The lack of ceremony or rite of passage and its effect is not something I ever gave much credence and the showing of David Gilmor’s work shows I was wrong.&lt;/p&gt;&#xA;&lt;p&gt;There are many ways to be a good man - society needs a positive answer to this.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-gray-area-with-sean-illing---the-new-crisis-of-masculinity-1&#34;&gt;The Gray Area with Sean Illing - The new crisis of masculinity&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+QLhUnxNzw&#34;&gt;https://overcast.fm/+QLhUnxNzw&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.vox.com/the-gray-area/23813985/christine-emba-masculinity-the-gray-area&#34;&gt;https://www.vox.com/the-gray-area/23813985/christine-emba-masculinity-the-gray-area&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #The Gray Area with Sean Illing# --&gt;&#xA;&lt;!-- {BearID:CD9ED00B-0B06-47DA-800E-6B30F7CA92DB} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Misc Ansible Snippets</title>
      <link>https://mcjones.ca/docs/misc-ansible-snippets/</link>
      <pubDate>Fri, 02 Feb 2024 04:26:22 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/misc-ansible-snippets/</guid>
      <description>&lt;h1 id=&#34;misc-ansible-snippets&#34;&gt;Misc Ansible Snippets&lt;/h1&gt;&#xA;&lt;h2 id=&#34;ad-hoc-commands&#34;&gt;Ad Hoc Commands&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;ansible -m ping all&#xA;ansible -m command -a whoami all&#xA;ansible -m command -a &amp;#34;uname -r&amp;#34; all&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;serial&#34;&gt;Serial&lt;/h2&gt;&#xA;&lt;p&gt;Serial can be used to trigger numbers of hosts as part of a playbook:&lt;/p&gt;&#xA;&lt;p&gt;Doing 3 at a time:&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;- hosts: all&#xA;serial: 3&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Staggered across 10 nodes:&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;- hosts: all&#xA;serial:&#xA;  - 1&#xA;  - 3&#xA;  - 6&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Related: &lt;a href=&#34;https://docs.ansible.com/ansible/latest/playbook_guide/playbooks_strategies.html&#34;&gt;https://docs.ansible.com/ansible/latest/playbook_guide/playbooks_strategies.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;forks&#34;&gt;Forks&lt;/h2&gt;&#xA;&lt;p&gt;In &lt;code&gt;ansible.cfg&lt;/code&gt;:&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;[defaults]&#xA;forks=40&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Max number of connections when running&#xA;Related: &lt;a href=&#34;https://docs.ansible.com/ansible/latest/playbook_guide/playbooks_strategies.html&#34;&gt;https://docs.ansible.com/ansible/latest/playbook_guide/playbooks_strategies.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #ansible #snippet --&gt;&#xA;&lt;!-- {BearID:B08360EC-2226-45B4-88D8-4463B7BBEA01} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Removing brackets from an IPv6 address in Terraform</title>
      <link>https://mcjones.ca/docs/removing-brackets-from-an-ipv6-address-in-terraform/</link>
      <pubDate>Fri, 02 Feb 2024 04:24:41 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/removing-brackets-from-an-ipv6-address-in-terraform/</guid>
      <description>&lt;h1 id=&#34;removing-brackets-from-an-ipv6-address-in-terraform&#34;&gt;Removing brackets from an IPv6 address in Terraform&lt;/h1&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;replace(openstack_compute_instance_v2.INSTANCENAME.access_ip_v6, &amp;#34;/[\\[\\]]/&amp;#34;, &amp;#34;&amp;#34;)&#xA;&#xA;# If using counts&#xA;&amp;#34;${replace(element(openstack_compute_instance_v2.INSTANCENAME.*.access_ip_v6, count.index), &amp;#34;/[\\[\\]]/&amp;#34;, &amp;#34;&amp;#34;)}&amp;#34;&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;!-- #terraform #public #snippet --&gt;&#xA;&lt;!-- {BearID:3A3ECF6C-3C10-4D6A-9807-6D8B17796FC6} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Tech Lead Journal - 142 - The Power of Leadership Principles and Positive Leadership - Michael Foss</title>
      <link>https://mcjones.ca/docs/tech-lead-journal---142---the-power-of-leadership-principles-and-positive-leadership---michael-foss/</link>
      <pubDate>Wed, 31 Jan 2024 15:47:09 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/tech-lead-journal---142---the-power-of-leadership-principles-and-positive-leadership---michael-foss/</guid>
      <description>&lt;h1 id=&#34;tech-lead-journal---142---the-power-of-leadership-principles-and-positive-leadership---michael-foss&#34;&gt;Tech Lead Journal - 142 - The Power of Leadership Principles and Positive Leadership - Michael Foss&lt;/h1&gt;&#xA;&lt;p&gt;3 questions from the team to the leader before you can gain trust and start change:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Can I trust you?&lt;/li&gt;&#xA;&lt;li&gt;Do you care about me?&lt;/li&gt;&#xA;&lt;li&gt;Can you help me&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Gemba/Genba - (Go and see the work at where the work is done)&#xA;&lt;a href=&#34;https://en.wikipedia.org/wiki/Gemba&#34;&gt;https://en.wikipedia.org/wiki/Gemba&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Push to document standardized pieces of work.&lt;/p&gt;&#xA;&lt;p&gt;One successful approach is starting with good and then work backwards to get it&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;tech-lead-journal---142---the-power-of-leadership-principles-and-positive-leadership---michael-foss-1&#34;&gt;Tech Lead Journal - 142 - The Power of Leadership Principles and Positive Leadership - Michael Foss&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+fKlxzZK8g&#34;&gt;https://overcast.fm/+fKlxzZK8g&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://techleadjournal.dev/episodes/142/&#34;&gt;https://techleadjournal.dev/episodes/142/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #Tech Lead Journal# --&gt;&#xA;&lt;!-- {BearID:D93BF955-AA55-4C50-AC0D-B61AA96759B0} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Day Two Cloud - 203 - Becoming An SRE - It is More Than Just Software Skills</title>
      <link>https://mcjones.ca/docs/day-two-cloud---203---becoming-an-sre---it-is-more-than-just-software-skills/</link>
      <pubDate>Mon, 22 Jan 2024 15:50:54 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/day-two-cloud---203---becoming-an-sre---it-is-more-than-just-software-skills/</guid>
      <description>&lt;h1 id=&#34;day-two-cloud---203---becoming-an-sre---it-is-more-than-just-software-skills&#34;&gt;Day Two Cloud - 203 - Becoming An SRE - It is More Than Just Software Skills&lt;/h1&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;SRE is using software engineering skills with operations.&lt;/li&gt;&#xA;&lt;li&gt;SRE is also a propagandist role - part of your job is to effect culture change on a team to use SRE like approaches.&lt;/li&gt;&#xA;&lt;li&gt;Resilience to help teams address toil and get folks to learn&lt;/li&gt;&#xA;&lt;li&gt;Culture eats strategy for breakfast&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-fat-pipe---all-of-the-packet-pushers-podcasts---day-two-cloud-203-becoming-an-sre--its-more-than-just-software-skills&#34;&gt;The Fat Pipe - All of the Packet Pushers Podcasts - Day Two Cloud 203: Becoming An SRE – It’s More Than Just Software Skills&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+KN3Ib-guU&#34;&gt;https://overcast.fm/+KN3Ib-guU&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://packetpushers.net/podcasts/day-two-cloud/d2c203-becoming-an-sre-its-more-than-just-software-skills/&#34;&gt;https://packetpushers.net/podcasts/day-two-cloud/d2c203-becoming-an-sre-its-more-than-just-software-skills/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #Day Two Cloud# --&gt;&#xA;&lt;!-- #packet pushers# --&gt;&#xA;&lt;!-- {BearID:294BFDF3-7CFE-41BE-9105-53F81B638DD1} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Behind the Bastards - Why Kidnapping Conspiracy Theories Are Everywhere (Part One and Two)</title>
      <link>https://mcjones.ca/docs/behind-the-bastards---why-kidnapping-conspiracy-theories-are-everywhere-part-one-and-two/</link>
      <pubDate>Sun, 21 Jan 2024 23:38:12 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/behind-the-bastards---why-kidnapping-conspiracy-theories-are-everywhere-part-one-and-two/</guid>
      <description>&lt;h1 id=&#34;behind-the-bastards---why-kidnapping-conspiracy-theories-are-everywhere-part-one-and-two&#34;&gt;Behind the Bastards - Why Kidnapping Conspiracy Theories Are Everywhere (Part One and Two)&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;behind-the-bastards---part-two-why-kidnapping-conspiracy-theories-are-everywhere&#34;&gt;Behind the Bastards - Part Two: Why Kidnapping Conspiracy Theories Are Everywhere&lt;/h6&gt;&#xA;&lt;p&gt;Part One:&lt;br&gt;&#xA;&lt;a href=&#34;https://overcast.fm/+4cUOQ9xlo&#34;&gt;https://overcast.fm/+4cUOQ9xlo&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.iheart.com/podcast/105-behind-the-bastards-29236323/episode/part-one-why-kidnapping-conspiracy-theories-119136045/&#34;&gt;https://www.iheart.com/podcast/105-behind-the-bastards-29236323/episode/part-one-why-kidnapping-conspiracy-theories-119136045/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Part Two:&lt;br&gt;&#xA;&lt;a href=&#34;https://overcast.fm/+4cUNKMNf0&#34;&gt;https://overcast.fm/+4cUNKMNf0&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.iheart.com/podcast/105-behind-the-bastards-29236323/episode/part-two-why-kidnapping-conspiracy-theories-119290385/&#34;&gt;https://www.iheart.com/podcast/105-behind-the-bastards-29236323/episode/part-two-why-kidnapping-conspiracy-theories-119290385/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #Behind the Bastards# --&gt;&#xA;&lt;!-- {BearID:2A5715A7-9A6D-4B98-8676-9070076ADCA1} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>From Here to Queer - Marni Panas</title>
      <link>https://mcjones.ca/docs/from-here-to-queer---marni-panas/</link>
      <pubDate>Mon, 15 Jan 2024 15:33:14 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/from-here-to-queer---marni-panas/</guid>
      <description>&lt;h1 id=&#34;from-here-to-queer---marni-panas&#34;&gt;From Here to Queer - Marni Panas&lt;/h1&gt;&#xA;&lt;p&gt;Looking at the recent history of trans inclusion and the significant work and threats still being dealt with.&lt;/p&gt;&#xA;&lt;p&gt;Also learned a lot more about the Imperial Sovereign Court of the Wildrose&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;from-here-to-queer---marni-panas-1&#34;&gt;From Here to Queer - Marni Panas&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+4ZIFFp3og&#34;&gt;https://overcast.fm/+4ZIFFp3og&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.edmontonqueerhistoryproject.ca/podcast&#34;&gt;https://www.edmontonqueerhistoryproject.ca/podcast&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #From Here to Queer# --&gt;&#xA;&lt;!-- {BearID:7C6FA9F1-EC2D-452D-83DC-DFF70ED5C28A} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Current Terminal Font and Colour Scheme Choice</title>
      <link>https://mcjones.ca/docs/current-terminal-font-and-colour-scheme-choice/</link>
      <pubDate>Mon, 08 Jan 2024 06:31:15 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/current-terminal-font-and-colour-scheme-choice/</guid>
      <description>&lt;h1 id=&#34;current-terminal-font-and-colour-scheme-choice&#34;&gt;Current Terminal Font and Colour Scheme Choice&lt;/h1&gt;&#xA;&lt;h2 id=&#34;font&#34;&gt;Font&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://github.com/githubnext/monaspace&#34;&gt;Monaspace Neon&lt;/a&gt;, Regular 12&lt;/p&gt;&#xA;&lt;h2 id=&#34;colour-scheme&#34;&gt;Colour Scheme&lt;/h2&gt;&#xA;&lt;p&gt;iTerm: &lt;a href=&#34;https://gist.github.com/april/d074d759be6738a086478dc822d5018c&#34;&gt;Toasty&lt;/a&gt; - &lt;a href=&#34;https://github.com/jsit/toast.vim/&#34;&gt;https://github.com/jsit/toast.vim/&lt;/a&gt; (for colour scheme in general)&#xA;Wezterm: &lt;code&gt;config.color_scheme = &#39;Gruvbox dark, hard (base16)&#39;&lt;/code&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;vim-colour-scheme&#34;&gt;vim Colour Scheme&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://github.com/jsit/toast.vim/&#34;&gt;Toast&lt;/a&gt;&#xA;Alternative: &lt;a href=&#34;https://github.com/altercation/vim-colors-solarized&#34;&gt;Solarized Dark&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;bear&#34;&gt;Bear&lt;/h2&gt;&#xA;&lt;p&gt;D.Boring&#xA;Ayu Mirage for dark mode&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- {BearID:562F0F56-5103-4061-B0C7-32F778FDFB94} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Escape Pod - 895 - Man on the Moon</title>
      <link>https://mcjones.ca/docs/escape-pod---895---man-on-the-moon/</link>
      <pubDate>Mon, 08 Jan 2024 04:20:59 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/escape-pod---895---man-on-the-moon/</guid>
      <description>&lt;h1 id=&#34;escape-pod---895---man-on-the-moon&#34;&gt;Escape Pod - 895 - Man on the Moon&lt;/h1&gt;&#xA;&lt;h2 id=&#34;by-elaine-midcoh&#34;&gt;By &lt;a href=&#34;https://escapepod.org/people/elaine-midcoh/&#34;&gt;Elaine Midcoh&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;escape-pod---escape-pod-895-man-on-the-moon&#34;&gt;Escape Pod - Escape Pod 895: Man on the Moon&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJroB5SpA&#34;&gt;https://overcast.fm/+GJroB5SpA&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://escapepod.org/2023/06/29/escape-pod-895-man-on-the-moon/&#34;&gt;https://escapepod.org/2023/06/29/escape-pod-895-man-on-the-moon/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #Escape Pod# --&gt;&#xA;&lt;!-- {BearID:A5C1154A-1EEF-4C8C-A939-3CEED392BD9E} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Tech Lead Journal - 138 - Building Application Security Program - Derek Fisher</title>
      <link>https://mcjones.ca/docs/tech-lead-journal---138---building-application-security-program---derek-fisher/</link>
      <pubDate>Sun, 31 Dec 2023 22:11:45 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/tech-lead-journal---138---building-application-security-program---derek-fisher/</guid>
      <description>&lt;h1 id=&#34;tech-lead-journal---138---building-application-security-program---derek-fisher&#34;&gt;Tech Lead Journal - 138 - Building Application Security Program - Derek Fisher&lt;/h1&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://learn.microsoft.com/en-us/azure/security/develop/threat-modeling-tool&#34;&gt;Microsoft Threat Model Tool&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://owasp.org/www-project-threat-dragon/&#34;&gt;Threat Dragon&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Maturity models&lt;br&gt;&#xA;Application security is a sidecar to engineering - it’s to help and improve engineering because shifting left is good but it’s not exclusive.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;tech-lead-journal---138---building-application-security-program---derek-fisher-1&#34;&gt;Tech Lead Journal - 138 - Building Application Security Program - Derek Fisher&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+fKlw7Rb7g&#34;&gt;https://overcast.fm/+fKlw7Rb7g&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://techleadjournal.dev/episodes/138/&#34;&gt;https://techleadjournal.dev/episodes/138/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #Tech Lead Journal# --&gt;&#xA;&lt;!-- {BearID:4E0B99C4-C85D-4582-8E61-D6BE1F151BE1} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Alberta Unbound - Chinese Inclusion Acts</title>
      <link>https://mcjones.ca/docs/alberta-unbound---chinese-inclusion-acts/</link>
      <pubDate>Fri, 22 Dec 2023 18:56:20 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/alberta-unbound---chinese-inclusion-acts/</guid>
      <description>&lt;h1 id=&#34;alberta-unbound---chinese-inclusion-acts&#34;&gt;Alberta Unbound - Chinese Inclusion Acts&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded at the time&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;alberta-unbound---s4-episode-10-chinese-inclusion-acts&#34;&gt;Alberta Unbound - S4 Episode 10: Chinese Inclusion Acts&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+a8TD1l340&#34;&gt;https://overcast.fm/+a8TD1l340&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://senatorpaulasimons.podbean.com/e/s4-episode-10-chinese-inclusion-acts/&#34;&gt;https://senatorpaulasimons.podbean.com/e/s4-episode-10-chinese-inclusion-acts/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #Alberta Unbound# --&gt;&#xA;&lt;!-- {BearID:0ACA7C75-91BB-45F9-839C-CE7608B77B0F} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Getting There - Ep 7, The March 2023 Datadog Outage with Laura de Vesine</title>
      <link>https://mcjones.ca/docs/getting-there---ep-7-the-march-2023-datadog-outage-with-laura-de-vesine/</link>
      <pubDate>Tue, 12 Dec 2023 15:39:53 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/getting-there---ep-7-the-march-2023-datadog-outage-with-laura-de-vesine/</guid>
      <description>&lt;h1 id=&#34;getting-there---ep-7-the-march-2023-datadog-outage-with-laura-de-vesine&#34;&gt;Getting There - Ep 7, The March 2023 Datadog Outage with Laura de Vesine&lt;/h1&gt;&#xA;&lt;p&gt;The root cause of this issue (systemd-networkd restarts messing with iptables and bridges) turned out to cause several issues for our OpenStack clouds at work months later.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;getting-there---ep-7-the-march-2023-datadog-outage-with-laura-de-vesine-1&#34;&gt;Getting There - Ep. 7, The March 2023 Datadog Outage with Laura de Vesine&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+1cuTxtmZc&#34;&gt;https://overcast.fm/+1cuTxtmZc&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.heavybit.com/library/podcasts/getting-there/ep-7-the-march-2023-datadog-outage-with-laura-de-vesine&#34;&gt;https://www.heavybit.com/library/podcasts/getting-there/ep-7-the-march-2023-datadog-outage-with-laura-de-vesine&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #Getting There# --&gt;&#xA;&lt;!-- {BearID:05F7F5C4-B6C2-435B-8A97-FC2578372DC4} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - Jay Pitter - The Future of Culture Is</title>
      <link>https://mcjones.ca/docs/cbc-ideas---jay-pitter---the-future-of-culture-is/</link>
      <pubDate>Thu, 30 Nov 2023 15:54:22 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---jay-pitter---the-future-of-culture-is/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---jay-pitter---the-future-of-culture-is&#34;&gt;CBC Ideas - Jay Pitter - The Future of Culture Is&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;ideas---jay-pitter-the-future-of-culture-is-&#34;&gt;Ideas - Jay Pitter: The Future of Culture Is …&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cTThkJM&#34;&gt;https://overcast.fm/+cTThkJM&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/jay-pitter-urban-equity-housing-1.6863376&#34;&gt;https://www.cbc.ca/radio/ideas/jay-pitter-urban-equity-housing-1.6863376&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:A8688F18-AD3E-44F9-9DEA-113B0BFD3F91} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Having less show formatting</title>
      <link>https://mcjones.ca/docs/having-less-show-formatting/</link>
      <pubDate>Wed, 29 Nov 2023 23:52:35 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/having-less-show-formatting/</guid>
      <description>&lt;h1 id=&#34;having-less-show-formatting&#34;&gt;Having &lt;code&gt;less&lt;/code&gt; show formatting&lt;/h1&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;less -R&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;!-- #public #linux #snippet --&gt;&#xA;&lt;!-- {BearID:6B3B8215-70A5-4179-8900-29CE235C7531} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>It Shipped That Way - Coaching New Managers, with Tiffany Conroy</title>
      <link>https://mcjones.ca/docs/it-shipped-that-way---coaching-new-managers-with-tiffany-conroy/</link>
      <pubDate>Fri, 17 Nov 2023 00:01:56 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/it-shipped-that-way---coaching-new-managers-with-tiffany-conroy/</guid>
      <description>&lt;h1 id=&#34;it-shipped-that-way---coaching-new-managers-with-tiffany-conroy&#34;&gt;It Shipped That Way - Coaching New Managers, with Tiffany Conroy&lt;/h1&gt;&#xA;&lt;p&gt;17 min mark - poor performance is one of the hardest transition points&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;How to get confident dealing with poor performance&lt;/li&gt;&#xA;&lt;li&gt;Stay Interview - ?&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Confidence in a when folks are able to say I don’t know because they aren’t worried it will negatively affect them.&lt;/p&gt;&#xA;&lt;p&gt;Six Thinking Hats - interesting strategic thinking approach&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;it-shipped-that-way---coaching-new-managers-with-tiffany-conroy-1&#34;&gt;It Shipped That Way - Coaching New Managers, with Tiffany Conroy&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+9k5oebaIQ&#34;&gt;https://overcast.fm/+9k5oebaIQ&lt;/a&gt;&#xA;&lt;a href=&#34;https://www.itshipped.fm/episodes/16&#34;&gt;https://www.itshipped.fm/episodes/16&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #It Shipped That Way# --&gt;&#xA;&lt;!-- {BearID:F740FF97-7724-4235-A833-FC68B821BCEF} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>IPv6 Buzz 130 - Routing With Link-Local Addresses</title>
      <link>https://mcjones.ca/docs/ipv6-buzz-130---routing-with-link-local-addresses/</link>
      <pubDate>Mon, 13 Nov 2023 22:29:28 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/ipv6-buzz-130---routing-with-link-local-addresses/</guid>
      <description>&lt;h1 id=&#34;ipv6-buzz-130---routing-with-link-local-addresses&#34;&gt;IPv6 Buzz 130 - Routing With Link-Local Addresses&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded at the time&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-fat-pipe---ipv6-buzz-130-routing-with-link-local-addresses&#34;&gt;The Fat Pipe - IPv6 Buzz 130: Routing With Link-Local Addresses&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+KN3K19fqg&#34;&gt;https://overcast.fm/+KN3K19fqg&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://packetpushers.net/podcasts/ipv6-buzz/ipb130-routing-with-link-local-addresses/&#34;&gt;https://packetpushers.net/podcasts/ipv6-buzz/ipb130-routing-with-link-local-addresses/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #IPv6 Buzz# --&gt;&#xA;&lt;!-- {BearID:AC4F28E2-EC1D-4012-9F47-4CADA3470A0E} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>The War on Cars - Paved Paradise with Henry Grabar</title>
      <link>https://mcjones.ca/docs/the-war-on-cars---paved-paradise-with-henry-grabar/</link>
      <pubDate>Mon, 13 Nov 2023 16:07:35 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/the-war-on-cars---paved-paradise-with-henry-grabar/</guid>
      <description>&lt;h1 id=&#34;the-war-on-cars---paved-paradise-with-henry-grabar&#34;&gt;The War on Cars - Paved Paradise with Henry Grabar&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-war-on-cars---paved-paradise-with-henry-grabar-1&#34;&gt;The War on Cars - Paved Paradise with Henry Grabar&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+O31p_Od3Q&#34;&gt;https://overcast.fm/+O31p_Od3Q&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://thewaroncars.org/2023/05/23/105-paved-paradise-with-henry-grabar/&#34;&gt;https://thewaroncars.org/2023/05/23/105-paved-paradise-with-henry-grabar/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #The War on Cars# --&gt;&#xA;&lt;!-- {BearID:830E8F07-53BC-435A-B397-98804C02086C} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - Man Up! The Masculinity Crisis</title>
      <link>https://mcjones.ca/docs/cbc-ideas---man-up-the-masculinity-crisis/</link>
      <pubDate>Sun, 05 Nov 2023 18:05:06 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---man-up-the-masculinity-crisis/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---man-up-the-masculinity-crisis&#34;&gt;CBC Ideas - Man Up! The Masculinity Crisis&lt;/h1&gt;&#xA;&lt;h2 id=&#34;part-one&#34;&gt;Part One&lt;/h2&gt;&#xA;&lt;p&gt;Before this I did not quite understand how much puritanical hatred of masturbation set the stage for the toxic masculinizing of society. Behind the Bastards has looked at the problematic origins of the fitness industry and Kellogg.&lt;/p&gt;&#xA;&lt;h2 id=&#34;part-two&#34;&gt;Part Two&lt;/h2&gt;&#xA;&lt;p&gt;Covers the overlap between hyper masculinity and hyper partisanship with McCarthyism. Why does the need for portraying something you disagree with non masculine features of the time matter so much?&lt;/p&gt;&#xA;&lt;p&gt;It starts with the phrase and concept of man up.&lt;/p&gt;&#xA;&lt;p&gt;The placement of “Promise Keepers” that I had to experience in my upbringing gave a lot of context for where and why it grew so much.&lt;/p&gt;&#xA;&lt;h2 id=&#34;part-three&#34;&gt;Part Three&lt;/h2&gt;&#xA;&lt;p&gt;The desire and need to decide masculinity helps explain the cult classic nature of fight club, acceptance of the drivel from Jordan Peterson, and the prevalence of red pill ideology with racist, misogynistic, and classist comfort to give meaning to predominantly young, white men without positive influences.&lt;/p&gt;&#xA;&lt;p&gt;The engagement funnel on social media that draws them to extremist points of view from flat earth to Andrew Tate would create a self propagating cycle creating extremists from grifters.&lt;/p&gt;&#xA;&lt;p&gt;The rhyming with self help grift is not part of it but the effectiveness is because it rhymes. One thing Scott Adams was good at &lt;a href=&#34;https://dilbertblog.typepad.com/the_dilbert_blog/2007/07/career-advice.html&#34;&gt;noting in 2007&lt;/a&gt; is that it’s easier to be successful at the merger of two skills. He’s still a MAGA piece of trash but he wasn’t wrong at items to build a brand or increase the odds of becoming known.&lt;/p&gt;&#xA;&lt;p&gt;“Identity politics is full fledged on the right” - 33:08&lt;/p&gt;&#xA;&lt;p&gt;“Anger is the only emotion men are allowed to express without tarnishing their masculinity” - 37:10&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;ideas---man-up-the-masculinity-crisis&#34;&gt;Ideas - Man Up! The Masculinity Crisis&lt;/h6&gt;&#xA;&lt;p&gt;Part One:&lt;br&gt;&#xA;&lt;a href=&#34;https://overcast.fm/+cT6nURc&#34;&gt;https://overcast.fm/+cT6nURc&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/man-up-masculinity-crisis-part-one-1.6844883&#34;&gt;https://www.cbc.ca/radio/ideas/man-up-masculinity-crisis-part-one-1.6844883&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Part Two:&lt;br&gt;&#xA;&lt;a href=&#34;https://overcast.fm/+cR2NX5Y&#34;&gt;https://overcast.fm/+cR2NX5Y&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/player/play/1.6862609&#34;&gt;https://www.cbc.ca/player/play/1.6862609&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Part Three:&lt;br&gt;&#xA;&lt;a href=&#34;https://overcast.fm/+cQoMKJw&#34;&gt;https://overcast.fm/+cQoMKJw&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/player/play/1.6878166&#34;&gt;https://www.cbc.ca/player/play/1.6878166&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:8660E945-5580-4203-AE63-E77AE0C29DC0} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Jumping Around with Vim</title>
      <link>https://mcjones.ca/docs/jumping-around-with-vim/</link>
      <pubDate>Fri, 27 Oct 2023 05:13:20 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/jumping-around-with-vim/</guid>
      <description>&lt;h1 id=&#34;jumping-around-with-vim&#34;&gt;Jumping Around with Vim&lt;/h1&gt;&#xA;&lt;p&gt;A couple neat things I learned in Oct. 2023:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;code&gt;f&lt;/code&gt; and &lt;code&gt;F&lt;/code&gt; will jump the character on the line that you enter. Shift F will go backwards.&lt;/li&gt;&#xA;&lt;li&gt;&lt;code&gt;t&lt;/code&gt; and &lt;code&gt;T&lt;/code&gt; are similar but will put you one character in front of where you want go&lt;/li&gt;&#xA;&lt;li&gt;&lt;code&gt;gu&lt;/code&gt; and &lt;code&gt;gU&lt;/code&gt; - and number for lines to make upper or lower case.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;!-- #vim #snippet #public --&gt;&#xA;&lt;!-- {BearID:CAEE0C2D-5EF2-4BDF-A082-EE8D2B59BCF0} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Firefox / Chrome Setting Management</title>
      <link>https://mcjones.ca/docs/firefox---chrome-setting-management/</link>
      <pubDate>Fri, 13 Oct 2023 17:48:38 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/firefox---chrome-setting-management/</guid>
      <description>&lt;h1 id=&#34;firefox--chrome-setting-management&#34;&gt;Firefox / Chrome Setting Management&lt;/h1&gt;&#xA;&lt;p&gt;If you need to manage a configuration of a specific extension (eg. Add a website to the “Trusted Site” list on uBlock)&lt;/p&gt;&#xA;&lt;h2 id=&#34;firefox&#34;&gt;Firefox&lt;/h2&gt;&#xA;&lt;p&gt;Firefox’s extension config is put under a &lt;code&gt;3rdparty&lt;/code&gt; key that can be in a profile along all your other Firefox Settings&lt;/p&gt;&#xA;&lt;p&gt;Profile:&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;&amp;lt;dict&amp;gt;&#xA;  &amp;lt;key&amp;gt;EnterprisePoliciesEnabled&amp;lt;/key&amp;gt;&#xA;  &amp;lt;true /&amp;gt;&#xA;  &amp;lt;key&amp;gt;3rdparty&amp;lt;/key&amp;gt;&#xA;  &amp;lt;dict&amp;gt;&#xA;    &amp;lt;key&amp;gt;Extensions&amp;lt;/key&amp;gt;&#xA;    &amp;lt;dict&amp;gt;&#xA;      &amp;lt;key&amp;gt;uBlock0@raymondhill.net&amp;lt;/key&amp;gt;&#xA;      &amp;lt;dict&amp;gt;&#xA;        &amp;lt;key&amp;gt;toAdd&amp;lt;/key&amp;gt;&#xA;        &amp;lt;dict&amp;gt;&#xA;          &amp;lt;key&amp;gt;trustedSiteDirectives&amp;lt;/key&amp;gt;&#xA;          &amp;lt;array&amp;gt;&#xA;            &amp;lt;string&amp;gt;example.com&amp;lt;/string&amp;gt;&#xA;            &amp;lt;string&amp;gt;example-two.com&amp;lt;/string&amp;gt;&#xA;          &amp;lt;/array&amp;gt;&#xA;        &amp;lt;/dict&amp;gt;&#xA;      &amp;lt;/dict&amp;gt;&#xA;    &amp;lt;/dict&amp;gt;&#xA;  &amp;lt;/dict&amp;gt;&#xA;  &amp;lt;key&amp;gt;PayloadDisplayName&amp;lt;/key&amp;gt;&#xA;  &amp;lt;string&amp;gt;Firefox Config&amp;lt;/string&amp;gt;&#xA;  &amp;lt;key&amp;gt;PayloadIdentifier&amp;lt;/key&amp;gt;&#xA;  &amp;lt;string&amp;gt;some.identifier.here&amp;lt;/string&amp;gt;&#xA;  &amp;lt;key&amp;gt;PayloadType&amp;lt;/key&amp;gt;&#xA;  &amp;lt;string&amp;gt;org.mozilla.firefox&amp;lt;/string&amp;gt;&#xA;  &amp;lt;key&amp;gt;PayloadUUID&amp;lt;/key&amp;gt;&#xA;  &amp;lt;string&amp;gt;0CA00E46-3E4C-49CD-8DE3-40D08C20EB66&amp;lt;/string&amp;gt;&#xA;  &amp;lt;key&amp;gt;PayloadVersion&amp;lt;/key&amp;gt;&#xA;  &amp;lt;integer&amp;gt;1&amp;lt;/integer&amp;gt;&#xA;&amp;lt;/dict&amp;gt;&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;chrome&#34;&gt;Chrome&lt;/h2&gt;&#xA;&lt;p&gt;Chrome’s extension configuration is a bit different in that it is actually a separate profile for different extensions. So you will create a profile called &lt;code&gt;com.google.Chrome.EXTENSIONID&lt;/code&gt;.&lt;/p&gt;&#xA;&lt;p&gt;Profile:&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;&amp;lt;dict&amp;gt;&#xA;    &amp;lt;key&amp;gt;toAdd&amp;lt;/key&amp;gt;&#xA;    &amp;lt;dict&amp;gt;&#xA;      &amp;lt;key&amp;gt;trustedSiteDirectives&amp;lt;/key&amp;gt;&#xA;      &amp;lt;array&amp;gt;&#xA;        &amp;lt;string&amp;gt;example.com&amp;lt;/string&amp;gt;&#xA;        &amp;lt;string&amp;gt;example-two.com&amp;lt;/string&amp;gt;&#xA;      &amp;lt;/array&amp;gt;&#xA;    &amp;lt;/dict&amp;gt;&#xA;    &amp;lt;key&amp;gt;PayloadDisplayName&amp;lt;/key&amp;gt;&#xA;    &amp;lt;string&amp;gt;Chrome UBlock Config&amp;lt;/string&amp;gt;&#xA;    &amp;lt;key&amp;gt;PayloadIdentifier&amp;lt;/key&amp;gt;&#xA;    &amp;lt;string&amp;gt;some.identifier.here&amp;lt;/string&amp;gt;&#xA;    &amp;lt;key&amp;gt;PayloadType&amp;lt;/key&amp;gt;&#xA;    &amp;lt;string&amp;gt;com.google.Chrome.extensions.cjpalhdlnbpafiamejdnhcphjbkeiagm&amp;lt;/string&amp;gt;&#xA;    &amp;lt;key&amp;gt;PayloadUUID&amp;lt;/key&amp;gt;&#xA;    &amp;lt;string&amp;gt;0C06F283-26C7-4BDA-86E9-D6506F025B30&amp;lt;/string&amp;gt;&#xA;    &amp;lt;key&amp;gt;PayloadVersion&amp;lt;/key&amp;gt;&#xA;    &amp;lt;integer&amp;gt;1&amp;lt;/integer&amp;gt;&#xA;&amp;lt;/dict&amp;gt;&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;resources&#34;&gt;Resources&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://github.com/gorhill/uBlock/wiki/Deploying-uBlock-Origin:-configuration#trustedsitedirectives-1&#34;&gt;https://github.com/gorhill/uBlock/wiki/Deploying-uBlock-Origin:-configuration#trustedsitedirectives-1&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;THANK YOU MAC ADMINS Slack. Now if only it wasn’t a walled garden for this.&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://macadmins.slack.com/archives/C5ACP4TUZ/p1677592077914009&#34;&gt;https://macadmins.slack.com/archives/C5ACP4TUZ/p1677592077914009&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://community.jamf.com/t5/jamf-pro/ublock-origin-trusted/m-p/295762#M262076&#34;&gt;https://community.jamf.com/t5/jamf-pro/ublock-origin-trusted/m-p/295762#M262076&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #firefox #chrome #macos #mdm #profile --&gt;&#xA;&lt;!-- {BearID:BAAC74AD-24E7-44A3-8B9F-9B1C7B87EBE9} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - Injustice For All, Part One and Two</title>
      <link>https://mcjones.ca/docs/cbc-ideas---injustice-for-all-part-one-and-two/</link>
      <pubDate>Sun, 08 Oct 2023 19:29:36 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---injustice-for-all-part-one-and-two/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---injustice-for-all-part-one-and-two&#34;&gt;CBC Ideas - Injustice For All, Part One and Two&lt;/h1&gt;&#xA;&lt;h2 id=&#34;part-one&#34;&gt;Part One&lt;/h2&gt;&#xA;&lt;p&gt;Part one plays again on the 9th. I guess I didn’t write the bits down about family law and self representation. Or the sheer amount of debt folks go into.&lt;/p&gt;&#xA;&lt;p&gt;~ 5 min mark - as many as 80% are self represented represents the massive chasm we have in accessibility to a system that is DESIGNED to require experts on both sides.&lt;/p&gt;&#xA;&lt;p&gt;How often is the system really just a way of punishing those who are poor? The stories in this episode - especially when it comes to family law underline this.&lt;/p&gt;&#xA;&lt;h2 id=&#34;part-two&#34;&gt;Part Two&lt;/h2&gt;&#xA;&lt;p&gt;1:20 - it may be working as anticipated but what if it is working as designed?&lt;/p&gt;&#xA;&lt;p&gt;3:40 - this can not be lost on you that this not a criminal justice system that is responding to the need to keep all of us safe by actually applying the criminal code evenly or applying the criminal code in a neutral way.&lt;/p&gt;&#xA;&lt;p&gt;12-13:00 - the retelling of how those without the ability to bail or funds for a lawyer will often plea guilty and get out with time served. This isn’t justice.&lt;/p&gt;&#xA;&lt;p&gt;Having access to courts does not mean access to justice.&lt;/p&gt;&#xA;&lt;p&gt;15:50 - Severe punitive policies does not actually sufficiently deter crime.&lt;/p&gt;&#xA;&lt;p&gt;35 minute mark - a succinct summary that the lack of investment in legal aid is intentional. It’s not about fiscal conservatism but from a critical race standpoint this exists maintain certain types of inequality.&lt;/p&gt;&#xA;&lt;p&gt;It’s more than $100,000 per prisoner to incarcerate them in Canada.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---injustice-for-all-part-one&#34;&gt;CBC Ideas - Injustice For All Part One&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://www.cbc.ca/player/play/2195592771631&#34;&gt;https://www.cbc.ca/player/play/2195592771631&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://overcast.fm/+cTxqBGo&#34;&gt;https://overcast.fm/+cTxqBGo&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---injustice-for-all-part-two&#34;&gt;CBC Ideas - Injustice For All Part Two&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://www.cbc.ca/player/play/2198057539716&#34;&gt;https://www.cbc.ca/player/play/2198057539716&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://overcast.fm/+cTeU0rg&#34;&gt;https://overcast.fm/+cTeU0rg&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/canadian-court-system-lawyers-fairness-justice-1.6836073&#34;&gt;https://www.cbc.ca/radio/ideas/canadian-court-system-lawyers-fairness-justice-1.6836073&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:D3B29AA1-C7D9-4D72-8E70-1670552704B6} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - Taken In - Exploring Credulity</title>
      <link>https://mcjones.ca/docs/cbc-ideas---taken-in---exploring-credulity/</link>
      <pubDate>Wed, 04 Oct 2023 02:42:32 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---taken-in---exploring-credulity/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---taken-in---exploring-credulity&#34;&gt;CBC Ideas - Taken In - Exploring Credulity&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---taken-in-exploring-credulity&#34;&gt;CBC Ideas - Taken In: Exploring Credulity&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cRX9LOs&#34;&gt;https://overcast.fm/+cRX9LOs&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/listen/live-radio/1-23-ideas/clip/15979631-taken-in-exploring-credulity&#34;&gt;https://www.cbc.ca/listen/live-radio/1-23-ideas/clip/15979631-taken-in-exploring-credulity&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:EAE4DD6F-82DA-4D4C-A3D4-5E8477D70EE3} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>If Books Could Kill - The 5 Love Languages</title>
      <link>https://mcjones.ca/docs/if-books-could-kill---the-5-love-languages/</link>
      <pubDate>Mon, 02 Oct 2023 00:05:53 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/if-books-could-kill---the-5-love-languages/</guid>
      <description>&lt;h1 id=&#34;if-books-could-kill---the-5-love-languages&#34;&gt;If Books Could Kill - The 5 Love Languages&lt;/h1&gt;&#xA;&lt;p&gt;I’ve always wondered about the veracity of this book after it was over recommended when I got married. There’s lots of little bits that are true, but so many things just gave off generic Christian / male centric takes on things. I never appreciated when I first read this in the late 2000s. The podcast highlights just how… fabricated this entire book actually is. And given the history of who wrote it - it fits.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;if-books-could-kill---the-5-love-languages-1&#34;&gt;If Books Could Kill - The 5 Love Languages&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+9URLftHYg&#34;&gt;https://overcast.fm/+9URLftHYg&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.reddit.com/r/IfBooksCouldKill/comments/12t001y/if_books_could_kill_episode_the_5_love_languages/&#34;&gt;https://www.reddit.com/r/IfBooksCouldKill/comments/12t001y/if_books_could_kill_episode_the_5_love_languages/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #If Books Could Kill# --&gt;&#xA;&lt;!-- {BearID:33ED0162-AE28-4404-AB88-928BBC28C3A2} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Screaming in the Cloud - Viewing Security through an Operational Lens with Jess Dodson</title>
      <link>https://mcjones.ca/docs/screaming-in-the-cloud---viewing-security-through-an-operational-lens-with-jess-dodson/</link>
      <pubDate>Sun, 24 Sep 2023 18:53:18 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/screaming-in-the-cloud---viewing-security-through-an-operational-lens-with-jess-dodson/</guid>
      <description>&lt;h1 id=&#34;screaming-in-the-cloud---viewing-security-through-an-operational-lens-with-jess-dodson&#34;&gt;Screaming in the Cloud - Viewing Security through an Operational Lens with Jess Dodson&lt;/h1&gt;&#xA;&lt;p&gt;Nothing “new” but a great podcast to share with folks to help them understand security and what’s trying to be accomplished.&lt;/p&gt;&#xA;&lt;p&gt;Fun note - the biggest insider threat actor blast radius is an exec’s EA. They accumulate access like crazy and always bespoke.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;screaming-in-the-cloud---viewing-security-through-an-operational-lens-with-jess-dodson-1&#34;&gt;Screaming in the Cloud - Viewing Security through an Operational Lens with Jess Dodson&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+RWDXH1Zj8&#34;&gt;https://overcast.fm/+RWDXH1Zj8&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://sitc.transistor.fm/episodes/viewing-security-through-an-operational-lens-with-jess-dodson&#34;&gt;https://sitc.transistor.fm/episodes/viewing-security-through-an-operational-lens-with-jess-dodson&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #Screaming in the Cloud# --&gt;&#xA;&lt;!-- {BearID:55699A28-6CA2-4B9E-A69F-BE0F63347701} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>O11ycast - Ep. 59 - Learning From Incidents with Laura Maguire of Jeli</title>
      <link>https://mcjones.ca/docs/o11ycast---ep.-59---learning-from-incidents-with-laura-maguire-of-jeli/</link>
      <pubDate>Sun, 24 Sep 2023 17:19:57 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/o11ycast---ep.-59---learning-from-incidents-with-laura-maguire-of-jeli/</guid>
      <description>&lt;h1 id=&#34;o11ycast---ep-59---learning-from-incidents-with-laura-maguire-of-jeli&#34;&gt;O11ycast - Ep. 59 - Learning From Incidents with Laura Maguire of Jeli&lt;/h1&gt;&#xA;&lt;p&gt;Line of representation (1:45) - STELLA report to look at the below the line (software) and above the line (human)&lt;/p&gt;&#xA;&lt;p&gt;Learning from Incidents (7:50) - learning from safety practitioners and other industries (health care, aviation, etc.) on how to support work.&lt;/p&gt;&#xA;&lt;p&gt;LFI Conference and site - &lt;a href=&#34;https://www.learningfromincidents.io/&#34;&gt;https://www.learningfromincidents.io/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Safety Science (10:30) does have a current dichotomy of folks looking at how to support work (meaning adaptability to unexpected events and surprises) versus a more traditional preventative approach to avoid all accidents.&lt;/p&gt;&#xA;&lt;p&gt;Recognizing we can’t prevent all accidents is hard.&lt;/p&gt;&#xA;&lt;p&gt;And in the response how do we support people under time pressure, ambiguous data, etc. the information is not coming in at an orderly rate.&lt;/p&gt;&#xA;&lt;p&gt;There is an over simplified comparison that it is learning from incidents vs single root cause analysis.&lt;/p&gt;&#xA;&lt;p&gt;You have to accept your system is broken - it’s a question of when and where you’ll learn it’s broken.&lt;/p&gt;&#xA;&lt;p&gt;15:44 - “it’s amazing how insidious that world view that .. systems are always performing optimally, and that humans are always performing optimally, and that the world is not full of surprise, and is not messy and unstructured. It’s amazing how prevalent that is”&lt;/p&gt;&#xA;&lt;p&gt;16:25 - “My experience of working in this worlds is that no plan survives first contact with the environment in which you’re trying to execute it. The world is messy, and it’s unstructured, and problems are often difficult to see”&lt;/p&gt;&#xA;&lt;p&gt;The importance of sharing and looking at how to improve responses&lt;/p&gt;&#xA;&lt;p&gt;Dashboards and wiki pages can jokingly be referred to as gravestones - they exist or get updated only after issues or incidents occur.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;o11ycast---ep-59-learning-from-incidents-with-laura-maguire-of-jeli&#34;&gt;O11ycast - Ep. 59, Learning From Incidents with Laura Maguire of Jeli&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+0GHxsvyBQ&#34;&gt;https://overcast.fm/+0GHxsvyBQ&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://dev.to/o11ycast/ep-59-learning-from-incidents-with-laura-maguire-of-jeli&#34;&gt;https://dev.to/o11ycast/ep-59-learning-from-incidents-with-laura-maguire-of-jeli&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #O11ycast# --&gt;&#xA;&lt;!-- {BearID:BF628159-9A94-48FA-9FDC-6010434BCD93} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>If Books Could Kill - Rich Dad Poor Dad</title>
      <link>https://mcjones.ca/docs/if-books-could-kill---rich-dad-poor-dad/</link>
      <pubDate>Wed, 13 Sep 2023 22:13:21 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/if-books-could-kill---rich-dad-poor-dad/</guid>
      <description>&lt;h1 id=&#34;if-books-could-kill---rich-dad-poor-dad&#34;&gt;If Books Could Kill - Rich Dad Poor Dad&lt;/h1&gt;&#xA;&lt;p&gt;… I knew it was full of really bad details but wow. My memory didn’t remember this.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;if-books-could-kill---rich-dad-poor-dad-1&#34;&gt;If Books Could Kill - Rich Dad Poor Dad&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+9URKMpPlc&#34;&gt;https://overcast.fm/+9URKMpPlc&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.reddit.com/r/IfBooksCouldKill/comments/12dg2r6/if_books_could_kill_rich_dad_poor_dad/&#34;&gt;https://www.reddit.com/r/IfBooksCouldKill/comments/12dg2r6/if_books_could_kill_rich_dad_poor_dad/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public --&gt;&#xA;&lt;!-- #podcast --&gt;&#xA;&lt;!-- #If Books Could Kill# --&gt;&#xA;&lt;!-- {BearID:2608D6F8-CD94-4EDC-AF3C-65EDE6CDA02D} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>99% Invisible - De Fiets Is Niets</title>
      <link>https://mcjones.ca/docs/99-invisible---de-fiets-is-niets/</link>
      <pubDate>Sat, 09 Sep 2023 17:41:27 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/99-invisible---de-fiets-is-niets/</guid>
      <description>&lt;h1 id=&#34;99-invisible---de-fiets-is-niets&#34;&gt;99% Invisible - De Fiets Is Niets&lt;/h1&gt;&#xA;&lt;p&gt;99% Invisible’s recap of how and why the Netherlands created their bicycle culture and how it has stagnated.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;99-invisible---531--de-fiets-is-niets&#34;&gt;99% Invisible - 531- De Fiets Is Niets&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+yIOxANo9Q&#34;&gt;https://overcast.fm/+yIOxANo9Q&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://99percentinvisible.org/episode/de-fiets-is-niets/&#34;&gt;https://99percentinvisible.org/episode/de-fiets-is-niets/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #99 percent invisible# --&gt;&#xA;&lt;!-- {BearID:77AE65AC-1540-4D51-8930-327B43AD1327} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Twenty Thousand Hertz - Summary</title>
      <link>https://mcjones.ca/docs/twenty-thousand-hertz---summary/</link>
      <pubDate>Mon, 04 Sep 2023 04:58:05 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/twenty-thousand-hertz---summary/</guid>
      <description>&lt;h1 id=&#34;twenty-thousand-hertz---summary&#34;&gt;Twenty Thousand Hertz - Summary&lt;/h1&gt;&#xA;&lt;h2 id=&#34;podcast-info&#34;&gt;Podcast Info&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://www.20k.org/&#34;&gt;https://www.20k.org/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;thoughts&#34;&gt;Thoughts&lt;/h2&gt;&#xA;&lt;p&gt;Podcast looking into the history and stories behind common sounds and other audio related technologies.&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Twenty Thousand Hertz# --&gt;&#xA;&lt;!-- {BearID:546AB495-77B4-494F-9748-6A0995F13D44} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Ward Zero - Summary</title>
      <link>https://mcjones.ca/docs/ward-zero---summary/</link>
      <pubDate>Mon, 04 Sep 2023 04:55:30 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/ward-zero---summary/</guid>
      <description>&lt;h1 id=&#34;ward-zero---summary&#34;&gt;Ward Zero - Summary&lt;/h1&gt;&#xA;&lt;h2 id=&#34;podcast-info&#34;&gt;Podcast Info&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://livewirecalgary.com/category/ward-zero-podcast/&#34;&gt;https://livewirecalgary.com/category/ward-zero-podcast/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;thoughts&#34;&gt;Thoughts&lt;/h2&gt;&#xA;&lt;p&gt;I’ve quite enjoyed the Ward Zero podcast but since it’s a current events podcast I’ve opted to not publish any of my starred episodes.&lt;/p&gt;&#xA;&lt;!-- #podcast #Ward Zero# #public --&gt;&#xA;&lt;!-- {BearID:4381EA5C-19B6-4CFE-9620-2437DBB3D8B8} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Pre-Accident Podcast - Summary</title>
      <link>https://mcjones.ca/docs/pre-accident-podcast---summary/</link>
      <pubDate>Sat, 02 Sep 2023 05:30:55 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/pre-accident-podcast---summary/</guid>
      <description>&lt;h1 id=&#34;pre-accident-podcast---summary&#34;&gt;Pre-Accident Podcast - Summary&lt;/h1&gt;&#xA;&lt;h2 id=&#34;podcast-info&#34;&gt;Podcast Info&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://preaccidentpodcast.podbean.com/&#34;&gt;https://preaccidentpodcast.podbean.com/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;thoughts&#34;&gt;Thoughts&lt;/h2&gt;&#xA;&lt;p&gt;This was first recommended by Jeff Lindsay (&lt;a href=&#34;https://mas.to/@progrium&#34;&gt;https://mas.to/@progrium&lt;/a&gt;) on Twitter quite a few years ago and I listened for a few years.&lt;/p&gt;&#xA;&lt;p&gt;Todd Conklin does an excellent job looking at various items on how to better improve safety and how it overlaps with so many industries.&lt;/p&gt;&#xA;&lt;p&gt;The overlap between IT, and safety specialists in their particular fields - wether it is medical, aerospace, or other is incredibly informational - especially when you look at the pre-accidental view.&lt;/p&gt;&#xA;&lt;p&gt;I unfortunately had not saved/starred many of the really good episodes from the years I listened before dropping it to try and reduce the number of new episodes I was listening to.&lt;/p&gt;&#xA;&lt;!-- #podcast #Pre-Accident Investigation# #public --&gt;&#xA;&lt;!-- {BearID:FD63A9AC-443E-4383-907B-C32AB4E86DEE} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Strong Towns - Summary</title>
      <link>https://mcjones.ca/docs/strong-towns---summary/</link>
      <pubDate>Sat, 02 Sep 2023 05:26:41 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/strong-towns---summary/</guid>
      <description>&lt;h1 id=&#34;strong-towns---summary&#34;&gt;Strong Towns - Summary&lt;/h1&gt;&#xA;&lt;h2 id=&#34;podcast-info&#34;&gt;Podcast Info&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://podcast.strongtowns.org/&#34;&gt;https://podcast.strongtowns.org/&lt;/a&gt;&#xA;&lt;a href=&#34;http://upzoned.strongtowns.org/&#34;&gt;http://upzoned.strongtowns.org/&lt;/a&gt;&#xA;&lt;a href=&#34;https://strongtowns.org&#34;&gt;https://strongtowns.org&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;thoughts&#34;&gt;Thoughts&lt;/h2&gt;&#xA;&lt;p&gt;A pragmatic view of how to make a strong, resilient, and sustainable strong town. It scales up nicely for cities and down for villages as well. We should not be playing Ponzi schemes with our cities anymore - we have for far too long.&lt;/p&gt;&#xA;&lt;p&gt;Upzoned is an excellent podcast but is a higher volume than the main podcast and focuses more on individual stories.&lt;/p&gt;&#xA;&lt;!-- #podcast #strong towns# #public --&gt;&#xA;&lt;!-- {BearID:8E6A0CD0-30E9-4574-A48E-8E47CA50259A} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Quirks and Quarks - Summary</title>
      <link>https://mcjones.ca/docs/cbc-quirks-and-quarks---summary/</link>
      <pubDate>Sat, 02 Sep 2023 05:25:09 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-quirks-and-quarks---summary/</guid>
      <description>&lt;h1 id=&#34;cbc-quirks-and-quarks---summary&#34;&gt;CBC Quirks and Quarks - Summary&lt;/h1&gt;&#xA;&lt;h2 id=&#34;podcast-info&#34;&gt;Podcast Info&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://www.cbc.ca/radio/quirks&#34;&gt;https://www.cbc.ca/radio/quirks&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;thoughts&#34;&gt;Thoughts&lt;/h2&gt;&#xA;&lt;p&gt;Fantastic science current events podcast. I do enjoy having it part of my list of podcasts I listen to normally.&lt;/p&gt;&#xA;&lt;!-- #podcast #CBC Quirks and Quarks# #public --&gt;&#xA;&lt;!-- {BearID:65455251-9715-4792-88A7-300CC24DB8AE} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Escape Pod - Summary</title>
      <link>https://mcjones.ca/docs/escape-pod---summary/</link>
      <pubDate>Sat, 02 Sep 2023 05:24:01 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/escape-pod---summary/</guid>
      <description>&lt;h1 id=&#34;escape-pod---summary&#34;&gt;Escape Pod - Summary&lt;/h1&gt;&#xA;&lt;h2 id=&#34;podcast-info&#34;&gt;Podcast Info&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://escapepod.org/&#34;&gt;https://escapepod.org/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;thoughts&#34;&gt;Thoughts&lt;/h2&gt;&#xA;&lt;p&gt;Escape Pod is an amazing original Science Fiction podcast and highly recommended.&lt;/p&gt;&#xA;&lt;!-- #podcast #Escape Pod# #public --&gt;&#xA;&lt;!-- {BearID:5AF932A6-8087-47F0-B4F9-E4C82D295BDD} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - Summary</title>
      <link>https://mcjones.ca/docs/cbc-ideas---summary/</link>
      <pubDate>Sat, 02 Sep 2023 05:22:53 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---summary/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---summary&#34;&gt;CBC Ideas - Summary&lt;/h1&gt;&#xA;&lt;h2 id=&#34;podcast-info&#34;&gt;Podcast Info&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://www.cbc.ca/radio/ideas&#34;&gt;https://www.cbc.ca/radio/ideas&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;thoughts&#34;&gt;Thoughts&lt;/h2&gt;&#xA;&lt;p&gt;CBC Ideas - sometimes it has fantastic items, other times it’s incredibly academic. I do enjoy having it part of my list of podcasts I listen to normally.&lt;/p&gt;&#xA;&lt;!-- #podcast #CBC Ideas# #public --&gt;&#xA;&lt;!-- {BearID:7A0A58E8-BDC7-4869-9871-341EF749A01F} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Developing Leadership - Summary</title>
      <link>https://mcjones.ca/docs/developing-leadership---summary/</link>
      <pubDate>Sat, 02 Sep 2023 05:03:24 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/developing-leadership---summary/</guid>
      <description>&lt;h1 id=&#34;developing-leadership---summary&#34;&gt;Developing Leadership - Summary&lt;/h1&gt;&#xA;&lt;h2 id=&#34;podcast-info&#34;&gt;Podcast Info&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://www.developingleadership.co/&#34;&gt;https://www.developingleadership.co/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;thoughts&#34;&gt;Thoughts&lt;/h2&gt;&#xA;&lt;p&gt;Developing Leadership is a great podcast looking at leadership decisions, skills, and other challenges.&lt;/p&gt;&#xA;&lt;p&gt;At it’s best it helps with looking at how to build at a team, while at it’s worst it does highlight the tradeoffs requested between a company and a team of workers within our current system.&lt;/p&gt;&#xA;&lt;!-- #podcast #developing leadership# #public --&gt;&#xA;&lt;!-- {BearID:681A21B4-5C39-4040-AFCD-C190A01A5604} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Alberta Advantage - Summary</title>
      <link>https://mcjones.ca/docs/alberta-advantage---summary/</link>
      <pubDate>Sat, 02 Sep 2023 04:59:44 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/alberta-advantage---summary/</guid>
      <description>&lt;h1 id=&#34;alberta-advantage---summary&#34;&gt;Alberta Advantage - Summary&lt;/h1&gt;&#xA;&lt;h2 id=&#34;podcast-info&#34;&gt;Podcast Info&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://albertaadvantagepod.com/&#34;&gt;https://albertaadvantagepod.com/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;thoughts&#34;&gt;Thoughts&lt;/h2&gt;&#xA;&lt;p&gt;At first it’s a left wing centric perspective on various Albertan and Canadian topics, but as it goes on it becomes incredibly important political education for what is truly left versus Neo-liberal, centrist, and conservative values.&lt;/p&gt;&#xA;&lt;p&gt;While it is very Alberta and Canada centric, it is a fantastic resource for political education to better understand actual leftist ideas compared to what 2010/2020s society pretends is a leftist idea.&lt;/p&gt;&#xA;&lt;!-- #podcast #alberta advantage# #public --&gt;&#xA;&lt;!-- {BearID:A5739754-53AC-4DCD-9BE6-6578F1952E53} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>99% Invisible - Summary</title>
      <link>https://mcjones.ca/docs/99-invisible---summary/</link>
      <pubDate>Sat, 02 Sep 2023 04:58:49 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/99-invisible---summary/</guid>
      <description>&lt;h1 id=&#34;99-invisible---summary&#34;&gt;99% Invisible - Summary&lt;/h1&gt;&#xA;&lt;h2 id=&#34;podcast-info&#34;&gt;Podcast Info&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://99percentinvisible.org/&#34;&gt;https://99percentinvisible.org/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;thoughts&#34;&gt;Thoughts&lt;/h2&gt;&#xA;&lt;p&gt;Very popular, but also an excellent podcast on a variety of topics.&lt;/p&gt;&#xA;&lt;!-- #podcast #99 percent invisible# #public --&gt;&#xA;&lt;!-- {BearID:5989637F-A082-4B0B-99A9-2FE5B46E9431} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Behind the Bastards - Summary</title>
      <link>https://mcjones.ca/docs/behind-the-bastards---summary/</link>
      <pubDate>Sat, 02 Sep 2023 04:56:17 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/behind-the-bastards---summary/</guid>
      <description>&lt;h1 id=&#34;behind-the-bastards---summary&#34;&gt;Behind the Bastards - Summary&lt;/h1&gt;&#xA;&lt;h2 id=&#34;podcast-info&#34;&gt;Podcast Info&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://www.iheart.com/podcast/105-behind-the-bastards-29236323/&#34;&gt;https://www.iheart.com/podcast/105-behind-the-bastards-29236323/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;thoughts&#34;&gt;Thoughts&lt;/h2&gt;&#xA;&lt;p&gt;Generally a fantastic look into the back story of different “bastards” and what they did and why they are characterized as a bastard.&lt;/p&gt;&#xA;&lt;!-- #podcast #Behind The Bastards# #public --&gt;&#xA;&lt;!-- {BearID:227866BC-099D-43F6-8733-75DB25B09645} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Sprawlcast - Summary</title>
      <link>https://mcjones.ca/docs/sprawlcast---summary/</link>
      <pubDate>Sat, 02 Sep 2023 04:54:56 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sprawlcast---summary/</guid>
      <description>&lt;h1 id=&#34;sprawlcast---summary&#34;&gt;Sprawlcast - Summary&lt;/h1&gt;&#xA;&lt;h2 id=&#34;podcast-info&#34;&gt;Podcast Info&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://www.sprawlcalgary.com/sprawlcast&#34;&gt;https://www.sprawlcalgary.com/sprawlcast&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;thoughts&#34;&gt;Thoughts&lt;/h2&gt;&#xA;&lt;p&gt;Sprawl Calgary’s series looking into various Calgary centric topics. Highly recommended.&lt;/p&gt;&#xA;&lt;!-- #podcast #sprawlcast #public --&gt;&#xA;&lt;!-- {BearID:8073310A-A2D6-4116-9225-188914683360} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Oddly Influenced - Resilience engineering with Lorin Hochstein</title>
      <link>https://mcjones.ca/docs/oddly-influenced---resilience-engineering-with-lorin-hochstein/</link>
      <pubDate>Fri, 01 Sep 2023 00:21:06 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/oddly-influenced---resilience-engineering-with-lorin-hochstein/</guid>
      <description>&lt;h1 id=&#34;oddly-influenced---resilience-engineering-with-lorin-hochstein&#34;&gt;Oddly Influenced - Resilience engineering with Lorin Hochstein&lt;/h1&gt;&#xA;&lt;p&gt;Lots of examples of how to build resiliency and capacity to be able to handle when something goes wrong.&lt;/p&gt;&#xA;&lt;p&gt;Beware the law of stretched systems. The excess capacity will get used.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;oddly-influenced---resilience-engineering-with-lorin-hochstein-1&#34;&gt;Oddly Influenced - Resilience engineering with Lorin Hochstein&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+7G81vYJZ8&#34;&gt;https://overcast.fm/+7G81vYJZ8&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://podcast.oddly-influenced.dev/episodes/resilience-engineering-with-lorin-hochstein&#34;&gt;https://podcast.oddly-influenced.dev/episodes/resilience-engineering-with-lorin-hochstein&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Oddly Influcenced# --&gt;&#xA;&lt;!-- {BearID:C4868948-2A21-4580-9F63-DBF452FC3C09} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Pre-Accident Investigation Podcast 456 - Waiting, Complexity, and People - A Greatest Hits Podcast</title>
      <link>https://mcjones.ca/docs/pre-accident-investigation-podcast-456---waiting-complexity-and-people---a-greatest-hits-podcast/</link>
      <pubDate>Thu, 31 Aug 2023 23:16:39 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/pre-accident-investigation-podcast-456---waiting-complexity-and-people---a-greatest-hits-podcast/</guid>
      <description>&lt;h1 id=&#34;pre-accident-investigation-podcast-456---waiting-complexity-and-people---a-greatest-hits-podcast&#34;&gt;Pre-Accident Investigation Podcast 456 - Waiting, Complexity, and People - A Greatest Hits Podcast&lt;/h1&gt;&#xA;&lt;p&gt;08:55 - if a process is complicated - simplify. Make the hard easy. But if the process is complex, add transparency.&lt;/p&gt;&#xA;&lt;p&gt;A bit of an oversimplification because you need to figure out if a process is complicated or simply complex.&lt;/p&gt;&#xA;&lt;p&gt;11 min mark - make the connections more transparent - eg. Raise your hand to speak makes transparency for switching who is speaking.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;preaccident-investigation-podcast---papod-456---waiting-complexity-and-poeple---a-greatest-hits-podcast&#34;&gt;PreAccident Investigation Podcast - PAPod 456 - Waiting, Complexity, and Poeple - A Greatest Hits Podcast&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+tF0D6igEc&#34;&gt;https://overcast.fm/+tF0D6igEc&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://preaccidentpodcast.podbean.com/e/papod-456-waiting-complexity-and-poeple-a-greatest-hits-podcast/&#34;&gt;https://preaccidentpodcast.podbean.com/e/papod-456-waiting-complexity-and-poeple-a-greatest-hits-podcast/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Pre-Accident Investigation# --&gt;&#xA;&lt;!-- {BearID:B36C84FF-1C5C-40CA-92E6-55D2111637AF} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>SpamSieve and Exclude My Address Issue</title>
      <link>https://mcjones.ca/docs/spamsieve-and-exclude-my-address-issue/</link>
      <pubDate>Thu, 31 Aug 2023 18:10:42 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/spamsieve-and-exclude-my-address-issue/</guid>
      <description>&lt;h1 id=&#34;spamsieve-and-exclude-my-address-issue&#34;&gt;SpamSieve and Exclude My Address Issue&lt;/h1&gt;&#xA;&lt;p&gt;Source: &lt;a href=&#34;https://forum.c-command.com/t/address-book-exclude-my-address-just-isnt-working/10879/7&#34;&gt;https://forum.c-command.com/t/address-book-exclude-my-address-just-isnt-working/10879/7&lt;/a&gt;&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Double check what addresses SpamSieve is getting from Contacts: Go to x-spamsieve://default?k=LogAddressBook&amp;amp;v=YES&lt;/li&gt;&#xA;&lt;li&gt;Quit and reopen SpamSieve and open the Log&lt;/li&gt;&#xA;&lt;li&gt;In my case it wasn’t seeing ANY of the emails from my contact card.&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;p&gt;The fix?&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://c-command.com/spamsieve/help/exclude-my-addresses&#34;&gt;https://c-command.com/spamsieve/help/exclude-my-addresses&lt;/a&gt;&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;defaults write com.c-command.SpamSieve ExtraAddressesToExclude -array a@b.com d@e.com&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;!-- #public #macos #spamsieve --&gt;&#xA;&lt;!-- {BearID:3680B02D-FF49-4B50-B9FB-44167C1DEE4B} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - Mercury&#39;s In Retrograde - The Rise of Astrology</title>
      <link>https://mcjones.ca/docs/cbc-ideas---mercurys-in-retrograde---the-rise-of-astrology/</link>
      <pubDate>Wed, 30 Aug 2023 22:52:34 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---mercurys-in-retrograde---the-rise-of-astrology/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---mercurys-in-retrograde---the-rise-of-astrology&#34;&gt;CBC Ideas - Mercury&amp;rsquo;s In Retrograde - The Rise of Astrology&lt;/h1&gt;&#xA;&lt;p&gt;I had not realized how much more popular astrology had become.&lt;/p&gt;&#xA;&lt;p&gt;It’s a placebo at best, and ripe for abuse as the horoscopes push consumer behaviour. It does this under a veil of objectiveness that’s not based in reality. It might be better if it was pseudo-scientific instead of a mechanism that preys on a human’s ego.&lt;/p&gt;&#xA;&lt;p&gt;The 20-25 minute mark hilight how folks are seduced by the vague descriptions.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;ideas---mercurys-in-retrograde-the-rise-of-astrology&#34;&gt;Ideas - Mercury’s In Retrograde: The Rise of Astrology&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cRNvX4Q&#34;&gt;https://overcast.fm/+cRNvX4Q&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/player/play/2187650115725&#34;&gt;https://www.cbc.ca/player/play/2187650115725&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:0EBB5FDC-16ED-4026-825B-436F384FB9AB} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Using Llama2 with VS Code</title>
      <link>https://mcjones.ca/docs/using-llama2-with-vs-code/</link>
      <pubDate>Wed, 30 Aug 2023 04:08:02 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/using-llama2-with-vs-code/</guid>
      <description>&lt;h1 id=&#34;using-llama2-with-vs-code&#34;&gt;Using Llama2 with VS Code&lt;/h1&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Download and install &lt;a href=&#34;https://ollama.ai/&#34;&gt;Ollama&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;Have Ollama download and set up the codellama model: &lt;code&gt;ollama run codellama&lt;/code&gt;&lt;/li&gt;&#xA;&lt;li&gt;Download and install &lt;a href=&#34;https://continue.dev/&#34;&gt;Continue&lt;/a&gt; for VS Code&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://continue.dev/docs/walkthroughs/codellama&#34;&gt;Configure Continue to use Ollama&lt;/a&gt; - make sure you restart/reload VS Code and check Continue’s selected model in the extension pane.&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://continue.dev/docs/how-to-use-continue&#34;&gt;Learn how to use Continue in VS Code&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;h2 id=&#34;using-continue&#34;&gt;Using Continue&lt;/h2&gt;&#xA;&lt;p&gt;Open the Extension so it’s available as a pane. You can open it by using Command - M by default. (Which is not great)&lt;/p&gt;&#xA;&lt;!-- #public #snippet #codellama --&gt;&#xA;&lt;!-- {BearID:966357DA-B96A-4780-A732-AF99D3E2C067} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Pre-Accident Investigation Podcast 227 - What-A-Burger, Fedex, and Capacity</title>
      <link>https://mcjones.ca/docs/pre-accident-investigation-podcast-227---what-a-burger-fedex-and-capacity/</link>
      <pubDate>Wed, 23 Aug 2023 04:52:56 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/pre-accident-investigation-podcast-227---what-a-burger-fedex-and-capacity/</guid>
      <description>&lt;h1 id=&#34;pre-accident-investigation-podcast-227---what-a-burger-fedex-and-capacity&#34;&gt;Pre-Accident Investigation Podcast 227 - What-A-Burger, Fedex, and Capacity&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded - this is the episode we learn about FedEx running a capacity flight in each quadrant&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;preaccident-investigation-podcast---papod-227---what-a-burger-fedex-and-capacity&#34;&gt;PreAccident Investigation Podcast - PAPod 227 - What-A-Burger, Fedex, and Capacity&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+tF0Dykf8Q&#34;&gt;https://overcast.fm/+tF0Dykf8Q&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://preaccidentpodcast.podbean.com/e/papod-227-what-a-burger-fedex-and-capacity/&#34;&gt;https://preaccidentpodcast.podbean.com/e/papod-227-what-a-burger-fedex-and-capacity/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast --&gt;&#xA;&lt;!-- #Pre-Accident Investigation# --&gt;&#xA;&lt;!-- {BearID:AD9401AD-94F1-4642-BE99-C9A41A2A8BCD} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Touch ID and sudo in macOS</title>
      <link>https://mcjones.ca/docs/touch-id-and-sudo-in-macos/</link>
      <pubDate>Mon, 21 Aug 2023 23:38:28 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/touch-id-and-sudo-in-macos/</guid>
      <description>&lt;h1 id=&#34;touch-id-and-sudo-in-macos&#34;&gt;Touch ID and sudo in macOS&lt;/h1&gt;&#xA;&lt;p&gt;Had been meaning to do this for ages and now in Sonoma (macOS 14+) it can stick!&lt;/p&gt;&#xA;&lt;h2 id=&#34;pre-sonoma&#34;&gt;Pre Sonoma&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;sudo sed -i &amp;#39;&amp;#39; &amp;#39;2a\&#xA;auth       sufficient     pam_tid.so\&#xA;&amp;#39; /etc/pam.d/sudo&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;post-sonoma&#34;&gt;Post Sonoma&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;sudo cp /etc/pam.d/sudo_local.template /etc/pam.d/sudo_local&#xA;sudo sed -i &amp;#39;&amp;#39; &amp;#39;s/#auth/auth/g&amp;#39; /etc/pam.d/sudo_local&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Latest source I used: &lt;a href=&#34;https://sixcolors.com/post/2023/08/in-macos-sonoma-touch-id-for-sudo-can-survive-updates/&#34;&gt;https://sixcolors.com/post/2023/08/in-macos-sonoma-touch-id-for-sudo-can-survive-updates/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #macos #snippet #sudo #touchid --&gt;&#xA;&lt;!-- {BearID:BF194268-AFA0-4BDE-BF28-4C3B8D127865} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Making a Password Hash for user add</title>
      <link>https://mcjones.ca/docs/making-a-password-hash-for-user-add/</link>
      <pubDate>Tue, 08 Aug 2023 18:08:49 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/making-a-password-hash-for-user-add/</guid>
      <description>&lt;h1 id=&#34;making-a-password-hash-for-user-add&#34;&gt;Making a Password Hash for user add&lt;/h1&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;HASH=$(mkpasswd -m sha-512)&#xA;&#xA;useradd -mp &amp;#34;${HASH}&amp;#34; -G sudo username&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;!-- #public #snippet --&gt;&#xA;&lt;!-- {BearID:84589C27-CF54-40B6-AAC4-9C4FA1AF97BF} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>You Are Not So Smart Book Podcasts</title>
      <link>https://mcjones.ca/docs/you-are-not-so-smart-book-podcasts/</link>
      <pubDate>Sat, 05 Aug 2023 21:02:59 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/you-are-not-so-smart-book-podcasts/</guid>
      <description>&lt;h1 id=&#34;you-are-not-so-smart-book-podcasts&#34;&gt;You Are Not So Smart Book Podcasts&lt;/h1&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;I Never Thought of it that way - Monica Guzman&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://youarenotsosmart.com/2023/03/06/yanss-254-how-to-have-productive-conversations-in-a-polarized-political-environment/&#34;&gt;https://youarenotsosmart.com/2023/03/06/yanss-254-how-to-have-productive-conversations-in-a-polarized-political-environment/&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;Good Arguments - Bo Seo&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://youarenotsosmart.com/2023/03/19/yanss-255-how-to-improve-our-lives-and-the-world-by-improving-the-quality-of-our-disagreements/&#34;&gt;https://youarenotsosmart.com/2023/03/19/yanss-255-how-to-improve-our-lives-and-the-world-by-improving-the-quality-of-our-disagreements/&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;The Persuaders - Anand Giriharadas&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://youarenotsosmart.com/2023/04/02/yanss-256-anand-giridharadas-wants-americans-to-change-their-minds-about-their-ability-change-other-americans-minds/&#34;&gt;https://youarenotsosmart.com/2023/04/02/yanss-256-anand-giridharadas-wants-americans-to-change-their-minds-about-their-ability-change-other-americans-minds/&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;How Minds Change - David McRaney&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;monica-interview&#34;&gt;Monica Interview&lt;/h2&gt;&#xA;&lt;p&gt;I struggled with the bit of needing to talk to the other side when marginalized. Requiring the emotional labour from victims even if we are talking to those less oppositional &lt;em&gt;feels&lt;/em&gt; big. Reinforcing that talking to everyone and not letting yourself fall into a bubble might be the bigger deal.&lt;/p&gt;&#xA;&lt;p&gt;I part I loved is connecting to learn someone else’s experience. It requires listening.&lt;/p&gt;&#xA;&lt;p&gt;Beyond your ken- beyond your experience. Came from beyond visible distance on the sea&lt;/p&gt;&#xA;&lt;h2 id=&#34;bo-interview&#34;&gt;Bo Interview&lt;/h2&gt;&#xA;&lt;p&gt;Physics of arguments&#xA;Fact/Descriptive arguments&#xA;Attitudinal/Normative arguments - moral?&#xA;Should based/prescriptive&#xA;Claims&#xA;Conclusions&#xA;Topic analysis&lt;/p&gt;&#xA;&lt;p&gt;Are we still disagreeing about “x”?&#xA;Fighting the dark arts - why do you believe what you believe? What are we disagreeing about?&#xA;The art of being right - 38 ways to win an argument.&#xA;How to deal with bad faith&lt;/p&gt;&#xA;&lt;h2 id=&#34;anand-interview&#34;&gt;Anand Interview&lt;/h2&gt;&#xA;&lt;p&gt;Anger and division means people care&#xA;Dismissal and contempt is extremely toxic and fatal&lt;/p&gt;&#xA;&lt;p&gt;The Russian “attack” on the 2016 election was about undermining discourse. It was about dismissal and contempt.&lt;/p&gt;&#xA;&lt;p&gt;Anger gets things done&lt;/p&gt;&#xA;&lt;p&gt;People having big feelings is the base material for political entrepreneurs. The right is better are weaponizing this&lt;/p&gt;&#xA;&lt;p&gt;49:30 - good question (why should I offer anything empathetic when someone hates me) and answer (50:30). It’s hard. And it should be voluntary. Allies need to step up. Just because a trajectory is righteous it does not mean it will be easy.&lt;/p&gt;&#xA;&lt;!-- #podcast #you are not so smart# #public --&gt;&#xA;&lt;!-- {BearID:20218328-6719-4DF1-969C-486D02380AEC} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>systemd and DNS</title>
      <link>https://mcjones.ca/docs/systemd-and-dns/</link>
      <pubDate>Mon, 31 Jul 2023 04:21:54 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/systemd-and-dns/</guid>
      <description>&lt;h1 id=&#34;systemd-and-dns&#34;&gt;systemd and DNS&lt;/h1&gt;&#xA;&lt;p&gt;For systemd &amp;lt; v239 (18.04 and earlier):&#xA;&lt;code&gt;systemd-resolve&lt;/code&gt;&lt;/p&gt;&#xA;&lt;p&gt;For &amp;gt;= v239 (20.04 and later):&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;resolvectl&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;set-dns&#34;&gt;Set DNS&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;systemd-resolve --set-dns 1.1.1.1 --interface eno1&#xA;resolvectl dns eno1 1.1.1.1&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;remove-dns-entry&#34;&gt;Remove DNS entry&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;resolvectl dns eno1 &amp;#39;&amp;#39;&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;!-- #public #systemd #snippet --&gt;&#xA;&lt;!-- {BearID:A7D51C3B-C9B4-4F8D-8D8A-6811A1A2FDED} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>The Red Line - The Green Line Series</title>
      <link>https://mcjones.ca/docs/the-red-line---the-green-line-series/</link>
      <pubDate>Sun, 23 Jul 2023 18:45:12 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/the-red-line---the-green-line-series/</guid>
      <description>&lt;h1 id=&#34;the-red-line---the-green-line-series&#34;&gt;The Red Line - The Green Line Series&lt;/h1&gt;&#xA;&lt;p&gt;This was an excellent series looking at how various countries are preparing for the transition, its impacts, and climate.&lt;/p&gt;&#xA;&lt;p&gt;Episode 3 about Water Wars and the last about the winners and losers were the ones I enjoyed the most. I only wrote down my notes from episode 5.&lt;/p&gt;&#xA;&lt;h2 id=&#34;the-winners-and-losers-of-the-energy-transition&#34;&gt;The Winners and Losers of the Energy Transition&lt;/h2&gt;&#xA;&lt;p&gt;Aka The Death of the Petrostate&lt;/p&gt;&#xA;&lt;p&gt;What happens when we see oil prices start dropping because we pass peak oil demand?&lt;/p&gt;&#xA;&lt;p&gt;The touching on “low carbon” and “low cost” oil and how the choices being made now are shaping who will be the last one standing for the last vestiges of oil demand in the next 20 years. If anything it hilights further how backwards and mind numbingly dumb Alberta’s decisions are right now. Pivoting to “ethical oil” may sound smart but that ship (and the sheer disingenuous nature of such a slogan) has sailed.&lt;/p&gt;&#xA;&lt;p&gt;$30/bbl expectations by 2030 should be very concerning.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;how-the-us-military-is-preparing-for-climate-change&#34;&gt;How the US Military is Preparing for Climate Change&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+Ut4Qg0Sew&#34;&gt;https://overcast.fm/+Ut4Qg0Sew&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.theredlinepodcast.com/post/how-the-us-military-is-preparing-for-climate-change&#34;&gt;https://www.theredlinepodcast.com/post/how-the-us-military-is-preparing-for-climate-change&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h6 id=&#34;how-the-chinese-military-is-preparing-for-climate-change&#34;&gt;How the Chinese Military is Preparing for Climate Change&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+Ut4Sl4wR8&#34;&gt;https://overcast.fm/+Ut4Sl4wR8&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.theredlinepodcast.com/post/how-the-chinese-military-is-preparing-for-climate-change-the-green-line&#34;&gt;https://www.theredlinepodcast.com/post/how-the-chinese-military-is-preparing-for-climate-change-the-green-line&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h6 id=&#34;water-wars&#34;&gt;Water Wars&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+Ut4R90XHQ&#34;&gt;https://overcast.fm/+Ut4R90XHQ&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.theredlinepodcast.com/post/water-wars-the-green-line&#34;&gt;https://www.theredlinepodcast.com/post/water-wars-the-green-line&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h6 id=&#34;drcongo-dirty-metals-for-clean-energy&#34;&gt;D.R.Congo: Dirty Metals for Clean Energy&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+Ut4TIlQko&#34;&gt;https://overcast.fm/+Ut4TIlQko&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.theredlinepodcast.com/post/d-r-congo-dirty-metals-for-clean-energy-the-green-line&#34;&gt;https://www.theredlinepodcast.com/post/d-r-congo-dirty-metals-for-clean-energy-the-green-line&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h6 id=&#34;the-winners-and-losers-of-energy-transition&#34;&gt;The Winners and Losers of Energy Transition&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+Ut4SOFsZQ&#34;&gt;https://overcast.fm/+Ut4SOFsZQ&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.theredlinepodcast.com/post/the-winners-and-losers-of-energy-transition-the-green-line&#34;&gt;https://www.theredlinepodcast.com/post/the-winners-and-losers-of-energy-transition-the-green-line&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public  #podcast #the red line# --&gt;&#xA;&lt;!-- {BearID:9C490746-CF34-435F-8D32-DA3C0841A90B} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>SSL Verification and Derivation Tips</title>
      <link>https://mcjones.ca/docs/ssl-verification-and-derivation-tips/</link>
      <pubDate>Mon, 17 Jul 2023 16:24:13 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/ssl-verification-and-derivation-tips/</guid>
      <description>&lt;h1 id=&#34;ssl-verification-and-derivation-tips&#34;&gt;SSL Verification and Derivation Tips&lt;/h1&gt;&#xA;&lt;h2 id=&#34;verify-a-private-key&#34;&gt;Verify a private key&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;openssl rsa -noout -modulus -in &amp;lt;private-key-file&amp;gt;&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;verify-the-public-cert&#34;&gt;Verify the public cert&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;openssl x509 -noout -in &amp;lt;certificate-file&amp;gt; -text&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;verifying-they-match&#34;&gt;Verifying they match&lt;/h2&gt;&#xA;&lt;p&gt;The modulus of both should match (easiest to verify by hashing)&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;openssl x509 -noout -modulus -in &amp;lt;cert&amp;gt; | openssl md5&#xA;openssl rsa -noout -modulus -in &amp;lt;privatekey&amp;gt; | openssl md5&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;checking-dates&#34;&gt;Checking Dates&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;openssl x509 -noout -dates -in &amp;lt;certificate-file&amp;gt;&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;derivation-tips&#34;&gt;Derivation Tips&lt;/h2&gt;&#xA;&lt;h3 id=&#34;apache-24&#34;&gt;Apache (2.4+)&lt;/h3&gt;&#xA;&lt;p&gt;Concatenate the cert followed by intermediate cert(s).&lt;/p&gt;&#xA;&lt;p&gt;Set &lt;code&gt;SSLCertificateFile&lt;/code&gt; and &lt;code&gt;SSLCertificateKeyFile&lt;/code&gt; in the virtual host config&lt;/p&gt;&#xA;&lt;h3 id=&#34;nginx&#34;&gt;nginx&lt;/h3&gt;&#xA;&lt;p&gt;Concatenate the cert followed by intermediate cert(s)&lt;/p&gt;&#xA;&lt;h3 id=&#34;haproxy&#34;&gt;haproxy&lt;/h3&gt;&#xA;&lt;p&gt;Concatenate the cert, private key, followed by intermediate certs, and then optionally a dhparam output.&lt;/p&gt;&#xA;&lt;p&gt;Dhparam output can be created by running: &lt;code&gt;dhparam -out dhparam.pem 2048&lt;/code&gt;&lt;/p&gt;&#xA;&lt;p&gt;The entry in haproxy will then look like:&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;bind    :443 ssl crt /path/to/&amp;lt;cert+privkey+intermediate&amp;gt; alpn h2,http/1.1&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;(Check &lt;a href=&#34;https://ssl-config.mozilla.org/&#34;&gt;https://ssl-config.mozilla.org/&lt;/a&gt; for the best settings)&lt;/p&gt;&#xA;&lt;!-- #snippet #ssl #tls #public --&gt;&#xA;&lt;!-- {BearID:68506A57-6C1F-423B-B1D4-80613B8BB1F8} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Curtin Notes</title>
      <link>https://mcjones.ca/docs/curtin-notes/</link>
      <pubDate>Sun, 16 Jul 2023 03:58:42 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/curtin-notes/</guid>
      <description>&lt;h1 id=&#34;curtin-notes&#34;&gt;Curtin Notes&lt;/h1&gt;&#xA;&lt;h2 id=&#34;inheritancemultiple-files&#34;&gt;Inheritance/multiple files&lt;/h2&gt;&#xA;&lt;p&gt;Choose a file to include:&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;{{inhert &amp;#34;file&amp;#34;}}&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;However the file being included will REPLACE your previous file’s contents without:&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;{{self.body}}&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;At the top of the file, and this needs to be repeated for each inherited file.&lt;/p&gt;&#xA;&lt;h2 id=&#34;maas-required-commands&#34;&gt;MAAS required commands&lt;/h2&gt;&#xA;&lt;p&gt;If you’re using Curtin with MAAS remember to ensure you have the following late command:&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;99-maas: [wget, &amp;#39;--no-proxy&amp;#39;, {{node_disable_pxe_url|escape.json}}, &amp;#39;--post-data&amp;#39;, {{node_disable_pxe_data|escape.json}}, &amp;#39;-O&amp;#39;, &amp;#39;/dev/null&amp;#39;]&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;As well as the following:&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;debconf_selections:&#xA; maas: |&#xA;  {{for line in str(curtin_preseed).splitlines()}}&#xA;  {{line}}&#xA;  {{endfor}}&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;using-echo&#34;&gt;Using &lt;code&gt;echo&lt;/code&gt;&lt;/h2&gt;&#xA;&lt;p&gt;Unlike wget or other commands, commands running in the shell’s environment need to have a shell process spun up in the target to get the correct path.&lt;/p&gt;&#xA;&lt;p&gt;You will need to use &lt;code&gt;sh -c&lt;/code&gt; in the command:&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;  18-deny-module-ipmi: [&amp;#39;curtin&amp;#39;, &amp;#39;in-target&amp;#39;, &amp;#39;--&amp;#39;, &amp;#39;sh&amp;#39;, &amp;#39;-c&amp;#39;, &amp;#34;echo blacklist ipmi_si &amp;gt;&amp;gt; /etc/modprobe.d/blacklist.conf&amp;#34;]&#xA;  18-deny-module-nouveau: [&amp;#39;curtin&amp;#39;, &amp;#39;in-target&amp;#39;, &amp;#39;--&amp;#39;, &amp;#39;sh&amp;#39;, &amp;#39;-c&amp;#39;, &amp;#34;echo blacklist nouveau &amp;gt;&amp;gt; /etc/modprobe.d/blacklist.conf&amp;#34;]&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;!-- #snippet #curtin #public --&gt;&#xA;&lt;!-- {BearID:C3E804FB-8707-423F-92E1-6F390410D5D6} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Netbox Snippets</title>
      <link>https://mcjones.ca/docs/netbox-snippets/</link>
      <pubDate>Fri, 14 Jul 2023 19:50:37 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/netbox-snippets/</guid>
      <description>&lt;h1 id=&#34;netbox-snippets&#34;&gt;Netbox Snippets&lt;/h1&gt;&#xA;&lt;h2 id=&#34;rest---basic-curl&#34;&gt;REST - basic cURL&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;curl -H &amp;#34;Authorization: Token TOKEN&amp;#34; \&#xA;-H &amp;#34;Accept: application/json; indent=4&amp;#34; \&#xA;&amp;#34;https://netbox/api/ipam/ip-addresses/?vrf_id=3&amp;#34;&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;a href=&#34;https://demo.netbox.dev/static/docs/rest-api/authentication/&#34;&gt;https://demo.netbox.dev/static/docs/rest-api/authentication/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Note: This limits to 50 items by default. You can use &lt;code&gt;&amp;amp;limit&lt;/code&gt; to change.&lt;/p&gt;&#xA;&lt;h2 id=&#34;graphql&#34;&gt;GraphQL&lt;/h2&gt;&#xA;&lt;p&gt;A GraphQL UI is available at &lt;code&gt;/graphql&lt;/code&gt; on Netbox. GraphQL is a bit more work to use with cURL.&lt;/p&gt;&#xA;&lt;p&gt;The same REST query above in graphQL:&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;query {&#xA;  ip_address_list (vrf_id: &amp;#34;3&amp;#34;) {&#xA;    address&#xA;    dns_name&#xA;    description&#xA;  }&#xA;}&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h3 id=&#34;curl&#34;&gt;cURL&lt;/h3&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;curl -g \&#xA;-X POST \&#xA;-H &amp;#34;Content-Type: application/json&amp;#34; \&#xA;-H &amp;#34;Authorization: Token TOKEN&amp;#34; \&#xA;-d &amp;#39;{&amp;#34;query&amp;#34;:&amp;#34;query { ip_address_list (vrf_id: &amp;#34;3&amp;#34;) { address dns_name description } }&amp;#34;}&amp;#39; \&#xA;https://netbox.example/graphql&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;munging-netbox-data-to-csv&#34;&gt;Munging Netbox Data to CSV&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;| jq -r &amp;#39;.results | (map(keys) | add | unique) as $cols | map(. as $row | $cols | map($row[.])) as $rows | $cols, $rows[] | @csv&amp;#39;&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;JQ to CSV conversion one liner from: &lt;a href=&#34;https://stackoverflow.com/a/32965227&#34;&gt;https://stackoverflow.com/a/32965227&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;This does NOT work with multiple layers - so this will need tweaking each time to only select fields you want from &lt;code&gt;.results&lt;/code&gt;. So use &lt;code&gt;&#39;.results[] | keys&lt;/code&gt; to get the keys you want, and then:&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;| jq -r &amp;#39;.results[] | ( if (.dns_name == &amp;#34;&amp;#34;) then .dns_name = .description else . end  ) | { address, dns_name }&amp;#39; | jq -rs &amp;#39;(map(keys) | add | unique) as $cols | map(. as $row | $cols | map($row[.])) as $rows | $cols, $rows[] | @csv&amp;#39;&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;merging-two-fields&#34;&gt;Merging Two Fields&lt;/h2&gt;&#xA;&lt;p&gt;If you have bad data entry (it wouldn’t be production without it) - how can we “merge” two fields. Eg. dns_name and description - set dns_name to description if dns_name is a blank string&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;.results[] | ( if (.dns_name == &amp;#34;&amp;#34;) then .dns_name = .description else . end  ) | { address, dns_name }&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;!-- #public #snippet #netbox --&gt;&#xA;&lt;!-- {BearID:9A3B87F7-F6E8-434E-B951-8D0DBDE91A0E} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - Seduced by story -  the dangers of narrative</title>
      <link>https://mcjones.ca/docs/cbc-ideas---seduced-by-story----the-dangers-of-narrative/</link>
      <pubDate>Fri, 14 Jul 2023 18:43:47 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---seduced-by-story----the-dangers-of-narrative/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---seduced-by-story----the-dangers-of-narrative&#34;&gt;CBC Ideas - Seduced by story -  the dangers of narrative&lt;/h1&gt;&#xA;&lt;p&gt;The limitations of stories or how when we get so used to story, we can stop questioning if the story is fiction or not.&lt;/p&gt;&#xA;&lt;p&gt;Ultimately narrative is an effective tool. It can be used for good and evil.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;ideas---seduced-by-story-the-dangers-of-narrative&#34;&gt;Ideas - Seduced by story: the dangers of narrative&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cTGeZwA&#34;&gt;https://overcast.fm/+cTGeZwA&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/player/play/2179580483805&#34;&gt;https://www.cbc.ca/player/play/2179580483805&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public  #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:4F53FD4C-F0E6-433D-AC93-A01A8580810A} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Developing Leadership - Placing Bets and Building Trust as an Engineering Leader</title>
      <link>https://mcjones.ca/docs/developing-leadership---placing-bets-and-building-trust-as-an-engineering-leader/</link>
      <pubDate>Fri, 14 Jul 2023 18:43:24 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/developing-leadership---placing-bets-and-building-trust-as-an-engineering-leader/</guid>
      <description>&lt;h1 id=&#34;developing-leadership---placing-bets-and-building-trust-as-an-engineering-leader&#34;&gt;Developing Leadership - Placing Bets and Building Trust as an Engineering Leader&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;developing-leadership---placing-bets--building-trust-as-an-engineering-leader&#34;&gt;Developing Leadership - Placing Bets &amp;amp; Building Trust as an Engineering Leader&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+xOJ28vAYI&#34;&gt;https://overcast.fm/+xOJ28vAYI&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.developingleadership.co/episode/episode-30-placing-bets-building-trust-as-an-engineering-leader&#34;&gt;https://www.developingleadership.co/episode/episode-30-placing-bets-building-trust-as-an-engineering-leader&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #developing leadership# --&gt;&#xA;&lt;!-- {BearID:A24115A4-BF99-4A28-83AB-3BC26339E319} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>The War on Cars - Feminist City with Leslie Kern</title>
      <link>https://mcjones.ca/docs/the-war-on-cars---feminist-city-with-leslie-kern/</link>
      <pubDate>Thu, 13 Jul 2023 23:43:45 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/the-war-on-cars---feminist-city-with-leslie-kern/</guid>
      <description>&lt;h1 id=&#34;the-war-on-cars---feminist-city-with-leslie-kern&#34;&gt;The War on Cars - Feminist City with Leslie Kern&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-war-on-cars---feminist-city-with-leslie-kern-1&#34;&gt;The War on Cars - Feminist City with Leslie Kern&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+O31pHecxI&#34;&gt;https://overcast.fm/+O31pHecxI&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://thewaroncars.org/2023/03/07/feminist-city-with-leslie-kern/&#34;&gt;https://thewaroncars.org/2023/03/07/feminist-city-with-leslie-kern/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public  #podcast #The War On Cars# --&gt;&#xA;&lt;!-- {BearID:0B4661AF-0B1D-463D-BAC2-D5D7C9222ED7} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Tech Lead Journal - 123 - The Empathetic Workplace: How to Handle Workplace Trauma - Katharine Manning</title>
      <link>https://mcjones.ca/docs/tech-lead-journal---123---the-empathetic-workplace--how-to-handle-workplace-trauma---katharine-manning/</link>
      <pubDate>Wed, 12 Jul 2023 23:15:47 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/tech-lead-journal---123---the-empathetic-workplace--how-to-handle-workplace-trauma---katharine-manning/</guid>
      <description>&lt;h1 id=&#34;tech-lead-journal---123---the-empathetic-workplace-how-to-handle-workplace-trauma---katharine-manning&#34;&gt;Tech Lead Journal - 123 - The Empathetic Workplace: How to Handle Workplace Trauma - Katharine Manning&lt;/h1&gt;&#xA;&lt;p&gt;The LASER method is good to have learnt&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;tech-lead-journal---123---the-empathetic-workplace-how-to-handle-workplace-trauma---katharine-manning-1&#34;&gt;Tech Lead Journal - 123 - The Empathetic Workplace: How to Handle Workplace Trauma - Katharine Manning&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+fKlzRtCI4&#34;&gt;https://overcast.fm/+fKlzRtCI4&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://techleadjournal.dev/episodes/123/&#34;&gt;https://techleadjournal.dev/episodes/123/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public  #podcast #Tech Lead Journal# --&gt;&#xA;&lt;!-- {BearID:17BEA96B-C2A7-4870-A16E-25C2D45EDDEA} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Git Snippets</title>
      <link>https://mcjones.ca/docs/git-snippets/</link>
      <pubDate>Tue, 11 Jul 2023 03:42:05 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/git-snippets/</guid>
      <description>&lt;h1 id=&#34;git-snippets&#34;&gt;Git Snippets&lt;/h1&gt;&#xA;&lt;h2 id=&#34;nuke-all-files-not-in-the-repo&#34;&gt;Nuke all files not in the repo&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;git clean -df&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;code&gt;-n&lt;/code&gt; is a dry run&lt;/p&gt;&#xA;&lt;h2 id=&#34;add-files-already-deleted&#34;&gt;Add files already deleted&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;git add -u .&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;add-files-already-deleted-and-new-files&#34;&gt;Add files already deleted AND new files&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;git add -A&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;switching-default-upstream-repo&#34;&gt;Switching default upstream repo&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;git pull &amp;lt;upstream&amp;gt;&#xA;git pull --set-upstream origin main&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;updating-a-fork&#34;&gt;Updating a fork&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;git remote add upstream &amp;lt;upstream_url&amp;gt;&#xA;git fetch upstream&#xA;git merge &amp;lt;tag or branch name&amp;gt;&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;!-- #public #snippet #git --&gt;&#xA;&lt;!-- {BearID:58309AF1-5B63-4195-BDB7-30C8DF50528F-4354-000000AE37996D86} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Python - Batteries included</title>
      <link>https://mcjones.ca/docs/python---batteries-included/</link>
      <pubDate>Sat, 01 Jul 2023 04:50:15 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/python---batteries-included/</guid>
      <description>&lt;h1 id=&#34;python---batteries-included&#34;&gt;Python - Batteries included&lt;/h1&gt;&#xA;&lt;h3 id=&#34;unzip&#34;&gt;Unzip&lt;/h3&gt;&#xA;&lt;p&gt;&lt;code&gt;python -m gzip --decompress file.gz&lt;/code&gt;&lt;/p&gt;&#xA;&lt;h3 id=&#34;web-server&#34;&gt;Web Server&lt;/h3&gt;&#xA;&lt;p&gt;&lt;code&gt;python -m http.server&lt;/code&gt;&lt;/p&gt;&#xA;&lt;h3 id=&#34;base64&#34;&gt;Base64&lt;/h3&gt;&#xA;&lt;p&gt;&lt;code&gt;python -m base64&lt;/code&gt;&lt;/p&gt;&#xA;&lt;h3 id=&#34;json&#34;&gt;JSON&lt;/h3&gt;&#xA;&lt;p&gt;&lt;code&gt;python -m json.tool&lt;/code&gt;&#xA;My favourite reason to use it - exits 1 if invalid&lt;/p&gt;&#xA;&lt;h3 id=&#34;cool-other-lists&#34;&gt;Cool Other Lists&lt;/h3&gt;&#xA;&lt;p&gt;Simon Willison used ripgrep to search Python: &lt;a href=&#34;https://til.simonwillison.net/python/stdlib-cli-tools&#34;&gt;https://til.simonwillison.net/python/stdlib-cli-tools&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #snippet #python #public --&gt;&#xA;&lt;!-- {BearID:C8809254-9283-448C-89E5-87A339CD6EF8-5318-00000C240E8F9C2D} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>The Messy City Podcast - Ali Quinlan will leave you with no excuses</title>
      <link>https://mcjones.ca/docs/the-messy-city-podcast---ali-quinlan-will-leave-you-with-no-excuses/</link>
      <pubDate>Thu, 29 Jun 2023 01:27:47 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/the-messy-city-podcast---ali-quinlan-will-leave-you-with-no-excuses/</guid>
      <description>&lt;h1 id=&#34;the-messy-city-podcast---ali-quinlan-will-leave-you-with-no-excuses&#34;&gt;The Messy City Podcast - Ali Quinlan will leave you with no excuses&lt;/h1&gt;&#xA;&lt;p&gt;45 min mark - A great push back against the thinking that leads to: “here is this slot, here are the expectations and the needs of this slot and if you as a cog can not fit in this slot then I will find another cog”&lt;/p&gt;&#xA;&lt;p&gt;50 min mark - they have a 3 strike miserable rule to fire a client because life is too short&lt;/p&gt;&#xA;&lt;p&gt;50:48 - “We try to always return all this policy wonky, housing type conversations back to people. Because what we’re building is the framework for people to live in. To live their lives. To have their kids. To fall in love. To watch someone they love die. We’re building the environment and framework for life but it’s about life and it’s about people”&lt;/p&gt;&#xA;&lt;p&gt;51:32 - “The more we can legalize life, the better we are doing. We are living in this environment where we have this very narrow definition - we are building housing for nuclear families that don’t exist anymore - in the majority.&lt;/p&gt;&#xA;&lt;p&gt;So, we’re limiting people’s ability to create these relationships, to make choices that make sense for them financially. &lt;em&gt;We are limiting people’s  lives and they don’t get to get those back.&lt;/em&gt;&lt;/p&gt;&#xA;&lt;p&gt;It can’t take us 40 years to fix this because we’ve lost an entire generation of lives.”&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-messy-city-podcast---ali-quinlan-will-leave-you-with-no-excuses-1&#34;&gt;The Messy City Podcast - Ali Quinlan will leave you with no excuses&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+_vUs4PUk4&#34;&gt;https://overcast.fm/+_vUs4PUk4&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://kevinklinkenberg.substack.com/p/ali-quinlan-will-leave-you-with-no#details&#34;&gt;https://kevinklinkenberg.substack.com/p/ali-quinlan-will-leave-you-with-no#details&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #the messy city# #housing --&gt;&#xA;&lt;!-- {BearID:15CB9176-BF9A-402F-957C-F972C188786B-11655-0000073CFBF0888F} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Upzoned - We&#39;re Getting Worse at Construction Despite Technology Advances</title>
      <link>https://mcjones.ca/docs/upzoned---were-getting-worse-at-construction-despite-technology-advances/</link>
      <pubDate>Mon, 26 Jun 2023 15:07:46 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/upzoned---were-getting-worse-at-construction-despite-technology-advances/</guid>
      <description>&lt;h1 id=&#34;upzoned---were-getting-worse-at-construction-despite-technology-advances&#34;&gt;Upzoned - We&amp;rsquo;re Getting Worse at Construction Despite Technology Advances&lt;/h1&gt;&#xA;&lt;p&gt;5 minute mark - the discussion on complexity vs complicated.&lt;/p&gt;&#xA;&lt;p&gt;Complexity can mean a resilient system that can react, where as complicated can mean fragile. Complicated can mean&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;upzoned---were-getting-worse-at-construction-despite-technology-advances-1&#34;&gt;Upzoned - We’re Getting Worse at Construction Despite Technology Advances&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+qpp_VYM2s&#34;&gt;https://overcast.fm/+qpp_VYM2s&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.strongtowns.org/journal/2023/2/15/were-getting-worse-at-construction-despite-technology-advances&#34;&gt;https://www.strongtowns.org/journal/2023/2/15/were-getting-worse-at-construction-despite-technology-advances&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Strong Towns Upzoned# --&gt;&#xA;&lt;!-- {BearID:C1CF6231-E9B6-4F8C-AF82-CF80F973AA9E-6958-000004698A977B96} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Performance Mantras</title>
      <link>https://mcjones.ca/docs/performance-mantras/</link>
      <pubDate>Wed, 31 May 2023 17:23:05 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/performance-mantras/</guid>
      <description>&lt;h1 id=&#34;performance-mantras&#34;&gt;Performance Mantras&lt;/h1&gt;&#xA;&lt;p&gt;Craig Hanson and Pat Crain’s performance mantras:&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Don’t do it&lt;/li&gt;&#xA;&lt;li&gt;Do it, but don’t do it again&lt;/li&gt;&#xA;&lt;li&gt;Do it less&lt;/li&gt;&#xA;&lt;li&gt;Do it later&lt;/li&gt;&#xA;&lt;li&gt;Do it when they’re not looking&lt;/li&gt;&#xA;&lt;li&gt;Do it concurrently&lt;/li&gt;&#xA;&lt;li&gt;Do it cheaper&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;p&gt;Source: &lt;a href=&#34;https://www.brendangregg.com/blog/2018-06-30/benchmarking-checklist.html&#34;&gt;https://www.brendangregg.com/blog/2018-06-30/benchmarking-checklist.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #performance --&gt;&#xA;&lt;!-- {BearID:0C039435-E134-4AA6-B858-F1729B476052-4096-00001753E73A369E} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Throughline - When Things Fall Apart</title>
      <link>https://mcjones.ca/docs/throughline---when-things-fall-apart/</link>
      <pubDate>Tue, 30 May 2023 22:55:56 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/throughline---when-things-fall-apart/</guid>
      <description>&lt;h1 id=&#34;throughline---when-things-fall-apart&#34;&gt;Throughline - When Things Fall Apart&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;throughline---when-things-fall-apart-1&#34;&gt;Throughline - When Things Fall Apart&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+Ys-ym66gg&#34;&gt;https://overcast.fm/+Ys-ym66gg&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.npr.org/2023/01/24/1151023362/when-things-fall-apart&#34;&gt;https://www.npr.org/2023/01/24/1151023362/when-things-fall-apart&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #throughline --&gt;&#xA;&lt;!-- {BearID:ABC27B18-1DD4-4E29-B20E-1D2B601675F9-23042-00000EEF2E2D4E0E} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>The Progress Report - The Alberta Model must be destroyed</title>
      <link>https://mcjones.ca/docs/the-progress-report---the-alberta-model-must-be-destroyed/</link>
      <pubDate>Mon, 29 May 2023 17:57:11 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/the-progress-report---the-alberta-model-must-be-destroyed/</guid>
      <description>&lt;h1 id=&#34;the-progress-report---the-alberta-model-must-be-destroyed&#34;&gt;The Progress Report - The Alberta Model must be destroyed&lt;/h1&gt;&#xA;&lt;p&gt;Normally I mention what I like or learned. I really did not like learning just how much this model fails citizens.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-progress-report---the-alberta-model-must-be-destroyed-1&#34;&gt;The Progress Report - The Alberta Model must be destroyed&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+TDcWLU80E&#34;&gt;https://overcast.fm/+TDcWLU80E&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.theprogressreport.ca/pod_the_alberta_model_must_be_destroyed&#34;&gt;https://www.theprogressreport.ca/pod_the_alberta_model_must_be_destroyed&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #the progress report# --&gt;&#xA;&lt;!-- {BearID:19F7F91B-00DE-4D1A-8052-8FC5B744783F-19916-00000D6854EAE926} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Alberta Advantage Podcast - Clearing the Plains in 2023 - Alberta&#39;s Drug Poisoning Crisis</title>
      <link>https://mcjones.ca/docs/alberta-advantage-podcast---clearing-the-plains-in-2023---albertas-drug-poisoning-crisis/</link>
      <pubDate>Mon, 29 May 2023 14:56:50 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/alberta-advantage-podcast---clearing-the-plains-in-2023---albertas-drug-poisoning-crisis/</guid>
      <description>&lt;h1 id=&#34;alberta-advantage-podcast---clearing-the-plains-in-2023---albertas-drug-poisoning-crisis&#34;&gt;Alberta Advantage Podcast - Clearing the Plains in 2023 - Alberta&amp;rsquo;s Drug Poisoning Crisis&lt;/h1&gt;&#xA;&lt;p&gt;The undercurrent that abstinence is the goal and only way to make it work.&lt;/p&gt;&#xA;&lt;p&gt;“The 4 of us discussed quite at length - like, the notion - if you were to try and design a policy that would help extend the effects of residential schools, the 60s scoop, family separation, child removal, and incarceration really. Against this mentality that is growing in our country that we need address these past harms.&#xA;Drug policy is really the number one way to do that.&lt;/p&gt;&#xA;&lt;p&gt;23 minute mark - reminder we don’t have free drugs. It’s a prescription program.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;alberta-advantage-podcast---clearing-the-plains-in-2023-albertas-drug-poisoning-crisis&#34;&gt;Alberta Advantage Podcast - Clearing the Plains in 2023: Alberta’s Drug Poisoning Crisis&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+KvqrJ5AKY&#34;&gt;https://overcast.fm/+KvqrJ5AKY&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://albertaadvantagepod.com/2023/05/29/clearing-the-plains-in-2023-albertas-drug-poisoning-crisis/&#34;&gt;https://albertaadvantagepod.com/2023/05/29/clearing-the-plains-in-2023-albertas-drug-poisoning-crisis/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #alberta advantage# --&gt;&#xA;&lt;!-- {BearID:AD7318B7-EC44-429A-B0D4-2927FE7B3992-19404-00000D476A6615D9} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - Transforming Justice</title>
      <link>https://mcjones.ca/docs/cbc-ideas---transforming-justice/</link>
      <pubDate>Sun, 28 May 2023 16:47:09 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---transforming-justice/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---transforming-justice&#34;&gt;CBC Ideas - Transforming Justice&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;ideas---transforming-justice-part-2-angela-davis-fania-davis-and-margaret-burnham&#34;&gt;Ideas - Transforming Justice, Part 2: Angela Davis, Fania Davis and Margaret Burnham&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cQ4AFpo&#34;&gt;https://overcast.fm/+cQ4AFpo&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/player/play/2164551235909&#34;&gt;https://www.cbc.ca/player/play/2164551235909&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:C1533E08-585D-4F3B-9B7F-0FA9B9A6BE00-18653-00000C096DC1836E} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>The War on Cars - Deconstructing Muscle Car City</title>
      <link>https://mcjones.ca/docs/the-war-on-cars---deconstructing-muscle-car-city/</link>
      <pubDate>Sat, 13 May 2023 21:00:09 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/the-war-on-cars---deconstructing-muscle-car-city/</guid>
      <description>&lt;h1 id=&#34;the-war-on-cars---deconstructing-muscle-car-city&#34;&gt;The War on Cars - Deconstructing Muscle Car City&lt;/h1&gt;&#xA;&lt;p&gt;A delightful look at muscle car culture:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Toxic masculinity&lt;/li&gt;&#xA;&lt;li&gt;Lawlessness thrill/allure&lt;/li&gt;&#xA;&lt;li&gt;Community&lt;/li&gt;&#xA;&lt;li&gt;Energy&lt;/li&gt;&#xA;&lt;li&gt;Using dead space (parking lots)&lt;/li&gt;&#xA;&lt;li&gt;Consumption as status&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-war-on-cars---deconstructing-muscle-car-city-1&#34;&gt;The War on Cars - Deconstructing Muscle Car City&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+O31otiT_o&#34;&gt;https://overcast.fm/+O31otiT_o&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://thewaroncars.org/2023/01/03/deconstructing-muscle-car-city/&#34;&gt;https://thewaroncars.org/2023/01/03/deconstructing-muscle-car-city/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #The War On Cars# --&gt;&#xA;&lt;!-- {BearID:6DF253AE-2F65-4D16-AE9D-2B09ECA2F70A-9536-000008F13A9FFAA8} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Alberta Unbound - The Future of Food</title>
      <link>https://mcjones.ca/docs/alberta-unbound---the-future-of-food/</link>
      <pubDate>Tue, 02 May 2023 23:35:52 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/alberta-unbound---the-future-of-food/</guid>
      <description>&lt;h1 id=&#34;alberta-unbound---the-future-of-food&#34;&gt;Alberta Unbound - The Future of Food&lt;/h1&gt;&#xA;&lt;p&gt;At the 30 minute mark the health found in the various berries and beaver population growth in Alberta was incredibly educational.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;alberta-unbound---s4-episode-5-the-future-of-food&#34;&gt;Alberta Unbound - S4 Episode 5: The Future of Food&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+a8TA9ghOM&#34;&gt;https://overcast.fm/+a8TA9ghOM&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://senatorpaulasimons.podbean.com/e/s4-episode-5-the-future-of-food/&#34;&gt;https://senatorpaulasimons.podbean.com/e/s4-episode-5-the-future-of-food/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #alberta unbound# --&gt;&#xA;&lt;!-- {BearID:EEF72DFD-60EB-424F-B997-26DD1EA546DF-19831-00000B5CAD9DA863} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Tapestry - Searching for connection -  Third places may be the solution</title>
      <link>https://mcjones.ca/docs/cbc-tapestry---searching-for-connection----third-places-may-be-the-solution/</link>
      <pubDate>Mon, 01 May 2023 23:44:22 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-tapestry---searching-for-connection----third-places-may-be-the-solution/</guid>
      <description>&lt;h1 id=&#34;cbc-tapestry---searching-for-connection----third-places-may-be-the-solution&#34;&gt;CBC Tapestry - Searching for connection -  Third places may be the solution&lt;/h1&gt;&#xA;&lt;p&gt;27:40 - Summarizes the gotcha of how our North American individualistic drive with motor vehicles has created such of a debt in social fabric. This has helped cultivate and nurturing the loneliness issues we have now and the extremism that feeds off of it.&lt;/p&gt;&#xA;&lt;p&gt;37:25 - Small but powerful and tangible way to revert the angsty energy young people have. We can make a difference locally. Those are the little steps we need to make better spaces.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;tapestry-from-cbc-radio---searching-for-connection-third-places-may-be-the-solution&#34;&gt;Tapestry from CBC Radio - Searching for connection? Third places may be the solution&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+gKDCa9k&#34;&gt;https://overcast.fm/+gKDCa9k&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/player/play/2141230659865&#34;&gt;https://www.cbc.ca/player/play/2141230659865&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Tapestry# --&gt;&#xA;&lt;!-- {BearID:39437860-23B8-44C6-86F5-A44E3E85FDED-17777-00000A3AEF69349E} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - In Defence of Democracy - Naheed Nenshi</title>
      <link>https://mcjones.ca/docs/cbc-ideas---in-defence-of-democracy---naheed-nenshi/</link>
      <pubDate>Mon, 01 May 2023 22:56:54 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---in-defence-of-democracy---naheed-nenshi/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---in-defence-of-democracy---naheed-nenshi&#34;&gt;CBC Ideas - In Defence of Democracy - Naheed Nenshi&lt;/h1&gt;&#xA;&lt;p&gt;I’ve always really enjoyed hearing Nenshi speak and his insatiable optimism for the best in Calgary. Hearing his worries, and what he sees is still possible is both exciting but also worrying if we don’t fight to keep democracy alive.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;ideas---in-defence-of-democracy-naheed-nenshi&#34;&gt;Ideas - In Defence of Democracy: Naheed Nenshi&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cTH7jVg&#34;&gt;https://overcast.fm/+cTH7jVg&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/player/play/2139442755896&#34;&gt;https://www.cbc.ca/player/play/2139442755896&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:10064432-B1ED-4EF9-9663-E1178826F680-17777-00000A2E5BACFF9D} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>99% Invisible - The Divided Dial</title>
      <link>https://mcjones.ca/docs/99-invisible---the-divided-dial/</link>
      <pubDate>Thu, 27 Apr 2023 01:37:31 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/99-invisible---the-divided-dial/</guid>
      <description>&lt;h1 id=&#34;99-invisible---the-divided-dial&#34;&gt;99% Invisible - The Divided Dial&lt;/h1&gt;&#xA;&lt;p&gt;A look into the road America took into creating and fostering extremism on radio waves and how it completely got efficiently taken over by one perspective.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;99-invisible---the-divided-dial-1&#34;&gt;99% Invisible - The Divided Dial&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+yIOyqkXwQ&#34;&gt;https://overcast.fm/+yIOyqkXwQ&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://99percentinvisible.org/episode/the-divided-dial/&#34;&gt;https://99percentinvisible.org/episode/the-divided-dial/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #99 percent invisible# --&gt;&#xA;&lt;!-- {BearID:04D27E44-5EC7-4746-B5FA-C18DDBF9D7C0-6823-000003FD58CCC613} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Sprawlcast - The Confluence - As Long As The Rivers Flow</title>
      <link>https://mcjones.ca/docs/sprawlcast---the-confluence---as-long-as-the-rivers-flow/</link>
      <pubDate>Sun, 16 Apr 2023 21:30:37 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sprawlcast---the-confluence---as-long-as-the-rivers-flow/</guid>
      <description>&lt;h1 id=&#34;sprawlcast---the-confluence---as-long-as-the-rivers-flow&#34;&gt;Sprawlcast - The Confluence - As Long As The Rivers Flow&lt;/h1&gt;&#xA;&lt;p&gt;A great touch on how much of the space Calgary resides on has been lost and the many names that have existed for this area.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;sprawlcast---the-confluence-as-long-as-the-rivers-flow&#34;&gt;Sprawlcast - The Confluence: As Long As The Rivers Flow&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+MdplOzc6k&#34;&gt;https://overcast.fm/+MdplOzc6k&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.sprawlcalgary.com/as-long-as-the-rivers-flow-treaty-7&#34;&gt;https://www.sprawlcalgary.com/as-long-as-the-rivers-flow-treaty-7&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #sprawlcast --&gt;&#xA;&lt;!-- {BearID:2A8A53A9-70E3-4C42-99B1-8F6D064F51A3-20785-00000B4B0D91F62A} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>MySQL INSERT Syntax</title>
      <link>https://mcjones.ca/docs/mysql-insert-syntax/</link>
      <pubDate>Fri, 14 Apr 2023 17:05:13 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/mysql-insert-syntax/</guid>
      <description>&lt;h1 id=&#34;mysql-insert-syntax&#34;&gt;MySQL INSERT Syntax&lt;/h1&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;INSERT INTO table_name (column_1,column_2,column_3) VALUES (value_1,value_2,value_3);&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;!-- #mysql #snippet #public --&gt;&#xA;&lt;!-- {BearID:01C2E95E-B3A3-4541-A701-8896B6D0957C-2944-00000A1F893D50D9} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - Getting Past Polarization with Anand Giridharadas</title>
      <link>https://mcjones.ca/docs/cbc-ideas---getting-past-polarization-with-anand-giridharadas/</link>
      <pubDate>Fri, 14 Apr 2023 04:12:33 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---getting-past-polarization-with-anand-giridharadas/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---getting-past-polarization-with-anand-giridharadas&#34;&gt;CBC Ideas - Getting Past Polarization with Anand Giridharadas&lt;/h1&gt;&#xA;&lt;p&gt;21:08 - pro democracy ignores the emotions and psychology. And that’s to it’s detriment to letting misinformation take root. Wanting simple answers and not wanting to be a dupe.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;ideas---getting-past-polarization-anand-giridharadas&#34;&gt;Ideas - Getting Past Polarization: Anand Giridharadas&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cQjZtLw&#34;&gt;https://overcast.fm/+cQjZtLw&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/player/play/2121869891640&#34;&gt;https://www.cbc.ca/player/play/2121869891640&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:70F83BF3-8B4B-4266-8A41-9373EF7AC4A4-11529-000007A34CA1A55B} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - Maria Ressa - Last two minutes of Democracy</title>
      <link>https://mcjones.ca/docs/cbc-ideas---maria-ressa---last-two-minutes-of-democracy/</link>
      <pubDate>Sat, 01 Apr 2023 18:22:43 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---maria-ressa---last-two-minutes-of-democracy/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---maria-ressa---last-two-minutes-of-democracy&#34;&gt;CBC Ideas - Maria Ressa - Last two minutes of Democracy&lt;/h1&gt;&#xA;&lt;p&gt;Inspiration can spread as fast as hate&lt;/p&gt;&#xA;&lt;p&gt;Autocracy Inc.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;ideas---maria-ressa-last-two-minutes-of-democracy&#34;&gt;Ideas - Maria Ressa: ‘Last two minutes of Democracy’&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cSIEa3M&#34;&gt;https://overcast.fm/+cSIEa3M&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/player/play/2106356803841&#34;&gt;https://www.cbc.ca/player/play/2106356803841&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:CF674EAC-192E-4D13-8023-BB078F79D667-10286-0000060FE68CA333} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - Scene on Radio&#39;s The Land That Never Has Been Yet</title>
      <link>https://mcjones.ca/docs/cbc-ideas---scene-on-radios-the-land-that-never-has-been-yet/</link>
      <pubDate>Sun, 26 Mar 2023 18:17:10 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---scene-on-radios-the-land-that-never-has-been-yet/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---scene-on-radios-the-land-that-never-has-been-yet&#34;&gt;CBC Ideas - Scene on Radio&amp;rsquo;s The Land That Never Has Been Yet&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;ideas---ideas-presents-scene-on-radios-the-land-that-never-has-been-yet&#34;&gt;Ideas - IDEAS presents Scene on Radio’s The Land That Never Has Been Yet&lt;/h6&gt;&#xA;&lt;p&gt;Part One: &lt;a href=&#34;https://overcast.fm/+cSthzfo&#34;&gt;https://overcast.fm/+cSthzfo&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/player/play/2104106051850&#34;&gt;https://www.cbc.ca/player/play/2104106051850&lt;/a&gt;&lt;br&gt;&#xA;Part Two: &lt;a href=&#34;https://overcast.fm/+cQcUnm0&#34;&gt;https://overcast.fm/+cQcUnm0&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/player/play/2105084483697&#34;&gt;https://www.cbc.ca/player/play/2105084483697&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:DFFA447A-1221-419E-9622-B194F9F98415-14690-00000AF7516F5E98} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>O11ycast - Ep. 56 - Opinions on Opinions with Kris Nova</title>
      <link>https://mcjones.ca/docs/o11ycast---ep.-56---opinions-on-opinions-with-kris-nova/</link>
      <pubDate>Wed, 15 Mar 2023 14:37:52 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/o11ycast---ep.-56---opinions-on-opinions-with-kris-nova/</guid>
      <description>&lt;h1 id=&#34;o11ycast---ep-56---opinions-on-opinions-with-kris-nova&#34;&gt;O11ycast - Ep. 56 - Opinions on Opinions with Kris Nova&lt;/h1&gt;&#xA;&lt;p&gt;3 min in hits things about Kubernetes (and OpenStack) so well. Its super flexible and so will not automatically solve your problems. It’s a glue - it’s the vehicle to get something together.&lt;/p&gt;&#xA;&lt;p&gt;Around the 10:51 mark, Charity has a great summary of the topic of coming to an opinion:&lt;/p&gt;&#xA;&#xA;&#xA;&#xA;  &lt;blockquote&gt;&#xA;    &lt;p&gt;This is a  Rule of Thumb that you should follow unless you have a reason to break this. Choose boring technology. I think that was so brilliant because it should be the default choice. You have a limited number of innovation tokens. You can’t spend many of them because you’ll doom your business. So how are you going to spend them wisely and how are you going to rely on the most boring technology possible?&lt;/p&gt;&#xA;&#xA;  &lt;/blockquote&gt;&#xA;&#xA;&lt;p&gt;Around the 13 minute mark the book &lt;a href=&#34;https://www.penguinrandomhouse.ca/books/208668/good-strategy-bad-strategy-by-richard-rumelt/9780307886231&#34;&gt;Good Strategy Bad Strategy&lt;/a&gt; by Richard Rumelt is recommended.&lt;/p&gt;&#xA;&lt;p&gt;Around the 15:30 minute mark holds some awesome advice from Kris:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Start small&lt;/li&gt;&#xA;&lt;li&gt;Start turning things on&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Accepting that you need to get 60-70% of the way there, turn it on, and focus more on not letting the debt pile up, and the fires to pile up. Some decision is better than no decision.&lt;/p&gt;&#xA;&#xA;&#xA;&#xA;  &lt;blockquote&gt;&#xA;    &lt;p&gt;Getting a cluster online is actually the easy part of the journey. It’s keeping it online, and keeping it healthy and keeping it upgraded and not getting completely buried in dirt and technical debt. That’s the hard part in my opinion and experience in operating Kube at scale.&lt;/p&gt;&#xA;&#xA;  &lt;/blockquote&gt;&#xA;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;o11ycast---ep-56-opinions-on-opinions-with-kris-nóva&#34;&gt;O11ycast - Ep. 56, Opinions on Opinions with Kris Nóva&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+0GHyZXgds&#34;&gt;https://overcast.fm/+0GHyZXgds&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://dev.to/o11ycast/ep-56-opinions-on-opinions-with-kris-nova&#34;&gt;https://dev.to/o11ycast/ep-56-opinions-on-opinions-with-kris-nova&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #o11ycast --&gt;&#xA;&lt;!-- {BearID:21B04EC2-E3C4-46A2-BFA3-2153A0C68CC7-27555-0000172E1BCBD166} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>tcpdump snippets</title>
      <link>https://mcjones.ca/docs/tcpdump-snippets/</link>
      <pubDate>Mon, 13 Mar 2023 17:53:11 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/tcpdump-snippets/</guid>
      <description>&lt;h1 id=&#34;tcpdump-snippets&#34;&gt;tcpdump snippets&lt;/h1&gt;&#xA;&lt;h2 id=&#34;watch-ipv6-ras&#34;&gt;Watch IPv6 RAs&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;tcpdump -vvvv -ttt icmp6 and &amp;#39;ip6[40] = 134&amp;#39;&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;all-the-v6-traffic&#34;&gt;All the v6 traffic&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;tcpdump -i &amp;lt;interface&amp;gt; -vv ip6&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;!-- #public #tcpdump #snippet --&gt;&#xA;&lt;!-- {BearID:AAA8ADDB-1B4E-49FE-A879-7B7DA951C086-1623-0000159BCE9B98F7} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Livable Low Carbon City - 05 - An ARPA for Climate Adaptive Urbanism</title>
      <link>https://mcjones.ca/docs/livable-low-carbon-city---05---an-arpa-for-climate-adaptive-urbanism/</link>
      <pubDate>Thu, 02 Mar 2023 15:46:10 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/livable-low-carbon-city---05---an-arpa-for-climate-adaptive-urbanism/</guid>
      <description>&lt;h1 id=&#34;livable-low-carbon-city---05---an-arpa-for-climate-adaptive-urbanism&#34;&gt;Livable Low Carbon City - 05 - An ARPA for Climate Adaptive Urbanism&lt;/h1&gt;&#xA;&lt;p&gt;The future is here it’s just not even evenly distributed&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;livable-low-carbon-city---05-an-arpa-for-climate-adaptive-urbanism&#34;&gt;Livable Low-carbon City - 05: An ARPA for Climate Adaptive Urbanism&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+8PvlkoCRk&#34;&gt;https://overcast.fm/+8PvlkoCRk&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.buzzsprout.com/2051515/11505841-05-an-arpa-for-climate-adaptive-urbanism&#34;&gt;https://www.buzzsprout.com/2051515/11505841-05-an-arpa-for-climate-adaptive-urbanism&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Livable Low Carbon City# --&gt;&#xA;&lt;!-- {BearID:161F2B66-1F31-47F4-B887-A59BFA791E82-3040-0000026EFE588853} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Hidden Brain - Did I Really Do That?</title>
      <link>https://mcjones.ca/docs/hidden-brain---did-i-really-do-that/</link>
      <pubDate>Sun, 26 Feb 2023 15:48:55 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/hidden-brain---did-i-really-do-that/</guid>
      <description>&lt;h1 id=&#34;hidden-brain---did-i-really-do-that&#34;&gt;Hidden Brain - Did I Really Do That?&lt;/h1&gt;&#xA;&lt;p&gt;Confessions are incredibly problematic. Leading questions can manipulate memory.&lt;/p&gt;&#xA;&lt;p&gt;Ask open ended questions, don’t communicate details/info someone might not already know. That’s how you avoid&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;hidden-brain---did-i-really-do-that-1&#34;&gt;Hidden Brain - Did I Really Do That?&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+1WhON0Cb8&#34;&gt;https://overcast.fm/+1WhON0Cb8&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://hiddenbrain.org/podcast/did-i-really-do-that/&#34;&gt;https://hiddenbrain.org/podcast/did-i-really-do-that/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #hidden brain# --&gt;&#xA;&lt;!-- {BearID:F1CFD267-ED4E-45AA-ADBD-2AD16D2BCDC0-19052-000016E1A0D860D5} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Pip / Virtual Environment Basics</title>
      <link>https://mcjones.ca/docs/pip---virtual-environment-basics/</link>
      <pubDate>Wed, 22 Feb 2023 02:31:27 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/pip---virtual-environment-basics/</guid>
      <description>&lt;h1 id=&#34;pip--virtual-environment-basics&#34;&gt;Pip / Virtual Environment Basics&lt;/h1&gt;&#xA;&lt;h2 id=&#34;setup&#34;&gt;Setup&lt;/h2&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Install Command Line Tools for macOS and Homebrew&lt;/li&gt;&#xA;&lt;li&gt;&lt;code&gt;brew install virtualenv&lt;/code&gt;&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;h2 id=&#34;why&#34;&gt;Why&lt;/h2&gt;&#xA;&lt;p&gt;Because Python packaging is a pain and different dependencies conflict. Using virtual environments separates your repos so you don’t need to worry about introducing a conflict unintentionally.&lt;/p&gt;&#xA;&lt;h2 id=&#34;create-and-use-a-virtual-environment&#34;&gt;Create and Use a virtual environment&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;cd ~/src/folder&#xA;&amp;lt;!-- #virtualenv venv --&amp;gt;&#xA;python3 -m venv venv&#xA;echo venv &amp;gt;&amp;gt; .gitignore&#xA;source venv/bin/activate&#xA;pip install -r requirements.txt&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;venv for the folder name is an arbitrary but consistent name used.&lt;/p&gt;&#xA;&lt;h2 id=&#34;find-out-which-requirements-can-be-updated&#34;&gt;Find out which requirements can be updated&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;pip list --outdated&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;update-all-dependencies&#34;&gt;Update all dependencies&lt;/h2&gt;&#xA;&lt;p&gt;One liner to update all&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;pip3 list -o | cut -f1 -d&amp;#39; &amp;#39; | tr &amp;#34; &amp;#34; &amp;#34;\n&amp;#34; | awk &amp;#39;{if(NR&amp;gt;=3)print}&amp;#39; | cut -d&amp;#39; &amp;#39; -f1 | xargs -n1 pip3 install -U&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;After confirming the updates are fine&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;pip freeze &amp;gt; requirements.txt&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;And compare the changes.&lt;/p&gt;&#xA;&lt;!-- #public #dev #python --&gt;&#xA;&lt;!-- {BearID:E58F9901-8C06-4FD6-9E59-A78BE798904D-3217-00000ED29FA9B297} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Sprawlcast - The Hollowing Of The Calgary Herald</title>
      <link>https://mcjones.ca/docs/sprawlcast---the-hollowing-of-the-calgary-herald/</link>
      <pubDate>Mon, 20 Feb 2023 00:53:17 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sprawlcast---the-hollowing-of-the-calgary-herald/</guid>
      <description>&lt;h1 id=&#34;sprawlcast---the-hollowing-of-the-calgary-herald&#34;&gt;Sprawlcast - The Hollowing Of The Calgary Herald&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;sprawlcast---the-hollowing-of-the-calgary-herald-1&#34;&gt;Sprawlcast - The Hollowing Of The Calgary Herald&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+MdpmUIssg&#34;&gt;https://overcast.fm/+MdpmUIssg&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.sprawlcalgary.com/calgary-herald-long-decline&#34;&gt;https://www.sprawlcalgary.com/calgary-herald-long-decline&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #sprawlcast --&gt;&#xA;&lt;!-- {BearID:F39C6905-715B-4C89-B940-FED3F4046408-10192-00000A648781BB66} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Go Module Handling</title>
      <link>https://mcjones.ca/docs/go-module-handling/</link>
      <pubDate>Fri, 17 Feb 2023 07:01:58 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/go-module-handling/</guid>
      <description>&lt;h1 id=&#34;go-module-handling&#34;&gt;Go Module Handling&lt;/h1&gt;&#xA;&lt;h2 id=&#34;starting-from-scratch&#34;&gt;Starting from Scratch&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;go mod init &amp;lt;name of your app&amp;gt;&#xA;go mod download &amp;lt;dependency&amp;gt;&#xA;go mod tidy&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;updating&#34;&gt;Updating&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://go.dev/doc/modules/managing-dependencies#discovering_updates&#34;&gt;https://go.dev/doc/modules/managing-dependencies#discovering_updates&lt;/a&gt;&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;go list -m -u all&#xA;&#xA;go get -d -u -t ./...&#xA;&#xA;go mod tidy&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;removing&#34;&gt;Removing&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;go get example.com/theirmodule@none&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Or remove from your files and run&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;go mod tidy&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;!-- #public #dev #golang --&gt;&#xA;&lt;!-- {BearID:D582B1C7-5101-47F0-BED6-3C126CED84FB-3217-000005BF3A4ED609} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>go-soda Notes</title>
      <link>https://mcjones.ca/docs/go-soda-notes/</link>
      <pubDate>Fri, 17 Feb 2023 05:44:32 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/go-soda-notes/</guid>
      <description>&lt;h1 id=&#34;go-soda-notes&#34;&gt;go-soda Notes&lt;/h1&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://github.com/SebastiaanKlippert/go-soda&#34;&gt;https://github.com/SebastiaanKlippert/go-soda&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;basic&#34;&gt;Basic&lt;/h2&gt;&#xA;&lt;p&gt;Get a resource URL and just check it’s fields and last modified date&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;package main&#xA;&#xA;import (&#xA;&#x9;&amp;#34;encoding/json&amp;#34;&#xA;&#x9;&amp;#34;fmt&amp;#34;&#xA;&#x9;&amp;#34;log&amp;#34;&#xA;&#xA;&#x9;&amp;#34;github.com/SebastiaanKlippert/go-soda&amp;#34;&#xA;)&#xA;&#xA;func main() {&#xA;  sodareq := soda.NewGetRequest(&amp;#34;https://data.calgary.ca/resource/35ra-9556&amp;#34;, &amp;#34;&amp;#34;)&#xA;&#xA;&#x9;modified, err := sodareq.Modified()&#xA;&#x9;if err != nil {&#xA;&#x9;&#x9;log.Fatal(err)&#xA;&#x9;}&#xA;&#x9;fields, err := sodareq.Fields()&#xA;&#x9;if err != nil {&#xA;&#x9;&#x9;log.Fatal(err)&#xA;&#x9;}&#xA;&#x9;fmt.Println(&amp;#34;Modified: &amp;#34;, modified)&#xA;&#x9;fmt.Println(&amp;#34;Fields: &amp;#34;, fields)&#xA;}&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;sosql-and-filtering&#34;&gt;SoSQL and Filtering&lt;/h2&gt;&#xA;&lt;p&gt;The SODA API also has a more featurful query syntax: &lt;a href=&#34;http://dev.socrata.com/docs/queries.html&#34;&gt;http://dev.socrata.com/docs/queries.html&lt;/a&gt; / &lt;a href=&#34;https://github.com/SebastiaanKlippert/go-soda/blob/master/soda.go#L203&#34;&gt;https://github.com/SebastiaanKlippert/go-soda/blob/master/soda.go#L203&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;In main above you can add the following at the bottom:&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;  // Specify format (json, csv, etc.) - https://dev.socrata.com/docs/formats/&#xA;&#x9;sodareq.Format = &amp;#34;json&amp;#34;&#xA;&#xA;  // SimpleFilters - https://dev.socrata.com/docs/filtering.html&#xA;&#x9;sodareq.Filters[&amp;#34;description&amp;#34;] = &amp;#34;Stalled&amp;#34;&#xA;&#xA;  // SoQL - https://dev.socrata.com/docs/queries/&#xA;  // Query is the SoSQL struct at https://github.com/SebastiaanKlippert/go-soda/blob/master/soda.go#L203&#xA;&#x9;// Only grab fields we want&#xA;  sodareq.Query.Select = []string{&amp;#34;incident_info&amp;#34;, &amp;#34;description&amp;#34;, &amp;#34;start_dt&amp;#34;, &amp;#34;modified_dt&amp;#34;, &amp;#34;longitude&amp;#34;, &amp;#34;latitude&amp;#34;, &amp;#34;id&amp;#34;}&#xA;  // Search for pedestrian&#xA;&#x9;sodareq.Query.Q = &amp;#34;pedestrian&amp;#34;&#xA;&#x9;// Sort by a column - easier to use AddOrder&#xA;  sodareq.AddOrder(&amp;#34;start_dt&amp;#34;, true)&#xA;  // Only the last 5&#xA;&#x9;sodareq.Query.Limit = 5&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;!-- #public #go-soda #golang --&gt;&#xA;&lt;!-- {BearID:1851277C-FC7A-419D-BA1A-873DC224F7FD-3217-000005A543494DC1} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Mastodon Client Introduction</title>
      <link>https://mcjones.ca/docs/mastodon-client-introduction/</link>
      <pubDate>Thu, 16 Feb 2023 06:49:54 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/mastodon-client-introduction/</guid>
      <description>&lt;h1 id=&#34;mastodon-client-introduction&#34;&gt;Mastodon Client Introduction&lt;/h1&gt;&#xA;&lt;h2 id=&#34;general&#34;&gt;General&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://docs.joinmastodon.org/api/&#34;&gt;https://docs.joinmastodon.org/api/&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;golang&#34;&gt;Golang&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://github.com/mattn/go-mastodon&#34;&gt;https://github.com/mattn/go-mastodon&lt;/a&gt;&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;RegisterApp is used to register an application&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;NewClient is used to make your client&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Either put your ID, secret, and authtoken into your Mastodon Config object OR&lt;/li&gt;&#xA;&lt;li&gt;Use &lt;code&gt;Authenticate&lt;/code&gt; if using username/password&lt;/li&gt;&#xA;&lt;li&gt;Use &lt;code&gt;AuthenticateApp&lt;/code&gt; if using client creds&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;package main&#xA;&#xA;import (&#xA;&#x9;&amp;#34;context&amp;#34;&#xA;&#x9;&amp;#34;fmt&amp;#34;&#xA;&#x9;&amp;#34;log&amp;#34;&#xA;&#xA;&#x9;&amp;#34;github.com/mattn/go-mastodon&amp;#34;&#xA;)&#xA;&#xA;func main() {&#xA;&#x9;c := mastodon.NewClient(&amp;amp;mastodon.Config{&#xA;&#x9;&#x9;Server: &amp;#34;https://example.com&amp;#34;,&#xA;&#x9;&#x9;AccessToken: &amp;#34;ACCESS_TOKEN&amp;#34;,&#xA;&#x9;})&#xA;&#xA;&#x9;// Print mastodon version&#xA;&#x9;mastodonVersion, err := c.GetInstance(context.Background())&#xA;&#x9;if err != nil {&#xA;&#x9;&#x9;log.Fatal(err)&#xA;&#x9;}&#xA;&#x9;fmt.Println(mastodonVersion.Version)&#xA;&#xA;&#x9;//Toot and delete&#xA;&#x9;information, err := c.PostStatus(context.Background(), &amp;amp;mastodon.Toot{&#xA;&#x9;&#x9;Status: &amp;#34;API Test&amp;#34;,&#xA;&#x9;})&#xA;&#x9;if err != nil {&#xA;&#x9;&#x9;log.Fatal(err)&#xA;&#x9;}&#xA;&#x9;fmt.Println(information)&#xA;&#xA;&#x9;err = c.DeleteStatus(context.Background(), information.ID)&#xA;&#x9;if err != nil {&#xA;&#x9;&#x9;log.Fatal(err)&#xA;&#x9;}&#xA;}&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;python&#34;&gt;Python&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://mastodonpy.readthedocs.io/en/stable/&#34;&gt;https://mastodonpy.readthedocs.io/en/stable/&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://github.com/halcy/Mastodon.py&#34;&gt;https://github.com/halcy/Mastodon.py&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;pip install Mastodon.py&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;ul&gt;&#xA;&lt;li&gt;&lt;code&gt;create_app&lt;/code&gt; is used to register an application and save creds&lt;/li&gt;&#xA;&lt;li&gt;The credentials file is:&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;client_id/key&#xA;client_secret&#xA;URL&#xA;Name of APP&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;ul&gt;&#xA;&lt;li&gt;&lt;code&gt;log_in&lt;/code&gt; can then be used to get an access token (and save to a file)&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;If you have an access token (eg. created an app on the web UI) - you can initialize with the access token.&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;from mastodon import Mastodon&#xA;&#xA;mastodon = Mastodon(&#xA;    api_base_url = &amp;#39;https://example.com&amp;#39;,&#xA;    access_token = &amp;#39;ACCESS_TOKEN&amp;#39;&#xA;)&#xA;&#xA;print (&amp;#39;Mastodon version: &amp;#39; + mastodon.retrieve_mastodon_version())&#xA;&#xA;information = mastodon.status_post(&#xA;    status = &amp;#34;Status via the API&amp;#34;,&#xA;)&#xA;&#xA;print (information)&#xA;&#xA;mastodon.status_delete(&#xA;    id = information[&amp;#39;id&amp;#39;]&#xA;)&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;!-- #public #mastodon #python #golang --&gt;&#xA;&lt;!-- {BearID:F04844D6-8BB1-4F64-9B5B-29E73A8A6EFD-3217-000003D85C8A7AF0} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - The New World Disorder - The End of America</title>
      <link>https://mcjones.ca/docs/cbc-ideas---the-new-world-disorder---the-end-of-america/</link>
      <pubDate>Tue, 07 Feb 2023 00:04:46 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---the-new-world-disorder---the-end-of-america/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---the-new-world-disorder---the-end-of-america&#34;&gt;CBC Ideas - The New World Disorder - The End of America&lt;/h1&gt;&#xA;&lt;p&gt;On one hand the entire episode can be summed in a sentence or two of how the US is slowly dying with a slow continual acceptance of new normals. Canada and other democracies need to bolster their institutions.&lt;/p&gt;&#xA;&lt;p&gt;One of the interviewees mentions so starting at the 38-40 minute mark.&lt;/p&gt;&#xA;&lt;p&gt;I really liked the end - where the utopian view is looking at the most local.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;ideas---the-new-world-disorder--the-end-of-america&#34;&gt;Ideas - The New World Disorder | The End of America&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cQMturE&#34;&gt;https://overcast.fm/+cQMturE&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/listen/live-radio/1-23-ideas/clip/15939377-the-new-world-disorder-or-the-end-america&#34;&gt;https://www.cbc.ca/listen/live-radio/1-23-ideas/clip/15939377-the-new-world-disorder-or-the-end-america&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:55797245-27A4-4296-B476-AADB5192CC2F-394-0000039E8C00482A} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Livable Low Carbon City - 02 - Missing Mid-rise</title>
      <link>https://mcjones.ca/docs/livable-low-carbon-city---02---missing-mid-rise/</link>
      <pubDate>Fri, 27 Jan 2023 01:30:45 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/livable-low-carbon-city---02---missing-mid-rise/</guid>
      <description>&lt;h1 id=&#34;livable-low-carbon-city---02---missing-mid-rise&#34;&gt;Livable Low Carbon City - 02 - Missing Mid-rise&lt;/h1&gt;&#xA;&lt;p&gt;I’m a huge fan of quality mid-rise to create the sustainable density and community.&lt;/p&gt;&#xA;&lt;p&gt;“The issue with the focus on the missing middle is that it largely ignores;&#xA;a) how the economics of missing middle in cities with systemic housing shortages no longer work because land and construction costs are too high. And&#xA;b) the overwhelming land area in most of our cities is devoted to detached houses. The scale and speed in which we need to be adding houses to US cities, especially affordable housing will be incredibly difficult if not impossible to achieve with this outsized focus on small scale homes.&#xA;It also doesn’t address the lack of walkability or accessibility in most of these neighbourhoods. Nor does it address the egregious policy of  limiting affordable and social housing to our most toxic streets“&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;livable-low-carbon-city---02-missing-mid-rise&#34;&gt;Livable Low-carbon City - 02: Missing Mid-rise&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+8PvlSOmz8&#34;&gt;https://overcast.fm/+8PvlSOmz8&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.buzzsprout.com/2051515/11362566-02-missing-mid-rise&#34;&gt;https://www.buzzsprout.com/2051515/11362566-02-missing-mid-rise&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Livable Low Carbon City# --&gt;&#xA;&lt;!-- {BearID:5E63951C-F01E-41A1-9F41-9DBD9D686D33-2018-000003BF24D7D408} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - Ideas from the Trenches - The Conspiracy Practice</title>
      <link>https://mcjones.ca/docs/cbc-ideas---ideas-from-the-trenches---the-conspiracy-practice/</link>
      <pubDate>Thu, 26 Jan 2023 15:55:43 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---ideas-from-the-trenches---the-conspiracy-practice/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---ideas-from-the-trenches---the-conspiracy-practice&#34;&gt;CBC Ideas - Ideas from the Trenches - The Conspiracy Practice&lt;/h1&gt;&#xA;&lt;p&gt;A fascinating look into just how easily people slip into embracing, alternate realities, roughly halfway through. There’s a fantastic short segment on the concept of micro fascism, and how the Internet has allowed little bit of micro fascism to start congregating together to turn into whatever this new version of Asha Smith&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;ideas---ideas-from-the-trenches-the-conspiracy-practice&#34;&gt;Ideas - IDEAS from the Trenches: The Conspiracy Practice&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cSZBe28&#34;&gt;https://overcast.fm/+cSZBe28&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/listen/live-radio/1-23-ideas/clip/15937929-ideas-trenches-the-conspiracy-practice&#34;&gt;https://www.cbc.ca/listen/live-radio/1-23-ideas/clip/15937929-ideas-trenches-the-conspiracy-practice&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:6629C5B8-B8FE-4B0E-8B5C-6FB56FBA5289-2018-0000032EA698B0DA} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Tech Lead Journal - 105 - Coaching for Technical Leaders - Bob Galen</title>
      <link>https://mcjones.ca/docs/tech-lead-journal---105---coaching-for-technical-leaders---bob-galen/</link>
      <pubDate>Fri, 20 Jan 2023 22:14:20 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/tech-lead-journal---105---coaching-for-technical-leaders---bob-galen/</guid>
      <description>&lt;h1 id=&#34;tech-lead-journal---105---coaching-for-technical-leaders---bob-galen&#34;&gt;Tech Lead Journal - 105 - Coaching for Technical Leaders - Bob Galen&lt;/h1&gt;&#xA;&lt;p&gt;The summary is that technical leaders need to be aware they need to hone their coaching skills/competencies&lt;/p&gt;&#xA;&lt;p&gt;The book/interview looks at something called the agile coaching growth wheel (a superset of professional coaching). Which is more about stances or coaching skills to look for needing to do:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Professional coaching - asking questions, especially open ended questions&lt;/li&gt;&#xA;&lt;li&gt;Mentoring - partnering/apprenticeship&lt;/li&gt;&#xA;&lt;li&gt;Training/Teaching - directing with knowledge&lt;/li&gt;&#xA;&lt;li&gt;Guided Learning&lt;/li&gt;&#xA;&lt;li&gt;Facilitating&lt;/li&gt;&#xA;&lt;li&gt;Advising / Consulting / Directing&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;There’s a time for questions there’s a time for mentorship there’s a time for direction.&lt;/p&gt;&#xA;&lt;p&gt;Reminder that the posture change of what can we do to help and listen makes a meaningful difference.&lt;/p&gt;&#xA;&lt;p&gt;Powerful Questions are great but there are so many. &lt;a href=&#34;https://boxofcrayons.com/the-coaching-habit/&#34;&gt;The Coaching Habit&lt;/a&gt; simplifies it to 7.&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;“What’s on your mind?”&lt;/li&gt;&#xA;&lt;li&gt;“And what else?”&lt;/li&gt;&#xA;&lt;li&gt;“What’s the real challenge here for you?”&lt;/li&gt;&#xA;&lt;li&gt;“What do you (really) want (from me)?”&lt;/li&gt;&#xA;&lt;li&gt;“How can I help?”&lt;/li&gt;&#xA;&lt;li&gt;“If you’re saying yes to this, what are you saying no to?”&lt;/li&gt;&#xA;&lt;li&gt;“What was most useful for you?”&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;p&gt;How is “Powerful Listening” different than “Active Listening”?&lt;/p&gt;&#xA;&lt;p&gt;Nothing mentioned seems to say if they’re different or if it is a different term for the same thing - listening to truly learn.&lt;/p&gt;&#xA;&lt;p&gt;Create your own percent rule - you should help your team more than direct/provide a solution. Something I am bad at.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;tech-lead-journal---105---coaching-for-technical-leaders---bob-galen-1&#34;&gt;Tech Lead Journal - 105 - Coaching for Technical Leaders - Bob Galen&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+fKlw8V8-Q&#34;&gt;https://overcast.fm/+fKlw8V8-Q&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://techleadjournal.dev/episodes/105/&#34;&gt;https://techleadjournal.dev/episodes/105/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Tech Lead Journal# --&gt;&#xA;&lt;!-- {BearID:026D0783-B05A-459E-A8BD-F4624491FAFF-53333-00002722DF92AC37} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>MacDevOpsYVR - Remote distributed workflows for video editing with Seth Goldin</title>
      <link>https://mcjones.ca/docs/macdevopsyvr---remote-distributed-workflows-for-video-editing-with-seth-goldin/</link>
      <pubDate>Wed, 18 Jan 2023 16:52:59 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/macdevopsyvr---remote-distributed-workflows-for-video-editing-with-seth-goldin/</guid>
      <description>&lt;h1 id=&#34;macdevopsyvr---remote-distributed-workflows-for-video-editing-with-seth-goldin&#34;&gt;MacDevOpsYVR - Remote distributed workflows for video editing with Seth Goldin&lt;/h1&gt;&#xA;&lt;p&gt;Missing link from show notes - &lt;a href=&#34;https://blog.frame.io/2017/02/15/choose-the-right-codec/&#34;&gt;David Kong’s post on what codec to choose&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Otherwise an enjoyable look at workflows thinking about remote.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;macdevopsyvr-podcast---remote-distributed-workflows-for-video-editing-with-seth-goldin&#34;&gt;MacDevOpsYVR podcast - Remote distributed workflows for video editing with Seth Goldin&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+Yg7LBMfRM&#34;&gt;https://overcast.fm/+Yg7LBMfRM&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://mdopod.com/remote-distributed-workflows-for-video-editing-with-seth-goldin/&#34;&gt;https://mdopod.com/remote-distributed-workflows-for-video-editing-with-seth-goldin/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #MacDevOpsYVR --&gt;&#xA;&lt;!-- {BearID:6904A75D-28F6-437D-943E-632533F1849B-53333-000024C439243B09} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Volts - Charles Marohn on unsustainable suburbs</title>
      <link>https://mcjones.ca/docs/volts---charles-marohn-on-unsustainable-suburbs/</link>
      <pubDate>Fri, 13 Jan 2023 15:54:13 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/volts---charles-marohn-on-unsustainable-suburbs/</guid>
      <description>&lt;h1 id=&#34;volts---charles-marohn-on-unsustainable-suburbs&#34;&gt;Volts - Charles Marohn on unsustainable suburbs&lt;/h1&gt;&#xA;&lt;p&gt;8:30 - Calling suburbs a Ponzi scheme isn’t saying it’s explicitly malicious. It’s human psychology.&#xA;13 min - goes into more about human psychology - why does a&#xA;30 min - the asymmetry of engagement&#xA;34 min - decisions to be made at the lowest level that they can be made&#xA;37 min - looking at how to do work that generates a culture versus a master plan or top down network planning. Bottom up is harder.&#xA;48 min - a failing suburb is a dangerous recipe. Isolation plus poverty is not a good recipe.&#xA;67 min - do we think we can get climate action without centralized top down action? (Which goes to the point at the 37 min mark)&#xA;Invcentivitizing cultural answers. People want good urbanism - incentivize that instead of dictating it.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;volts---charles-marohn-on-unsustainable-suburbs-1&#34;&gt;Volts - Charles Marohn on unsustainable suburbs&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+oT_l7Fh8s&#34;&gt;https://overcast.fm/+oT_l7Fh8s&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.volts.wtf/p/volts-podcast-charles-marohn-on-unsustainable#details&#34;&gt;https://www.volts.wtf/p/volts-podcast-charles-marohn-on-unsustainable#details&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #volts #strong towns# --&gt;&#xA;&lt;!-- {BearID:99B15076-3251-4624-AE8B-5166B086411A-39568-00001F10B66496EB} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Bellwether</title>
      <link>https://mcjones.ca/docs/bellwether/</link>
      <pubDate>Tue, 10 Jan 2023 01:57:07 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/bellwether/</guid>
      <description>&lt;h1 id=&#34;bellwether&#34;&gt;Bellwether&lt;/h1&gt;&#xA;&lt;p&gt;Fantastic cross between speculative journalism and journalism of:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Automated Driving&lt;/li&gt;&#xA;&lt;li&gt;The doublespeak and attack or DIY spaces&lt;/li&gt;&#xA;&lt;li&gt;The effects of SOSTA/FESTA&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;bellwether-1&#34;&gt;Bellwether&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+S_KRvRwh4&#34;&gt;https://overcast.fm/+S_KRvRwh4&lt;/a&gt;&#xA;&lt;a href=&#34;https://overcast.fm/+S_KQu4AYE&#34;&gt;https://overcast.fm/+S_KQu4AYE&lt;/a&gt;&#xA;&lt;a href=&#34;https://overcast.fm/+S_KTYkxnU&#34;&gt;https://overcast.fm/+S_KTYkxnU&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Note: &lt;a href=&#34;https://bellwether.show&#34;&gt;https://bellwether.show&lt;/a&gt; now 404s.&lt;/p&gt;&#xA;&lt;!-- #public #podcast #bellwether --&gt;&#xA;&lt;!-- {BearID:DD85F53F-5FD4-43DC-8354-2FC5DA90B9E7-39568-00001AEB5360BE7E} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Energy vs Climate - Transition in Alberta from The Energy Transition Show with Chris Nelder</title>
      <link>https://mcjones.ca/docs/energy-vs-climate---transition-in-alberta-from-the-energy-transition-show-with-chris-nelder/</link>
      <pubDate>Mon, 09 Jan 2023 01:49:37 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/energy-vs-climate---transition-in-alberta-from-the-energy-transition-show-with-chris-nelder/</guid>
      <description>&lt;h1 id=&#34;energy-vs-climate---transition-in-alberta-from-the-energy-transition-show-with-chris-nelder&#34;&gt;Energy vs Climate - Transition in Alberta from The Energy Transition Show with Chris Nelder&lt;/h1&gt;&#xA;&lt;p&gt;Especially from the 35 min mark - an excellent recap of how oil and gas has struggled to grow despite lots of public subsidization. Doesn’t need to sensationalize to point out we have massive public liabilities in the present regardless of a transition.&lt;/p&gt;&#xA;&lt;p&gt;Alberta is the wind and solar capital of Canada.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;energy-vs-climate---bonus--transition-in-alberta-from-the-energy-transition-show-with-chris-nelder&#34;&gt;Energy vs Climate - BONUS | Transition in Alberta from The Energy Transition Show with Chris Nelder&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+2kHVaMjVE&#34;&gt;https://overcast.fm/+2kHVaMjVE&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://xenetwork.org/ets/episodes/episode-180-transition-in-alberta/&#34;&gt;https://xenetwork.org/ets/episodes/episode-180-transition-in-alberta/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #energy vs climate# --&gt;&#xA;&lt;!-- {BearID:92BA5A1E-AF90-4015-AD1C-69D36FE69128-39568-00001906026E4EF5} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Recipes for Switch</title>
      <link>https://mcjones.ca/docs/recipes-for-switch/</link>
      <pubDate>Sun, 08 Jan 2023 07:21:16 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/recipes-for-switch/</guid>
      <description>&lt;h1 id=&#34;recipes-for-switch&#34;&gt;Recipes for Switch&lt;/h1&gt;&#xA;&lt;p&gt;The advantage is you can use immersion AND pour through as you want.&lt;/p&gt;&#xA;&lt;p&gt;If you replace the cone with a V60 03 (bigger cone), you can do a larger amount.&lt;/p&gt;&#xA;&lt;h2 id=&#34;current-daily-driver&#34;&gt;Current Daily Driver&lt;/h2&gt;&#xA;&lt;p&gt;Uses a Mugen instead of a V60, steals a bit from Tetsu’s 4:6 and his super hybrid method.&lt;/p&gt;&#xA;&lt;p&gt;30g coffee&lt;br&gt;&#xA;400g water&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Preheat Mugen and grind coffee&lt;/li&gt;&#xA;&lt;li&gt;Start with Switch closed&lt;/li&gt;&#xA;&lt;li&gt;Pour 60g water, open the switch, let draw down and/or 30 seconds. Whichever is longer.&lt;/li&gt;&#xA;&lt;li&gt;Slowly pour 140g water (200g total). Let draw down&lt;/li&gt;&#xA;&lt;li&gt;Slowly pour 100g water (300g total). Let draw down.&lt;/li&gt;&#xA;&lt;li&gt;Close switch - add ~150mL of cold or room temperature water to kettle to cool the existing water. Swirl in kettle to help cool it down to ~70C&lt;/li&gt;&#xA;&lt;li&gt;Pour 100g water. Let sit 1 minute&lt;/li&gt;&#xA;&lt;li&gt;Open&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;h2 id=&#34;hario&#34;&gt;Hario&lt;/h2&gt;&#xA;&lt;p&gt;(Included in manual)&lt;/p&gt;&#xA;&lt;p&gt;16g coffee&lt;br&gt;&#xA;50g water, bloom for 30 seconds&lt;br&gt;&#xA;210g water (240 total)&lt;br&gt;&#xA;Let immerse 2 min. Hit switch at 2:30 and drain&lt;/p&gt;&#xA;&lt;h2 id=&#34;eight-ounce-coffee&#34;&gt;Eight Ounce Coffee&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://m.youtube.com/watch?v=XXwrrGWOINQ&#34;&gt;https://m.youtube.com/watch?v=XXwrrGWOINQ&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;20g coffee&lt;br&gt;&#xA;60g water, let steep 1 minute&lt;br&gt;&#xA;Drain&lt;br&gt;&#xA;Close, 40g water (100g total), open&lt;br&gt;&#xA;Close, 50g water (150g total), open&lt;br&gt;&#xA;Close, 50g water (200g total), open&lt;br&gt;&#xA;Close, 100g water (300g total), open&lt;/p&gt;&#xA;&lt;p&gt;Total brew time is 4-5 minutes.&lt;/p&gt;&#xA;&lt;h2 id=&#34;tales-stall-the-fall&#34;&gt;Tale’s Stall the Fall&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://youtu.be/4wMyaw0FoZs&#34;&gt;https://youtu.be/4wMyaw0FoZs&lt;/a&gt;&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Boil water&lt;/li&gt;&#xA;&lt;li&gt;Rinse filter and heat Switch&lt;/li&gt;&#xA;&lt;li&gt;Close Switch&lt;/li&gt;&#xA;&lt;li&gt;Pour 260g water (just off boil)&lt;/li&gt;&#xA;&lt;li&gt;Add 20g coffee (very fine grind)&lt;/li&gt;&#xA;&lt;li&gt;40 sec clockwise stir with chopstick (vigorous to start, gentle after all grounds are wet)&lt;/li&gt;&#xA;&lt;li&gt;Open Switch&lt;/li&gt;&#xA;&lt;li&gt;5 sec vigorous clockwise stir&lt;/li&gt;&#xA;&lt;li&gt;Total brew time should be 1:30-1:40 (max 2:00)&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;h2 id=&#34;hoffmann&#34;&gt;Hoffmann&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://youtu.be/QjIvN8mlK9Y&#34;&gt;https://youtu.be/QjIvN8mlK9Y&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;tetsu-kasuya---goddevil-method&#34;&gt;Tetsu Kasuya - “God/Devil Method”&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://outpostcoffee.com/blogs/brew-at-home/tetsu-kasuyas-hario-switch-recipe-for-perfect-coffee&#34;&gt;https://outpostcoffee.com/blogs/brew-at-home/tetsu-kasuyas-hario-switch-recipe-for-perfect-coffee&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.youtube.com/watch?v=gC8K40kZ_6E&amp;amp;t=1028s&#34;&gt;https://www.youtube.com/watch?v=gC8K40kZ_6E&amp;amp;t=1028s&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;20g coffee&lt;br&gt;&#xA;280g water (93 C)&lt;br&gt;&#xA;Using 13 on an Encore (normally use 15 for V60)&lt;/p&gt;&#xA;&lt;p&gt;Leave Switch Open&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Pour 60g water&lt;/li&gt;&#xA;&lt;li&gt;Wait 30 seconds&lt;/li&gt;&#xA;&lt;li&gt;Pour second 60g water (120g total)&lt;/li&gt;&#xA;&lt;li&gt;Cool down to 70C&lt;/li&gt;&#xA;&lt;li&gt;At 01:15 - close&lt;/li&gt;&#xA;&lt;li&gt;Pour to 280g&lt;/li&gt;&#xA;&lt;li&gt;30 seconds later (01:45) - open&lt;/li&gt;&#xA;&lt;li&gt;Remove at 03:00 - if too much water left over - try a more coarse grind&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;p&gt;References the 4:6 method he also came up with.&lt;/p&gt;&#xA;&lt;h2 id=&#34;tetsu-super-hybrid-recipe&#34;&gt;Tetsu Super Hybrid Recipe&lt;/h2&gt;&#xA;&lt;p&gt;The God/Devil/Hybrid recipe was updated Jan. 11, 2025.&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://www.youtube.com/watch?v=4FeUp_zNiiY&#34;&gt;https://www.youtube.com/watch?v=4FeUp_zNiiY&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://roastaroma.com/2025/01/tetsu-kasayas-evolved-hybrid-recipe-v2-super-hybrid-sneaky-recipe/&#34;&gt;https://roastaroma.com/2025/01/tetsu-kasayas-evolved-hybrid-recipe-v2-super-hybrid-sneaky-recipe/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;20g coffee&lt;br&gt;&#xA;300g water (90 C and 70-80 C)&lt;br&gt;&#xA;Using 13 on an Encore (normally use 15 for V60)&lt;/p&gt;&#xA;&lt;p&gt;Start with Switch closed&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Pour 40-50g water (90 C)&lt;/li&gt;&#xA;&lt;li&gt;Wait 40 seconds&lt;/li&gt;&#xA;&lt;li&gt;Open the switch and pour to 120g total&lt;/li&gt;&#xA;&lt;li&gt;Pour again at 1:30 to 200g total&lt;/li&gt;&#xA;&lt;li&gt;Cool down to 70 - 80 C&lt;/li&gt;&#xA;&lt;li&gt;Close the switch, and top up to 300 g at the ~2:10 mark&lt;/li&gt;&#xA;&lt;li&gt;Wait 45 seconds, and open the switch (2:55 mark). Should finish around the 3:30 mark.&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;h2 id=&#34;46-method-tetsu-kasuya&#34;&gt;4:6 Method (Tetsu Kasuya)&lt;/h2&gt;&#xA;&lt;p&gt;2016 V60 winning recipe. The tl;dr is 40% of the water in the first two pours, while the other 60% split up more. The first portion affects the brightness, while the second affects the body. See &lt;a href=&#34;https://en.philocoffea.com/blogs/blog/coffee-brewing-method&#34;&gt;their blog post&lt;/a&gt; on it.&lt;/p&gt;&#xA;&lt;p&gt;40g coffee&lt;br&gt;&#xA;600g water&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;(00:00) Bloom with 100g, wait 45 seconds&lt;/li&gt;&#xA;&lt;li&gt;(00:45) Add next pulse (140g), wait 45 seconds&lt;/li&gt;&#xA;&lt;li&gt;(01:30) Add next pulse (120g), wait 45 seconds&lt;/li&gt;&#xA;&lt;li&gt;(02:15) Add next pulse (120g), wait 45 seconds&lt;/li&gt;&#xA;&lt;li&gt;(03:00) Add next pulse (120g), wait 45 seconds&lt;/li&gt;&#xA;&lt;li&gt;(03:30) Remove&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;p&gt;The basic is 5 x 120g pours&#xA;But tweak the pours slightly for sweetness (long second pour) or acidity (longer first pour).&#xA;Last 3 pours affect the strength of the coffee - 4 x 90 instead of 3 x120 can increase. 2 x 180 would reduce.&lt;/p&gt;&#xA;&lt;p&gt;The advantage is you can use immersion AND pour through as you want and has become my daily driver at home - especially using a mix of immersion and pour over / pulse&lt;/p&gt;&#xA;&lt;h2 id=&#34;generic&#34;&gt;Generic&lt;/h2&gt;&#xA;&lt;p&gt;16g coffee&lt;br&gt;&#xA;50g water, bloom for 30 seconds&lt;br&gt;&#xA;210g water (240 total)&lt;br&gt;&#xA;Let immerse 2 min. Hit switch at 2:30 and drain&lt;/p&gt;&#xA;&lt;p&gt;If you replace the cone with a V60 03 (bigger cone), you can do a larger amount.&lt;/p&gt;&#xA;&lt;h2 id=&#34;sherry-hsu&#34;&gt;Sherry Hsu&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://www.youtube.com/watch?v=wCNxPYyGWoo&#34;&gt;https://www.youtube.com/watch?v=wCNxPYyGWoo&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;16g coffee&lt;br&gt;&#xA;90C water&lt;br&gt;&#xA;50 g water, bloom for 30 seconds&lt;br&gt;&#xA;Circular pour to 150g&lt;br&gt;&#xA;At 1:00, close switch, pour to 240g&lt;br&gt;&#xA;At 1:30, open switch and let drain&lt;br&gt;&#xA;Total time should be 1:45-2:00&lt;/p&gt;&#xA;&lt;h2 id=&#34;lance-hedrick---gong-fu-recipe&#34;&gt;Lance Hedrick - Gong Fu Recipe&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://youtube.com/watch?v=blQsogeBG7M&#34;&gt;https://youtube.com/watch?v=blQsogeBG7M&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;This approach leverages a cooler bloom, pouring over a spoon (like a melodrip) to reduce agitation, and lots of immersion.&lt;/p&gt;&#xA;&lt;p&gt;The cooler bloom is also called the Samo bloom after Dr. Samo Smrke - &lt;a href=&#34;https://www.youtube.com/watch?v=eVF7DOxOUFA&#34;&gt;https://www.youtube.com/watch?v=eVF7DOxOUFA&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;15g medium-coarse coffee&#xA;250g water&lt;/p&gt;&#xA;&lt;p&gt;Simple version is:&#xA;First pour is 50g / 75 C. Let sit 90 seconds&#xA;Second pour is 100g / 90 C. Let sit 75 seconds&#xA;Third pour is 100g / 90 C. Let sit 75 seconds&lt;/p&gt;&#xA;&lt;p&gt;0:00 - close valve, and pour 50g of 75 C water into the brewer.&#xA;0:00 - Add coffee grounds, tare your scale, stir, and start timer&#xA;1:30 - Open the valve and let it drain fully&#xA;1:40 - Close valve. Pour 100g water at 90 C over a spoon onto the coffee bed&#xA;1:55 - Gently excavate/stir the coffee bed&#xA;3:00 - Open the valve and let it drain fully&#xA;3:15 - Close valve, pour to 100g water at 90 C over a spon onto the coffee bed.&#xA;3:30 - gently excavate the bed&#xA;4:30 - gentle swirl, open and let drain.&lt;/p&gt;&#xA;&lt;h2 id=&#34;emi-fukahori&#34;&gt;Emi Fukahori&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://europeancoffeetrip.com/easy-hario-switch-recipe-emi-fukahor/&#34;&gt;https://europeancoffeetrip.com/easy-hario-switch-recipe-emi-fukahor/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;14g coffee  - medium coarse&#xA;200g water&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Close valve&lt;/li&gt;&#xA;&lt;li&gt;50 grams of water&lt;/li&gt;&#xA;&lt;li&gt;Open valve after 30 seconds&lt;/li&gt;&#xA;&lt;li&gt;150 grams single continuous pour to the center of the coffee bed&lt;/li&gt;&#xA;&lt;li&gt;Should be done pouring by 1:10&lt;/li&gt;&#xA;&lt;li&gt;Should have a 2:20 brew time&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;h2 id=&#34;iced-version&#34;&gt;Iced Version&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://www.reddit.com/r/Coffee/comments/nnfs3d/iced_coffee_using_hario_switch/&#34;&gt;https://www.reddit.com/r/Coffee/comments/nnfs3d/iced_coffee_using_hario_switch/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;23g coffee (finer than normal)&lt;br&gt;&#xA;375g total liquid - 125g of ice into your brewing vessel, 250g hot water&lt;/p&gt;&#xA;&lt;p&gt;Alt for the cubes at home.&lt;br&gt;&#xA;33g coffee&lt;br&gt;&#xA;540g liquid = 180g ice, 360 hot water&lt;/p&gt;&#xA;&lt;p&gt;Rinse filter + preheat switch over the sink.&lt;/p&gt;&#xA;&lt;p&gt;Bloom with 45-50g water for 45 second. Switch up.&lt;br&gt;&#xA;Add rest of liquid (~200 grams to reach total of 250 grams)&lt;br&gt;&#xA;Stir / Rao swirl&lt;br&gt;&#xA;Let sit till 3 minute mark. Drop switch&lt;br&gt;&#xA;Swirl vessel after full drawn down.&lt;/p&gt;&#xA;&lt;h2 id=&#34;mix-of-immersion-and-pour-over&#34;&gt;Mix of Immersion and Pour Over&lt;/h2&gt;&#xA;&lt;p&gt;30g coffee&lt;br&gt;&#xA;50 g water, bloom for 30 seconds&lt;br&gt;&#xA;210g water (240 total)&lt;br&gt;&#xA;Let brew for 90 seconds, hit switch&lt;br&gt;&#xA;Pour slowly the next 260g as normal for a v60&lt;/p&gt;&#xA;&lt;p&gt;CoffeeChronicler&#xA;&lt;a href=&#34;https://coffeechronicler.com/hario-switch/&#34;&gt;https://coffeechronicler.com/hario-switch/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;1:15 ratio&lt;br&gt;&#xA;20g coffee&lt;br&gt;&#xA;300g water&lt;/p&gt;&#xA;&lt;p&gt;Pour 150g with switch open&#xA;At 00:45 - Close switch, and pour rest of water&#xA;Wait until 02:00 and then open.&lt;/p&gt;&#xA;&lt;p&gt;For a sweeter version - close at 00:25&lt;/p&gt;&#xA;&lt;p&gt;Should take 02:45-03:15 total&lt;/p&gt;&#xA;&lt;h1 id=&#34;switch-with-mugen-hack&#34;&gt;Switch with Mugen Hack&lt;/h1&gt;&#xA;&lt;h2 id=&#34;background&#34;&gt;Background&lt;/h2&gt;&#xA;&lt;p&gt;I learned about using the Hario Mugen instead of the standard V60 cone with the Hario Switch from &lt;a href=&#34;https://coffeegeek.com/guides/howtos/hario-mugen-switch-brewer-hack-how-to/&#34;&gt;CoffeeGeek&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;The tl;dr for why, is that with a no-bypass brewer, it can be a lot easier to do things consistently when you can’t or won’t give pour over the attention you should.&lt;/p&gt;&#xA;&lt;h2 id=&#34;testing&#34;&gt;Testing&lt;/h2&gt;&#xA;&lt;p&gt;20g coffee&lt;br&gt;&#xA;240g water&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Pour 40g. Wait 30 seconds to draw down and bloom&lt;/li&gt;&#xA;&lt;li&gt;Close. Pour remaining 200g water.&lt;/li&gt;&#xA;&lt;li&gt;Wait 60 seconds.&lt;/li&gt;&#xA;&lt;li&gt;Open and let draw down.&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;h2 id=&#34;reddit-recipes&#34;&gt;Reddit Recipes&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://new.reddit.com/r/pourover/comments/zzpc4y/hario_switch_base_with_mugen_cone_best_setup_for/&#34;&gt;https://new.reddit.com/r/pourover/comments/zzpc4y/hario_switch_base_with_mugen_cone_best_setup_for/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;14g coffee (1:14)&lt;br&gt;&#xA;Standard V60 grind&lt;br&gt;&#xA;200g water&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Preheat and rinse paper&lt;/li&gt;&#xA;&lt;li&gt;Close Switch&lt;/li&gt;&#xA;&lt;li&gt;Bloom with 50g&lt;/li&gt;&#xA;&lt;li&gt;Swirl&lt;/li&gt;&#xA;&lt;li&gt;Add remaining 150g&lt;/li&gt;&#xA;&lt;li&gt;Let steep 2 minutes&lt;/li&gt;&#xA;&lt;li&gt;Swirl&lt;/li&gt;&#xA;&lt;li&gt;At 02:15 - open&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;h2 id=&#34;coffeegeek-recipe&#34;&gt;CoffeeGeek Recipe&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://coffeegeek.com/guides/howtos/hario-mugen-switch-brewer-hack-how-to/&#34;&gt;https://coffeegeek.com/guides/howtos/hario-mugen-switch-brewer-hack-how-to/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;1:20 ratio&lt;br&gt;&#xA;15g coffee&lt;br&gt;&#xA;300g water&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Preheat/saturate filter&lt;/li&gt;&#xA;&lt;li&gt;Close switch&lt;/li&gt;&#xA;&lt;li&gt;Pour 150mL quickly&lt;/li&gt;&#xA;&lt;li&gt;Stir for 3-4 seconds&lt;/li&gt;&#xA;&lt;li&gt;Wait 60 seconds and open switch&lt;/li&gt;&#xA;&lt;li&gt;Pour last 150 mL slowly (~5g/s)&lt;/li&gt;&#xA;&lt;li&gt;Let draw down&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;p&gt;Total time around 4 minutes&lt;/p&gt;&#xA;&lt;h2 id=&#34;charity-cheung-hario-booklet&#34;&gt;Charity Cheung (Hario Booklet)&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://global.hario.com/MUSD%20Recipe%20%26%20Interview.pdf&#34;&gt;https://global.hario.com/MUSD%20Recipe%20%26%20Interview.pdf&lt;/a&gt; / &lt;a href=&#34;https://global.hario.com/product/new/mugen_x_switch_dripper.html&#34;&gt;https://global.hario.com/product/new/mugen_x_switch_dripper.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;1:13.5 ratio&#xA;14g coffee (medium)&#xA;190g water (93C)&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;With the Switch valve closed, pour 70g of water.&lt;/li&gt;&#xA;&lt;li&gt;At 0:45 pour again, up to a total of 190g of water.&lt;/li&gt;&#xA;&lt;li&gt;Open the Switch valve at 2:30.&lt;/li&gt;&#xA;&lt;li&gt;Remove the dripper at 3:00.&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;h2 id=&#34;weihong-zhang-competition-hario-booklet&#34;&gt;Weihong Zhang Competition (Hario Booklet)&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://global.hario.com/MUSD%20Recipe%20%26%20Interview.pdf&#34;&gt;https://global.hario.com/MUSD%20Recipe%20%26%20Interview.pdf&lt;/a&gt; / &lt;a href=&#34;https://global.hario.com/product/new/mugen_x_switch_dripper.html&#34;&gt;https://global.hario.com/product/new/mugen_x_switch_dripper.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;1:13.3 ratio&#xA;15g coffee (medium)&#xA;200g water (80C and 92C)&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;With the Switch valve open, pour 50g of water at 80°C.&lt;/li&gt;&#xA;&lt;li&gt;At 0:40, close the Switch valve, pour another 150g, this time at 92°C.&lt;/li&gt;&#xA;&lt;li&gt;Open the Switch valve at 2:10.&lt;/li&gt;&#xA;&lt;li&gt;Remove the dripper at 3:00.&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;h2 id=&#34;weihong-zhang-everyday-hario-booklet&#34;&gt;Weihong Zhang Everyday (Hario Booklet)&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://global.hario.com/MUSD%20Recipe%20%26%20Interview.pdf&#34;&gt;https://global.hario.com/MUSD%20Recipe%20%26%20Interview.pdf&lt;/a&gt; / &lt;a href=&#34;https://global.hario.com/product/new/mugen_x_switch_dripper.html&#34;&gt;https://global.hario.com/product/new/mugen_x_switch_dripper.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;1:13.3 ratio&#xA;16g coffee (medium)&#xA;240g water (92C)&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;With the Switch valve open, pour 50g of water&lt;/li&gt;&#xA;&lt;li&gt;At 0:40, close the Switch valve, pour up to a total of 240g of water&lt;/li&gt;&#xA;&lt;li&gt;Open the Switch valve at 2:00.&lt;/li&gt;&#xA;&lt;li&gt;Remove the dripper at 3:40.&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;h2 id=&#34;kunie-inaba-hario-booklet&#34;&gt;Kunie Inaba (Hario Booklet)&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://global.hario.com/MUSD%20Recipe%20%26%20Interview.pdf&#34;&gt;https://global.hario.com/MUSD%20Recipe%20%26%20Interview.pdf&lt;/a&gt; / &lt;a href=&#34;https://global.hario.com/product/new/mugen_x_switch_dripper.html&#34;&gt;https://global.hario.com/product/new/mugen_x_switch_dripper.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Note: Canadian Brewers Cup Champion in 2024&lt;/p&gt;&#xA;&lt;p&gt;1:15 ratio&#xA;13g coffee (medium)&#xA;200g water (92C and 75C)&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;With the Switch valve closed, pour 40g of water at 92°C.&lt;/li&gt;&#xA;&lt;li&gt;Open the Switch valve at 0:40 and pour up to a total of&#xA;100g of water, with a circular motion.&lt;/li&gt;&#xA;&lt;li&gt;Close the Switch valve at 1:20 and pour up to a total of&#xA;200g of water, this time using 75°C water.&lt;/li&gt;&#xA;&lt;li&gt;Open the Switch valve at 2:20.&lt;/li&gt;&#xA;&lt;li&gt;Remove the dripper at 2:30.&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;h2 id=&#34;other&#34;&gt;Other&lt;/h2&gt;&#xA;&lt;p&gt;Coffee Chronicler recommends same recipe as regular switch set up. Maybe a touch coarser grind?&lt;/p&gt;&#xA;&lt;!-- #coffee #public #hario-switch #recipe --&gt;&#xA;&lt;!-- {BearID:A49BCCBF-99C4-499D-80A3-3455032DF20E-31214-000017C5EB88FDFB} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>COMMONS - CRUDE 7 - The Billionaire Plot to Destroy Alberta&#39;s Economy is Totally Real</title>
      <link>https://mcjones.ca/docs/commons---crude-7---the-billionaire-plot-to-destroy-albertas-economy-is-totally-real/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:13 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/commons---crude-7---the-billionaire-plot-to-destroy-albertas-economy-is-totally-real/</guid>
      <description>&lt;h1 id=&#34;commons---crude-7---the-billionaire-plot-to-destroy-albertas-economy-is-totally-real&#34;&gt;COMMONS - CRUDE 7 - The Billionaire Plot to Destroy Alberta&amp;rsquo;s Economy is Totally Real&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;commons---crude-7---the-billionaire-plot-to-destroy-albertas-economy-is-totally-real-1&#34;&gt;COMMONS - CRUDE 7 - The Billionaire Plot to Destroy Alberta’s Economy is Totally Real!&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+7ppckF5Is&#34;&gt;https://overcast.fm/+7ppckF5Is&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.canadaland.com/podcast/crude-7-the-billionaire-plot-to-destroy-albertas-economy-is-totally-real/&#34;&gt;https://www.canadaland.com/podcast/crude-7-the-billionaire-plot-to-destroy-albertas-economy-is-totally-real/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #commons --&gt;&#xA;&lt;!-- {BearID:4624507E-41D9-4E76-ABD3-6EE36CE78921-28016-00002D980F4EF0C0} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>COMMONS - CRUDE 10 - The Apocalypse is Now</title>
      <link>https://mcjones.ca/docs/commons---crude-10---the-apocalypse-is-now/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:12 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/commons---crude-10---the-apocalypse-is-now/</guid>
      <description>&lt;h1 id=&#34;commons---crude-10---the-apocalypse-is-now&#34;&gt;COMMONS - CRUDE 10 - The Apocalypse is Now&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;commons---crude-10---the-apocalypse-is-now-1&#34;&gt;COMMONS - CRUDE 10 - The Apocalypse is Now&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+7ppeG7Ee4&#34;&gt;https://overcast.fm/+7ppeG7Ee4&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.canadaland.com/podcast/crude-10-the-apocalypse-is-now/&#34;&gt;https://www.canadaland.com/podcast/crude-10-the-apocalypse-is-now/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #commons --&gt;&#xA;&lt;!-- {BearID:C6964D98-68D8-4EF3-928C-2A1F53071340-28016-00002D980F13F6EC} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>COMMONS - MINING 4 - The Westray Disaster</title>
      <link>https://mcjones.ca/docs/commons---mining-4---the-westray-disaster/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:12 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/commons---mining-4---the-westray-disaster/</guid>
      <description>&lt;h1 id=&#34;commons---mining-4---the-westray-disaster&#34;&gt;COMMONS - MINING 4 - The Westray Disaster&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;commons---mining-4---the-westray-disaster-1&#34;&gt;COMMONS - MINING 4 - The Westray Disaster&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+7ppfui-7c&#34;&gt;https://overcast.fm/+7ppfui-7c&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.canadaland.com/podcast/mining-4-the-westray-disaster/&#34;&gt;https://www.canadaland.com/podcast/mining-4-the-westray-disaster/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #commons --&gt;&#xA;&lt;!-- {BearID:F769EDF1-2922-48CF-AFFD-169AD4993C4A-28016-00002D980EA79681} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>COMMONS - REAL ESTATE 4 - City of Glass</title>
      <link>https://mcjones.ca/docs/commons---real-estate-4---city-of-glass/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:12 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/commons---real-estate-4---city-of-glass/</guid>
      <description>&lt;h1 id=&#34;commons---real-estate-4---city-of-glass&#34;&gt;COMMONS - REAL ESTATE 4 - City of Glass&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;commons---real-estate-4---city-of-glass-1&#34;&gt;COMMONS - REAL ESTATE 4 - City of Glass&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+7ppfcN1dE&#34;&gt;https://overcast.fm/+7ppfcN1dE&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.canadaland.com/podcast/real-estate-4-city-of-glass/&#34;&gt;https://www.canadaland.com/podcast/real-estate-4-city-of-glass/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #commons --&gt;&#xA;&lt;!-- {BearID:069D30D9-1904-4F8F-BE3F-A37DAFD01A5C-28016-00002D980EBC2A08} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>COMMONS - THE POLICE 2 - The Secret History of the RCMP</title>
      <link>https://mcjones.ca/docs/commons---the-police-2---the-secret-history-of-the-rcmp/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:12 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/commons---the-police-2---the-secret-history-of-the-rcmp/</guid>
      <description>&lt;h1 id=&#34;commons---the-police-2---the-secret-history-of-the-rcmp&#34;&gt;COMMONS - THE POLICE 2 - The Secret History of the RCMP&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;commons---the-police-2---the-secret-history-of-the-rcmp-1&#34;&gt;COMMONS - THE POLICE 2 - The Secret History of the RCMP&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+7ppdnmMSQ&#34;&gt;https://overcast.fm/+7ppdnmMSQ&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.canadaland.com/podcast/the-police-2-the-secret-history-of-the-rcmp/&#34;&gt;https://www.canadaland.com/podcast/the-police-2-the-secret-history-of-the-rcmp/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #commons --&gt;&#xA;&lt;!-- {BearID:2206F8A9-AE94-42AD-92F9-5F47E338F813-28016-00002D980EDC33CE} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>It Could Happen Here - Antiwork Part 1: The Great Resignation</title>
      <link>https://mcjones.ca/docs/it-could-happen-here---antiwork-part-1--the-great-resignation/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:12 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/it-could-happen-here---antiwork-part-1--the-great-resignation/</guid>
      <description>&lt;h1 id=&#34;it-could-happen-here---antiwork-part-1-the-great-resignation&#34;&gt;It Could Happen Here - Antiwork Part 1: The Great Resignation&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;it-could-happen-here---antiwork-part-1-the-great-resignation-1&#34;&gt;It Could Happen Here - Antiwork Part 1: The Great Resignation&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+4c0JFmuVQ&#34;&gt;https://overcast.fm/+4c0JFmuVQ&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://omny.fm/shows/it-could-happen-here/antiwork-part-1-the-great-resignation&#34;&gt;https://omny.fm/shows/it-could-happen-here/antiwork-part-1-the-great-resignation&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #It Could Happen Here# --&gt;&#xA;&lt;!-- {BearID:EAACEB1A-F21A-433E-89B9-A4357862F5DD-28016-00002D980DCF83C1} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>It Could Happen Here - Canadian Fascism Eh?</title>
      <link>https://mcjones.ca/docs/it-could-happen-here---canadian-fascism-eh/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:12 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/it-could-happen-here---canadian-fascism-eh/</guid>
      <description>&lt;h1 id=&#34;it-could-happen-here---canadian-fascism-eh&#34;&gt;It Could Happen Here - Canadian Fascism Eh?&lt;/h1&gt;&#xA;&lt;p&gt;A fantastic look at the state of the rise of the Canadian fascist elements as of Oct. 2021. This predated the Ottawa occupation by the Freedom Convoy that would come the following February. Unsurprisingly, many of the factions mentioned in these two podcast were involved in the Freedom Convoy. Some just as cover to make them more acceptable, others to see if they could overthrow the government.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;it-could-happen-here---canadian-fascism-eh-part-1&#34;&gt;It Could Happen Here - Canadian Fascism Eh? Part 1&lt;/h6&gt;&#xA;&lt;p&gt;Part 1:&#xA;&lt;a href=&#34;https://overcast.fm/+4c0Ic2ZtY&#34;&gt;https://overcast.fm/+4c0Ic2ZtY&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://omny.fm/shows/it-could-happen-here/canadian-fascism-eh-part-1&#34;&gt;https://omny.fm/shows/it-could-happen-here/canadian-fascism-eh-part-1&lt;/a&gt;&#xA;&lt;a href=&#34;https://overcast.fm/+4c0IM-nNI&#34;&gt;https://overcast.fm/+4c0IM-nNI&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://omny.fm/shows/it-could-happen-here/canadian-fascism-eh-part-2&#34;&gt;https://omny.fm/shows/it-could-happen-here/canadian-fascism-eh-part-2&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #It Could Happen Here# --&gt;&#xA;&lt;!-- {BearID:AFAF144B-78DE-4492-9F1C-040A419C38DF-28016-00002D980E5ED77C} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>It Could Happen Here - The Efficiency Paradox</title>
      <link>https://mcjones.ca/docs/it-could-happen-here---the-efficiency-paradox/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:12 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/it-could-happen-here---the-efficiency-paradox/</guid>
      <description>&lt;h1 id=&#34;it-could-happen-here---the-efficiency-paradox&#34;&gt;It Could Happen Here - The Efficiency Paradox&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;it-could-happen-here---the-efficiency-paradox-1&#34;&gt;It Could Happen Here - The Efficiency Paradox&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+4c0K5T50k&#34;&gt;https://overcast.fm/+4c0K5T50k&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://omny.fm/shows/it-could-happen-here/the-efficiency-paradox&#34;&gt;https://omny.fm/shows/it-could-happen-here/the-efficiency-paradox&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #It Could Happen Here# --&gt;&#xA;&lt;!-- {BearID:F699DFE7-1EBC-4FB4-A0D7-6DF7C259F038-28016-00002D980DF94100} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Behind the Bastards - Behind the Police: How The Police Defeated Lynching Via Torture</title>
      <link>https://mcjones.ca/docs/behind-the-bastards---behind-the-police--how-the-police-defeated-lynching-via-torture/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:11 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/behind-the-bastards---behind-the-police--how-the-police-defeated-lynching-via-torture/</guid>
      <description>&lt;h1 id=&#34;behind-the-bastards---behind-the-police-how-the-police-defeated-lynching-via-torture&#34;&gt;Behind the Bastards - Behind the Police: How The Police Defeated Lynching Via Torture&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;behind-the-bastards---behind-the-police-how-the-police-defeated-lynching-via-torture-1&#34;&gt;Behind the Bastards - Behind the Police: How The Police Defeated Lynching Via Torture&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+4cUO44_dA&#34;&gt;https://overcast.fm/+4cUO44_dA&lt;/a&gt;&#xA;&lt;a href=&#34;https://omny.fm/shows/behind-the-bastards/behind-the-police-how-the-police-defeated-lynching&#34;&gt;https://omny.fm/shows/behind-the-bastards/behind-the-police-how-the-police-defeated-lynching&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #behind the bastards# --&gt;&#xA;&lt;!-- {BearID:D1C9237F-4C30-45AB-B712-DD1377934D31-28016-00002D980C5B5E0F} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Behind the Bastards - How The First Police Went From Gangsters, To An Army For The Rich</title>
      <link>https://mcjones.ca/docs/behind-the-bastards---how-the-first-police-went-from-gangsters-to-an-army-for-the-rich/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:11 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/behind-the-bastards---how-the-first-police-went-from-gangsters-to-an-army-for-the-rich/</guid>
      <description>&lt;h1 id=&#34;behind-the-bastards---how-the-first-police-went-from-gangsters-to-an-army-for-the-rich&#34;&gt;Behind the Bastards - How The First Police Went From Gangsters, To An Army For The Rich&lt;/h1&gt;&#xA;&lt;p&gt;Clip lost to Twitter post Musk: &lt;a href=&#34;https://twitter.com/Chealion/status/1304829288907067392&#34;&gt;https://twitter.com/Chealion/status/1304829288907067392&lt;/a&gt;&lt;/p&gt;&#xA;&#xA;&#xA;&#xA;  &lt;blockquote&gt;&#xA;    &lt;p&gt;&lt;del&gt;&lt;a href=&#34;https://twitter.com/bastardspod&#34;&gt;@bastardspod&lt;/a&gt;&lt;/del&gt;’s episode on the history behind American policing gives a ton of clarity on many systemic undercurrents.&lt;/p&gt;&#xA;&#xA;  &lt;/blockquote&gt;&#xA;&#xA;&lt;p&gt;32:30 - “One of the most popular methods use today even, to justify the violence of the police is the supposed criminality or deviance of the people that the police are victimizing. It’s interesting to me that you can draw a direct line between the delegated vigilantism that started in the 1800s and the right wing reaction to the murder of Trayvon Martin” (Batman references not quoted because I’m too lazy to transcribe it completely)&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;behind-the-bastards---how-the-first-police-went-from-gangsters-to-an-army-for-the-rich-1&#34;&gt;Behind the Bastards - How The First Police Went From Gangsters, To An Army For The Rich&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+4cUNNo914&#34;&gt;https://overcast.fm/+4cUNNo914&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://omny.fm/shows/behind-the-bastards/how-the-first-police-went-from-gangsters-to-an-arm&#34;&gt;https://omny.fm/shows/behind-the-bastards/how-the-first-police-went-from-gangsters-to-an-arm&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #behind the bastards# --&gt;&#xA;&lt;!-- {BearID:59C25983-98CB-4745-BB15-CA62C34ACDDF-28016-00002D980C85220C} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Behind the Bastards - Slavery, Mass Murder and the Birth of American Policing</title>
      <link>https://mcjones.ca/docs/behind-the-bastards---slavery-mass-murder-and-the-birth-of-american-policing/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:11 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/behind-the-bastards---slavery-mass-murder-and-the-birth-of-american-policing/</guid>
      <description>&lt;h1 id=&#34;behind-the-bastards---slavery-mass-murder-and-the-birth-of-american-policing&#34;&gt;Behind the Bastards - Slavery, Mass Murder and the Birth of American Policing&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;behind-the-bastards---slavery-mass-murder-and-the-birth-of-american-policing-1&#34;&gt;Behind the Bastards - Slavery, Mass Murder and the Birth of American Policing&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+4cUOXx7h4&#34;&gt;https://overcast.fm/+4cUOXx7h4&lt;/a&gt;&#xA;&lt;a href=&#34;https://omny.fm/shows/behind-the-bastards/slavery-mass-murder-and-the-birth-of-american-poli&#34;&gt;https://omny.fm/shows/behind-the-bastards/slavery-mass-murder-and-the-birth-of-american-poli&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #behind the bastards# --&gt;&#xA;&lt;!-- {BearID:0CDA317D-AC6A-4DC7-B79A-E5B0A6F29DDD-28016-00002D980CB31068} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>It Could Happen Here - An Interview with Author Cory Doctorow</title>
      <link>https://mcjones.ca/docs/it-could-happen-here---an-interview-with-author-cory-doctorow/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:11 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/it-could-happen-here---an-interview-with-author-cory-doctorow/</guid>
      <description>&lt;h1 id=&#34;it-could-happen-here---an-interview-with-author-cory-doctorow&#34;&gt;It Could Happen Here - An Interview with Author Cory Doctorow&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;it-could-happen-here---an-interview-with-author-cory-doctorow-1&#34;&gt;It Could Happen Here - An Interview with Author Cory Doctorow&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+4c0KaCCJM&#34;&gt;https://overcast.fm/+4c0KaCCJM&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://omny.fm/shows/it-could-happen-here/an-interview-with-author-cory-doctorow&#34;&gt;https://omny.fm/shows/it-could-happen-here/an-interview-with-author-cory-doctorow&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #It Could Happen Here# --&gt;&#xA;&lt;!-- {BearID:2E468388-C6FD-4723-AFB1-991D1E61AA42-28016-00002D980D6ACF74} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>It Could Happen Here - Canadian &#39;Freedom Convoy&#39;: Origins of the Occupation</title>
      <link>https://mcjones.ca/docs/it-could-happen-here---canadian-freedom-convoy--origins-of-the-occupation/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:11 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/it-could-happen-here---canadian-freedom-convoy--origins-of-the-occupation/</guid>
      <description>&lt;h1 id=&#34;it-could-happen-here---canadian-freedom-convoy-origins-of-the-occupation&#34;&gt;It Could Happen Here - Canadian &amp;lsquo;Freedom Convoy&amp;rsquo;: Origins of the Occupation&lt;/h1&gt;&#xA;&lt;p&gt;Two parter with an excellent deep dive into who and how this came to happen.&lt;/p&gt;&#xA;&lt;p&gt;It goes along very well with the previous two parter from Oct. 2021 about Canadian Facism: Canadian Facism Eh?&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;it-could-happen-here---canadian-freedom-convoy---origins-of-the-occupation&#34;&gt;It Could Happen Here - Canadian ‘Freedom Convoy’ - Origins of the Occupation&lt;/h6&gt;&#xA;&lt;p&gt;Part 1:&#xA;&lt;a href=&#34;https://overcast.fm/+4c0JVGkis&#34;&gt;https://overcast.fm/+4c0JVGkis&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://omny.fm/shows/it-could-happen-here/canadian-freedom-convoy-part-1-origins-of-the-occu&#34;&gt;https://omny.fm/shows/it-could-happen-here/canadian-freedom-convoy-part-1-origins-of-the-occu&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Part 2:&#xA;&lt;a href=&#34;https://overcast.fm/+4c0KIh9mo&#34;&gt;https://overcast.fm/+4c0KIh9mo&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://omny.fm/shows/it-could-happen-here/canadian-freedom-convoy-part-2-border-blockades-po&#34;&gt;https://omny.fm/shows/it-could-happen-here/canadian-freedom-convoy-part-2-border-blockades-po&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #It Could Happen Here# --&gt;&#xA;&lt;!-- {BearID:0DDDED7B-A95A-450B-91D9-4F427439F0D7-28016-00002D980D449D2C} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>It Could Happen Here - Neoliberalism Part 4: This is What Democracy Looks Like</title>
      <link>https://mcjones.ca/docs/it-could-happen-here---neoliberalism-part-4--this-is-what-democracy-looks-like/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:11 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/it-could-happen-here---neoliberalism-part-4--this-is-what-democracy-looks-like/</guid>
      <description>&lt;h1 id=&#34;it-could-happen-here---neoliberalism-part-4-this-is-what-democracy-looks-like&#34;&gt;It Could Happen Here - Neoliberalism Part 4: This is What Democracy Looks Like&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;it-could-happen-here---neoliberalism-part-4-this-is-what-democracy-looks-like-1&#34;&gt;It Could Happen Here - Neoliberalism Part 4: This is What Democracy Looks Like&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+4c0JDHIPQ&#34;&gt;https://overcast.fm/+4c0JDHIPQ&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://omny.fm/shows/it-could-happen-here/neoliberalism-part-4-this-is-what-democracy-looks&#34;&gt;https://omny.fm/shows/it-could-happen-here/neoliberalism-part-4-this-is-what-democracy-looks&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #It Could Happen Here# --&gt;&#xA;&lt;!-- {BearID:6DCBDAF5-D2CA-4F18-BD64-AC7B4E14A9C9-28016-00002D980D99BE12} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>It Could Happen Here - The War on Trans People: Part 1, Evangelicals &amp; Gay Marriage</title>
      <link>https://mcjones.ca/docs/it-could-happen-here---the-war-on-trans-people--part-1-evangelicals--gay-marriage/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:11 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/it-could-happen-here---the-war-on-trans-people--part-1-evangelicals--gay-marriage/</guid>
      <description>&lt;h1 id=&#34;it-could-happen-here---the-war-on-trans-people-part-1-evangelicals--gay-marriage&#34;&gt;It Could Happen Here - The War on Trans People: Part 1, Evangelicals &amp;amp; Gay Marriage&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;it-could-happen-here---the-war-on-trans-people-part-1-evangelicals--gay-marriage-1&#34;&gt;It Could Happen Here - The War on Trans People: Part 1, Evangelicals &amp;amp; Gay Marriage&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+4c0LMQJj8&#34;&gt;https://overcast.fm/+4c0LMQJj8&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://omny.fm/shows/it-could-happen-here/the-war-on-trans-people-part-1-evangelicals-gay-ma&#34;&gt;https://omny.fm/shows/it-could-happen-here/the-war-on-trans-people-part-1-evangelicals-gay-ma&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #It Could Happen Here# --&gt;&#xA;&lt;!-- {BearID:B25ABF9B-838A-42D5-B0CF-74B947563CA8-28016-00002D980CE9F6AC} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Behind the Bastards - It Could Happen Here - Welcome to the Crumbles</title>
      <link>https://mcjones.ca/docs/behind-the-bastards---it-could-happen-here---welcome-to-the-crumbles/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:10 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/behind-the-bastards---it-could-happen-here---welcome-to-the-crumbles/</guid>
      <description>&lt;h1 id=&#34;behind-the-bastards---it-could-happen-here---welcome-to-the-crumbles&#34;&gt;Behind the Bastards - It Could Happen Here - Welcome to the Crumbles&lt;/h1&gt;&#xA;&lt;p&gt;Clip lost to Twitter post Musk: &lt;a href=&#34;https://twitter.com/Chealion/status/1455213404046594050&#34;&gt;https://twitter.com/Chealion/status/1455213404046594050&lt;/a&gt;&lt;/p&gt;&#xA;&#xA;&#xA;&#xA;  &lt;blockquote&gt;&#xA;    &lt;p&gt;TIL of the term “weaponized unreality” to describe what weaponized misinformation fosters and creates. A pretty dark, yet inspiring episode of &lt;del&gt;&lt;a href=&#34;https://twitter.com/bastardspod&#34;&gt;@bastardspod&lt;/a&gt;&lt;/del&gt; covering climate change and mutual aid&lt;/p&gt;&#xA;&#xA;  &lt;/blockquote&gt;&#xA;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;behind-the-bastards---it-could-happen-here-season-2-episode-1-welcome-to-the-crumbles&#34;&gt;Behind the Bastards - It Could Happen Here: Season 2: Episode 1: Welcome to the Crumbles&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+4cUM6tjqc&#34;&gt;https://overcast.fm/+4cUM6tjqc&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://omny.fm/shows/behind-the-bastards/it-could-happen-here-season-2-episode-1-welcome-to&#34;&gt;https://omny.fm/shows/behind-the-bastards/it-could-happen-here-season-2-episode-1-welcome-to&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #behind the bastards# --&gt;&#xA;&lt;!-- {BearID:95AEAAB5-7C07-4780-B337-F1AD54B91A22-28016-00002D980BD0D338} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Behind the Bastards - Part Two: How Nice, Normal People Made The Holocaust Possible</title>
      <link>https://mcjones.ca/docs/behind-the-bastards---part-two--how-nice-normal-people-made-the-holocaust-possible/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:10 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/behind-the-bastards---part-two--how-nice-normal-people-made-the-holocaust-possible/</guid>
      <description>&lt;h1 id=&#34;behind-the-bastards---part-two-how-nice-normal-people-made-the-holocaust-possible&#34;&gt;Behind the Bastards - Part Two: How Nice, Normal People Made The Holocaust Possible&lt;/h1&gt;&#xA;&lt;p&gt;Clip lost to Twitter post Musk: &lt;a href=&#34;https://twitter.com/Chealion/status/1340763448884379648&#34;&gt;https://twitter.com/Chealion/status/1340763448884379648&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;62:43 - “It is not the fascist’s decision to let the fascict’s win. They don’t make the final call. We do. They only win if we consent to their victory. As millions of decent people consented to the victory of the Nazis.”&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;behind-the-bastards---part-two-how-nice-normal-people-made-the-holocaust-possible-1&#34;&gt;Behind the Bastards - Part Two: How Nice, Normal People Made The Holocaust Possible&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+4cUMXyTYg&#34;&gt;https://overcast.fm/+4cUMXyTYg&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://omny.fm/shows/behind-the-bastards/part-two-how-nice-normal-people-made-the-holocaust&#34;&gt;https://omny.fm/shows/behind-the-bastards/part-two-how-nice-normal-people-made-the-holocaust&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #behind the bastards# --&gt;&#xA;&lt;!-- {BearID:F3914867-62B5-4A22-8B05-37896D7A2CBD-28016-00002D980C273A9B} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Behind the Bastards - The Birth of the Manosphere</title>
      <link>https://mcjones.ca/docs/behind-the-bastards---the-birth-of-the-manosphere/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:10 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/behind-the-bastards---the-birth-of-the-manosphere/</guid>
      <description>&lt;h1 id=&#34;behind-the-bastards---the-birth-of-the-manosphere&#34;&gt;Behind the Bastards - The Birth of the Manosphere&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;behind-the-bastards---part-one-the-birth-of-the-manosphere&#34;&gt;Behind the Bastards - Part One: The Birth of the Manosphere&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+4cUOFFPvc&#34;&gt;https://overcast.fm/+4cUOFFPvc&lt;/a&gt;&#xA;&lt;a href=&#34;https://omny.fm/shows/behind-the-bastards/part-one-the-birth-of-the-manosphere&#34;&gt;https://omny.fm/shows/behind-the-bastards/part-one-the-birth-of-the-manosphere&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #behind the bastards# --&gt;&#xA;&lt;!-- {BearID:B3F963B0-894E-486F-880C-435D0C16F34E-28016-00002D980BFED8AD} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Behind the Bastards - The Ivermectin Episodes</title>
      <link>https://mcjones.ca/docs/behind-the-bastards---the-ivermectin-episodes/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:10 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/behind-the-bastards---the-ivermectin-episodes/</guid>
      <description>&lt;h1 id=&#34;behind-the-bastards---the-ivermectin-episodes&#34;&gt;Behind the Bastards - The Ivermectin Episodes&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;behind-the-bastards---part-one-the-ivermectin-episode&#34;&gt;Behind the Bastards - Part One: The Ivermectin Episode&lt;/h6&gt;&#xA;&lt;p&gt;Part 1:&lt;br&gt;&#xA;&lt;a href=&#34;https://overcast.fm/+4cUPQRti4&#34;&gt;https://overcast.fm/+4cUPQRti4&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://omny.fm/shows/behind-the-bastards/part-one-the-ivermectin-episode&#34;&gt;https://omny.fm/shows/behind-the-bastards/part-one-the-ivermectin-episode&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Part 2:&#xA;&lt;a href=&#34;https://overcast.fm/+4cUPg5F6w&#34;&gt;https://overcast.fm/+4cUPg5F6w&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://omny.fm/shows/behind-the-bastards/part-two-the-ivermectin-episode&#34;&gt;https://omny.fm/shows/behind-the-bastards/part-two-the-ivermectin-episode&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #behind the bastards# --&gt;&#xA;&lt;!-- {BearID:63E94585-5DAF-418A-987B-894FEDECA0B8-28016-00002D980BA747A5} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Behind the Bastards - The Nesara Cult and Qanon&#39;s Origins</title>
      <link>https://mcjones.ca/docs/behind-the-bastards---the-nesara-cult-and-qanons-origins/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:10 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/behind-the-bastards---the-nesara-cult-and-qanons-origins/</guid>
      <description>&lt;h1 id=&#34;behind-the-bastards---the-nesara-cult-and-qanons-origins&#34;&gt;Behind the Bastards - The Nesara Cult and Qanon&amp;rsquo;s Origins&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded but holy crap. Everything is a remix can’t touch the reuse and grift in conspiracy theories.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;behind-the-bastards---the-nesara-cult-and-qanons-origins-1&#34;&gt;Behind the Bastards - The Nesara Cult and Qanon’s Origins&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+4cUM3hLiw&#34;&gt;https://overcast.fm/+4cUM3hLiw&lt;/a&gt;&#xA;&lt;a href=&#34;https://omny.fm/shows/behind-the-bastards/the-nesara-cult-and-qanons-origins&#34;&gt;https://omny.fm/shows/behind-the-bastards/the-nesara-cult-and-qanons-origins&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #behind the bastards# --&gt;&#xA;&lt;!-- {BearID:4949E19F-1DC4-45E0-A4A2-636A42292539-28016-00002D980B46519C} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>LeVar Burton Reads - A Fable with Slips of White Paper Spilling from the Pockets by Kevin Brockmeier</title>
      <link>https://mcjones.ca/docs/levar-burton-reads---a-fable-with-slips-of-white-paper-spilling-from-the-pockets-by-kevin-brockmeier/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:09 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/levar-burton-reads---a-fable-with-slips-of-white-paper-spilling-from-the-pockets-by-kevin-brockmeier/</guid>
      <description>&lt;h1 id=&#34;levar-burton-reads---a-fable-with-slips-of-white-paper-spilling-from-the-pockets-by-kevin-brockmeier&#34;&gt;LeVar Burton Reads - A Fable with Slips of White Paper Spilling from the Pockets by Kevin Brockmeier&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;levar-burton-reads---a-fable-with-slips-of-white-paper-spilling-from-the-pockets-by-kevin-brockmeier-1&#34;&gt;LeVar Burton Reads - “A Fable with Slips of White Paper Spilling from the Pockets” by Kevin Brockmeier&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+1zcJLC6nQ&#34;&gt;https://overcast.fm/+1zcJLC6nQ&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.stitcher.com/podcast/stitcher/levar-burton-reads&#34;&gt;https://www.stitcher.com/podcast/stitcher/levar-burton-reads&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #LeVar Burton Reads# --&gt;&#xA;&lt;!-- {BearID:BEACFB8B-D3D2-476F-9CB9-5C13CBDBF625-28016-00002D9809FA8DE6} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>LeVar Burton Reads - Furry Night by Joan Aiken</title>
      <link>https://mcjones.ca/docs/levar-burton-reads---furry-night-by-joan-aiken/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:09 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/levar-burton-reads---furry-night-by-joan-aiken/</guid>
      <description>&lt;h1 id=&#34;levar-burton-reads---furry-night-by-joan-aiken&#34;&gt;LeVar Burton Reads - Furry Night by Joan Aiken&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;levar-burton-reads---furry-night-by-joan-aiken-1&#34;&gt;LeVar Burton Reads - “Furry Night” by Joan Aiken&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+1zcJ6DfyQ&#34;&gt;https://overcast.fm/+1zcJ6DfyQ&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.stitcher.com/podcast/stitcher/levar-burton-reads&#34;&gt;https://www.stitcher.com/podcast/stitcher/levar-burton-reads&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #LeVar Burton Reads# --&gt;&#xA;&lt;!-- {BearID:6D472DC6-5673-46FF-8A2F-DA15589FBFA1-28016-00002D980A301271} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>LeVar Burton Reads - LIVE in Chicago: The Winds of Harmattan by Nnedi Okorafor</title>
      <link>https://mcjones.ca/docs/levar-burton-reads---live-in-chicago--the-winds-of-harmattan-by-nnedi-okorafor/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:09 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/levar-burton-reads---live-in-chicago--the-winds-of-harmattan-by-nnedi-okorafor/</guid>
      <description>&lt;h1 id=&#34;levar-burton-reads---live-in-chicago-the-winds-of-harmattan-by-nnedi-okorafor&#34;&gt;LeVar Burton Reads - LIVE in Chicago: The Winds of Harmattan by Nnedi Okorafor&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;levar-burton-reads---live-in-chicago-the-winds-of-harmattan-by-nnedi-okorafor-1&#34;&gt;LeVar Burton Reads - LIVE! in Chicago: “The Winds of Harmattan” by Nnedi Okorafor&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+1zcIBDcmo&#34;&gt;https://overcast.fm/+1zcIBDcmo&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.stitcher.com/podcast/stitcher/levar-burton-reads&#34;&gt;https://www.stitcher.com/podcast/stitcher/levar-burton-reads&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #LeVar Burton Reads# --&gt;&#xA;&lt;!-- {BearID:2FE0AB33-07DA-4B0B-A483-B2CF7282B223-28016-00002D9809DD387A} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>LeVar Burton Reads - LIVE in Portland: The Fliers of Gy by Ursula K. Le Guin</title>
      <link>https://mcjones.ca/docs/levar-burton-reads---live-in-portland--the-fliers-of-gy-by-ursula-k.-le-guin/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:09 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/levar-burton-reads---live-in-portland--the-fliers-of-gy-by-ursula-k.-le-guin/</guid>
      <description>&lt;h1 id=&#34;levar-burton-reads---live-in-portland-the-fliers-of-gy-by-ursula-k-le-guin&#34;&gt;LeVar Burton Reads - LIVE in Portland: The Fliers of Gy by Ursula K. Le Guin&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;levar-burton-reads---live-in-portland-the-fliers-of-gy-by-ursula-k-le-guin-1&#34;&gt;LeVar Burton Reads - LIVE! in Portland: “The Fliers of Gy” by Ursula K. Le Guin&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+1zcL6KIEY&#34;&gt;https://overcast.fm/+1zcL6KIEY&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.stitcher.com/podcast/stitcher/levar-burton-reads&#34;&gt;https://www.stitcher.com/podcast/stitcher/levar-burton-reads&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #LeVar Burton Reads# --&gt;&#xA;&lt;!-- {BearID:8A769829-B86A-4595-A76C-623041BD0888-28016-00002D98099ED5C3} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>LeVar Burton Reads - The Paper Menagerie by Ken Liu</title>
      <link>https://mcjones.ca/docs/levar-burton-reads---the-paper-menagerie-by-ken-liu/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:09 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/levar-burton-reads---the-paper-menagerie-by-ken-liu/</guid>
      <description>&lt;h1 id=&#34;levar-burton-reads---the-paper-menagerie-by-ken-liu&#34;&gt;LeVar Burton Reads - The Paper Menagerie by Ken Liu&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;levar-burton-reads---the-paper-menagerie-by-ken-liu-1&#34;&gt;LeVar Burton Reads - “The Paper Menagerie” by Ken Liu&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+1zcJS-LY0&#34;&gt;https://overcast.fm/+1zcJS-LY0&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.stitcher.com/podcast/stitcher/levar-burton-reads&#34;&gt;https://www.stitcher.com/podcast/stitcher/levar-burton-reads&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #LeVar Burton Reads# --&gt;&#xA;&lt;!-- {BearID:ACF4C439-EA05-4429-AF67-F80025F2E194-28016-00002D980A54FE69} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>LeVar Burton Reads - Welcome to Your Authentic Indian Experience TM by Rebecca Roanhorse</title>
      <link>https://mcjones.ca/docs/levar-burton-reads---welcome-to-your-authentic-indian-experience-tm-by-rebecca-roanhorse/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:09 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/levar-burton-reads---welcome-to-your-authentic-indian-experience-tm-by-rebecca-roanhorse/</guid>
      <description>&lt;h1 id=&#34;levar-burton-reads---welcome-to-your-authentic-indian-experience-tm-by-rebecca-roanhorse&#34;&gt;LeVar Burton Reads - Welcome to Your Authentic Indian Experience TM by Rebecca Roanhorse&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;levar-burton-reads---welcome-to-your-authentic-indian-experience-tm-by-rebecca-roanhorse-1&#34;&gt;LeVar Burton Reads - “Welcome to Your Authentic Indian Experience TM” by Rebecca Roanhorse&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+1zcJ8_mH8&#34;&gt;https://overcast.fm/+1zcJ8_mH8&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.stitcher.com/podcast/stitcher/levar-burton-reads&#34;&gt;https://www.stitcher.com/podcast/stitcher/levar-burton-reads&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #LeVar Burton Reads# --&gt;&#xA;&lt;!-- {BearID:21F682AA-D4FA-490B-BCBC-C8168B44B49B-28016-00002D980988A915} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Hidden Brain - In The Heat Of The Moment</title>
      <link>https://mcjones.ca/docs/hidden-brain---in-the-heat-of-the-moment/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:08 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/hidden-brain---in-the-heat-of-the-moment/</guid>
      <description>&lt;h1 id=&#34;hidden-brain---in-the-heat-of-the-moment&#34;&gt;Hidden Brain - In The Heat Of The Moment&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;hidden-brain---in-the-heat-of-the-moment-1&#34;&gt;Hidden Brain - In The Heat Of The Moment&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+1WhMsTIDQ&#34;&gt;https://overcast.fm/+1WhMsTIDQ&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://hiddenbrain.org/podcast/in-the-heat-of-the-moment/&#34;&gt;https://hiddenbrain.org/podcast/in-the-heat-of-the-moment/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #hidden brain# --&gt;&#xA;&lt;!-- {BearID:71F5C514-40F6-4FF9-AE2C-B67A5DA04951-28016-00002D98082A6742} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Hidden Brain - Screaming Into The Void</title>
      <link>https://mcjones.ca/docs/hidden-brain---screaming-into-the-void/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:08 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/hidden-brain---screaming-into-the-void/</guid>
      <description>&lt;h1 id=&#34;hidden-brain---screaming-into-the-void&#34;&gt;Hidden Brain - Screaming Into The Void&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;hidden-brain---screaming-into-the-void-1&#34;&gt;Hidden Brain - Screaming Into The Void&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+1WhMKF9pU&#34;&gt;https://overcast.fm/+1WhMKF9pU&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://hiddenbrain.org/podcast/screaming-into-the-void/&#34;&gt;https://hiddenbrain.org/podcast/screaming-into-the-void/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #hidden brain# --&gt;&#xA;&lt;!-- {BearID:A68F8FAA-AB44-4595-84AB-2FA71D6D1387-28016-00002D98085B3580} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>LeVar Burton Reads - LIVE in Boston: Mono No Aware by Ken Liu</title>
      <link>https://mcjones.ca/docs/levar-burton-reads---live-in-boston--mono-no-aware-by-ken-liu/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:08 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/levar-burton-reads---live-in-boston--mono-no-aware-by-ken-liu/</guid>
      <description>&lt;h1 id=&#34;levar-burton-reads---live-in-boston-mono-no-aware-by-ken-liu&#34;&gt;LeVar Burton Reads - LIVE in Boston: Mono No Aware by Ken Liu&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;levar-burton-reads---live-in-boston-mono-no-aware-by-ken-liu-1&#34;&gt;LeVar Burton Reads - LIVE! in Boston: “Mono No Aware” by Ken Liu&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+1zcI3_YwI&#34;&gt;https://overcast.fm/+1zcI3_YwI&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.stitcher.com/podcast/stitcher/levar-burton-reads&#34;&gt;https://www.stitcher.com/podcast/stitcher/levar-burton-reads&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #LeVar Burton Reads# --&gt;&#xA;&lt;!-- {BearID:255ECEB8-4675-48FD-A683-0D1128B8C264-28016-00002D9808EECAF4} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>LeVar Burton Reads - LIVE in Brooklyn: Playing Nice with God&#39;s Bowling Ball by N.K. Jemisin</title>
      <link>https://mcjones.ca/docs/levar-burton-reads---live-in-brooklyn--playing-nice-with-gods-bowling-ball-by-n.k.-jemisin/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:08 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/levar-burton-reads---live-in-brooklyn--playing-nice-with-gods-bowling-ball-by-n.k.-jemisin/</guid>
      <description>&lt;h1 id=&#34;levar-burton-reads---live-in-brooklyn-playing-nice-with-gods-bowling-ball-by-nk-jemisin&#34;&gt;LeVar Burton Reads - LIVE in Brooklyn: Playing Nice with God&amp;rsquo;s Bowling Ball by N.K. Jemisin&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;levar-burton-reads---live-in-brooklyn-playing-nice-with-gods-bowling-ball-by-nk-jemisin-1&#34;&gt;LeVar Burton Reads - LIVE! in Brooklyn: “Playing Nice with God’s Bowling Ball” by N.K. Jemisin&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+1zcK85ERE&#34;&gt;https://overcast.fm/+1zcK85ERE&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.stitcher.com/podcast/stitcher/levar-burton-reads&#34;&gt;https://www.stitcher.com/podcast/stitcher/levar-burton-reads&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #LeVar Burton Reads# --&gt;&#xA;&lt;!-- {BearID:9263A46C-71BB-491A-A71B-0025A8B92F0C-28016-00002D980921994C} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>LeVar Burton Reads - Room for Rent by Richie Narvaez</title>
      <link>https://mcjones.ca/docs/levar-burton-reads---room-for-rent-by-richie-narvaez/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:08 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/levar-burton-reads---room-for-rent-by-richie-narvaez/</guid>
      <description>&lt;h1 id=&#34;levar-burton-reads---room-for-rent-by-richie-narvaez&#34;&gt;LeVar Burton Reads - Room for Rent by Richie Narvaez&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;levar-burton-reads---room-for-rent-by-richie-narvaez-1&#34;&gt;LeVar Burton Reads - “Room for Rent” by Richie Narvaez&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+1zcKjpkE0&#34;&gt;https://overcast.fm/+1zcKjpkE0&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.stitcher.com/podcast/stitcher/levar-burton-reads&#34;&gt;https://www.stitcher.com/podcast/stitcher/levar-burton-reads&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #LeVar Burton Reads# --&gt;&#xA;&lt;!-- {BearID:FADB8431-A354-41B9-A436-30B916C77A33-28016-00002D9808BC2089} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>LeVar Burton Reads - Silver Door Diner by Bishop Garrison</title>
      <link>https://mcjones.ca/docs/levar-burton-reads---silver-door-diner-by-bishop-garrison/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:08 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/levar-burton-reads---silver-door-diner-by-bishop-garrison/</guid>
      <description>&lt;h1 id=&#34;levar-burton-reads---silver-door-diner-by-bishop-garrison&#34;&gt;LeVar Burton Reads - Silver Door Diner by Bishop Garrison&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;levar-burton-reads---silver-door-diner-by-bishop-garrison-1&#34;&gt;LeVar Burton Reads - “Silver Door Diner” by Bishop Garrison&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+1zcLLQ1Wk&#34;&gt;https://overcast.fm/+1zcLLQ1Wk&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.stitcher.com/podcast/stitcher/levar-burton-reads&#34;&gt;https://www.stitcher.com/podcast/stitcher/levar-burton-reads&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #LeVar Burton Reads# --&gt;&#xA;&lt;!-- {BearID:CC5B0FEE-A116-4B06-A975-E11832586509-28016-00002D9808896629} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>LeVar Burton Reads - Singing on a Star by Ellen Klages</title>
      <link>https://mcjones.ca/docs/levar-burton-reads---singing-on-a-star-by-ellen-klages/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:08 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/levar-burton-reads---singing-on-a-star-by-ellen-klages/</guid>
      <description>&lt;h1 id=&#34;levar-burton-reads---singing-on-a-star-by-ellen-klages&#34;&gt;LeVar Burton Reads - Singing on a Star by Ellen Klages&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;levar-burton-reads---singing-on-a-star-by-ellen-klages-1&#34;&gt;LeVar Burton Reads - “Singing on a Star” by Ellen Klages&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+1zcLk6ZeQ&#34;&gt;https://overcast.fm/+1zcLk6ZeQ&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.stitcher.com/podcast/stitcher/levar-burton-reads&#34;&gt;https://www.stitcher.com/podcast/stitcher/levar-burton-reads&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #LeVar Burton Reads# --&gt;&#xA;&lt;!-- {BearID:B3B60FEB-5E91-4136-9470-A5EAB1129642-28016-00002D98095594DC} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Hidden Brain - Changing Behavior, Not Beliefs</title>
      <link>https://mcjones.ca/docs/hidden-brain---changing-behavior-not-beliefs/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:07 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/hidden-brain---changing-behavior-not-beliefs/</guid>
      <description>&lt;h1 id=&#34;hidden-brain---changing-behavior-not-beliefs&#34;&gt;Hidden Brain - Changing Behavior, Not Beliefs&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;hidden-brain---changing-behavior-not-beliefs-1&#34;&gt;Hidden Brain - Changing Behavior, Not Beliefs&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+1WhPrXgoI&#34;&gt;https://overcast.fm/+1WhPrXgoI&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://hiddenbrain.org/podcast/changing-behavior-not-beliefs/&#34;&gt;https://hiddenbrain.org/podcast/changing-behavior-not-beliefs/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #hidden brain# --&gt;&#xA;&lt;!-- {BearID:D46F1A78-6A10-42D0-BC96-2CB0AA5491DB-28016-00002D98073D2CCA} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Hidden Brain - Passion Isn&#39;t Enough</title>
      <link>https://mcjones.ca/docs/hidden-brain---passion-isnt-enough/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:07 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/hidden-brain---passion-isnt-enough/</guid>
      <description>&lt;h1 id=&#34;hidden-brain---passion-isnt-enough&#34;&gt;Hidden Brain - Passion Isn&amp;rsquo;t Enough&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;hidden-brain---passion-isnt-enough-1&#34;&gt;Hidden Brain - Passion Isn’t Enough&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+1WhPtIxh0&#34;&gt;https://overcast.fm/+1WhPtIxh0&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://hiddenbrain.org/podcast/passion-isnt-enough/&#34;&gt;https://hiddenbrain.org/podcast/passion-isnt-enough/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #hidden brain# --&gt;&#xA;&lt;!-- {BearID:2E5ACECB-2AD3-4C09-9BB4-625AF748E684-28016-00002D980805A71E} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Hidden Brain - Playing Favorites</title>
      <link>https://mcjones.ca/docs/hidden-brain---playing-favorites/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:07 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/hidden-brain---playing-favorites/</guid>
      <description>&lt;h1 id=&#34;hidden-brain---playing-favorites&#34;&gt;Hidden Brain - Playing Favorites&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;hidden-brain---playing-favorites-1&#34;&gt;Hidden Brain - Playing Favorites&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+1WhOhOIgI&#34;&gt;https://overcast.fm/+1WhOhOIgI&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://hiddenbrain.org/podcast/playing-favorites/&#34;&gt;https://hiddenbrain.org/podcast/playing-favorites/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #hidden brain# --&gt;&#xA;&lt;!-- {BearID:38BDC9E9-8AD7-4B3F-8CF5-68AB7B146FF3-28016-00002D9807C768DE} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Hidden Brain - This is Your Brain on Ads</title>
      <link>https://mcjones.ca/docs/hidden-brain---this-is-your-brain-on-ads/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:07 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/hidden-brain---this-is-your-brain-on-ads/</guid>
      <description>&lt;h1 id=&#34;hidden-brain---this-is-your-brain-on-ads&#34;&gt;Hidden Brain - This is Your Brain on Ads&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;hidden-brain---this-is-your-brain-on-ads-1&#34;&gt;Hidden Brain - This is Your Brain on Ads&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+1WhNq-WsI&#34;&gt;https://overcast.fm/+1WhNq-WsI&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://hiddenbrain.org/podcast/this-is-your-brain-on-ads/&#34;&gt;https://hiddenbrain.org/podcast/this-is-your-brain-on-ads/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #hidden brain# --&gt;&#xA;&lt;!-- {BearID:56CE64AB-314C-43F7-A9E5-718DCBD1DB6B-28016-00002D98076B68C7} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>O11ycast - Ep. 21 - Learning Systems with Jessica Kerr</title>
      <link>https://mcjones.ca/docs/o11ycast---ep.-21---learning-systems-with-jessica-kerr/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:07 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/o11ycast---ep.-21---learning-systems-with-jessica-kerr/</guid>
      <description>&lt;h1 id=&#34;o11ycast---ep-21---learning-systems-with-jessica-kerr&#34;&gt;O11ycast - Ep. 21 - Learning Systems with Jessica Kerr&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded at the time&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;o11ycast---ep-21-learning-systems-with-jessica-kerr&#34;&gt;O11ycast - Ep. 21, Learning Systems with Jessica Kerr&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+0GHwWt_6A&#34;&gt;https://overcast.fm/+0GHwWt_6A&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.heavybit.com/library/podcasts/o11ycast/ep-21-learning-systems-with-jessica-kerr/&#34;&gt;https://www.heavybit.com/library/podcasts/o11ycast/ep-21-learning-systems-with-jessica-kerr/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #o11ycast --&gt;&#xA;&lt;!-- {BearID:F104A808-FCCC-4183-9116-16F1D1CB5E8A-28016-00002D98070EC518} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>O11ycast - Ep. 23 - Beyond Ops with Erwin van der Koogh of Linc</title>
      <link>https://mcjones.ca/docs/o11ycast---ep.-23---beyond-ops-with-erwin-van-der-koogh-of-linc/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:07 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/o11ycast---ep.-23---beyond-ops-with-erwin-van-der-koogh-of-linc/</guid>
      <description>&lt;h1 id=&#34;o11ycast---ep-23---beyond-ops-with-erwin-van-der-koogh-of-linc&#34;&gt;O11ycast - Ep. 23 - Beyond Ops with Erwin van der Koogh of Linc&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded at the time&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;o11ycast---ep-23-beyond-ops-with-erwin-van-der-koogh-of-linc&#34;&gt;O11ycast - Ep. 23, Beyond Ops with Erwin van der Koogh of Linc&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+0GHwyUybw&#34;&gt;https://overcast.fm/+0GHwyUybw&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.heavybit.com/library/podcasts/o11ycast/ep-23-beyond-ops-with-erwin-van-der-koogh-of-linc/&#34;&gt;https://www.heavybit.com/library/podcasts/o11ycast/ep-23-beyond-ops-with-erwin-van-der-koogh-of-linc/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #o11ycast --&gt;&#xA;&lt;!-- {BearID:BDF36D95-4730-4074-BDC7-89F86ED9107C-28016-00002D9806E00F29} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>O11ycast - Ep. 24 - Beyond Code with Heidi Waterhouse of LaunchDarkly</title>
      <link>https://mcjones.ca/docs/o11ycast---ep.-24---beyond-code-with-heidi-waterhouse-of-launchdarkly/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:07 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/o11ycast---ep.-24---beyond-code-with-heidi-waterhouse-of-launchdarkly/</guid>
      <description>&lt;h1 id=&#34;o11ycast---ep-24---beyond-code-with-heidi-waterhouse-of-launchdarkly&#34;&gt;O11ycast - Ep. 24 - Beyond Code with Heidi Waterhouse of LaunchDarkly&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded at the time&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;o11ycast---ep-24-beyond-code-with-heidi-waterhouse-of-launchdarkly&#34;&gt;O11ycast - Ep. 24, Beyond Code with Heidi Waterhouse of LaunchDarkly&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+0GHzXnQJw&#34;&gt;https://overcast.fm/+0GHzXnQJw&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.heavybit.com/library/podcasts/o11ycast/ep-24-beyond-code-with-heidi-waterhouse-of-launchdarkly/&#34;&gt;https://www.heavybit.com/library/podcasts/o11ycast/ep-24-beyond-code-with-heidi-waterhouse-of-launchdarkly/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #o11ycast --&gt;&#xA;&lt;!-- {BearID:6E518455-54E4-4942-A14A-4615C77158EE-28016-00002D9806B06C95} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>99% Invisible - Built to Burn</title>
      <link>https://mcjones.ca/docs/99-invisible---built-to-burn/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:06 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/99-invisible---built-to-burn/</guid>
      <description>&lt;h1 id=&#34;99-invisible---built-to-burn&#34;&gt;99% Invisible - Built to Burn&lt;/h1&gt;&#xA;&lt;p&gt;Incredibly timely when it was published and even more as we continue to get worse fire seasons.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;99-invisible---built-to-burn-1&#34;&gt;99% Invisible - Built to Burn&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+yIOxwE9h0&#34;&gt;https://overcast.fm/+yIOxwE9h0&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://99percentinvisible.org/episode/built-to-burn/&#34;&gt;https://99percentinvisible.org/episode/built-to-burn/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #99 percent invisible# --&gt;&#xA;&lt;!-- {BearID:CE0EDB9E-11E4-45BF-97B2-9B462CBDD84C-28016-00002D98059BA8F3} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>99% Invisible - It&#39;s Chinatown</title>
      <link>https://mcjones.ca/docs/99-invisible---its-chinatown/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:06 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/99-invisible---its-chinatown/</guid>
      <description>&lt;h1 id=&#34;99-invisible---its-chinatown&#34;&gt;99% Invisible - It&amp;rsquo;s Chinatown&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;99-invisible---its-chinatown-1&#34;&gt;99% Invisible - It’s Chinatown&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+yIOyCB9lI&#34;&gt;https://overcast.fm/+yIOyCB9lI&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://99percentinvisible.org/episode/its-chinatown/&#34;&gt;https://99percentinvisible.org/episode/its-chinatown/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #99 percent invisible# --&gt;&#xA;&lt;!-- {BearID:89E3B1FE-9E1A-4BC7-A4AC-E26B26040C5F-28016-00002D9805699C98} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>99% Invisible - Palaces for the People</title>
      <link>https://mcjones.ca/docs/99-invisible---palaces-for-the-people/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:06 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/99-invisible---palaces-for-the-people/</guid>
      <description>&lt;h1 id=&#34;99-invisible---palaces-for-the-people&#34;&gt;99% Invisible - Palaces for the People&lt;/h1&gt;&#xA;&lt;p&gt;Libraries are awesome. Also a call out to Calgary’s Central Library.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;99-invisible---346--palaces-for-the-people&#34;&gt;99% Invisible - 346- Palaces for the People&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+yIOyntbvg&#34;&gt;https://overcast.fm/+yIOyntbvg&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://99percentinvisible.org/episode/palaces-for-the-people/&#34;&gt;https://99percentinvisible.org/episode/palaces-for-the-people/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #99 percent invisible# --&gt;&#xA;&lt;!-- {BearID:A57F2493-1962-476B-8C50-3ED0123DA799-28016-00002D98053BB9AD} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>O11ycast - Ep. 25 - Reliability First with Amy Tobey of Blameless</title>
      <link>https://mcjones.ca/docs/o11ycast---ep.-25---reliability-first-with-amy-tobey-of-blameless/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:06 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/o11ycast---ep.-25---reliability-first-with-amy-tobey-of-blameless/</guid>
      <description>&lt;h1 id=&#34;o11ycast---ep-25---reliability-first-with-amy-tobey-of-blameless&#34;&gt;O11ycast - Ep. 25 - Reliability First with Amy Tobey of Blameless&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded at the time&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;o11ycast---ep-25-reliability-first-with-amy-tobey-of-blameless&#34;&gt;O11ycast - Ep. 25, Reliability First with Amy Tobey of Blameless&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+0GHzK6UbY&#34;&gt;https://overcast.fm/+0GHzK6UbY&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.heavybit.com/library/podcasts/o11ycast/ep-25-reliability-first-with-amy-tobey-of-blameless/&#34;&gt;https://www.heavybit.com/library/podcasts/o11ycast/ep-25-reliability-first-with-amy-tobey-of-blameless/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #o11ycast --&gt;&#xA;&lt;!-- {BearID:17D39D7D-D2C8-4EBC-AA3C-50664D02CC83-28016-00002D9806825346} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>O11ycast - Ep. 28 - People Problems with Austin Parker of Lightstep</title>
      <link>https://mcjones.ca/docs/o11ycast---ep.-28---people-problems-with-austin-parker-of-lightstep/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:06 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/o11ycast---ep.-28---people-problems-with-austin-parker-of-lightstep/</guid>
      <description>&lt;h1 id=&#34;o11ycast---ep-28---people-problems-with-austin-parker-of-lightstep&#34;&gt;O11ycast - Ep. 28 - People Problems with Austin Parker of Lightstep&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded at the time&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;o11ycast---ep-28-people-problems-with-austin-parker-of-lightstep&#34;&gt;O11ycast - Ep. 28, People Problems with Austin Parker of Lightstep&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+0GHxo0elE&#34;&gt;https://overcast.fm/+0GHxo0elE&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.heavybit.com/library/podcasts/o11ycast/ep-28-people-problems-with-austin-parker-of-lightstep/&#34;&gt;https://www.heavybit.com/library/podcasts/o11ycast/ep-28-people-problems-with-austin-parker-of-lightstep/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #o11ycast --&gt;&#xA;&lt;!-- {BearID:0A71E653-AB92-4D7B-898E-152C4C491830-28016-00002D9806549B1C} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>O11ycast - Ep. 30 - Harder Conversations with Beau Lyddon of Workday</title>
      <link>https://mcjones.ca/docs/o11ycast---ep.-30---harder-conversations-with-beau-lyddon-of-workday/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:06 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/o11ycast---ep.-30---harder-conversations-with-beau-lyddon-of-workday/</guid>
      <description>&lt;h1 id=&#34;o11ycast---ep-30---harder-conversations-with-beau-lyddon-of-workday&#34;&gt;O11ycast - Ep. 30 - Harder Conversations with Beau Lyddon of Workday&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded at the time&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;o11ycast---ep-30-harder-conversations-with-beau-lyddon-of-workday&#34;&gt;O11ycast - Ep. 30, Harder Conversations with Beau Lyddon of Workday&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+0GHyOtjLE&#34;&gt;https://overcast.fm/+0GHyOtjLE&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.heavybit.com/library/podcasts/o11ycast/ep-30-harder-conversations-with-beau-lyddon-of-workday/&#34;&gt;https://www.heavybit.com/library/podcasts/o11ycast/ep-30-harder-conversations-with-beau-lyddon-of-workday/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #o11ycast --&gt;&#xA;&lt;!-- {BearID:8B17D7B5-4616-487C-BD57-6725FEE02E0C-28016-00002D98062672FA} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>O11ycast - Ep. 33 - Information Accessibility with Katy Farmer of CircleCI</title>
      <link>https://mcjones.ca/docs/o11ycast---ep.-33---information-accessibility-with-katy-farmer-of-circleci/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:06 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/o11ycast---ep.-33---information-accessibility-with-katy-farmer-of-circleci/</guid>
      <description>&lt;h1 id=&#34;o11ycast---ep-33---information-accessibility-with-katy-farmer-of-circleci&#34;&gt;O11ycast - Ep. 33 - Information Accessibility with Katy Farmer of CircleCI&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded at the time&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;o11ycast---ep-33-information-accessibility-with-katy-farmer-of-circleci&#34;&gt;O11ycast - Ep. 33, Information Accessibility with Katy Farmer of CircleCI&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+0GHz3qTGY&#34;&gt;https://overcast.fm/+0GHz3qTGY&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.heavybit.com/library/podcasts/o11ycast/ep-33-information-accessibility-with-katy-farmer-of-circleci/&#34;&gt;https://www.heavybit.com/library/podcasts/o11ycast/ep-33-information-accessibility-with-katy-farmer-of-circleci/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #o11ycast --&gt;&#xA;&lt;!-- {BearID:2DA67573-C8E0-4D7C-9B55-8055C20D1A8A-28016-00002D9805F7D6D9} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>O11ycast - Ep. 48 - Mastering Migrations with Adriana Villela of Tucows</title>
      <link>https://mcjones.ca/docs/o11ycast---ep.-48---mastering-migrations-with-adriana-villela-of-tucows/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:06 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/o11ycast---ep.-48---mastering-migrations-with-adriana-villela-of-tucows/</guid>
      <description>&lt;h1 id=&#34;o11ycast---ep-48---mastering-migrations-with-adriana-villela-of-tucows&#34;&gt;O11ycast - Ep. 48 - Mastering Migrations with Adriana Villela of Tucows&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded at the time&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;o11ycast---ep-48-mastering-migrations-with-adriana-villela-of-tucows&#34;&gt;O11ycast - Ep. 48, Mastering Migrations with Adriana Villela of Tucows&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+0GHyxgVfQ&#34;&gt;https://overcast.fm/+0GHyxgVfQ&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.heavybit.com/library/podcasts/o11ycast/ep-48-mastering-migrations-with-adriana-villela-of-tucows/&#34;&gt;https://www.heavybit.com/library/podcasts/o11ycast/ep-48-mastering-migrations-with-adriana-villela-of-tucows/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #o11ycast --&gt;&#xA;&lt;!-- {BearID:D46FC4D1-4A4B-46A4-BB3D-3CBB8812A158-28016-00002D9805C96A13} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>99% Invisible - Invisible Women</title>
      <link>https://mcjones.ca/docs/99-invisible---invisible-women/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:05 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/99-invisible---invisible-women/</guid>
      <description>&lt;h1 id=&#34;99-invisible---invisible-women&#34;&gt;99% Invisible - Invisible Women&lt;/h1&gt;&#xA;&lt;p&gt;The episode looking at what happens when we start asking about how the other proverbial half of the population lives and focus services on the full list of tasks being done and not just commuting to and from work twice a day.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;99-invisible---invisible-women-1&#34;&gt;99% Invisible - Invisible Women&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+yIOy0BALA&#34;&gt;https://overcast.fm/+yIOy0BALA&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://99percentinvisible.org/episode/invisible-women/&#34;&gt;https://99percentinvisible.org/episode/invisible-women/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #99 percent invisible# --&gt;&#xA;&lt;!-- {BearID:1910CD07-084E-4BF3-A8E8-15C196B3D957-28016-00002D980483EF5F} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>99% Invisible - Life and Death in Singapore</title>
      <link>https://mcjones.ca/docs/99-invisible---life-and-death-in-singapore/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:05 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/99-invisible---life-and-death-in-singapore/</guid>
      <description>&lt;h1 id=&#34;99-invisible---life-and-death-in-singapore&#34;&gt;99% Invisible - Life and Death in Singapore&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;99-invisible---life-and-death-in-singapore-1&#34;&gt;99% Invisible - Life and Death in Singapore&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+yIOyi_Ksg&#34;&gt;https://overcast.fm/+yIOyi_Ksg&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://99percentinvisible.org/episode/singapore/&#34;&gt;https://99percentinvisible.org/episode/singapore/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #99 percent invisible# --&gt;&#xA;&lt;!-- {BearID:E7434C65-E23E-487C-9106-FFCBD037BB8E-28016-00002D9804B188A2} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>99% Invisible - Missing the Bus</title>
      <link>https://mcjones.ca/docs/99-invisible---missing-the-bus/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:05 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/99-invisible---missing-the-bus/</guid>
      <description>&lt;h1 id=&#34;99-invisible---missing-the-bus&#34;&gt;99% Invisible - Missing the Bus&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;99-invisible---missing-the-bus-1&#34;&gt;99% Invisible - Missing the Bus&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+yIOzDmP30&#34;&gt;https://overcast.fm/+yIOzDmP30&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://99percentinvisible.org/episode/missing-the-bus/&#34;&gt;https://99percentinvisible.org/episode/missing-the-bus/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #99 percent invisible# --&gt;&#xA;&lt;!-- {BearID:26FA87D1-2FC7-4DC4-9647-56051EE33E0E-28016-00002D9804560D94} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>99% Invisible - Policing the Open Road</title>
      <link>https://mcjones.ca/docs/99-invisible---policing-the-open-road/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:05 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/99-invisible---policing-the-open-road/</guid>
      <description>&lt;h1 id=&#34;99-invisible---policing-the-open-road&#34;&gt;99% Invisible - Policing the Open Road&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded. Covered how policing came to be given and then subsume traffic “safety” to use to control minorities.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;99-invisible---policing-the-open-road-1&#34;&gt;99% Invisible - Policing the Open Road&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+yIOyiECZs&#34;&gt;https://overcast.fm/+yIOyiECZs&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://99percentinvisible.org/episode/policing-the-open-road/&#34;&gt;https://99percentinvisible.org/episode/policing-the-open-road/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #99 percent invisible# --&gt;&#xA;&lt;!-- {BearID:9FE8F0B5-485D-47A4-A9E3-7FF83245AA4A-28016-00002D9803FAE17E} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>99% Invisible - Sound and Health: Cities</title>
      <link>https://mcjones.ca/docs/99-invisible---sound-and-health--cities/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:05 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/99-invisible---sound-and-health--cities/</guid>
      <description>&lt;h1 id=&#34;99-invisible---sound-and-health-cities&#34;&gt;99% Invisible - Sound and Health: Cities&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;99-invisible---sound-and-health-cities-1&#34;&gt;99% Invisible - Sound and Health: Cities&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+yIOxbkvWM&#34;&gt;https://overcast.fm/+yIOxbkvWM&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://99percentinvisible.org/episode/sound-and-health-cities/&#34;&gt;https://99percentinvisible.org/episode/sound-and-health-cities/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #99 percent invisible# --&gt;&#xA;&lt;!-- {BearID:409DDE57-CCD7-411D-B535-8A4316CD9EF7-28016-00002D98050D56DA} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>99% Invisible - Sound and Health: Hospitals</title>
      <link>https://mcjones.ca/docs/99-invisible---sound-and-health--hospitals/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:05 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/99-invisible---sound-and-health--hospitals/</guid>
      <description>&lt;h1 id=&#34;99-invisible---sound-and-health-hospitals&#34;&gt;99% Invisible - Sound and Health: Hospitals&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;99-invisible---sound-and-health-hospitals-1&#34;&gt;99% Invisible - Sound and Health: Hospitals&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+yIOzALJdk&#34;&gt;https://overcast.fm/+yIOzALJdk&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://99percentinvisible.org/episode/sound-and-health-hospitals/&#34;&gt;https://99percentinvisible.org/episode/sound-and-health-hospitals/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #99 percent invisible# --&gt;&#xA;&lt;!-- {BearID:096011ED-92F0-4C43-A346-2F05ADA2CE68-28016-00002D9804DF8AE7} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>99% Invisible - The Missing Middle</title>
      <link>https://mcjones.ca/docs/99-invisible---the-missing-middle/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:05 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/99-invisible---the-missing-middle/</guid>
      <description>&lt;h1 id=&#34;99-invisible---the-missing-middle&#34;&gt;99% Invisible - The Missing Middle&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded - all about missing middle housing and where it comes from.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;99-invisible---the-missing-middle-1&#34;&gt;99% Invisible - The Missing Middle&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+yIOx5dVpA&#34;&gt;https://overcast.fm/+yIOx5dVpA&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://99percentinvisible.org/episode/the-missing-middle/&#34;&gt;https://99percentinvisible.org/episode/the-missing-middle/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #99 percent invisible# --&gt;&#xA;&lt;!-- {BearID:B7A50170-EC65-4D0A-BAE6-D2F6BDB7121B-28016-00002D9803CD53E2} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>99% Invisible - The Weather Machine</title>
      <link>https://mcjones.ca/docs/99-invisible---the-weather-machine/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:05 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/99-invisible---the-weather-machine/</guid>
      <description>&lt;h1 id=&#34;99-invisible---the-weather-machine&#34;&gt;99% Invisible - The Weather Machine&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;99-invisible---the-weather-machine-1&#34;&gt;99% Invisible - The Weather Machine&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+yIOy07TzY&#34;&gt;https://overcast.fm/+yIOy07TzY&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://99percentinvisible.org/episode/the-weather-machine/&#34;&gt;https://99percentinvisible.org/episode/the-weather-machine/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #99 percent invisible# --&gt;&#xA;&lt;!-- {BearID:FD31E657-668B-4CA3-B19C-520FBC595433-28016-00002D980428AF4F} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Colour Code - First Comes Love</title>
      <link>https://mcjones.ca/docs/colour-code---first-comes-love/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:04 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/colour-code---first-comes-love/</guid>
      <description>&lt;h1 id=&#34;colour-code---first-comes-love&#34;&gt;Colour Code - First Comes Love&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;colour-code---first-comes-love-1&#34;&gt;Colour Code - First Comes Love&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+tFXzCd95M&#34;&gt;https://overcast.fm/+tFXzCd95M&lt;/a&gt;&#xA;&lt;a href=&#34;https://colour-code.simplecast.com/episodes/first-comes-love-hsicmkX7&#34;&gt;https://colour-code.simplecast.com/episodes/first-comes-love-hsicmkX7&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Colour Code# --&gt;&#xA;&lt;!-- {BearID:47A2563C-7282-4F55-ADCB-4530DE474209-28016-00002D980252BEF5} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Colour Code - The Most Visible Minority</title>
      <link>https://mcjones.ca/docs/colour-code---the-most-visible-minority/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:04 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/colour-code---the-most-visible-minority/</guid>
      <description>&lt;h1 id=&#34;colour-code---the-most-visible-minority&#34;&gt;Colour Code - The Most Visible Minority&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;colour-code---the-most-visible-minority-1&#34;&gt;Colour Code - The Most Visible Minority&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+tFXwKh0-w&#34;&gt;https://overcast.fm/+tFXwKh0-w&lt;/a&gt;&#xA;&lt;a href=&#34;https://colour-code.simplecast.com/episodes/the-most-visible-minority-Cp0et9OC&#34;&gt;https://colour-code.simplecast.com/episodes/the-most-visible-minority-Cp0et9OC&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Colour Code# --&gt;&#xA;&lt;!-- {BearID:F5798E7C-3A68-4B71-ADB3-E7E45785D25B-28016-00002D98027FCF32} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Developing Leadership - How to Hire Engineers and Build Inclusive Teams with Dana Lawson from Netlify</title>
      <link>https://mcjones.ca/docs/developing-leadership---how-to-hire-engineers-and-build-inclusive-teams-with-dana-lawson-from-netlify/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:04 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/developing-leadership---how-to-hire-engineers-and-build-inclusive-teams-with-dana-lawson-from-netlify/</guid>
      <description>&lt;h1 id=&#34;developing-leadership---how-to-hire-engineers-and-build-inclusive-teams-with-dana-lawson-from-netlify&#34;&gt;Developing Leadership - How to Hire Engineers and Build Inclusive Teams with Dana Lawson from Netlify&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;developing-leadership---episode-21--how-to-hire-engineers--build-inclusive-teams-with-dana-lawson-from-netlify&#34;&gt;Developing Leadership - Episode 21 | How to Hire Engineers &amp;amp; Build Inclusive Teams with Dana Lawson from Netlify&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+xOJ1p7r4o&#34;&gt;https://overcast.fm/+xOJ1p7r4o&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://podcast.developingleadership.co/e/episode-21-how-to-hire-engineers-build-inclusive-teams-with-dana-lawson-from-netlify/&#34;&gt;https://podcast.developingleadership.co/e/episode-21-how-to-hire-engineers-build-inclusive-teams-with-dana-lawson-from-netlify/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Developing Leadership# --&gt;&#xA;&lt;!-- {BearID:19D276C4-A2FC-41A8-B39A-34C5A1144C4E-28016-00002D98033CC4FE} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Developing Leadership - Remote Cultures &amp; The Power of Storytelling with Michael Lopp, aka rands</title>
      <link>https://mcjones.ca/docs/developing-leadership---remote-cultures--the-power-of-storytelling-with-michael-lopp-aka-rands/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:04 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/developing-leadership---remote-cultures--the-power-of-storytelling-with-michael-lopp-aka-rands/</guid>
      <description>&lt;h1 id=&#34;developing-leadership---remote-cultures--the-power-of-storytelling-with-michael-lopp-aka-rands&#34;&gt;Developing Leadership - Remote Cultures &amp;amp; The Power of Storytelling with Michael Lopp, aka rands&lt;/h1&gt;&#xA;&lt;p&gt;A fantastic look at the power of storytelling to help folks understand why they’re doing the work they do.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;developing-leadership---episode-11--remote-cultures--the-power-of-storytelling-with-michael-lopp-aka-rands&#34;&gt;Developing Leadership - Episode 11 | Remote Cultures &amp;amp; The Power of Storytelling with Michael Lopp, aka ”rands”&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+xOJ3QuZiY&#34;&gt;https://overcast.fm/+xOJ3QuZiY&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://podcast.developingleadership.co/e/episode-11-remote-cultures-the-power-of-storytelling-with-michael-lopp-aka-rands/&#34;&gt;https://podcast.developingleadership.co/e/episode-11-remote-cultures-the-power-of-storytelling-with-michael-lopp-aka-rands/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Developing Leadership# --&gt;&#xA;&lt;!-- {BearID:EEC63B48-D0BC-4E11-A035-A2D91DD11881-28016-00002D980398CA26} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Pink Tax Podcast - Episode 38 - Monopoly Money &amp; Monarchs</title>
      <link>https://mcjones.ca/docs/pink-tax-podcast---episode-38---monopoly-money--monarchs/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:04 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/pink-tax-podcast---episode-38---monopoly-money--monarchs/</guid>
      <description>&lt;h1 id=&#34;pink-tax-podcast---episode-38---monopoly-money--monarchs&#34;&gt;Pink Tax Podcast - Episode 38 - Monopoly Money &amp;amp; Monarchs&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;pink-tax-podcast---episode-38-monopoly-money--monarchs&#34;&gt;Pink Tax Podcast - Episode 38: Monopoly Money &amp;amp; Monarchs&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+unSXiUMtI&#34;&gt;https://overcast.fm/+unSXiUMtI&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://pinktaxpodcast.com/episodes/monopoly-money-monarchs&#34;&gt;https://pinktaxpodcast.com/episodes/monopoly-money-monarchs&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #pink tax# --&gt;&#xA;&lt;!-- {BearID:5C717172-EA7C-4149-A698-7FE9BB9481E2-28016-00002D9802ADF6C4} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Click Here - 218 You&#39;re Not Really Ready for Ransomware</title>
      <link>https://mcjones.ca/docs/click-here---218-youre-not-really-ready-for-ransomware/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:03 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/click-here---218-youre-not-really-ready-for-ransomware/</guid>
      <description>&lt;h1 id=&#34;click-here---218-youre-not-really-ready-for-ransomware&#34;&gt;Click Here - 218 You&amp;rsquo;re Not Really Ready for Ransomware&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;click-here---218-youre-not-really-ready-for-ransomware-1&#34;&gt;Click Here - 218 You’re Not Really Ready for Ransomware&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+sl7_6t2Ug&#34;&gt;https://overcast.fm/+sl7_6t2Ug&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.recordedfuture.com/podcast-episode-218/&#34;&gt;https://www.recordedfuture.com/podcast-episode-218/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Click Here# --&gt;&#xA;&lt;!-- {BearID:DF219203-C19D-4FA2-8DAE-C235D6F4F847-28016-00002D9801C8A4C1} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Colour Code - Eggshells</title>
      <link>https://mcjones.ca/docs/colour-code---eggshells/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:03 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/colour-code---eggshells/</guid>
      <description>&lt;h1 id=&#34;colour-code---eggshells&#34;&gt;Colour Code - Eggshells&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;colour-code---eggshells-1&#34;&gt;Colour Code - Eggshells&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+tFXxJaat8&#34;&gt;https://overcast.fm/+tFXxJaat8&lt;/a&gt;&#xA;&lt;a href=&#34;https://colour-code.simplecast.com/episodes/eggshells-wt_ounmf&#34;&gt;https://colour-code.simplecast.com/episodes/eggshells-wt_ounmf&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Colour Code# --&gt;&#xA;&lt;!-- {BearID:87AF1E82-EEF8-482D-9E71-9597D429799D-28016-00002D9802294CB7} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Upzoned - Can the Right and Left Come Together on Zoning Reform?</title>
      <link>https://mcjones.ca/docs/upzoned---can-the-right-and-left-come-together-on-zoning-reform/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:03 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/upzoned---can-the-right-and-left-come-together-on-zoning-reform/</guid>
      <description>&lt;h1 id=&#34;upzoned---can-the-right-and-left-come-together-on-zoning-reform&#34;&gt;Upzoned - Can the Right and Left Come Together on Zoning Reform?&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;upzoned---can-the-right-and-left-come-together-on-zoning-reform-1&#34;&gt;Upzoned - Can the Right and Left Come Together on Zoning Reform?&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+qpp8gyJ48&#34;&gt;https://overcast.fm/+qpp8gyJ48&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://upzoned.strongtowns.org/e/can-the-right-and-left-come-together-on-zoning-reform/&#34;&gt;http://upzoned.strongtowns.org/e/can-the-right-and-left-come-together-on-zoning-reform/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #upzoned --&gt;&#xA;&lt;!-- {BearID:62E69E48-F16D-4EF6-9AB7-6FD7157AF625-28016-00002D98013EC043} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Upzoned - COVID-19 Is Teaching Us How to Fix Our Traffic Problem. Are We Listening?</title>
      <link>https://mcjones.ca/docs/upzoned---covid-19-is-teaching-us-how-to-fix-our-traffic-problem.-are-we-listening/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:03 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/upzoned---covid-19-is-teaching-us-how-to-fix-our-traffic-problem.-are-we-listening/</guid>
      <description>&lt;h1 id=&#34;upzoned---covid-19-is-teaching-us-how-to-fix-our-traffic-problem-are-we-listening&#34;&gt;Upzoned - COVID-19 Is Teaching Us How to Fix Our Traffic Problem. Are We Listening?&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;upzoned---covid-19-is-teaching-us-how-to-fix-our-traffic-problem-are-we-listening-1&#34;&gt;Upzoned - COVID-19 Is Teaching Us How to Fix Our Traffic Problem. Are We Listening?&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+qpp_1EfOM&#34;&gt;https://overcast.fm/+qpp_1EfOM&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://upzoned.strongtowns.org/e/covid-19-is-teaching-us-how-to-fix-our-traffic-problem-are-we-listening/&#34;&gt;http://upzoned.strongtowns.org/e/covid-19-is-teaching-us-how-to-fix-our-traffic-problem-are-we-listening/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #upzoned --&gt;&#xA;&lt;!-- {BearID:49B73D8C-266C-459E-BCC3-DD6D54AEA014-28016-00002D980199A7DB} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Upzoned - Does Subsidizing Electric Vehicles Promote Car Dependency?</title>
      <link>https://mcjones.ca/docs/upzoned---does-subsidizing-electric-vehicles-promote-car-dependency/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:03 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/upzoned---does-subsidizing-electric-vehicles-promote-car-dependency/</guid>
      <description>&lt;h1 id=&#34;upzoned---does-subsidizing-electric-vehicles-promote-car-dependency&#34;&gt;Upzoned - Does Subsidizing Electric Vehicles Promote Car Dependency?&lt;/h1&gt;&#xA;&lt;p&gt;Spoiler: Yup. Less worser option.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;upzoned---does-subsidizing-electric-vehicles-promote-car-dependency-1&#34;&gt;Upzoned - Does Subsidizing Electric Vehicles Promote Car Dependency?&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+qpp-6Rw3E&#34;&gt;https://overcast.fm/+qpp-6Rw3E&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://upzoned.strongtowns.org/e/does-subsidizing-electric-vehicles-promote-car-dependency/&#34;&gt;http://upzoned.strongtowns.org/e/does-subsidizing-electric-vehicles-promote-car-dependency/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #upzoned --&gt;&#xA;&lt;!-- {BearID:528B3DDB-596E-48BA-883A-6643C60E88F2-28016-00002D9800E393CB} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Upzoned - For Teens, No Room in the Pandemic City</title>
      <link>https://mcjones.ca/docs/upzoned---for-teens-no-room-in-the-pandemic-city/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:03 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/upzoned---for-teens-no-room-in-the-pandemic-city/</guid>
      <description>&lt;h1 id=&#34;upzoned---for-teens-no-room-in-the-pandemic-city&#34;&gt;Upzoned - For Teens, No Room in the Pandemic City&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;upzoned---for-teens-no-room-in-the-pandemic-city-1&#34;&gt;Upzoned - For Teens, No Room in the Pandemic City&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+qpp8nVIpM&#34;&gt;https://overcast.fm/+qpp8nVIpM&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://upzoned.strongtowns.org/e/for-teens-no-room-in-the-pandemic-city/&#34;&gt;http://upzoned.strongtowns.org/e/for-teens-no-room-in-the-pandemic-city/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #upzoned --&gt;&#xA;&lt;!-- {BearID:39D96A98-8A8D-44FA-B41E-50C5870292CA-28016-00002D9801118384} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Upzoned - Time to Tear Down L.A. Freeways?</title>
      <link>https://mcjones.ca/docs/upzoned---time-to-tear-down-l.a.-freeways/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:03 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/upzoned---time-to-tear-down-l.a.-freeways/</guid>
      <description>&lt;h1 id=&#34;upzoned---time-to-tear-down-la-freeways&#34;&gt;Upzoned - Time to Tear Down L.A. Freeways?&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;upzoned---time-to-tear-down-la-freeways-1&#34;&gt;Upzoned - Time to Tear Down L.A. Freeways?&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+qpp8cfRoE&#34;&gt;https://overcast.fm/+qpp8cfRoE&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://upzoned.strongtowns.org/e/time-to-tear-down-la-freeways/&#34;&gt;http://upzoned.strongtowns.org/e/time-to-tear-down-la-freeways/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #upzoned --&gt;&#xA;&lt;!-- {BearID:D6F2C605-0586-48B0-9E48-776F5A4FDFEC-28016-00002D98016C0698} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Heavy Strategy - 020 - Are Operational and Technical Debt Complementary?</title>
      <link>https://mcjones.ca/docs/heavy-strategy---020---are-operational-and-technical-debt-complementary/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:02 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/heavy-strategy---020---are-operational-and-technical-debt-complementary/</guid>
      <description>&lt;h1 id=&#34;heavy-strategy---020---are-operational-and-technical-debt-complementary&#34;&gt;Heavy Strategy - 020 - Are Operational and Technical Debt Complementary?&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&#xA;(Short answer is yes - it explored this but I didn’t record anything)&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;heavy-strategy---hs020-are-operational-and-technical-debt-complementary&#34;&gt;Heavy Strategy - HS020 Are Operational and Technical Debt Complementary&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+kr1aLjZcI&#34;&gt;https://overcast.fm/+kr1aLjZcI&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://feeds.packetpushers.net/link/22503/15222353/hs020-are-operational-and-technical-debt-complementary&#34;&gt;https://feeds.packetpushers.net/link/22503/15222353/hs020-are-operational-and-technical-debt-complementary&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #heavy strategy# --&gt;&#xA;&lt;!-- {BearID:6F98D5E3-6752-495D-A150-9EC26DE9361E-28016-00002D97FFCC821E} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Upzoned - Can We Build Strong Towns from Scratch in the 21st Century?</title>
      <link>https://mcjones.ca/docs/upzoned---can-we-build-strong-towns-from-scratch-in-the-21st-century/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:02 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/upzoned---can-we-build-strong-towns-from-scratch-in-the-21st-century/</guid>
      <description>&lt;h1 id=&#34;upzoned---can-we-build-strong-towns-from-scratch-in-the-21st-century&#34;&gt;Upzoned - Can We Build Strong Towns from Scratch in the 21st Century?&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;upzoned---can-we-build-strong-towns-from-scratch-in-the-21st-century-1&#34;&gt;Upzoned - Can We Build Strong Towns from Scratch in the 21st Century?&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+qpp9a4MCA&#34;&gt;https://overcast.fm/+qpp9a4MCA&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://upzoned.strongtowns.org/e/can-we-build-strong-towns-from-scratch-in-the-21st-century/&#34;&gt;http://upzoned.strongtowns.org/e/can-we-build-strong-towns-from-scratch-in-the-21st-century/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #upzoned --&gt;&#xA;&lt;!-- {BearID:71E6A638-FC8E-44D0-A6B7-D2AAA922406D-28016-00002D9800843942} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Upzoned - Where Should We Be Focusing Climate Change Efforts?</title>
      <link>https://mcjones.ca/docs/upzoned---where-should-we-be-focusing-climate-change-efforts/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:02 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/upzoned---where-should-we-be-focusing-climate-change-efforts/</guid>
      <description>&lt;h1 id=&#34;upzoned---where-should-we-be-focusing-climate-change-efforts&#34;&gt;Upzoned - Where Should We Be Focusing Climate Change Efforts?&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;upzoned---where-should-we-be-focusing-climate-change-efforts-1&#34;&gt;Upzoned - Where Should We Be Focusing Climate Change Efforts?&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+qpp-7Av1E&#34;&gt;https://overcast.fm/+qpp-7Av1E&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://upzoned.strongtowns.org/e/where-should-we-be-focusing-climate-change-efforts/&#34;&gt;http://upzoned.strongtowns.org/e/where-should-we-be-focusing-climate-change-efforts/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #upzoned --&gt;&#xA;&lt;!-- {BearID:73451A36-8557-498B-A371-26B2BFCC981C-28016-00002D9800B59676} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Mr. Chazz&#39;s Leadership, Parenting and Teaching Podcast - ADHD with Dr. Ann-Louise Lockhart</title>
      <link>https://mcjones.ca/docs/mr.-chazzs-leadership-parenting-and-teaching-podcast---adhd-with-dr.-ann-louise-lockhart/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:01 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/mr.-chazzs-leadership-parenting-and-teaching-podcast---adhd-with-dr.-ann-louise-lockhart/</guid>
      <description>&lt;h1 id=&#34;mr-chazzs-leadership-parenting-and-teaching-podcast---adhd-with-dr-ann-louise-lockhart&#34;&gt;Mr. Chazz&amp;rsquo;s Leadership, Parenting and Teaching Podcast - ADHD with Dr. Ann-Louise Lockhart&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;mr-chazzs-leadership-parenting-and-teaching-podcast---adhd-with-dr-ann-louise-lockhart-1&#34;&gt;Mr. Chazz&amp;rsquo;s Leadership, Parenting and Teaching Podcast - ADHD with Dr. Ann-Louise Lockhart&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+hBfsuVm44&#34;&gt;https://overcast.fm/+hBfsuVm44&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.buzzsprout.com/1245911&#34;&gt;https://www.buzzsprout.com/1245911&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #mr-chazz --&gt;&#xA;&lt;!-- {BearID:2A39B1E1-D2C0-41F1-880E-1D66D8C9648A-28016-00002D97FEE2E2E8} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Remotely Interesting - 027 - Beyond the Code: Company Values &amp; Yous Too</title>
      <link>https://mcjones.ca/docs/remotely-interesting---027---beyond-the-code--company-values--yous-too/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:01 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/remotely-interesting---027---beyond-the-code--company-values--yous-too/</guid>
      <description>&lt;h1 id=&#34;remotely-interesting---027---beyond-the-code-company-values--yous-too&#34;&gt;Remotely Interesting - 027 - Beyond the Code: Company Values &amp;amp; Yous Too&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded at the time&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;remotely-interesting---027-beyond-the-code-company-values--yous-too&#34;&gt;Remotely Interesting - 027: Beyond the Code: Company Values &amp;amp; Yous Too&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+iDZs6Caew&#34;&gt;https://overcast.fm/+iDZs6Caew&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://share.transistor.fm/s/0ba4b425&#34;&gt;https://share.transistor.fm/s/0ba4b425&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Remotely Interesting# --&gt;&#xA;&lt;!-- {BearID:9844F214-B325-4126-B717-92740231074F-28016-00002D97FF1069DF} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Tech Lead Journal - 29 - A Guide to Technical Writing and Content Creation - Helen Scott</title>
      <link>https://mcjones.ca/docs/tech-lead-journal---29---a-guide-to-technical-writing-and-content-creation---helen-scott/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:01 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/tech-lead-journal---29---a-guide-to-technical-writing-and-content-creation---helen-scott/</guid>
      <description>&lt;h1 id=&#34;tech-lead-journal---29---a-guide-to-technical-writing-and-content-creation---helen-scott&#34;&gt;Tech Lead Journal - 29 - A Guide to Technical Writing and Content Creation - Helen Scott&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;tech-lead-journal---29---a-guide-to-technical-writing-and-content-creation---helen-scott-1&#34;&gt;Tech Lead Journal - 29 - A Guide to Technical Writing and Content Creation - Helen Scott&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+fKlxtwPRQ&#34;&gt;https://overcast.fm/+fKlxtwPRQ&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://techleadjournal.dev/episodes/29/&#34;&gt;https://techleadjournal.dev/episodes/29/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Tech Lead Journal# --&gt;&#xA;&lt;!-- {BearID:70611955-B6E8-4368-89A0-8903652EA3E5-28016-00002D97FE884A29} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Tech Lead Journal - 97 - Personal Kanban and Collaboration Equation - Jim Benson</title>
      <link>https://mcjones.ca/docs/tech-lead-journal---97---personal-kanban-and-collaboration-equation---jim-benson/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:01 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/tech-lead-journal---97---personal-kanban-and-collaboration-equation---jim-benson/</guid>
      <description>&lt;h1 id=&#34;tech-lead-journal---97---personal-kanban-and-collaboration-equation---jim-benson&#34;&gt;Tech Lead Journal - 97 - Personal Kanban and Collaboration Equation - Jim Benson&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;tech-lead-journal---97---personal-kanban--collaboration-equation---jim-benson&#34;&gt;Tech Lead Journal - 97 - Personal Kanban &amp;amp; Collaboration Equation - Jim Benson&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+fKlwxqfOQ&#34;&gt;https://overcast.fm/+fKlwxqfOQ&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://techleadjournal.dev/episodes/97/&#34;&gt;https://techleadjournal.dev/episodes/97/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Tech Lead Journal# --&gt;&#xA;&lt;!-- {BearID:8BF27C50-91C3-4EC6-903F-4D09CD4F88ED-28016-00002D97FE592ACE} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Tech Lead Journal - 98 - Professional Agile Leadership With Empiricism, Catalytic Leadership, and Self-Management for Agility - Kurt Bittner</title>
      <link>https://mcjones.ca/docs/tech-lead-journal---98---professional-agile-leadership-with-empiricism-catalytic-leadership-and-self-management-for-agility---kurt-bittner/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:01 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/tech-lead-journal---98---professional-agile-leadership-with-empiricism-catalytic-leadership-and-self-management-for-agility---kurt-bittner/</guid>
      <description>&lt;h1 id=&#34;tech-lead-journal---98---professional-agile-leadership-with-empiricism-catalytic-leadership-and-self-management-for-agility---kurt-bittner&#34;&gt;Tech Lead Journal - 98 - Professional Agile Leadership With Empiricism, Catalytic Leadership, and Self-Management for Agility - Kurt Bittner&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;tech-lead-journal---98---professional-agile-leadership-with-empiricism-catalytic-leadership-and-self-management-for-agility---kurt-bittner-1&#34;&gt;Tech Lead Journal - 98 - Professional Agile Leadership With Empiricism, Catalytic Leadership, and Self-Management for Agility - Kurt Bittner&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+fKlx_k0pc&#34;&gt;https://overcast.fm/+fKlx_k0pc&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://techleadjournal.dev/episodes/98/&#34;&gt;https://techleadjournal.dev/episodes/98/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #tech lead journal# --&gt;&#xA;&lt;!-- {BearID:0DFC11AD-D513-400D-AC13-0BCEBAFCB131-28016-00002D97FE2B5849} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Alberta Unbound -  We Must Get Over Ourselves</title>
      <link>https://mcjones.ca/docs/alberta-unbound----we-must-get-over-ourselves/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:00 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/alberta-unbound----we-must-get-over-ourselves/</guid>
      <description>&lt;h1 id=&#34;alberta-unbound----we-must-get-over-ourselves&#34;&gt;Alberta Unbound -  We Must Get Over Ourselves&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;alberta-unbound---s1-episode-2-we-must-get-over-ourselves&#34;&gt;Alberta Unbound - S1 Episode 2: We Must Get Over Ourselves&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+a8TAqj9lQ&#34;&gt;https://overcast.fm/+a8TAqj9lQ&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://senatorpaulasimons.podbean.com/e/episode-two-we-must-get-over-ourselves/&#34;&gt;https://senatorpaulasimons.podbean.com/e/episode-two-we-must-get-over-ourselves/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #alberta unbound# --&gt;&#xA;&lt;!-- {BearID:41AAE49C-1670-47BF-BA4D-9753635F456E-28016-00002D97FDD0741B} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Alberta Unbound - Who Are You Calling An Albertan?</title>
      <link>https://mcjones.ca/docs/alberta-unbound---who-are-you-calling-an-albertan/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:00 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/alberta-unbound---who-are-you-calling-an-albertan/</guid>
      <description>&lt;h1 id=&#34;alberta-unbound---who-are-you-calling-an-albertan&#34;&gt;Alberta Unbound - Who Are You Calling An Albertan?&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;alberta-unbound---s1-episode-1-who-are-you-calling-an-albertan&#34;&gt;Alberta Unbound - S1 Episode 1: Who Are You Calling An Albertan?&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+a8TAcvnBw&#34;&gt;https://overcast.fm/+a8TAcvnBw&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://senatorpaulasimons.podbean.com/e/episode-one-who-are-you-calling-an-albertan/&#34;&gt;https://senatorpaulasimons.podbean.com/e/episode-one-who-are-you-calling-an-albertan/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #alberta unbound# --&gt;&#xA;&lt;!-- {BearID:6BEBF069-063E-4786-B89E-F11B7B7AEE91-28016-00002D97FDFD4FAE} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>The Forgotten Corner - 21 - Sharing the Soapbox with Susan Wright</title>
      <link>https://mcjones.ca/docs/the-forgotten-corner---21---sharing-the-soapbox-with-susan-wright/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:00 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/the-forgotten-corner---21---sharing-the-soapbox-with-susan-wright/</guid>
      <description>&lt;h1 id=&#34;the-forgotten-corner---21---sharing-the-soapbox-with-susan-wright&#34;&gt;The Forgotten Corner - 21 - Sharing the Soapbox with Susan Wright&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-forgotten-corner---episode-21-sharing-the-soapbox-with-susan-wright&#34;&gt;The Forgotten Corner - Episode 21: Sharing the Soapbox with Susan Wright&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+aZ45sbZ4c&#34;&gt;https://overcast.fm/+aZ45sbZ4c&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.listennotes.com/podcasts/the-forgotten-corner/episode-21-sharing-the-cNzWS9IkPOx/&#34;&gt;https://www.listennotes.com/podcasts/the-forgotten-corner/episode-21-sharing-the-cNzWS9IkPOx/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #The Forgotten Corner# --&gt;&#xA;&lt;!-- {BearID:263A754C-60E6-4656-BCB8-CAF52492C286-28016-00002D97FDA33520} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>The Forgotten Corner - 36 - Pride in politics, with MLA Janis Irwin</title>
      <link>https://mcjones.ca/docs/the-forgotten-corner---36---pride-in-politics-with-mla-janis-irwin/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:00 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/the-forgotten-corner---36---pride-in-politics-with-mla-janis-irwin/</guid>
      <description>&lt;h1 id=&#34;the-forgotten-corner---36---pride-in-politics-with-mla-janis-irwin&#34;&gt;The Forgotten Corner - 36 - Pride in politics, with MLA Janis Irwin&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-forgotten-corner---episode-36-pride-in-politics-with-mla-janis-irwin&#34;&gt;The Forgotten Corner - Episode 36: Pride in politics, with MLA Janis Irwin&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+aZ44Jvl9U&#34;&gt;https://overcast.fm/+aZ44Jvl9U&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.listennotes.com/podcasts/the-forgotten-corner/episode-36-pride-in-politics-U1G6Nmba9Ln/&#34;&gt;https://www.listennotes.com/podcasts/the-forgotten-corner/episode-36-pride-in-politics-U1G6Nmba9Ln/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #The Forgotten Corner# --&gt;&#xA;&lt;!-- {BearID:0DF1F973-2789-4057-A882-152F3E191412-28016-00002D97FD7618EB} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>The Forgotten Corner - 40 - Exposing the truth, with Sandy Garossino</title>
      <link>https://mcjones.ca/docs/the-forgotten-corner---40---exposing-the-truth-with-sandy-garossino/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:00 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/the-forgotten-corner---40---exposing-the-truth-with-sandy-garossino/</guid>
      <description>&lt;h1 id=&#34;the-forgotten-corner---40---exposing-the-truth-with-sandy-garossino&#34;&gt;The Forgotten Corner - 40 - Exposing the truth, with Sandy Garossino&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-forgotten-corner---episode-40-exposing-the-truth-with-sandy-garossino&#34;&gt;The Forgotten Corner - Episode 40: Exposing the truth, with Sandy Garossino&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+aZ47q2P6w&#34;&gt;https://overcast.fm/+aZ47q2P6w&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.listennotes.com/podcasts/the-forgotten-corner/episode-40-exposing-the-MtNQHpvm-dD/&#34;&gt;https://www.listennotes.com/podcasts/the-forgotten-corner/episode-40-exposing-the-MtNQHpvm-dD/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #The Forgotten Corner# --&gt;&#xA;&lt;!-- {BearID:457FE709-F766-4A12-8A29-309A45C6A17C-28016-00002D97FD49759C} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>The Forgotten Corner - 62 - A Mixed Bag of Terrible, with Markham Hislop</title>
      <link>https://mcjones.ca/docs/the-forgotten-corner---62---a-mixed-bag-of-terrible-with-markham-hislop/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:00 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/the-forgotten-corner---62---a-mixed-bag-of-terrible-with-markham-hislop/</guid>
      <description>&lt;h1 id=&#34;the-forgotten-corner---62---a-mixed-bag-of-terrible-with-markham-hislop&#34;&gt;The Forgotten Corner - 62 - A Mixed Bag of Terrible, with Markham Hislop&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-forgotten-corner---episode-62-a-mixed-bag-of-terrible-with-markham-hislop&#34;&gt;The Forgotten Corner - Episode 62: A Mixed Bag of Terrible, with Markham Hislop&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+aZ47IE_QU&#34;&gt;https://overcast.fm/+aZ47IE_QU&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.listennotes.com/podcasts/the-forgotten-corner/episode-62-a-mixed-bag-of-3xXlksm7NnC/&#34;&gt;https://www.listennotes.com/podcasts/the-forgotten-corner/episode-62-a-mixed-bag-of-3xXlksm7NnC/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #The Forgotten Corner# --&gt;&#xA;&lt;!-- {BearID:B200F511-BE8E-4B43-A567-878E97620539-28016-00002D97FCB73F95} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>The Forgotten Corner - Book Club - Canada in the World (Part 3)</title>
      <link>https://mcjones.ca/docs/the-forgotten-corner---book-club---canada-in-the-world-part-3/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:00 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/the-forgotten-corner---book-club---canada-in-the-world-part-3/</guid>
      <description>&lt;h1 id=&#34;the-forgotten-corner---book-club---canada-in-the-world-part-3&#34;&gt;The Forgotten Corner - Book Club - Canada in the World (Part 3)&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-forgotten-corner---book-club-canada-in-the-world-part-3&#34;&gt;The Forgotten Corner - Book Club: Canada in the World (Part 3)&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+aZ45eO3GI&#34;&gt;https://overcast.fm/+aZ45eO3GI&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.listennotes.com/podcasts/the-forgotten-corner/book-club-canada-in-the-Y380ycCsgxI/&#34;&gt;https://www.listennotes.com/podcasts/the-forgotten-corner/book-club-canada-in-the-Y380ycCsgxI/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #The Forgotten Corner# --&gt;&#xA;&lt;!-- {BearID:D9B66533-51FA-4412-B5DE-C5C0240B1F7C-28016-00002D97FCE7FEF0} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>The Forgotten Corner - Just Us 20 - Canada&#39;s history of both sidesism</title>
      <link>https://mcjones.ca/docs/the-forgotten-corner---just-us-20---canadas-history-of-both-sidesism/</link>
      <pubDate>Sun, 08 Jan 2023 05:55:00 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/the-forgotten-corner---just-us-20---canadas-history-of-both-sidesism/</guid>
      <description>&lt;h1 id=&#34;the-forgotten-corner---just-us-20---canadas-history-of-both-sidesism&#34;&gt;The Forgotten Corner - Just Us 20 - Canada&amp;rsquo;s history of both sidesism&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-forgotten-corner---just-us-20-canadas-history-of-both-sidesism&#34;&gt;The Forgotten Corner - Just Us 20: Canada’s history of both sidesism&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+aZ45XqYzg&#34;&gt;https://overcast.fm/+aZ45XqYzg&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.listennotes.com/podcasts/the-forgotten-corner/just-us-20-canadas-history-1LF952EBO0q/&#34;&gt;https://www.listennotes.com/podcasts/the-forgotten-corner/just-us-20-canadas-history-1LF952EBO0q/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #The Forgotten Corner# --&gt;&#xA;&lt;!-- {BearID:098FA3FD-EFC7-4B03-AAFD-6D0D80115D69-28016-00002D97FD179229} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>MacDevOpsYVR podcast - Backing Up Big Data</title>
      <link>https://mcjones.ca/docs/macdevopsyvr-podcast---backing-up-big-data/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:59 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/macdevopsyvr-podcast---backing-up-big-data/</guid>
      <description>&lt;h1 id=&#34;macdevopsyvr-podcast---backing-up-big-data&#34;&gt;MacDevOpsYVR podcast - Backing Up Big Data&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;macdevopsyvr-podcast---backing-up-big-data-1&#34;&gt;MacDevOpsYVR podcast - Backing Up Big Data&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+Yg7I07e84&#34;&gt;https://overcast.fm/+Yg7I07e84&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://mdopod.com/backing-up-big-data/&#34;&gt;https://mdopod.com/backing-up-big-data/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #MacDevOpsYVR --&gt;&#xA;&lt;!-- {BearID:DB7A9199-1A3E-43B4-BEDF-4E3917CACD6D-28016-00002D97FB9C5D73} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>MacDevOpsYVR podcast - Behind the Scenes with Felipe Baez</title>
      <link>https://mcjones.ca/docs/macdevopsyvr-podcast---behind-the-scenes-with-felipe-baez/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:59 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/macdevopsyvr-podcast---behind-the-scenes-with-felipe-baez/</guid>
      <description>&lt;h1 id=&#34;macdevopsyvr-podcast---behind-the-scenes-with-felipe-baez&#34;&gt;MacDevOpsYVR podcast - Behind the Scenes with Felipe Baez&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;macdevopsyvr-podcast---behind-the-scenes-with-felipe-baez-1&#34;&gt;MacDevOpsYVR podcast - Behind the Scenes with Felipe Baez.&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+Yg7LosCYg&#34;&gt;https://overcast.fm/+Yg7LosCYg&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://mdopod.com/behind-the-scenes-with-felipe-baez/&#34;&gt;https://mdopod.com/behind-the-scenes-with-felipe-baez/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #MacDevOpsYVR --&gt;&#xA;&lt;!-- {BearID:DF9948C3-B034-41FE-BB37-283545CF4900-28016-00002D97FBCF36FC} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>MacDevOpsYVR podcast - Working from Home with Lisa Davies and Kevin Friel</title>
      <link>https://mcjones.ca/docs/macdevopsyvr-podcast---working-from-home-with-lisa-davies-and-kevin-friel/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:59 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/macdevopsyvr-podcast---working-from-home-with-lisa-davies-and-kevin-friel/</guid>
      <description>&lt;h1 id=&#34;macdevopsyvr-podcast---working-from-home-with-lisa-davies-and-kevin-friel&#34;&gt;MacDevOpsYVR podcast - Working from Home with Lisa Davies and Kevin Friel&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;macdevopsyvr-podcast---working-from-home-with-lisa-davies-and-kevin-friel-1&#34;&gt;MacDevOpsYVR podcast - Working from Home with Lisa Davies and Kevin Friel&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+Yg7IOvWto&#34;&gt;https://overcast.fm/+Yg7IOvWto&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://mdopod.com/working-from-home-with-lisa-davies-and-kevin-friel/&#34;&gt;https://mdopod.com/working-from-home-with-lisa-davies-and-kevin-friel/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #MacDevOpsYVR --&gt;&#xA;&lt;!-- {BearID:2CC384CD-756E-4B48-9776-F2A1478169AD-28016-00002D97FBFBBC27} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>The Forgotten Corner - 68 - Policing our kids, with Bridget Stirling</title>
      <link>https://mcjones.ca/docs/the-forgotten-corner---68---policing-our-kids-with-bridget-stirling/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:59 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/the-forgotten-corner---68---policing-our-kids-with-bridget-stirling/</guid>
      <description>&lt;h1 id=&#34;the-forgotten-corner---68---policing-our-kids-with-bridget-stirling&#34;&gt;The Forgotten Corner - 68 - Policing our kids, with Bridget Stirling&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-forgotten-corner---episode-68-policing-our-kids-with-bridget-stirling&#34;&gt;The Forgotten Corner - Episode 68: Policing our kids, with Bridget Stirling&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+aZ46xsxko&#34;&gt;https://overcast.fm/+aZ46xsxko&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.listennotes.com/podcasts/the-forgotten-corner/episode-68-policing-our-kids-Mgsk29IwGJn/&#34;&gt;https://www.listennotes.com/podcasts/the-forgotten-corner/episode-68-policing-our-kids-Mgsk29IwGJn/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #The Forgotten Corner# --&gt;&#xA;&lt;!-- {BearID:6DA5D48D-10B2-458F-B3D9-CBF04C17A450-28016-00002D97FC81A62D} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>The Forgotten Corner - 71 - Such a drag: the fight for social justice with Dr. Victoria Bucholtz</title>
      <link>https://mcjones.ca/docs/the-forgotten-corner---71---such-a-drag--the-fight-for-social-justice-with-dr.-victoria-bucholtz/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:59 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/the-forgotten-corner---71---such-a-drag--the-fight-for-social-justice-with-dr.-victoria-bucholtz/</guid>
      <description>&lt;h1 id=&#34;the-forgotten-corner---71---such-a-drag-the-fight-for-social-justice-with-dr-victoria-bucholtz&#34;&gt;The Forgotten Corner - 71 - Such a drag: the fight for social justice with Dr. Victoria Bucholtz&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-forgotten-corner---episode-71-such-a-drag-the-fight-for-social-justice-with-dr-victoria-bucholtz&#34;&gt;The Forgotten Corner - Episode 71: Such a drag: the fight for social justice with Dr. Victoria Bucholtz&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+aZ46Jrd1Y&#34;&gt;https://overcast.fm/+aZ46Jrd1Y&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.listennotes.com/podcasts/the-forgotten-corner/episode-71-such-a-drag-the-QmX4yxojuFA/&#34;&gt;https://www.listennotes.com/podcasts/the-forgotten-corner/episode-71-such-a-drag-the-QmX4yxojuFA/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #The Forgotten Corner# --&gt;&#xA;&lt;!-- {BearID:61A86F27-A627-463A-9EA1-31B39BE5685F-28016-00002D97FC283E16} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>The Forgotten Corner - Just Us 25 - UCP leadership can&#39;t get worse, can it?</title>
      <link>https://mcjones.ca/docs/the-forgotten-corner---just-us-25---ucp-leadership-cant-get-worse-can-it/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:59 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/the-forgotten-corner---just-us-25---ucp-leadership-cant-get-worse-can-it/</guid>
      <description>&lt;h1 id=&#34;the-forgotten-corner---just-us-25---ucp-leadership-cant-get-worse-can-it&#34;&gt;The Forgotten Corner - Just Us 25 - UCP leadership can&amp;rsquo;t get worse, can it?&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-forgotten-corner---just-us-25-ucp-leadership-cant-get-worse-can-it&#34;&gt;The Forgotten Corner - Just Us 25: UCP leadership can’t get worse… can it?&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+aZ45mls7k&#34;&gt;https://overcast.fm/+aZ45mls7k&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.listennotes.com/podcasts/the-forgotten-corner/just-us-25-ucp-leadership-vm8VDEya6p7/&#34;&gt;https://www.listennotes.com/podcasts/the-forgotten-corner/just-us-25-ucp-leadership-vm8VDEya6p7/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #The Forgotten Corner# --&gt;&#xA;&lt;!-- {BearID:01415343-2E99-4D1D-8EDD-795B4FD49699-28016-00002D97FC54BEC9} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Cyberdelia - SQLite</title>
      <link>https://mcjones.ca/docs/cyberdelia---sqlite/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:57 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cyberdelia---sqlite/</guid>
      <description>&lt;h1 id=&#34;cyberdelia---sqlite&#34;&gt;Cyberdelia - SQLite&lt;/h1&gt;&#xA;&lt;p&gt;I do so love SQLite and glad for a reminder that &lt;a href=&#34;https://www.fossil-scm.org/home/doc/trunk/www/index.wiki&#34;&gt;Fossil&lt;/a&gt; exists.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cyberdelia---sqlite-1&#34;&gt;Cyberdelia - SQLite&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+WdpJ257RA&#34;&gt;https://overcast.fm/+WdpJ257RA&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://cyberdelia.tech/shows/11/&#34;&gt;https://cyberdelia.tech/shows/11/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #cyberdelia --&gt;&#xA;&lt;!-- {BearID:616173BF-E72E-4482-A460-CB8F19BE35F1-28016-00002D97F8820603} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Cyberdelia - User Experience</title>
      <link>https://mcjones.ca/docs/cyberdelia---user-experience/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:57 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cyberdelia---user-experience/</guid>
      <description>&lt;h1 id=&#34;cyberdelia---user-experience&#34;&gt;Cyberdelia - User Experience&lt;/h1&gt;&#xA;&lt;p&gt;(Before Musk killed Twitter): &lt;a href=&#34;https://twitter.com/Chealion/status/1321223818778587140&#34;&gt;https://twitter.com/Chealion/status/1321223818778587140&lt;/a&gt;&lt;/p&gt;&#xA;&#xA;&#xA;&#xA;  &lt;blockquote&gt;&#xA;    &lt;p&gt;Sometimes the start of a podcast just calls you out for your habits&amp;hellip; ;-)&lt;/p&gt;&#xA;&#xA;  &lt;/blockquote&gt;&#xA;&#xA;&lt;p&gt;18:38 - “There are really two things to this show - one is old man screams at cloud. The other is hey, let’s talk about this subset of an operating system or something for an hour or two”&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cyberdelia---user-experience-1&#34;&gt;Cyberdelia - User Experience&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+WdpK7I81Y&#34;&gt;https://overcast.fm/+WdpK7I81Y&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://cyberdelia.tech/shows/6/&#34;&gt;https://cyberdelia.tech/shows/6/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #cyberdelia --&gt;&#xA;&lt;!-- {BearID:A0D04E11-790C-4B29-A828-C1ED69048687-28016-00002D97F93A437A} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Science Vs - Detoxing &amp; Cleanses - Do They Work?</title>
      <link>https://mcjones.ca/docs/science-vs---detoxing--cleanses---do-they-work/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:57 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/science-vs---detoxing--cleanses---do-they-work/</guid>
      <description>&lt;h1 id=&#34;science-vs---detoxing--cleanses---do-they-work&#34;&gt;Science Vs - Detoxing &amp;amp; Cleanses - Do They Work?&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded at the time&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;science-vs---detoxing--cleanses---do-they-work-1&#34;&gt;Science Vs - Detoxing &amp;amp; Cleanses - Do They Work?&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+Tr3_oxD9M&#34;&gt;https://overcast.fm/+Tr3_oxD9M&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://gimletmedia.com/shows/science-vs/xjheld&#34;&gt;https://gimletmedia.com/shows/science-vs/xjheld&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Science Vs# --&gt;&#xA;&lt;!-- {BearID:1377A750-79B7-4879-8596-99EEF1D544A6-28016-00002D97F852841F} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Science Vs - Fauci on Monkeypox: What Went Wrong</title>
      <link>https://mcjones.ca/docs/science-vs---fauci-on-monkeypox--what-went-wrong/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:56 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/science-vs---fauci-on-monkeypox--what-went-wrong/</guid>
      <description>&lt;h1 id=&#34;science-vs---fauci-on-monkeypox-what-went-wrong&#34;&gt;Science Vs - Fauci on Monkeypox: What Went Wrong&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded at the time&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;science-vs---fauci-on-monkeypox-what-went-wrong-1&#34;&gt;Science Vs - Fauci on Monkeypox: What Went Wrong&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+Tr3_cwRGU&#34;&gt;https://overcast.fm/+Tr3_cwRGU&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://gimletmedia.com/shows/science-vs/awhxd8k&#34;&gt;https://gimletmedia.com/shows/science-vs/awhxd8k&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Science Vs# --&gt;&#xA;&lt;!-- {BearID:2054662A-4B6E-46AC-BAB7-E0040A6002E4-28016-00002D97F7F5D695} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Science Vs - Trans Kids: The Misinformation Battle</title>
      <link>https://mcjones.ca/docs/science-vs---trans-kids--the-misinformation-battle/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:56 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/science-vs---trans-kids--the-misinformation-battle/</guid>
      <description>&lt;h1 id=&#34;science-vs---trans-kids-the-misinformation-battle&#34;&gt;Science Vs - Trans Kids: The Misinformation Battle&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded at the time&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;science-vs---trans-kids-the-misinformation-battle-1&#34;&gt;Science Vs - Trans Kids: The Misinformation Battle&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+Tr39NdkCE&#34;&gt;https://overcast.fm/+Tr39NdkCE&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://gimletmedia.com/shows/science-vs/2ohxk2a&#34;&gt;https://gimletmedia.com/shows/science-vs/2ohxk2a&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Science Vs# --&gt;&#xA;&lt;!-- {BearID:0944C3BB-2FA9-4582-BAF0-E4910F28B4FC-28016-00002D97F824ABCE} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Screaming in the Cloud - Give 10 Bad Talks All in a Row and Then Get Fired</title>
      <link>https://mcjones.ca/docs/screaming-in-the-cloud---give-10-bad-talks-all-in-a-row-and-then-get-fired/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:56 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/screaming-in-the-cloud---give-10-bad-talks-all-in-a-row-and-then-get-fired/</guid>
      <description>&lt;h1 id=&#34;screaming-in-the-cloud---give-10-bad-talks-all-in-a-row-and-then-get-fired&#34;&gt;Screaming in the Cloud - Give 10 Bad Talks All in a Row and Then Get Fired&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;screaming-in-the-cloud---episode-39-give-10-bad-talks-all-in-a-row-and-then-get-fired&#34;&gt;Screaming in the Cloud - Episode 39: Give 10 Bad Talks All in a Row and Then Get Fired&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+RWDXQ4P1g&#34;&gt;https://overcast.fm/+RWDXQ4P1g&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://share.transistor.fm/s/65dc8166&#34;&gt;https://share.transistor.fm/s/65dc8166&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Screaming In The Cloud# --&gt;&#xA;&lt;!-- {BearID:B0BD49F8-C2C1-4471-899A-C13C6A4B8A85-28016-00002D97F73CD78F} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Screaming in the Cloud - How to Grade DevOps Teams with Nicole Forsgren, PhD</title>
      <link>https://mcjones.ca/docs/screaming-in-the-cloud---how-to-grade-devops-teams-with-nicole-forsgren-phd/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:56 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/screaming-in-the-cloud---how-to-grade-devops-teams-with-nicole-forsgren-phd/</guid>
      <description>&lt;h1 id=&#34;screaming-in-the-cloud---how-to-grade-devops-teams-with-nicole-forsgren-phd&#34;&gt;Screaming in the Cloud - How to Grade DevOps Teams with Nicole Forsgren, PhD&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;screaming-in-the-cloud---how-to-grade-devops-teams-with-nicole-forsgren-phd-1&#34;&gt;Screaming in the Cloud - How to Grade DevOps Teams with Nicole Forsgren, PhD&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+RWDUQ1mBE&#34;&gt;https://overcast.fm/+RWDUQ1mBE&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://share.transistor.fm/s/be99fbed&#34;&gt;https://share.transistor.fm/s/be99fbed&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Screaming In The Cloud# --&gt;&#xA;&lt;!-- {BearID:4649EDC2-F3D7-46F4-A8DD-19E6A7C23C0B-28016-00002D97F70FC41A} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Screaming in the Cloud - The Staying Power of Kubernetes with Kelsey Hightower</title>
      <link>https://mcjones.ca/docs/screaming-in-the-cloud---the-staying-power-of-kubernetes-with-kelsey-hightower/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:56 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/screaming-in-the-cloud---the-staying-power-of-kubernetes-with-kelsey-hightower/</guid>
      <description>&lt;h1 id=&#34;screaming-in-the-cloud---the-staying-power-of-kubernetes-with-kelsey-hightower&#34;&gt;Screaming in the Cloud - The Staying Power of Kubernetes with Kelsey Hightower&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;screaming-in-the-cloud---the-staying-power-of-kubernetes-with-kelsey-hightower-1&#34;&gt;Screaming in the Cloud - The Staying Power of Kubernetes with Kelsey Hightower&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+RWDWLUh5U&#34;&gt;https://overcast.fm/+RWDWLUh5U&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://share.transistor.fm/s/27e6c504&#34;&gt;https://share.transistor.fm/s/27e6c504&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Screaming In The Cloud# --&gt;&#xA;&lt;!-- {BearID:AA3E6EAD-19F2-4345-A4FF-E1CD99EF70A9-28016-00002D97F6E31B89} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Screaming in the Cloud - Bringing Empathy and Humility to Tech with Conrad Heiney</title>
      <link>https://mcjones.ca/docs/screaming-in-the-cloud---bringing-empathy-and-humility-to-tech-with-conrad-heiney/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:55 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/screaming-in-the-cloud---bringing-empathy-and-humility-to-tech-with-conrad-heiney/</guid>
      <description>&lt;h1 id=&#34;screaming-in-the-cloud---bringing-empathy-and-humility-to-tech-with-conrad-heiney&#34;&gt;Screaming in the Cloud - Bringing Empathy and Humility to Tech with Conrad Heiney&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;screaming-in-the-cloud---bringing-empathy-and-humility-to-tech-with-conrad-heiney-1&#34;&gt;Screaming in the Cloud - Bringing Empathy and Humility to Tech with Conrad Heiney&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+RWDXuL_ug&#34;&gt;https://overcast.fm/+RWDXuL_ug&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://share.transistor.fm/s/f92e9aea&#34;&gt;https://share.transistor.fm/s/f92e9aea&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Screaming In The Cloud# --&gt;&#xA;&lt;!-- {BearID:3F99D3A1-98C8-4478-B418-E9548D8CC6CB-28016-00002D97F68B0279} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Screaming in the Cloud - Building Ethical Tech Companies with Liz Fong-Jones</title>
      <link>https://mcjones.ca/docs/screaming-in-the-cloud---building-ethical-tech-companies-with-liz-fong-jones/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:55 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/screaming-in-the-cloud---building-ethical-tech-companies-with-liz-fong-jones/</guid>
      <description>&lt;h1 id=&#34;screaming-in-the-cloud---building-ethical-tech-companies-with-liz-fong-jones&#34;&gt;Screaming in the Cloud - Building Ethical Tech Companies with Liz Fong-Jones&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;screaming-in-the-cloud---building-ethical-tech-companies-with-liz-fong-jones-1&#34;&gt;Screaming in the Cloud - Building Ethical Tech Companies with Liz Fong-Jones&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+RWDVDVBdE&#34;&gt;https://overcast.fm/+RWDVDVBdE&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://share.transistor.fm/s/55f8a504&#34;&gt;https://share.transistor.fm/s/55f8a504&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Screaming In The Cloud# --&gt;&#xA;&lt;!-- {BearID:D6D29AC1-5D97-43AF-94DD-3C3E71102C86-28016-00002D97F63115E3} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Screaming in the Cloud - Cloud Education Made Easy with Katie Bullard</title>
      <link>https://mcjones.ca/docs/screaming-in-the-cloud---cloud-education-made-easy-with-katie-bullard/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:55 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/screaming-in-the-cloud---cloud-education-made-easy-with-katie-bullard/</guid>
      <description>&lt;h1 id=&#34;screaming-in-the-cloud---cloud-education-made-easy-with-katie-bullard&#34;&gt;Screaming in the Cloud - Cloud Education Made Easy with Katie Bullard&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;screaming-in-the-cloud---cloud-education-made-easy-with-katie-bullard-1&#34;&gt;Screaming in the Cloud - Cloud Education Made Easy with Katie Bullard&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+RWDV6IJVU&#34;&gt;https://overcast.fm/+RWDV6IJVU&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://share.transistor.fm/s/21ea52c7&#34;&gt;https://share.transistor.fm/s/21ea52c7&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Screaming In The Cloud# --&gt;&#xA;&lt;!-- {BearID:A015866B-33E6-409C-BB5D-21620DD47CEA-28016-00002D97F60505F3} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Screaming in the Cloud - Digital Security for Humans with Jessy Irwin</title>
      <link>https://mcjones.ca/docs/screaming-in-the-cloud---digital-security-for-humans-with-jessy-irwin/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:55 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/screaming-in-the-cloud---digital-security-for-humans-with-jessy-irwin/</guid>
      <description>&lt;h1 id=&#34;screaming-in-the-cloud---digital-security-for-humans-with-jessy-irwin&#34;&gt;Screaming in the Cloud - Digital Security for Humans with Jessy Irwin&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;screaming-in-the-cloud---digital-security-for-humans-with-jessy-irwin-1&#34;&gt;Screaming in the Cloud - Digital Security for Humans with Jessy Irwin&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+RWDU9ZmqQ&#34;&gt;https://overcast.fm/+RWDU9ZmqQ&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://share.transistor.fm/s/8bf99a7b&#34;&gt;https://share.transistor.fm/s/8bf99a7b&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Screaming In The Cloud# --&gt;&#xA;&lt;!-- {BearID:4FF01FE4-4A4C-4232-AE5B-CEDDBECFFD06-28016-00002D97F6B6B5A9} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Screaming in the Cloud - The Cloud Bard Speaks with Forrest Brazeal</title>
      <link>https://mcjones.ca/docs/screaming-in-the-cloud---the-cloud-bard-speaks-with-forrest-brazeal/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:55 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/screaming-in-the-cloud---the-cloud-bard-speaks-with-forrest-brazeal/</guid>
      <description>&lt;h1 id=&#34;screaming-in-the-cloud---the-cloud-bard-speaks-with-forrest-brazeal&#34;&gt;Screaming in the Cloud - The Cloud Bard Speaks with Forrest Brazeal&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;screaming-in-the-cloud---the-cloud-bard-speaks-with-forrest-brazeal-1&#34;&gt;Screaming in the Cloud - The Cloud Bard Speaks with Forrest Brazeal&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+RWDVLXzsc&#34;&gt;https://overcast.fm/+RWDVLXzsc&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://share.transistor.fm/s/14822853&#34;&gt;https://share.transistor.fm/s/14822853&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Screaming In The Cloud# --&gt;&#xA;&lt;!-- {BearID:42D10EAD-BE96-4A83-A305-5D04063A0AA3-28016-00002D97F65CC043} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Articles of Interest - 1. Kids Clothes</title>
      <link>https://mcjones.ca/docs/articles-of-interest---1.-kids-clothes/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:53 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/articles-of-interest---1.-kids-clothes/</guid>
      <description>&lt;h1 id=&#34;articles-of-interest---1-kids-clothes&#34;&gt;Articles of Interest - 1. Kids Clothes&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;articles-of-interest---1-kids-clothes-1&#34;&gt;Articles of Interest - 1. Kids’ Clothes&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+RIdQg4rXc&#34;&gt;https://overcast.fm/+RIdQg4rXc&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://99percentinvisible.org/episode/kids-clothes-articles-of-interest-1/&#34;&gt;https://99percentinvisible.org/episode/kids-clothes-articles-of-interest-1/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #articles of interest# --&gt;&#xA;&lt;!-- {BearID:3082B057-FEF0-485C-BD93-30FAEB8663EA-28016-00002D97F3233106} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Articles of Interest - 2. Plaid</title>
      <link>https://mcjones.ca/docs/articles-of-interest---2.-plaid/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:53 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/articles-of-interest---2.-plaid/</guid>
      <description>&lt;h1 id=&#34;articles-of-interest---2-plaid&#34;&gt;Articles of Interest - 2. Plaid&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;articles-of-interest---2-plaid-1&#34;&gt;Articles of Interest - 2. Plaid&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+RIdR0bWzE&#34;&gt;https://overcast.fm/+RIdR0bWzE&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://99percentinvisible.org/episode/plaid-articles-of-interest-2/&#34;&gt;https://99percentinvisible.org/episode/plaid-articles-of-interest-2/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #articles of interest# --&gt;&#xA;&lt;!-- {BearID:2FDCC3B8-F513-4020-889E-64ADB29FBB4E-28016-00002D97F2F7FE6E} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Articles of Interest - 3. Pockets</title>
      <link>https://mcjones.ca/docs/articles-of-interest---3.-pockets/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:53 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/articles-of-interest---3.-pockets/</guid>
      <description>&lt;h1 id=&#34;articles-of-interest---3-pockets&#34;&gt;Articles of Interest - 3. Pockets&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;articles-of-interest---3-pockets-1&#34;&gt;Articles of Interest - 3. Pockets&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+RIdR2Axaw&#34;&gt;https://overcast.fm/+RIdR2Axaw&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://99percentinvisible.org/episode/pockets-articles-of-interest-3/&#34;&gt;https://99percentinvisible.org/episode/pockets-articles-of-interest-3/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #articles of interest# --&gt;&#xA;&lt;!-- {BearID:B486F1DD-6A21-4679-9BCB-6D635F5D3B5C-28016-00002D97F2CCC310} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Articles of Interest - 4. Hawaiian Shirts</title>
      <link>https://mcjones.ca/docs/articles-of-interest---4.-hawaiian-shirts/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:53 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/articles-of-interest---4.-hawaiian-shirts/</guid>
      <description>&lt;h1 id=&#34;articles-of-interest---4-hawaiian-shirts&#34;&gt;Articles of Interest - 4. Hawaiian Shirts&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;articles-of-interest---4-hawaiian-shirts-1&#34;&gt;Articles of Interest - 4. Hawaiian Shirts&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+RIdRTsn88&#34;&gt;https://overcast.fm/+RIdRTsn88&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://99percentinvisible.org/episode/hawaiian-shirts-articles-of-interest-4/&#34;&gt;https://99percentinvisible.org/episode/hawaiian-shirts-articles-of-interest-4/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #articles of interest# --&gt;&#xA;&lt;!-- {BearID:3989C6EC-A3B5-4C6F-991B-445E2C408205-28016-00002D97F29B7F30} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Articles of Interest - 5. Blue Jeans</title>
      <link>https://mcjones.ca/docs/articles-of-interest---5.-blue-jeans/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:52 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/articles-of-interest---5.-blue-jeans/</guid>
      <description>&lt;h1 id=&#34;articles-of-interest---5-blue-jeans&#34;&gt;Articles of Interest - 5. Blue Jeans&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;articles-of-interest---5-blue-jeans-1&#34;&gt;Articles of Interest - 5. Blue Jeans&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+RIdSuLNHU&#34;&gt;https://overcast.fm/+RIdSuLNHU&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://99percentinvisible.org/episode/blue-jeans-articles-of-interest-5/&#34;&gt;https://99percentinvisible.org/episode/blue-jeans-articles-of-interest-5/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #articles of interest# --&gt;&#xA;&lt;!-- {BearID:74EA9F87-107A-432C-BA1E-7E126B303500-28016-00002D97F2704459} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Articles of Interest - 6. Punk Style</title>
      <link>https://mcjones.ca/docs/articles-of-interest---6.-punk-style/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:52 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/articles-of-interest---6.-punk-style/</guid>
      <description>&lt;h1 id=&#34;articles-of-interest---6-punk-style&#34;&gt;Articles of Interest - 6. Punk Style&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;articles-of-interest---6-punk-style-1&#34;&gt;Articles of Interest - 6. Punk Style&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+RIdQIIvJY&#34;&gt;https://overcast.fm/+RIdQIIvJY&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://99percentinvisible.org/episode/punk-style-articles-of-interest-6/&#34;&gt;https://99percentinvisible.org/episode/punk-style-articles-of-interest-6/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #articles of interest# --&gt;&#xA;&lt;!-- {BearID:CC0D3CD1-04A6-4C65-A6FA-EF3255E8D803-28016-00002D97F23D832C} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Articles of Interest - Theme Music by Sasami</title>
      <link>https://mcjones.ca/docs/articles-of-interest---theme-music-by-sasami/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:52 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/articles-of-interest---theme-music-by-sasami/</guid>
      <description>&lt;h1 id=&#34;articles-of-interest---theme-music-by-sasami&#34;&gt;Articles of Interest - Theme Music by Sasami&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;articles-of-interest---theme-music-by-sasami-1&#34;&gt;Articles of Interest - Theme Music by Sasami&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+RIdQfSX8c&#34;&gt;https://overcast.fm/+RIdQfSX8c&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://99percentinvisible.org/aoi/&#34;&gt;https://99percentinvisible.org/aoi/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #articles of interest# --&gt;&#xA;&lt;!-- {BearID:64E6CE7C-0519-4347-9E9E-FB743E5F9062-28016-00002D97F20C3B18} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>The War on Cars - Attack of the Robocars!</title>
      <link>https://mcjones.ca/docs/the-war-on-cars---attack-of-the-robocars/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:51 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/the-war-on-cars---attack-of-the-robocars/</guid>
      <description>&lt;h1 id=&#34;the-war-on-cars---attack-of-the-robocars&#34;&gt;The War on Cars - Attack of the Robocars!&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-war-on-cars---attack-of-the-robocars-1&#34;&gt;The War on Cars - Attack of the Robocars!&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+O31rnKAyI&#34;&gt;https://overcast.fm/+O31rnKAyI&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://waroncars.org/episode-2-attack-of-the-robocars&#34;&gt;http://waroncars.org/episode-2-attack-of-the-robocars&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #The War On Cars# --&gt;&#xA;&lt;!-- {BearID:37FF3676-6A00-45A4-B177-4BA35F289AD6-28016-00002D97F06555B8} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>The War on Cars - Can the Millennials Win the War on Cars?</title>
      <link>https://mcjones.ca/docs/the-war-on-cars---can-the-millennials-win-the-war-on-cars/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:51 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/the-war-on-cars---can-the-millennials-win-the-war-on-cars/</guid>
      <description>&lt;h1 id=&#34;the-war-on-cars---can-the-millennials-win-the-war-on-cars&#34;&gt;The War on Cars - Can the Millennials Win the War on Cars?&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-war-on-cars---can-the-millennials-win-the-war-on-cars-1&#34;&gt;The War on Cars - Can the Millennials Win the War on Cars?&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+O31o6neE4&#34;&gt;https://overcast.fm/+O31o6neE4&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://waroncars.org/can-the-millennials-win-the-war-on-cars&#34;&gt;http://waroncars.org/can-the-millennials-win-the-war-on-cars&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #The War On Cars# --&gt;&#xA;&lt;!-- {BearID:61091C74-FA1C-444B-BD1D-8D5B5537211C-28016-00002D97EFD976FF} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>The War on Cars - Whoops! The Liberal Blind Spot for Cars</title>
      <link>https://mcjones.ca/docs/the-war-on-cars---whoops-the-liberal-blind-spot-for-cars/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:51 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/the-war-on-cars---whoops-the-liberal-blind-spot-for-cars/</guid>
      <description>&lt;h1 id=&#34;the-war-on-cars---whoops-the-liberal-blind-spot-for-cars&#34;&gt;The War on Cars - Whoops! The Liberal Blind Spot for Cars&lt;/h1&gt;&#xA;&lt;p&gt;No notes recoded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-war-on-cars---whoops-the-liberal-blind-spot-for-cars-1&#34;&gt;The War on Cars - Whoops! The Liberal Blind Spot for Cars&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+O31p3gadI&#34;&gt;https://overcast.fm/+O31p3gadI&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://waroncars.org/whoops-the-liberal-blind-spot-for-cars&#34;&gt;http://waroncars.org/whoops-the-liberal-blind-spot-for-cars&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #The War On Cars# --&gt;&#xA;&lt;!-- {BearID:F46572F1-B284-48D9-B306-D1D894999767-28016-00002D97F00492F0} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>The War on Cars - Why So Serious? The Lighter Side of The War On Cars.</title>
      <link>https://mcjones.ca/docs/the-war-on-cars---why-so-serious-the-lighter-side-of-the-war-on-cars./</link>
      <pubDate>Sun, 08 Jan 2023 05:54:51 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/the-war-on-cars---why-so-serious-the-lighter-side-of-the-war-on-cars./</guid>
      <description>&lt;h1 id=&#34;the-war-on-cars---why-so-serious-the-lighter-side-of-the-war-on-cars&#34;&gt;The War on Cars - Why So Serious? The Lighter Side of The War On Cars.&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-war-on-cars---why-so-serious-the-lighter-side-of-the-war-on-cars-1&#34;&gt;The War on Cars - Why So Serious? The Lighter Side of The War On Cars.&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+O31rAWjp4&#34;&gt;https://overcast.fm/+O31rAWjp4&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://waroncars.org/why-so-serious-the-lighter-side-of-the-war-on-cars&#34;&gt;http://waroncars.org/why-so-serious-the-lighter-side-of-the-war-on-cars&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #The War On Cars# --&gt;&#xA;&lt;!-- {BearID:05D24BAC-BB39-4968-A6A6-E8711D57E4B1-28016-00002D97F0329F76} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>The War on Cars - Why the World Needs The War on Cars</title>
      <link>https://mcjones.ca/docs/the-war-on-cars---why-the-world-needs-the-war-on-cars/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:51 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/the-war-on-cars---why-the-world-needs-the-war-on-cars/</guid>
      <description>&lt;h1 id=&#34;the-war-on-cars---why-the-world-needs-the-war-on-cars&#34;&gt;The War on Cars - Why the World Needs The War on Cars&lt;/h1&gt;&#xA;&lt;p&gt;No notes recoded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-war-on-cars---why-the-world-needs-the-war-on-cars-1&#34;&gt;The War on Cars - Why the World Needs The War on Cars&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+O31q-OzHw&#34;&gt;https://overcast.fm/+O31q-OzHw&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://waroncars.org/the-war-on-cars-podcast-pilot-episode&#34;&gt;http://waroncars.org/the-war-on-cars-podcast-pilot-episode&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #The War On Cars# --&gt;&#xA;&lt;!-- {BearID:8698067D-B697-4C40-AD17-83B9A629217C-28016-00002D97F097BD85} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>The War on Cars - Adam Conover Ruins The War On Cars</title>
      <link>https://mcjones.ca/docs/the-war-on-cars---adam-conover-ruins-the-war-on-cars/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:50 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/the-war-on-cars---adam-conover-ruins-the-war-on-cars/</guid>
      <description>&lt;h1 id=&#34;the-war-on-cars---adam-conover-ruins-the-war-on-cars&#34;&gt;The War on Cars - Adam Conover Ruins The War On Cars&lt;/h1&gt;&#xA;&lt;p&gt;No notes recoded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-war-on-cars---adam-conover-ruins-the-war-on-cars-1&#34;&gt;The War on Cars - Adam Conover Ruins The War On Cars&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+O31o8SHA0&#34;&gt;https://overcast.fm/+O31o8SHA0&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://waroncars.org/twoc-bonus-adam-conover-ruins-the-war-on-cars&#34;&gt;http://waroncars.org/twoc-bonus-adam-conover-ruins-the-war-on-cars&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #The War On Cars# --&gt;&#xA;&lt;!-- {BearID:A0926704-AF2B-488D-97C3-950B7EC68C19-28016-00002D97EFAD11A3} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>The War on Cars - Barcelona&#39;s Superblocks with David Roberts of Vox</title>
      <link>https://mcjones.ca/docs/the-war-on-cars---barcelonas-superblocks-with-david-roberts-of-vox/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:50 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/the-war-on-cars---barcelonas-superblocks-with-david-roberts-of-vox/</guid>
      <description>&lt;h1 id=&#34;the-war-on-cars---barcelonas-superblocks-with-david-roberts-of-vox&#34;&gt;The War on Cars - Barcelona&amp;rsquo;s Superblocks with David Roberts of Vox&lt;/h1&gt;&#xA;&lt;p&gt;No notes recoded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-war-on-cars---barcelonas-superblocks-with-david-roberts-of-vox-1&#34;&gt;The War on Cars - Barcelona’s Superblocks with David Roberts of Vox.&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+O31rx4zdI&#34;&gt;https://overcast.fm/+O31rx4zdI&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://waroncars.org/twoc-bonus-barcelonas-superblocks-with-david-roberts-of-vox&#34;&gt;http://waroncars.org/twoc-bonus-barcelonas-superblocks-with-david-roberts-of-vox&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #The War On Cars# --&gt;&#xA;&lt;!-- {BearID:B64CDCDF-4882-4397-B7FD-68AAB974EFFF-28016-00002D97EF7C682F} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>The War on Cars - Cars, Climate and Cities with Bill McKibben</title>
      <link>https://mcjones.ca/docs/the-war-on-cars---cars-climate-and-cities-with-bill-mckibben/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:50 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/the-war-on-cars---cars-climate-and-cities-with-bill-mckibben/</guid>
      <description>&lt;h1 id=&#34;the-war-on-cars---cars-climate-and-cities-with-bill-mckibben&#34;&gt;The War on Cars - Cars, Climate and Cities with Bill McKibben&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-war-on-cars---cars-climate-and-cities-with-bill-mckibben-1&#34;&gt;The War on Cars - Cars, Climate and Cities with Bill McKibben&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+O31qyoavI&#34;&gt;https://overcast.fm/+O31qyoavI&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://waroncars.org/cars-climate-and-changing-cities-with-bill-mckibben&#34;&gt;http://waroncars.org/cars-climate-and-changing-cities-with-bill-mckibben&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #The War On Cars# --&gt;&#xA;&lt;!-- {BearID:11A2180E-BB81-4E8C-A758-A0CF29968E81-28016-00002D97EEF51C6E} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>The War on Cars - Driving While Black with Gretchen Sorin</title>
      <link>https://mcjones.ca/docs/the-war-on-cars---driving-while-black-with-gretchen-sorin/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:50 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/the-war-on-cars---driving-while-black-with-gretchen-sorin/</guid>
      <description>&lt;h1 id=&#34;the-war-on-cars---driving-while-black-with-gretchen-sorin&#34;&gt;The War on Cars - Driving While Black with Gretchen Sorin&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-war-on-cars---driving-while-black-with-gretchen-sorin-1&#34;&gt;The War on Cars - “Driving While Black” with Gretchen Sorin&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+O31prepGo&#34;&gt;https://overcast.fm/+O31prepGo&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://waroncars.org/driving-while-black-with-gretchen-sorin&#34;&gt;http://waroncars.org/driving-while-black-with-gretchen-sorin&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #The War On Cars# --&gt;&#xA;&lt;!-- {BearID:A79EE311-67D9-4AB6-B5CE-79A146F6BF33-28016-00002D97EEC582B3} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>The War on Cars - Policing the Open Road [Rerelease]</title>
      <link>https://mcjones.ca/docs/the-war-on-cars---policing-the-open-road-rerelease/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:50 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/the-war-on-cars---policing-the-open-road-rerelease/</guid>
      <description>&lt;h1 id=&#34;the-war-on-cars---policing-the-open-road-rerelease&#34;&gt;The War on Cars - Policing the Open Road [Rerelease]&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-war-on-cars---policing-the-open-road-rerelease-1&#34;&gt;The War on Cars - Policing the Open Road [Rerelease]&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+O31rxQYX8&#34;&gt;https://overcast.fm/+O31rxQYX8&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://waroncars.org/policing-the-open-road-rerelease&#34;&gt;http://waroncars.org/policing-the-open-road-rerelease&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #The War On Cars# --&gt;&#xA;&lt;!-- {BearID:88AD250D-9F77-4A73-B863-5E8730241F29-28016-00002D97EE6A8B03} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>The War on Cars - Vehicles as Weapons</title>
      <link>https://mcjones.ca/docs/the-war-on-cars---vehicles-as-weapons/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:50 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/the-war-on-cars---vehicles-as-weapons/</guid>
      <description>&lt;h1 id=&#34;the-war-on-cars---vehicles-as-weapons&#34;&gt;The War on Cars - Vehicles as Weapons&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-war-on-cars---vehicles-as-weapons-1&#34;&gt;The War on Cars - Vehicles as Weapons&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+O31qozKiI&#34;&gt;https://overcast.fm/+O31qozKiI&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://waroncars.org/vehicles-as-weapons&#34;&gt;http://waroncars.org/vehicles-as-weapons&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #The War On Cars# --&gt;&#xA;&lt;!-- {BearID:0A98F908-F588-4084-ACE6-18A57BE67C5A-28016-00002D97EE9ADBFB} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>The War on Cars - WCAR Drive Time Radio</title>
      <link>https://mcjones.ca/docs/the-war-on-cars---wcar-drive-time-radio/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:50 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/the-war-on-cars---wcar-drive-time-radio/</guid>
      <description>&lt;h1 id=&#34;the-war-on-cars---wcar-drive-time-radio&#34;&gt;The War on Cars - WCAR Drive Time Radio&lt;/h1&gt;&#xA;&lt;p&gt;No notes recoded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-war-on-cars---wcar-drive-time-radio-1&#34;&gt;The War on Cars - WCAR Drive Time Radio&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+O31rPCoHM&#34;&gt;https://overcast.fm/+O31rPCoHM&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://waroncars.org/wcar-drive-time-radio&#34;&gt;http://waroncars.org/wcar-drive-time-radio&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #The War On Cars# --&gt;&#xA;&lt;!-- {BearID:72861DC7-E3BE-46E0-9E0C-62F82218137D-28016-00002D97EF1FEEA2} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>The War on Cars - You Get a Car!</title>
      <link>https://mcjones.ca/docs/the-war-on-cars---you-get-a-car/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:50 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/the-war-on-cars---you-get-a-car/</guid>
      <description>&lt;h1 id=&#34;the-war-on-cars---you-get-a-car&#34;&gt;The War on Cars - You Get a Car!&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-war-on-cars---you-get-a-car-1&#34;&gt;The War on Cars - You Get a Car!&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+O31pbh8XU&#34;&gt;https://overcast.fm/+O31pbh8XU&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://waroncars.org/you-get-a-car&#34;&gt;http://waroncars.org/you-get-a-car&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #The War On Cars# --&gt;&#xA;&lt;!-- {BearID:4D686F53-E05D-4BE8-AD59-A658D3409670-28016-00002D97EF4D887C} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>The War on Cars - Getting the Car Out of Carbon Emissions</title>
      <link>https://mcjones.ca/docs/the-war-on-cars---getting-the-car-out-of-carbon-emissions/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:49 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/the-war-on-cars---getting-the-car-out-of-carbon-emissions/</guid>
      <description>&lt;h1 id=&#34;the-war-on-cars---getting-the-car-out-of-carbon-emissions&#34;&gt;The War on Cars - Getting the Car Out of Carbon Emissions&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-war-on-cars---getting-the-car-out-of-carbon-emissions-1&#34;&gt;The War on Cars - Getting the Car Out of Carbon Emissions&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+O31pVnNlI&#34;&gt;https://overcast.fm/+O31pVnNlI&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://waroncars.org/getting-the-car-out-of-carbon-emissions&#34;&gt;http://waroncars.org/getting-the-car-out-of-carbon-emissions&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #The War On Cars# --&gt;&#xA;&lt;!-- {BearID:03CF5D7E-E8FF-4971-A5A5-A60AB2764DD2-28016-00002D97EE3FDB10} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>The War on Cars - How to Save a Planet with Kendra Pierre-Louis</title>
      <link>https://mcjones.ca/docs/the-war-on-cars---how-to-save-a-planet-with-kendra-pierre-louis/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:49 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/the-war-on-cars---how-to-save-a-planet-with-kendra-pierre-louis/</guid>
      <description>&lt;h1 id=&#34;the-war-on-cars---how-to-save-a-planet-with-kendra-pierre-louis&#34;&gt;The War on Cars - How to Save a Planet with Kendra Pierre-Louis&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-war-on-cars---how-to-save-a-planet-with-kendra-pierre-louis-1&#34;&gt;The War on Cars - How to Save a Planet with Kendra Pierre-Louis&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+O31r12jWQ&#34;&gt;https://overcast.fm/+O31r12jWQ&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://waroncars.org/how-to-save-a-planet-with-kendra-pierre-louis&#34;&gt;http://waroncars.org/how-to-save-a-planet-with-kendra-pierre-louis&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #The War On Cars# --&gt;&#xA;&lt;!-- {BearID:7AB5D481-C500-4552-9A3A-61F99D101C88-28016-00002D97EDB40A4C} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>The War on Cars - Jamelle Bouie Has Seen the Future of Transportation</title>
      <link>https://mcjones.ca/docs/the-war-on-cars---jamelle-bouie-has-seen-the-future-of-transportation/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:49 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/the-war-on-cars---jamelle-bouie-has-seen-the-future-of-transportation/</guid>
      <description>&lt;h1 id=&#34;the-war-on-cars---jamelle-bouie-has-seen-the-future-of-transportation&#34;&gt;The War on Cars - Jamelle Bouie Has Seen the Future of Transportation&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-war-on-cars---jamelle-bouie-has-seen-the-future-of-transportation-1&#34;&gt;The War on Cars - Jamelle Bouie Has Seen the Future of Transportation&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+O31rQUHcI&#34;&gt;https://overcast.fm/+O31rQUHcI&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://waroncars.org/jamelle-bouie-has-seen-the-future-of-transportation&#34;&gt;http://waroncars.org/jamelle-bouie-has-seen-the-future-of-transportation&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #The War On Cars# --&gt;&#xA;&lt;!-- {BearID:99321775-073B-4F94-A550-5E625744E503-28016-00002D97EE09A847} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>The War on Cars - Not Just Bikes with Jason Slaughter</title>
      <link>https://mcjones.ca/docs/the-war-on-cars---not-just-bikes-with-jason-slaughter/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:49 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/the-war-on-cars---not-just-bikes-with-jason-slaughter/</guid>
      <description>&lt;h1 id=&#34;the-war-on-cars---not-just-bikes-with-jason-slaughter&#34;&gt;The War on Cars - Not Just Bikes with Jason Slaughter&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-war-on-cars---not-just-bikes-with-jason-slaughter-1&#34;&gt;The War on Cars - Not Just Bikes with Jason Slaughter&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+O31oqVee0&#34;&gt;https://overcast.fm/+O31oqVee0&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://waroncars.org/not-just-bikes-with-jason-slaughter&#34;&gt;http://waroncars.org/not-just-bikes-with-jason-slaughter&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #The War On Cars# --&gt;&#xA;&lt;!-- {BearID:E7CEC6B4-3F46-41F0-88B6-0884C4B744AB-28016-00002D97EDDF3E6D} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>IPv6 Buzz - 010 - Understanding And Troubleshooting IPv6 With Wireshark</title>
      <link>https://mcjones.ca/docs/ipv6-buzz---010---understanding-and-troubleshooting-ipv6-with-wireshark/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:48 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/ipv6-buzz---010---understanding-and-troubleshooting-ipv6-with-wireshark/</guid>
      <description>&lt;h1 id=&#34;ipv6-buzz---010---understanding-and-troubleshooting-ipv6-with-wireshark&#34;&gt;IPv6 Buzz - 010 - Understanding And Troubleshooting IPv6 With Wireshark&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;ipv6-buzz---packet-pushers---ipv6-buzz-010-understanding-and-troubleshooting-ipv6-with-wireshark&#34;&gt;IPv6 Buzz - Packet Pushers - IPv6 Buzz 010: Understanding And Troubleshooting IPv6 With Wireshark&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+OPh71H2c4&#34;&gt;https://overcast.fm/+OPh71H2c4&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://packetpushers.net/podcast/ipv6-buzz-010-understanding-and-troubleshooting-ipv6-with-wireshark/&#34;&gt;https://packetpushers.net/podcast/ipv6-buzz-010-understanding-and-troubleshooting-ipv6-with-wireshark/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #IPv6 Buzz# --&gt;&#xA;&lt;!-- {BearID:0EF73057-373D-4DBE-9305-56DE481835EF-28016-00002D97EC818E8B} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>IPv6 Buzz - 021 - NAT Isn&#39;t Necessary For Security: Answering Listener Questions</title>
      <link>https://mcjones.ca/docs/ipv6-buzz---021---nat-isnt-necessary-for-security--answering-listener-questions/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:48 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/ipv6-buzz---021---nat-isnt-necessary-for-security--answering-listener-questions/</guid>
      <description>&lt;h1 id=&#34;ipv6-buzz---021---nat-isnt-necessary-for-security-answering-listener-questions&#34;&gt;IPv6 Buzz - 021 - NAT Isn&amp;rsquo;t Necessary For Security: Answering Listener Questions&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;ipv6-buzz---packet-pushers---ipv6-buzz-021-nat-isnt-necessary-for-security-answering-listener-questions&#34;&gt;IPv6 Buzz - Packet Pushers - IPv6 Buzz 021: NAT Isn’t Necessary For Security: Answering Listener Questions&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+OPh4DU6m8&#34;&gt;https://overcast.fm/+OPh4DU6m8&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://packetpushers.net/podcast/ipv6-buzz-021-nat-isnt-necessary-for-security-answering-listener-questions/&#34;&gt;https://packetpushers.net/podcast/ipv6-buzz-021-nat-isnt-necessary-for-security-answering-listener-questions/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #IPv6 Buzz# --&gt;&#xA;&lt;!-- {BearID:A906AECF-6F87-467A-8709-3FAC9A538D1D-28016-00002D97EC51D0C2} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>What on Earth is Going on - 1 - with Populism</title>
      <link>https://mcjones.ca/docs/what-on-earth-is-going-on---1---with-populism/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:48 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/what-on-earth-is-going-on---1---with-populism/</guid>
      <description>&lt;h1 id=&#34;what-on-earth-is-going-on---1---with-populism&#34;&gt;What on Earth is Going on - 1 - with Populism&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;what-on-earth-is-going-on---with-populism-ep-1&#34;&gt;What on Earth is Going on? - …with Populism (Ep. 1)&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+NNa12ENRM&#34;&gt;https://overcast.fm/+NNa12ENRM&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://woegoshow.com/with-populism&#34;&gt;http://woegoshow.com/with-populism&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #What On Earth is Going On# --&gt;&#xA;&lt;!-- {BearID:75C2A85F-E80A-4F27-9268-A524E74DBC77-28016-00002D97EBF8A015} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>What on Earth is Going on - with Karl Marx, Part I and II</title>
      <link>https://mcjones.ca/docs/what-on-earth-is-going-on---with-karl-marx-part-i-and-ii/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:48 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/what-on-earth-is-going-on---with-karl-marx-part-i-and-ii/</guid>
      <description>&lt;h1 id=&#34;what-on-earth-is-going-on---with-karl-marx-part-i-and-ii&#34;&gt;What on Earth is Going on - with Karl Marx, Part I and II&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;what-on-earth-is-going-on---with-karl-marx-part-i-ep-3&#34;&gt;What on Earth is Going on? - …with Karl Marx, Part I (Ep. 3)&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+NNa2E5pm0&#34;&gt;https://overcast.fm/+NNa2E5pm0&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://woegoshow.com/with-karl-marx-part-i-ep-3&#34;&gt;http://woegoshow.com/with-karl-marx-part-i-ep-3&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h6 id=&#34;what-on-earth-is-going-on---with-karl-marx-part-ii-ep-4&#34;&gt;What on Earth is Going on? - …with Karl Marx, Part II (Ep. 4)&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+NNa3Yme8M&#34;&gt;https://overcast.fm/+NNa3Yme8M&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://woegoshow.com/karl-marx-part-ii-ep-4&#34;&gt;http://woegoshow.com/karl-marx-part-ii-ep-4&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #What On Earth is Going On# --&gt;&#xA;&lt;!-- {BearID:14A2C9AB-A1AE-48A7-9725-7549B680B6A5-28016-00002D97EBCA1FC7} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>What on Earth is Going on - 15 - according to the book, The Retreat of Western Liberalism</title>
      <link>https://mcjones.ca/docs/what-on-earth-is-going-on---15---according-to-the-book-the-retreat-of-western-liberalism/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:47 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/what-on-earth-is-going-on---15---according-to-the-book-the-retreat-of-western-liberalism/</guid>
      <description>&lt;h1 id=&#34;what-on-earth-is-going-on---15---according-to-the-book-the-retreat-of-western-liberalism&#34;&gt;What on Earth is Going on - 15 - according to the book, The Retreat of Western Liberalism&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;what-on-earth-is-going-on---according-to-the-book-the-retreat-of-western-liberalism-ep-15&#34;&gt;What on Earth is Going on? - …according to the book, The Retreat of Western Liberalism (Ep. 15)&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+NNa3ZnnKM&#34;&gt;https://overcast.fm/+NNa3ZnnKM&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://woegoshow.com/according-to-the-retreat-of-western-liberalism-by-edward-luce-ep-15&#34;&gt;http://woegoshow.com/according-to-the-retreat-of-western-liberalism-by-edward-luce-ep-15&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #What On Earth is Going On#? --&gt;&#xA;&lt;!-- {BearID:22C58983-AFCF-44C8-9C49-3E6778AD0233-28016-00002D97EAE059C2} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>What on Earth is Going on - 18 - with Women in Leadership</title>
      <link>https://mcjones.ca/docs/what-on-earth-is-going-on---18---with-women-in-leadership/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:47 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/what-on-earth-is-going-on---18---with-women-in-leadership/</guid>
      <description>&lt;h1 id=&#34;what-on-earth-is-going-on---18---with-women-in-leadership&#34;&gt;What on Earth is Going on - 18 - with Women in Leadership&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;what-on-earth-is-going-on---with-women-in-leadership-ep-18&#34;&gt;What on Earth is Going on? - …with Women in Leadership (Ep. 18)&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+NNa1i6jcg&#34;&gt;https://overcast.fm/+NNa1i6jcg&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://woegoshow.com/with-women-in-leadership-ep-18&#34;&gt;http://woegoshow.com/with-women-in-leadership-ep-18&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #What On Earth is Going On# --&gt;&#xA;&lt;!-- {BearID:9082F4EE-AC0D-484D-8740-A6259E034A2A-28016-00002D97EAAF69D7} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>What on Earth is Going on - 20 - with Social Change</title>
      <link>https://mcjones.ca/docs/what-on-earth-is-going-on---20---with-social-change/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:47 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/what-on-earth-is-going-on---20---with-social-change/</guid>
      <description>&lt;h1 id=&#34;what-on-earth-is-going-on---20---with-social-change&#34;&gt;What on Earth is Going on - 20 - with Social Change&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;what-on-earth-is-going-on---with-social-change-ep-20&#34;&gt;What on Earth is Going on? - …with Social Change (Ep. 20)&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+NNa1lcLp4&#34;&gt;https://overcast.fm/+NNa1lcLp4&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://woegoshow.com/with-social-change-ep-20&#34;&gt;http://woegoshow.com/with-social-change-ep-20&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #What On Earth is Going On# --&gt;&#xA;&lt;!-- {BearID:6379196F-53A6-4C6E-81C1-5B8AA6D9EC53-28016-00002D97EA82641D} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>What on Earth is Going on - 21 - with the Movies</title>
      <link>https://mcjones.ca/docs/what-on-earth-is-going-on---21---with-the-movies/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:47 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/what-on-earth-is-going-on---21---with-the-movies/</guid>
      <description>&lt;h1 id=&#34;what-on-earth-is-going-on---21---with-the-movies&#34;&gt;What on Earth is Going on - 21 - with the Movies&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;what-on-earth-is-going-on---with-the-movies-ep-21&#34;&gt;What on Earth is Going on? - …with the Movies (Ep. 21)&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+NNa0vHIYo&#34;&gt;https://overcast.fm/+NNa0vHIYo&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://woegoshow.com/with-the-movies-ep-21&#34;&gt;http://woegoshow.com/with-the-movies-ep-21&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #What On Earth is Going On# --&gt;&#xA;&lt;!-- {BearID:A5D6511D-07DE-4B53-9C79-053510577B02-28016-00002D97EA585A2E} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>What on Earth is Going on - 22 - with City Planning and Design</title>
      <link>https://mcjones.ca/docs/what-on-earth-is-going-on---22---with-city-planning-and-design/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:47 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/what-on-earth-is-going-on---22---with-city-planning-and-design/</guid>
      <description>&lt;h1 id=&#34;what-on-earth-is-going-on---22---with-city-planning-and-design&#34;&gt;What on Earth is Going on - 22 - with City Planning and Design&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;what-on-earth-is-going-on---with-city-planning-and-design-ep-22&#34;&gt;What on Earth is Going on? - …with City Planning and Design (Ep. 22)&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+NNa3RUOjg&#34;&gt;https://overcast.fm/+NNa3RUOjg&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://woegoshow.com/with-city-planning-and-design-ep-22&#34;&gt;http://woegoshow.com/with-city-planning-and-design-ep-22&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #What On Earth is Going On# --&gt;&#xA;&lt;!-- {BearID:7D3E0E80-E017-432D-9FED-E3AADB23F927-28016-00002D97EA29382D} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>What on Earth is Going on - 5 - with Taxes</title>
      <link>https://mcjones.ca/docs/what-on-earth-is-going-on---5---with-taxes/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:47 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/what-on-earth-is-going-on---5---with-taxes/</guid>
      <description>&lt;h1 id=&#34;what-on-earth-is-going-on---5---with-taxes&#34;&gt;What on Earth is Going on - 5 - with Taxes&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;what-on-earth-is-going-on---with-taxes-ep-5&#34;&gt;What on Earth is Going on? - …with Taxes (Ep. 5)&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+NNa1auHsE&#34;&gt;https://overcast.fm/+NNa1auHsE&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://woegoshow.com/with-taxes-ep-5&#34;&gt;http://woegoshow.com/with-taxes-ep-5&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #What On Earth is Going On# --&gt;&#xA;&lt;!-- {BearID:9BBCE6AD-F4A3-4493-8D9E-C9FC7190C9A3-28016-00002D97EB6D1184} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>What on Earth is Going on - 6 - with Climate Change &amp; Science Literacy</title>
      <link>https://mcjones.ca/docs/what-on-earth-is-going-on---6---with-climate-change--science-literacy/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:47 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/what-on-earth-is-going-on---6---with-climate-change--science-literacy/</guid>
      <description>&lt;h1 id=&#34;what-on-earth-is-going-on---6---with-climate-change--science-literacy&#34;&gt;What on Earth is Going on - 6 - with Climate Change &amp;amp; Science Literacy&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;what-on-earth-is-going-on---with-climate-change--science-literacy-ep-6&#34;&gt;What on Earth is Going on? - …with Climate Change &amp;amp; Science Literacy (Ep. 6)&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+NNa1gPSj0&#34;&gt;https://overcast.fm/+NNa1gPSj0&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://woegoshow.com/with-climate-change-science-literacy-ep-6&#34;&gt;http://woegoshow.com/with-climate-change-science-literacy-ep-6&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #What On Earth is Going On# --&gt;&#xA;&lt;!-- {BearID:7EF3F932-C1DD-4F15-BFF6-A7FCD0B9C557-28016-00002D97EB3E1BA1} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>What on Earth is Going on - 8 - with Renewable Energy</title>
      <link>https://mcjones.ca/docs/what-on-earth-is-going-on---8---with-renewable-energy/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:47 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/what-on-earth-is-going-on---8---with-renewable-energy/</guid>
      <description>&lt;h1 id=&#34;what-on-earth-is-going-on---8---with-renewable-energy&#34;&gt;What on Earth is Going on - 8 - with Renewable Energy&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;what-on-earth-is-going-on---with-renewable-energy-ep-8&#34;&gt;What on Earth is Going on? - …with Renewable Energy (Ep. 8)&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+NNa1Pqod4&#34;&gt;https://overcast.fm/+NNa1Pqod4&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://woegoshow.com/with-renewable-energy-ep-8&#34;&gt;http://woegoshow.com/with-renewable-energy-ep-8&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #What On Earth is Going On# --&gt;&#xA;&lt;!-- {BearID:46FAF18D-105B-4297-BF53-EA2DC4D02E8B-28016-00002D97EB0E852F} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Containers</title>
      <link>https://mcjones.ca/docs/containers/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:46 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/containers/</guid>
      <description>&lt;h1 id=&#34;containers&#34;&gt;Containers&lt;/h1&gt;&#xA;&lt;p&gt;A fantastic multi episode tour on how containers have completely reinvented global capitalism in the last 75 years.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;containers-1&#34;&gt;Containers&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+NG_5gn8-Q&#34;&gt;https://overcast.fm/+NG_5gn8-Q&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://soundcloud.com/containersfmg&#34;&gt;http://soundcloud.com/containersfmg&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #containers --&gt;&#xA;&lt;!-- {BearID:D19290E8-C2FA-44A3-8CF6-D4BA5DC5B3B2-28016-00002D97E8E24922} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Sprawlcast - NIMBY City</title>
      <link>https://mcjones.ca/docs/sprawlcast---nimby-city/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:46 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sprawlcast---nimby-city/</guid>
      <description>&lt;h1 id=&#34;sprawlcast---nimby-city&#34;&gt;Sprawlcast - NIMBY City&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;sprawlcast---nimby-city-1&#34;&gt;Sprawlcast - NIMBY City&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+MdpnQC-cc&#34;&gt;https://overcast.fm/+MdpnQC-cc&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.sprawlcalgary.com/sprawlcast-ep-1-nimby-city-aaefa2d2a6ff&#34;&gt;https://www.sprawlcalgary.com/sprawlcast-ep-1-nimby-city-aaefa2d2a6ff&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #sprawlcast --&gt;&#xA;&lt;!-- {BearID:215489FF-85A6-4AFC-B18B-1ADB66E086FD-28016-00002D97E8B6839A} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>What on Earth is Going on - 29 - with Public Art</title>
      <link>https://mcjones.ca/docs/what-on-earth-is-going-on---29---with-public-art/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:46 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/what-on-earth-is-going-on---29---with-public-art/</guid>
      <description>&lt;h1 id=&#34;what-on-earth-is-going-on---29---with-public-art&#34;&gt;What on Earth is Going on - 29 - with Public Art&lt;/h1&gt;&#xA;&lt;p&gt;One of my most favourite episodes of this series exploring what and how public art is chosen. Notably the work and what is chosen is not based on the latest headline of the day.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;what-on-earth-is-going-on---with-public-art-ep-29&#34;&gt;What on Earth is Going on? - …with Public Art (Ep. 29)&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+NNa0-TWkA&#34;&gt;https://overcast.fm/+NNa0-TWkA&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://woegoshow.com/with-public-art-ep-29&#34;&gt;http://woegoshow.com/with-public-art-ep-29&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #What On Earth is Going On# --&gt;&#xA;&lt;!-- {BearID:E55286DE-79FF-452B-9853-77F5C9854858-28016-00002D97E9F8E26C} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>What on Earth is Going on - 32 - with Oil and World Politics</title>
      <link>https://mcjones.ca/docs/what-on-earth-is-going-on---32---with-oil-and-world-politics/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:46 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/what-on-earth-is-going-on---32---with-oil-and-world-politics/</guid>
      <description>&lt;h1 id=&#34;what-on-earth-is-going-on---32---with-oil-and-world-politics&#34;&gt;What on Earth is Going on - 32 - with Oil and World Politics&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;what-on-earth-is-going-on---with-oil-and-world-politics-ep-32&#34;&gt;What on Earth is Going on? - …with Oil and World Politics (Ep. 32)&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+NNa0GRVMQ&#34;&gt;https://overcast.fm/+NNa0GRVMQ&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://woegoshow.com/with-oil-and-world-politics-ep-32&#34;&gt;http://woegoshow.com/with-oil-and-world-politics-ep-32&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #What On Earth is Going On# --&gt;&#xA;&lt;!-- {BearID:E7826BF3-931E-477E-A048-0C50A4DEC2A5-28016-00002D97E9CFC633} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>What on Earth is Going on - 34 - according to the book, The People vs. Democracy</title>
      <link>https://mcjones.ca/docs/what-on-earth-is-going-on---34---according-to-the-book-the-people-vs.-democracy/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:46 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/what-on-earth-is-going-on---34---according-to-the-book-the-people-vs.-democracy/</guid>
      <description>&lt;h1 id=&#34;what-on-earth-is-going-on---34---according-to-the-book-the-people-vs-democracy&#34;&gt;What on Earth is Going on - 34 - according to the book, The People vs. Democracy&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;what-on-earth-is-going-on---according-to-the-book-the-people-vs-democracy-ep-34&#34;&gt;What on Earth is Going on? - …according to the book, The People vs. Democracy (Ep. 34)&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+NNa03HGb8&#34;&gt;https://overcast.fm/+NNa03HGb8&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://woegoshow.com/according-to-the-people-vs-democracy-ep-34&#34;&gt;http://woegoshow.com/according-to-the-people-vs-democracy-ep-34&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #What On Earth is Going On# --&gt;&#xA;&lt;!-- {BearID:9A498544-A7E9-4BF5-9543-3AE53278C41C-28016-00002D97E9A02DCB} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>What on Earth is Going on - 52 - with Science</title>
      <link>https://mcjones.ca/docs/what-on-earth-is-going-on---52---with-science/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:46 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/what-on-earth-is-going-on---52---with-science/</guid>
      <description>&lt;h1 id=&#34;what-on-earth-is-going-on---52---with-science&#34;&gt;What on Earth is Going on - 52 - with Science&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;what-on-earth-is-going-on---with-science-ep-52&#34;&gt;What on Earth is Going on? - …with Science (Ep. 52)&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+NNa1bNguQ&#34;&gt;https://overcast.fm/+NNa1bNguQ&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://woegoshow.com/with-science-ep-52&#34;&gt;http://woegoshow.com/with-science-ep-52&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #What On Earth is Going On# --&gt;&#xA;&lt;!-- {BearID:66E1EC7A-ADB3-46EB-A8DE-D19D47824B28-28016-00002D97E9714AA9} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>What on Earth is Going on - 56 - with Men and Gender Equality</title>
      <link>https://mcjones.ca/docs/what-on-earth-is-going-on---56---with-men-and-gender-equality/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:46 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/what-on-earth-is-going-on---56---with-men-and-gender-equality/</guid>
      <description>&lt;h1 id=&#34;what-on-earth-is-going-on---56---with-men-and-gender-equality&#34;&gt;What on Earth is Going on - 56 - with Men and Gender Equality&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;what-on-earth-is-going-on---with-men-and-gender-equality-ep-56&#34;&gt;What on Earth is Going on? - …with Men and Gender Equality (Ep. 56)&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+NNa3DM8qM&#34;&gt;https://overcast.fm/+NNa3DM8qM&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://woegoshow.com/with-men-and-gender-equality-ep-56&#34;&gt;http://woegoshow.com/with-men-and-gender-equality-ep-56&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #What On Earth is Going On# --&gt;&#xA;&lt;!-- {BearID:BB6C9215-F538-49B2-BC34-E25990914306-28016-00002D97E940B4AE} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>What on Earth is Going on - 99 - with Changing Cities</title>
      <link>https://mcjones.ca/docs/what-on-earth-is-going-on---99---with-changing-cities/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:46 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/what-on-earth-is-going-on---99---with-changing-cities/</guid>
      <description>&lt;h1 id=&#34;what-on-earth-is-going-on---99---with-changing-cities&#34;&gt;What on Earth is Going on - 99 - with Changing Cities&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;what-on-earth-is-going-on---with-changing-cities-ep-99&#34;&gt;What on Earth is Going on? - …with Changing Cities (Ep. 99)&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+NNa3VCsbI&#34;&gt;https://overcast.fm/+NNa3VCsbI&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://woegoshow.com/with-changing-cities-ep-99&#34;&gt;http://woegoshow.com/with-changing-cities-ep-99&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #What On Earth is Going On# --&gt;&#xA;&lt;!-- {BearID:0D743C47-E7A6-4DE6-8016-8A5D0BF013F1-28016-00002D97E90F3952} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Sprawlcast - An Olympic Plebiscite Primer</title>
      <link>https://mcjones.ca/docs/sprawlcast---an-olympic-plebiscite-primer/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:45 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sprawlcast---an-olympic-plebiscite-primer/</guid>
      <description>&lt;h1 id=&#34;sprawlcast---an-olympic-plebiscite-primer&#34;&gt;Sprawlcast - An Olympic Plebiscite Primer&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;sprawlcast---an-olympic-plebiscite-primer-1&#34;&gt;Sprawlcast - An Olympic Plebiscite Primer&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+MdpkdxoIc&#34;&gt;https://overcast.fm/+MdpkdxoIc&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.sprawlcalgary.com/sprawlcast-the-olympic-deal&#34;&gt;https://www.sprawlcalgary.com/sprawlcast-the-olympic-deal&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #sprawlcast --&gt;&#xA;&lt;!-- {BearID:69C691CB-9A1F-4E65-8C49-0210C0CEDB77-28016-00002D97E7D0A5D4} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Sprawlcast - Arena Revisited</title>
      <link>https://mcjones.ca/docs/sprawlcast---arena-revisited/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:45 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sprawlcast---arena-revisited/</guid>
      <description>&lt;h1 id=&#34;sprawlcast---arena-revisited&#34;&gt;Sprawlcast - Arena Revisited&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;sprawlcast---arena-revisited-1&#34;&gt;Sprawlcast - Arena Revisited&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+Mdpl_TiwA&#34;&gt;https://overcast.fm/+Mdpl_TiwA&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.sprawlcalgary.com/sprawlcast-ep-5-arena-revisited-137cc628b9f&#34;&gt;https://www.sprawlcalgary.com/sprawlcast-ep-5-arena-revisited-137cc628b9f&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #sprawlcast --&gt;&#xA;&lt;!-- {BearID:8B8CBA85-28C7-4395-A9FB-B3C7077F2A53-28016-00002D97E82BCFAB} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Sprawlcast - Beyond the Big Blue Ring</title>
      <link>https://mcjones.ca/docs/sprawlcast---beyond-the-big-blue-ring/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:45 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sprawlcast---beyond-the-big-blue-ring/</guid>
      <description>&lt;h1 id=&#34;sprawlcast---beyond-the-big-blue-ring&#34;&gt;Sprawlcast - Beyond the Big Blue Ring&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;sprawlcast---beyond-the-big-blue-ring-1&#34;&gt;Sprawlcast - Beyond the Big Blue Ring&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+MdplCpr34&#34;&gt;https://overcast.fm/+MdplCpr34&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.sprawlcalgary.com/sprawlcast-ep-6-beyond-the-big-blue-ring-101981e6f4cb&#34;&gt;https://www.sprawlcalgary.com/sprawlcast-ep-6-beyond-the-big-blue-ring-101981e6f4cb&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #sprawlcast --&gt;&#xA;&lt;!-- {BearID:BE301CB2-6837-4EBE-AF54-9D19B78C4562-28016-00002D97E7FF18C3} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Sprawlcast - Dodging the Question (Olympics)</title>
      <link>https://mcjones.ca/docs/sprawlcast---dodging-the-question-olympics/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:45 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sprawlcast---dodging-the-question-olympics/</guid>
      <description>&lt;h1 id=&#34;sprawlcast---dodging-the-question-olympics&#34;&gt;Sprawlcast - Dodging the Question (Olympics)&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;sprawlcast---dodging-the-question-olympics-1&#34;&gt;Sprawlcast - Dodging the Question (Olympics)&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+MdpnbooTw&#34;&gt;https://overcast.fm/+MdpnbooTw&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.sprawlcalgary.com/sprawlcast-ep-2-dodging-the-question-2d78145ad2a4&#34;&gt;https://www.sprawlcalgary.com/sprawlcast-ep-2-dodging-the-question-2d78145ad2a4&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #sprawlcast --&gt;&#xA;&lt;!-- {BearID:5A55A549-CFA4-4FA1-AE21-756AFC4E819E-28016-00002D97E887E126} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Sprawlcast - God, Gays &amp; GSAs</title>
      <link>https://mcjones.ca/docs/sprawlcast---god-gays--gsas/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:45 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sprawlcast---god-gays--gsas/</guid>
      <description>&lt;h1 id=&#34;sprawlcast---god-gays--gsas&#34;&gt;Sprawlcast - God, Gays &amp;amp; GSAs&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;sprawlcast---god-gays--gsas-1&#34;&gt;Sprawlcast - God, Gays &amp;amp; GSAs&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+MdplOH7Ds&#34;&gt;https://overcast.fm/+MdplOH7Ds&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.sprawlcalgary.com/sprawlcast-ep-15-god-gays-gsas&#34;&gt;https://www.sprawlcalgary.com/sprawlcast-ep-15-god-gays-gsas&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #sprawlcast --&gt;&#xA;&lt;!-- {BearID:D76BFD10-F974-4853-BF87-CD65F4285A40-28016-00002D97E743A23B} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Sprawlcast - Oh Alberta</title>
      <link>https://mcjones.ca/docs/sprawlcast---oh-alberta/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:45 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sprawlcast---oh-alberta/</guid>
      <description>&lt;h1 id=&#34;sprawlcast---oh-alberta&#34;&gt;Sprawlcast - Oh Alberta&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;sprawlcast---oh-alberta-1&#34;&gt;Sprawlcast - Oh Alberta&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+MdpkW21OM&#34;&gt;https://overcast.fm/+MdpkW21OM&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.sprawlcalgary.com/sprawlcast-ep-14-oh-alberta&#34;&gt;https://www.sprawlcalgary.com/sprawlcast-ep-14-oh-alberta&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #sprawlcast --&gt;&#xA;&lt;!-- {BearID:E5C3DB5B-FFA6-4FAF-A34C-5FD5ECAA16DB-28016-00002D97E76F6A4F} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Sprawlcast - Rethink 17th</title>
      <link>https://mcjones.ca/docs/sprawlcast---rethink-17th/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:45 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sprawlcast---rethink-17th/</guid>
      <description>&lt;h1 id=&#34;sprawlcast---rethink-17th&#34;&gt;Sprawlcast - Rethink 17th&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;sprawlcast---rethink-17th-1&#34;&gt;Sprawlcast - Rethink 17th&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+MdpkIM4Dc&#34;&gt;https://overcast.fm/+MdpkIM4Dc&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.sprawlcalgary.com/rethinking-17th-avenue-41b979de67a5&#34;&gt;https://www.sprawlcalgary.com/rethinking-17th-avenue-41b979de67a5&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #sprawlcast --&gt;&#xA;&lt;!-- {BearID:68BE0ACD-0ACE-41A3-AB84-92C4899FDC4B-28016-00002D97E8592EA8} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Sprawlcast - The Year of Curiosity</title>
      <link>https://mcjones.ca/docs/sprawlcast---the-year-of-curiosity/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:45 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sprawlcast---the-year-of-curiosity/</guid>
      <description>&lt;h1 id=&#34;sprawlcast---the-year-of-curiosity&#34;&gt;Sprawlcast - The Year of Curiosity&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;sprawlcast---the-year-of-curiosity-1&#34;&gt;Sprawlcast - The Year of Curiosity&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+MdplqQg0A&#34;&gt;https://overcast.fm/+MdplqQg0A&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.sprawlcalgary.com/sprawlcast-the-year-of-curiosity&#34;&gt;https://www.sprawlcalgary.com/sprawlcast-the-year-of-curiosity&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #sprawlcast --&gt;&#xA;&lt;!-- {BearID:2950DEF9-8ED7-4214-847F-EF73C71F3B2E-28016-00002D97E79E6DCE} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Sprawlcast - Hands Off The Arena! But Fine, Gut The Green Line</title>
      <link>https://mcjones.ca/docs/sprawlcast---hands-off-the-arena-but-fine-gut-the-green-line/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:44 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sprawlcast---hands-off-the-arena-but-fine-gut-the-green-line/</guid>
      <description>&lt;h1 id=&#34;sprawlcast---hands-off-the-arena-but-fine-gut-the-green-line&#34;&gt;Sprawlcast - Hands Off The Arena! But Fine, Gut The Green Line&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;sprawlcast---hands-off-the-arena-but-fine-gut-the-green-line-1&#34;&gt;Sprawlcast - Hands Off The Arena! But Fine, Gut The Green Line&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+Mdpm7qkH8&#34;&gt;https://overcast.fm/+Mdpm7qkH8&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.sprawlcalgary.com/sprawlcast-hands-off-the-arena-but-gut-the-green-line&#34;&gt;https://www.sprawlcalgary.com/sprawlcast-hands-off-the-arena-but-gut-the-green-line&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #sprawlcast --&gt;&#xA;&lt;!-- {BearID:DD32E43B-AFE4-4AE8-BD31-7F1DD9D54198-28016-00002D97E6909533} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Sprawlcast - Paying For It Calgary&#39;s 14 New Communities</title>
      <link>https://mcjones.ca/docs/sprawlcast---paying-for-it-calgarys-14-new-communities/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:44 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sprawlcast---paying-for-it-calgarys-14-new-communities/</guid>
      <description>&lt;h1 id=&#34;sprawlcast---paying-for-it-calgarys-14-new-communities&#34;&gt;Sprawlcast - Paying For It Calgary&amp;rsquo;s 14 New Communities&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;sprawlcast---paying-for-it-calgarys-14-new-communities-1&#34;&gt;Sprawlcast - Paying For It: Calgary’s 14 New Communities&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+Mdpl87EZw&#34;&gt;https://overcast.fm/+Mdpl87EZw&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.sprawlcalgary.com/sprawlcast-calgarys-14-new-communities&#34;&gt;https://www.sprawlcalgary.com/sprawlcast-calgarys-14-new-communities&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #sprawlcast --&gt;&#xA;&lt;!-- {BearID:04B8E148-279E-43DD-89E1-9F0375410B31-28016-00002D97E6316C9A} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Sprawlcast - Plan It Calgary, 10 Years Later</title>
      <link>https://mcjones.ca/docs/sprawlcast---plan-it-calgary-10-years-later/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:44 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sprawlcast---plan-it-calgary-10-years-later/</guid>
      <description>&lt;h1 id=&#34;sprawlcast---plan-it-calgary-10-years-later&#34;&gt;Sprawlcast - Plan It Calgary, 10 Years Later&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;sprawlcast---plan-it-calgary-10-years-later-1&#34;&gt;Sprawlcast - Plan It Calgary, 10 Years Later&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+Mdpn_kLgg&#34;&gt;https://overcast.fm/+Mdpn_kLgg&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.sprawlcalgary.com/sprawlcast-plan-it&#34;&gt;https://www.sprawlcalgary.com/sprawlcast-plan-it&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #sprawlcast --&gt;&#xA;&lt;!-- {BearID:AFF3DAF0-AF01-4A95-9204-3D1B5B937C53-28016-00002D97E604635B} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Sprawlcast - Racial Disparity and the Cargill Outbreak</title>
      <link>https://mcjones.ca/docs/sprawlcast---racial-disparity-and-the-cargill-outbreak/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:44 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sprawlcast---racial-disparity-and-the-cargill-outbreak/</guid>
      <description>&lt;h1 id=&#34;sprawlcast---racial-disparity-and-the-cargill-outbreak&#34;&gt;Sprawlcast - Racial Disparity and the Cargill Outbreak&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;sprawlcast---racial-disparity-and-the-cargill-outbreak-1&#34;&gt;Sprawlcast - Racial Disparity and the Cargill Outbreak&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+MdplftUMo&#34;&gt;https://overcast.fm/+MdplftUMo&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.sprawlcalgary.com/sprawlcast-racism-cargill-outbreak&#34;&gt;https://www.sprawlcalgary.com/sprawlcast-racism-cargill-outbreak&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #sprawlcast --&gt;&#xA;&lt;!-- {BearID:731AE78A-DB1B-4994-9987-049FC864729C-28016-00002D97E5D77658} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Sprawlcast - Steve Allan and The Push For Calgary&#39;s Arena Deal</title>
      <link>https://mcjones.ca/docs/sprawlcast---steve-allan-and-the-push-for-calgarys-arena-deal/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:44 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sprawlcast---steve-allan-and-the-push-for-calgarys-arena-deal/</guid>
      <description>&lt;h1 id=&#34;sprawlcast---steve-allan-and-the-push-for-calgarys-arena-deal&#34;&gt;Sprawlcast - Steve Allan and The Push For Calgary&amp;rsquo;s Arena Deal&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;sprawlcast---steve-allan-and-the-push-for-calgarys-arena-deal-1&#34;&gt;Sprawlcast - Steve Allan and The Push For Calgary’s Arena Deal&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+MdpkhStOc&#34;&gt;https://overcast.fm/+MdpkhStOc&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.sprawlcalgary.com/steve-allan-and-the-push-for-calgarys-arena-deal&#34;&gt;https://www.sprawlcalgary.com/steve-allan-and-the-push-for-calgarys-arena-deal&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #sprawlcast --&gt;&#xA;&lt;!-- {BearID:DE3BD852-F480-4EB5-8B19-1B428592217D-28016-00002D97E6618FED} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Sprawlcast - The Segregated City</title>
      <link>https://mcjones.ca/docs/sprawlcast---the-segregated-city/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:44 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sprawlcast---the-segregated-city/</guid>
      <description>&lt;h1 id=&#34;sprawlcast---the-segregated-city&#34;&gt;Sprawlcast - The Segregated City&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;sprawlcast---the-segregated-city-1&#34;&gt;Sprawlcast - The Segregated City&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+MdplKNwUQ&#34;&gt;https://overcast.fm/+MdplKNwUQ&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.sprawlcalgary.com/the-segregated-city&#34;&gt;https://www.sprawlcalgary.com/the-segregated-city&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #sprawlcast --&gt;&#xA;&lt;!-- {BearID:9CC184F6-5B21-463E-AE44-B4B16C069CCF-28016-00002D97E7176A8C} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Sprawlcast - These Calgarians Are Taking On Climate Change</title>
      <link>https://mcjones.ca/docs/sprawlcast---these-calgarians-are-taking-on-climate-change/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:44 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sprawlcast---these-calgarians-are-taking-on-climate-change/</guid>
      <description>&lt;h1 id=&#34;sprawlcast---these-calgarians-are-taking-on-climate-change&#34;&gt;Sprawlcast - These Calgarians Are Taking On Climate Change&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;sprawlcast---these-calgarians-are-taking-on-climate-change-1&#34;&gt;Sprawlcast - These Calgarians Are Taking On Climate Change&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+Mdpk6yLJM&#34;&gt;https://overcast.fm/+Mdpk6yLJM&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.sprawlcalgary.com/sprawlcast-ep-17-these-calgarians-are-taking-on-climate-change&#34;&gt;https://www.sprawlcalgary.com/sprawlcast-ep-17-these-calgarians-are-taking-on-climate-change&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #sprawlcast --&gt;&#xA;&lt;!-- {BearID:11E7DB9F-9AEF-4558-AD99-B645A257454C-28016-00002D97E6E899BC} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Sprawlcast - This Is A Park For Everybody</title>
      <link>https://mcjones.ca/docs/sprawlcast---this-is-a-park-for-everybody/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:44 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sprawlcast---this-is-a-park-for-everybody/</guid>
      <description>&lt;h1 id=&#34;sprawlcast---this-is-a-park-for-everybody&#34;&gt;Sprawlcast - This Is A Park For Everybody&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;sprawlcast---this-is-a-park-for-everybody-1&#34;&gt;Sprawlcast - This Is A Park For Everybody&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+MdplStBZU&#34;&gt;https://overcast.fm/+MdplStBZU&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.sprawlcalgary.com/sprawlcast-ep-20-supervised-consumption-sites&#34;&gt;https://www.sprawlcalgary.com/sprawlcast-ep-20-supervised-consumption-sites&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #sprawlcast --&gt;&#xA;&lt;!-- {BearID:026BF72A-2F89-4187-B03E-BD2E4D992C6C-28016-00002D97E6BB4E18} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Sprawlcast - A Fair Ride Equity and the Green Line</title>
      <link>https://mcjones.ca/docs/sprawlcast---a-fair-ride-equity-and-the-green-line/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:43 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sprawlcast---a-fair-ride-equity-and-the-green-line/</guid>
      <description>&lt;h1 id=&#34;sprawlcast---a-fair-ride-equity-and-the-green-line&#34;&gt;Sprawlcast - A Fair Ride Equity and the Green Line&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;sprawlcast---a-fair-ride-equity-and-the-green-line-1&#34;&gt;Sprawlcast - A Fair Ride: Equity and the Green Line&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+Mdpk4vgto&#34;&gt;https://overcast.fm/+Mdpk4vgto&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.sprawlcalgary.com/sprawlcast-equity-green-line-calgary&#34;&gt;https://www.sprawlcalgary.com/sprawlcast-equity-green-line-calgary&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #sprawlcast --&gt;&#xA;&lt;!-- {BearID:359CFD05-DAA0-4125-9738-C2D30E9C3BDF-28016-00002D97E57ACA79} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Sprawlcast - Calgarians Rejected Fearful Populism. Now What?</title>
      <link>https://mcjones.ca/docs/sprawlcast---calgarians-rejected-fearful-populism.-now-what/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:43 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sprawlcast---calgarians-rejected-fearful-populism.-now-what/</guid>
      <description>&lt;h1 id=&#34;sprawlcast---calgarians-rejected-fearful-populism-now-what&#34;&gt;Sprawlcast - Calgarians Rejected Fearful Populism. Now What?&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;sprawlcast---calgarians-rejected-fearful-populism-now-what-1&#34;&gt;Sprawlcast - Calgarians Rejected Fearful Populism. Now What?&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+Mdpklh70A&#34;&gt;https://overcast.fm/+Mdpklh70A&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.sprawlcalgary.com/sprawlcast-a-new-chapter-for-calgary-city-council&#34;&gt;https://www.sprawlcalgary.com/sprawlcast-a-new-chapter-for-calgary-city-council&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #sprawlcast --&gt;&#xA;&lt;!-- {BearID:F360B85A-E7A5-4129-AAB2-6BF2F98C9167-28016-00002D97E492741E} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Sprawlcast - Green Line at the Crossroads</title>
      <link>https://mcjones.ca/docs/sprawlcast---green-line-at-the-crossroads/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:43 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sprawlcast---green-line-at-the-crossroads/</guid>
      <description>&lt;h1 id=&#34;sprawlcast---green-line-at-the-crossroads&#34;&gt;Sprawlcast - Green Line at the Crossroads&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;sprawlcast---green-line-at-the-crossroads-1&#34;&gt;Sprawlcast - Green Line at the Crossroads&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+MdplFc4cg&#34;&gt;https://overcast.fm/+MdplFc4cg&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.sprawlcalgary.com/green-line-at-the-crossroads&#34;&gt;https://www.sprawlcalgary.com/green-line-at-the-crossroads&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #sprawlcast --&gt;&#xA;&lt;!-- {BearID:B41D2B01-0A1F-457C-9888-D33DBDACE0A4-28016-00002D97E5A833BE} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Sprawlcast - Here We Go Again Calgary Developers Push for More</title>
      <link>https://mcjones.ca/docs/sprawlcast---here-we-go-again-calgary-developers-push-for-more/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:43 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sprawlcast---here-we-go-again-calgary-developers-push-for-more/</guid>
      <description>&lt;h1 id=&#34;sprawlcast---here-we-go-again-calgary-developers-push-for-more&#34;&gt;Sprawlcast - Here We Go Again Calgary Developers Push for More&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;sprawlcast---here-we-go-again-calgary-developers-push-for-more-1&#34;&gt;Sprawlcast - Here We Go Again: Calgary Developers Push for More&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+MdpmxTzpw&#34;&gt;https://overcast.fm/+MdpmxTzpw&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.sprawlcalgary.com/sprawlcast-11-new-communities-calgary&#34;&gt;https://www.sprawlcalgary.com/sprawlcast-11-new-communities-calgary&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #sprawlcast --&gt;&#xA;&lt;!-- {BearID:42A6EE07-CA20-4817-854A-8832380F7610-28016-00002D97E51BD3EA} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Sprawlcast - The Freest Province in Canada</title>
      <link>https://mcjones.ca/docs/sprawlcast---the-freest-province-in-canada/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:43 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sprawlcast---the-freest-province-in-canada/</guid>
      <description>&lt;h1 id=&#34;sprawlcast---the-freest-province-in-canada&#34;&gt;Sprawlcast - The Freest Province in Canada&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;sprawlcast---the-freest-province-in-canada-1&#34;&gt;Sprawlcast - The Freest Province in Canada&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+MdpkUcO1o&#34;&gt;https://overcast.fm/+MdpkUcO1o&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.sprawlcalgary.com/sprawlcast-freest-province-in-canada&#34;&gt;https://www.sprawlcalgary.com/sprawlcast-freest-province-in-canada&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #sprawlcast --&gt;&#xA;&lt;!-- {BearID:11CD37C1-EED2-42BE-9D0C-29F8AE5DAB6E-28016-00002D97E4E8FF49} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Sprawlcast - The Longest Playground Zone in Calgary</title>
      <link>https://mcjones.ca/docs/sprawlcast---the-longest-playground-zone-in-calgary/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:43 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sprawlcast---the-longest-playground-zone-in-calgary/</guid>
      <description>&lt;h1 id=&#34;sprawlcast---the-longest-playground-zone-in-calgary&#34;&gt;Sprawlcast - The Longest Playground Zone in Calgary&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;sprawlcast---the-longest-playground-zone-in-calgary-1&#34;&gt;Sprawlcast - The Longest Playground Zone in Calgary&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+MdpmUa8QY&#34;&gt;https://overcast.fm/+MdpmUa8QY&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.sprawlcalgary.com/sprawlcast-the-longest-playground-zone-in-calgary&#34;&gt;https://www.sprawlcalgary.com/sprawlcast-the-longest-playground-zone-in-calgary&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #sprawlcast --&gt;&#xA;&lt;!-- {BearID:94235387-2A24-42EF-8A15-604D64E78D80-28016-00002D97E4BCB409} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Sprawlcast - The Silence of Jason Kenney</title>
      <link>https://mcjones.ca/docs/sprawlcast---the-silence-of-jason-kenney/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:43 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sprawlcast---the-silence-of-jason-kenney/</guid>
      <description>&lt;h1 id=&#34;sprawlcast---the-silence-of-jason-kenney&#34;&gt;Sprawlcast - The Silence of Jason Kenney&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;sprawlcast---the-silence-of-jason-kenney-1&#34;&gt;Sprawlcast - The Silence of Jason Kenney&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+MdpkggoIw&#34;&gt;https://overcast.fm/+MdpkggoIw&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.sprawlcalgary.com/jason-kenney-racism-tolerance&#34;&gt;https://www.sprawlcalgary.com/jason-kenney-racism-tolerance&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #sprawlcast --&gt;&#xA;&lt;!-- {BearID:7E1D8300-8F65-4FEE-9D2E-0667AB4A64E3-28016-00002D97E54BEA1B} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Sprawlcast - What Can We Learn From Vancouver&#39;s Commercial Drive?</title>
      <link>https://mcjones.ca/docs/sprawlcast---what-can-we-learn-from-vancouvers-commercial-drive/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:43 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sprawlcast---what-can-we-learn-from-vancouvers-commercial-drive/</guid>
      <description>&lt;h1 id=&#34;sprawlcast---what-can-we-learn-from-vancouvers-commercial-drive&#34;&gt;Sprawlcast - What Can We Learn From Vancouver&amp;rsquo;s Commercial Drive?&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;sprawlcast---what-can-we-learn-from-vancouvers-commercial-drive-1&#34;&gt;Sprawlcast - What Can We Learn From Vancouver’s Commercial Drive?&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+Mdpllt120&#34;&gt;https://overcast.fm/+Mdpllt120&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.sprawlcalgary.com/sprawlcast-what-can-we-learn-from-vancouver-commercial-drive&#34;&gt;https://www.sprawlcalgary.com/sprawlcast-what-can-we-learn-from-vancouver-commercial-drive&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #sprawlcast --&gt;&#xA;&lt;!-- {BearID:FFC37FCA-AF1A-4775-A067-7C49F6D830D8-28016-00002D97E46224F2} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Sprawlcast - Digging Beneath The NIMBY Label</title>
      <link>https://mcjones.ca/docs/sprawlcast---digging-beneath-the-nimby-label/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:42 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sprawlcast---digging-beneath-the-nimby-label/</guid>
      <description>&lt;h1 id=&#34;sprawlcast---digging-beneath-the-nimby-label&#34;&gt;Sprawlcast - Digging Beneath The NIMBY Label&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;sprawlcast---digging-beneath-the-nimby-label-1&#34;&gt;Sprawlcast - Digging Beneath The NIMBY Label&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+Mdpki-E1Y&#34;&gt;https://overcast.fm/+Mdpki-E1Y&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.sprawlcalgary.com/whats-beneath-the-nimby-label&#34;&gt;https://www.sprawlcalgary.com/whats-beneath-the-nimby-label&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #sprawlcast --&gt;&#xA;&lt;!-- {BearID:FDCCB15C-D268-4C63-9017-FE1698CDA701-28016-00002D97E4050C61} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Sprawlcast - Game Over: How Calgary Killed Its Primary Transit Network</title>
      <link>https://mcjones.ca/docs/sprawlcast---game-over--how-calgary-killed-its-primary-transit-network/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:42 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sprawlcast---game-over--how-calgary-killed-its-primary-transit-network/</guid>
      <description>&lt;h1 id=&#34;sprawlcast---game-over-how-calgary-killed-its-primary-transit-network&#34;&gt;Sprawlcast - Game Over: How Calgary Killed Its Primary Transit Network&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;sprawlcast---game-over-how-calgary-killed-its-primary-transit-network-1&#34;&gt;Sprawlcast - Game Over: How Calgary Killed Its Primary Transit Network&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+MdpkReeak&#34;&gt;https://overcast.fm/+MdpkReeak&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.sprawlcalgary.com/calgary-primary-transit-network&#34;&gt;https://www.sprawlcalgary.com/calgary-primary-transit-network&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #sprawlcast --&gt;&#xA;&lt;!-- {BearID:6ECB5410-013F-40B2-B043-2C6206D4E745-28016-00002D97E31A2741} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Sprawlcast - Inside Calgary&#39;s New Climate Strategy</title>
      <link>https://mcjones.ca/docs/sprawlcast---inside-calgarys-new-climate-strategy/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:42 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sprawlcast---inside-calgarys-new-climate-strategy/</guid>
      <description>&lt;h1 id=&#34;sprawlcast---inside-calgarys-new-climate-strategy&#34;&gt;Sprawlcast - Inside Calgary&amp;rsquo;s New Climate Strategy&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;sprawlcast---inside-calgarys-new-climate-strategy-1&#34;&gt;Sprawlcast - Inside Calgary’s New Climate Strategy&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+Mdpkj4DuA&#34;&gt;https://overcast.fm/+Mdpkj4DuA&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.sprawlcalgary.com/sprawlcast-inside-calgarys-climate-change-strategy&#34;&gt;https://www.sprawlcalgary.com/sprawlcast-inside-calgarys-climate-change-strategy&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #sprawlcast --&gt;&#xA;&lt;!-- {BearID:772914C2-8A9F-47FD-9B64-4AB346BA669F-28016-00002D97E3A5422A} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Sprawlcast - Mayor Gondek&#39;s Push To De-Politicize Suburban Growth</title>
      <link>https://mcjones.ca/docs/sprawlcast---mayor-gondeks-push-to-de-politicize-suburban-growth/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:42 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sprawlcast---mayor-gondeks-push-to-de-politicize-suburban-growth/</guid>
      <description>&lt;h1 id=&#34;sprawlcast---mayor-gondeks-push-to-de-politicize-suburban-growth&#34;&gt;Sprawlcast - Mayor Gondek&amp;rsquo;s Push To De-Politicize Suburban Growth&lt;/h1&gt;&#xA;&lt;p&gt;No Notes Recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;sprawlcast---mayor-gondeks-push-to-de-politicize-suburban-growth-1&#34;&gt;Sprawlcast - Mayor Gondek’s Push To De-Politicize Suburban Growth&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+Mdplvy024&#34;&gt;https://overcast.fm/+Mdplvy024&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.sprawlcalgary.com/sprawlcast-the-politics-of-urban-sprawl&#34;&gt;https://www.sprawlcalgary.com/sprawlcast-the-politics-of-urban-sprawl&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #sprawlcast --&gt;&#xA;&lt;!-- {BearID:D5B81699-9308-4BE8-A19F-F79629F090AB-28016-00002D97E3772362} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Sprawlcast - Taking On Racism In The Classroom</title>
      <link>https://mcjones.ca/docs/sprawlcast---taking-on-racism-in-the-classroom/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:42 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sprawlcast---taking-on-racism-in-the-classroom/</guid>
      <description>&lt;h1 id=&#34;sprawlcast---taking-on-racism-in-the-classroom&#34;&gt;Sprawlcast - Taking On Racism In The Classroom&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;sprawlcast---taking-on-racism-in-the-classroom-1&#34;&gt;Sprawlcast - Taking On Racism In The Classroom&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+MdpkaSp6U&#34;&gt;https://overcast.fm/+MdpkaSp6U&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.sprawlcalgary.com/sprawlcast-anti-racism-in-the-classroom&#34;&gt;https://www.sprawlcalgary.com/sprawlcast-anti-racism-in-the-classroom&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #sprawlcast --&gt;&#xA;&lt;!-- {BearID:84591F9F-95D7-4355-B8C4-28D627C6F3AF-28016-00002D97E433A587} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Sprawlcast - The Battle of Banff Trail</title>
      <link>https://mcjones.ca/docs/sprawlcast---the-battle-of-banff-trail/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:42 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sprawlcast---the-battle-of-banff-trail/</guid>
      <description>&lt;h1 id=&#34;sprawlcast---the-battle-of-banff-trail&#34;&gt;Sprawlcast - The Battle of Banff Trail&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;sprawlcast---the-battle-of-banff-trail-1&#34;&gt;Sprawlcast - The Battle of Banff Trail&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+Mdpn2V3sw&#34;&gt;https://overcast.fm/+Mdpn2V3sw&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.sprawlcalgary.com/the-battle-of-banff-trail&#34;&gt;https://www.sprawlcalgary.com/the-battle-of-banff-trail&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #sprawlcast --&gt;&#xA;&lt;!-- {BearID:5DA1566E-2180-4EBA-9BA8-7557F1929F67-28016-00002D97E349D106} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Sprawlcast - Who&#39;s Policing The Calgary Police?</title>
      <link>https://mcjones.ca/docs/sprawlcast---whos-policing-the-calgary-police/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:42 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sprawlcast---whos-policing-the-calgary-police/</guid>
      <description>&lt;h1 id=&#34;sprawlcast---whos-policing-the-calgary-police&#34;&gt;Sprawlcast - Who&amp;rsquo;s Policing The Calgary Police?&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;sprawlcast---whos-policing-the-calgary-police-1&#34;&gt;Sprawlcast - Who’s Policing The Calgary Police?&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+MdplXtAIk&#34;&gt;https://overcast.fm/+MdplXtAIk&lt;/a&gt;&#xA;&lt;a href=&#34;https://www.sprawlcalgary.com/sprawlcast-thin-blue-line-police&#34;&gt;https://www.sprawlcalgary.com/sprawlcast-thin-blue-line-police&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #sprawlcast --&gt;&#xA;&lt;!-- {BearID:0D557AEA-D8C1-4C92-BB3B-F94262D7A2DD-28016-00002D97E3D66125} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Dialogue City - 006 - Helen Pike and Jeremy Klaszus on Journalism</title>
      <link>https://mcjones.ca/docs/dialogue-city---006---helen-pike-and-jeremy-klaszus-on-journalism/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:40 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/dialogue-city---006---helen-pike-and-jeremy-klaszus-on-journalism/</guid>
      <description>&lt;h1 id=&#34;dialogue-city---006---helen-pike-and-jeremy-klaszus-on-journalism&#34;&gt;Dialogue City - 006 - Helen Pike and Jeremy Klaszus on Journalism&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;dialogue-city---episode-006-helen-pike-and-jeremy-klaszus-on-journalism&#34;&gt;Dialogue City - Episode 006: Helen Pike and Jeremy Klaszus on Journalism&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+LEXLArJjk&#34;&gt;https://overcast.fm/+LEXLArJjk&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://soundcloud.com/user-626701659/episode-006-helen-pike-and-jeremy-klaszus-on-journalism&#34;&gt;https://soundcloud.com/user-626701659/episode-006-helen-pike-and-jeremy-klaszus-on-journalism&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #dialogue-city --&gt;&#xA;&lt;!-- {BearID:922FC4F2-EB2E-4480-9CCA-E5086446E1C2-28016-00002D97E081A879} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Dialogue City - 009 - Kelly Dowdell and Communication</title>
      <link>https://mcjones.ca/docs/dialogue-city---009---kelly-dowdell-and-communication/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:40 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/dialogue-city---009---kelly-dowdell-and-communication/</guid>
      <description>&lt;h1 id=&#34;dialogue-city---009---kelly-dowdell-and-communication&#34;&gt;Dialogue City - 009 - Kelly Dowdell and Communication&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;dialogue-city---episode-009-kelly-dowdell-and-communication&#34;&gt;Dialogue City - Episode 009: Kelly Dowdell and Communication&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+LEXLFOnTY&#34;&gt;https://overcast.fm/+LEXLFOnTY&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://soundcloud.com/user-626701659/episode-009-kelly-dowdell-and-communication&#34;&gt;https://soundcloud.com/user-626701659/episode-009-kelly-dowdell-and-communication&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #dialogue-city --&gt;&#xA;&lt;!-- {BearID:7D48DDCC-A215-48CF-BD04-ADCECF2E6845-28016-00002D97E052FA04} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Dialogue City - 012 - Education with Julie Hrdlicka</title>
      <link>https://mcjones.ca/docs/dialogue-city---012---education-with-julie-hrdlicka/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:40 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/dialogue-city---012---education-with-julie-hrdlicka/</guid>
      <description>&lt;h1 id=&#34;dialogue-city---012---education-with-julie-hrdlicka&#34;&gt;Dialogue City - 012 - Education with Julie Hrdlicka&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;dialogue-city---episode-012-education-with-julie-hrdlicka&#34;&gt;Dialogue City - Episode 012: Education with Julie Hrdlicka&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+LEXIgyDd4&#34;&gt;https://overcast.fm/+LEXIgyDd4&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://soundcloud.com/user-626701659/episode-012-education-with-julie-hrdlicka&#34;&gt;https://soundcloud.com/user-626701659/episode-012-education-with-julie-hrdlicka&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #dialogue-city --&gt;&#xA;&lt;!-- {BearID:3527A812-6FE8-4AB8-9EBD-BBC54FC45EC3-28016-00002D97E02513C6} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Alberta Advantage Podcast - Calgary Municipal Showdown</title>
      <link>https://mcjones.ca/docs/alberta-advantage-podcast---calgary-municipal-showdown/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:39 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/alberta-advantage-podcast---calgary-municipal-showdown/</guid>
      <description>&lt;h1 id=&#34;alberta-advantage-podcast---calgary-municipal-showdown&#34;&gt;Alberta Advantage Podcast - Calgary Municipal Showdown&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;alberta-advantage-podcast---calgary-municipal-showdown-1&#34;&gt;Alberta Advantage Podcast - Calgary Municipal Showdown!&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+KvqpTK0YM&#34;&gt;https://overcast.fm/+KvqpTK0YM&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://traffic.libsyn.com/secure/albertaadvantage/348311501-albertaadvantage-calgary-municipal-showdown.mp3&#34;&gt;https://traffic.libsyn.com/secure/albertaadvantage/348311501-albertaadvantage-calgary-municipal-showdown.mp3&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #alberta advantage# --&gt;&#xA;&lt;!-- {BearID:E528D8A3-95E4-4927-B343-A5E407082BA7-28016-00002D97DEB4F508} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Alberta Advantage Podcast - Alberta&#39;s Minimum Wage Freeze</title>
      <link>https://mcjones.ca/docs/alberta-advantage-podcast---albertas-minimum-wage-freeze/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:38 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/alberta-advantage-podcast---albertas-minimum-wage-freeze/</guid>
      <description>&lt;h1 id=&#34;alberta-advantage-podcast---albertas-minimum-wage-freeze&#34;&gt;Alberta Advantage Podcast - Alberta&amp;rsquo;s Minimum Wage Freeze&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;alberta-advantage-podcast---mini-ep-albertas-minimum-wage-freeze&#34;&gt;Alberta Advantage Podcast - MINI-EP: Alberta’s Minimum Wage Freeze&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+KvqqGP5kw&#34;&gt;https://overcast.fm/+KvqqGP5kw&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://traffic.libsyn.com/secure/albertaadvantage/691578856-albertaadvantage-mini-ep-albertas-minimum-wage-freeze.mp3&#34;&gt;https://traffic.libsyn.com/secure/albertaadvantage/691578856-albertaadvantage-mini-ep-albertas-minimum-wage-freeze.mp3&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #alberta advantage# --&gt;&#xA;&lt;!-- {BearID:A03AE430-E697-45A1-B502-857D4545774B-28016-00002D97DD92FB18} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Alberta Advantage Podcast - Bashir Speaks. Black Lives and Discrimination in Alberta</title>
      <link>https://mcjones.ca/docs/alberta-advantage-podcast---bashir-speaks.-black-lives-and-discrimination-in-alberta/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:38 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/alberta-advantage-podcast---bashir-speaks.-black-lives-and-discrimination-in-alberta/</guid>
      <description>&lt;h1 id=&#34;alberta-advantage-podcast---bashir-speaks-black-lives-and-discrimination-in-alberta&#34;&gt;Alberta Advantage Podcast - Bashir Speaks. Black Lives and Discrimination in Alberta&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;alberta-advantage-podcast---bashir-speaks-black-lives-and-discrimination-in-alberta-1&#34;&gt;Alberta Advantage Podcast - Bashir Speaks! Black Lives and Discrimination in Alberta&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+KvqpZiLYM&#34;&gt;https://overcast.fm/+KvqpZiLYM&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://traffic.libsyn.com/secure/albertaadvantage/574380666-albertaadvantage-bashir-speaks-black-lives-and-discrimination-in-alberta.mp3&#34;&gt;https://traffic.libsyn.com/secure/albertaadvantage/574380666-albertaadvantage-bashir-speaks-black-lives-and-discrimination-in-alberta.mp3&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #alberta advantage# --&gt;&#xA;&lt;!-- {BearID:21132A70-B5EB-4B12-8207-106BA1FC1401-28016-00002D97DE572C31} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Alberta Advantage Podcast - Canada&#39;s Energy Future with David Hughes</title>
      <link>https://mcjones.ca/docs/alberta-advantage-podcast---canadas-energy-future-with-david-hughes/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:38 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/alberta-advantage-podcast---canadas-energy-future-with-david-hughes/</guid>
      <description>&lt;h1 id=&#34;alberta-advantage-podcast---canadas-energy-future-with-david-hughes&#34;&gt;Alberta Advantage Podcast - Canada&amp;rsquo;s Energy Future with David Hughes&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;alberta-advantage-podcast---mini-ep-canadas-energy-future-w-david-hughes&#34;&gt;Alberta Advantage Podcast - MINI-EP: Canada’s Energy Future w/ David Hughes&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+Kvqq_sQrw&#34;&gt;https://overcast.fm/+Kvqq_sQrw&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://traffic.libsyn.com/secure/albertaadvantage/583978230-albertaadvantage-mini-ep-canadas-energy-future-w-david-hughes.mp3&#34;&gt;https://traffic.libsyn.com/secure/albertaadvantage/583978230-albertaadvantage-mini-ep-canadas-energy-future-w-david-hughes.mp3&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #alberta advantage# --&gt;&#xA;&lt;!-- {BearID:0AC44EB1-9FAD-407C-9D1C-52C4BB11EF42-28016-00002D97DE2876E8} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Alberta Advantage Podcast - Chasing the Centre - The Death of the Median Voter</title>
      <link>https://mcjones.ca/docs/alberta-advantage-podcast---chasing-the-centre---the-death-of-the-median-voter/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:38 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/alberta-advantage-podcast---chasing-the-centre---the-death-of-the-median-voter/</guid>
      <description>&lt;h1 id=&#34;alberta-advantage-podcast---chasing-the-centre---the-death-of-the-median-voter&#34;&gt;Alberta Advantage Podcast - Chasing the Centre - The Death of the Median Voter&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;alberta-advantage-podcast---chasing-the-centre-the-death-of-the-median-voter&#34;&gt;Alberta Advantage Podcast - Chasing the Centre: The Death of the Median Voter&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+KvqqQEPMA&#34;&gt;https://overcast.fm/+KvqqQEPMA&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://traffic.libsyn.com/secure/albertaadvantage/694773340-albertaadvantage-chasing-the-centre-the-death-of-the-median-voter.mp3&#34;&gt;https://traffic.libsyn.com/secure/albertaadvantage/694773340-albertaadvantage-chasing-the-centre-the-death-of-the-median-voter.mp3&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #alberta advantage# --&gt;&#xA;&lt;!-- {BearID:E89B1168-1152-49B7-AD92-86F24E914D2C-28016-00002D97DD682313} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Alberta Advantage Podcast - MINI-EP: Reading Mouseland</title>
      <link>https://mcjones.ca/docs/alberta-advantage-podcast---mini-ep--reading-mouseland/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:38 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/alberta-advantage-podcast---mini-ep--reading-mouseland/</guid>
      <description>&lt;h1 id=&#34;alberta-advantage-podcast---mini-ep-reading-mouseland&#34;&gt;Alberta Advantage Podcast - MINI-EP: Reading Mouseland&lt;/h1&gt;&#xA;&lt;p&gt;Great book. Read along :-)&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;alberta-advantage-podcast---mini-ep-reading-mouseland-1&#34;&gt;Alberta Advantage Podcast - MINI-EP: Reading Mouseland&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+Kvqrl30ak&#34;&gt;https://overcast.fm/+Kvqrl30ak&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://traffic.libsyn.com/secure/albertaadvantage/515290131-albertaadvantage-mini-ep-reading-mouseland.mp3&#34;&gt;https://traffic.libsyn.com/secure/albertaadvantage/515290131-albertaadvantage-mini-ep-reading-mouseland.mp3&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #alberta advantage# --&gt;&#xA;&lt;!-- {BearID:050EF7C6-696A-4820-A8C0-4C8E7E2E1A33-28016-00002D97DE861EF1} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Alberta Advantage Podcast - Predictably - Welcome to Hellberta</title>
      <link>https://mcjones.ca/docs/alberta-advantage-podcast---predictably---welcome-to-hellberta/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:38 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/alberta-advantage-podcast---predictably---welcome-to-hellberta/</guid>
      <description>&lt;h1 id=&#34;alberta-advantage-podcast---predictably---welcome-to-hellberta&#34;&gt;Alberta Advantage Podcast - Predictably - Welcome to Hellberta&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;alberta-advantage-podcast---predictably-welcome-to-hellberta&#34;&gt;Alberta Advantage Podcast - Predictably: Welcome to Hellberta&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+Kvqqt204Y&#34;&gt;https://overcast.fm/+Kvqqt204Y&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://traffic.libsyn.com/secure/albertaadvantage/608548587-albertaadvantage-predictably-welcome-to-hellberta.mp3&#34;&gt;https://traffic.libsyn.com/secure/albertaadvantage/608548587-albertaadvantage-predictably-welcome-to-hellberta.mp3&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #alberta advantage# --&gt;&#xA;&lt;!-- {BearID:D06656ED-2583-48DE-AA42-C2176219B9B2-28016-00002D97DDC873BF} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Alberta Advantage Podcast - Ugly Reality: Unions under Alberta&#39;s NDP</title>
      <link>https://mcjones.ca/docs/alberta-advantage-podcast---ugly-reality--unions-under-albertas-ndp/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:38 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/alberta-advantage-podcast---ugly-reality--unions-under-albertas-ndp/</guid>
      <description>&lt;h1 id=&#34;alberta-advantage-podcast---ugly-reality-unions-under-albertas-ndp&#34;&gt;Alberta Advantage Podcast - Ugly Reality: Unions under Alberta&amp;rsquo;s NDP&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;alberta-advantage-podcast---ugly-reality-unions-under-albertas-ndp-1&#34;&gt;Alberta Advantage Podcast - Ugly Reality: Unions under Alberta’s NDP&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+Kvqoc8Jvs&#34;&gt;https://overcast.fm/+Kvqoc8Jvs&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://traffic.libsyn.com/secure/albertaadvantage/699186058-albertaadvantage-ugly-reality-unions-under-albertas-ndp.mp3&#34;&gt;https://traffic.libsyn.com/secure/albertaadvantage/699186058-albertaadvantage-ugly-reality-unions-under-albertas-ndp.mp3&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #alberta advantage# --&gt;&#xA;&lt;!-- {BearID:F11568A7-7FD5-4BCE-84ED-CDC3B0D9F0D2-28016-00002D97DD38F022} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Alberta Advantage Podcast - Balance in Climate Change, Cursive Writing - Alberta&#39;s Curriculum Review</title>
      <link>https://mcjones.ca/docs/alberta-advantage-podcast---balance-in-climate-change-cursive-writing---albertas-curriculum-review/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:37 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/alberta-advantage-podcast---balance-in-climate-change-cursive-writing---albertas-curriculum-review/</guid>
      <description>&lt;h1 id=&#34;alberta-advantage-podcast---balance-in-climate-change-cursive-writing---albertas-curriculum-review&#34;&gt;Alberta Advantage Podcast - Balance in Climate Change, Cursive Writing - Alberta&amp;rsquo;s Curriculum Review&lt;/h1&gt;&#xA;&lt;p&gt;Kate has an great statement at the 28:30 mark that the approach that children are only investments misses so much of what children are.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;alberta-advantage-podcast---balance-in-climate-change-cursive-writing-albertas-curriculum-review&#34;&gt;Alberta Advantage Podcast - “Balance” in Climate Change, Cursive Writing: Alberta’s Curriculum Review&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+KvqoFYXXA&#34;&gt;https://overcast.fm/+KvqoFYXXA&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://albertaadvantage.libsyn.com/balance-in-climate-change-cursive-writing-albertas-curriculum-review&#34;&gt;https://albertaadvantage.libsyn.com/balance-in-climate-change-cursive-writing-albertas-curriculum-review&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #alberta advantage# --&gt;&#xA;&lt;!-- {BearID:1A2D9FE7-6119-4067-9A5B-E0A31EA5FF2B-28016-00002D97DC5291CE} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Alberta Advantage Podcast - Hellberta Update &amp; Strategy Session</title>
      <link>https://mcjones.ca/docs/alberta-advantage-podcast---hellberta-update--strategy-session/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:37 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/alberta-advantage-podcast---hellberta-update--strategy-session/</guid>
      <description>&lt;h1 id=&#34;alberta-advantage-podcast---hellberta-update--strategy-session&#34;&gt;Alberta Advantage Podcast - Hellberta Update &amp;amp; Strategy Session&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;alberta-advantage-podcast---mini-ep-hellberta-update--strategy-session&#34;&gt;Alberta Advantage Podcast - MINI-EP: Hellberta Update &amp;amp; Strategy Session&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+KvqpyCk7c&#34;&gt;https://overcast.fm/+KvqpyCk7c&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://traffic.libsyn.com/secure/albertaadvantage/717813550-albertaadvantage-mini-ep-hellberta-update-strategy-session.mp3&#34;&gt;https://traffic.libsyn.com/secure/albertaadvantage/717813550-albertaadvantage-mini-ep-hellberta-update-strategy-session.mp3&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #alberta advantage# --&gt;&#xA;&lt;!-- {BearID:CD827A10-5C56-4166-82D3-4BA47E6CCF9B-28016-00002D97DCDF9CCC} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Alberta Advantage Podcast - James Wilt DESTROYS Elon Musk with PUBLIC TRANSIT</title>
      <link>https://mcjones.ca/docs/alberta-advantage-podcast---james-wilt-destroys-elon-musk-with-public-transit/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:37 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/alberta-advantage-podcast---james-wilt-destroys-elon-musk-with-public-transit/</guid>
      <description>&lt;h1 id=&#34;alberta-advantage-podcast---james-wilt-destroys-elon-musk-with-public-transit&#34;&gt;Alberta Advantage Podcast - James Wilt DESTROYS Elon Musk with PUBLIC TRANSIT&lt;/h1&gt;&#xA;&lt;p&gt;Silly title. Awesome look into public transit.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;alberta-advantage-podcast---james-wilt-destroys-elon-musk-with-public-transit-1&#34;&gt;Alberta Advantage Podcast - James Wilt DESTROYS Elon Musk with PUBLIC TRANSIT&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+KvqoBSUj0&#34;&gt;https://overcast.fm/+KvqoBSUj0&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://albertaadvantage.libsyn.com/james-wilt-destroys-elon-musk-with-public-transit&#34;&gt;https://albertaadvantage.libsyn.com/james-wilt-destroys-elon-musk-with-public-transit&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #alberta advantage# --&gt;&#xA;&lt;!-- {BearID:FFEEE5B2-1936-4836-8D31-18AE801E6E29-28016-00002D97DBC9E756} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Alberta Advantage Podcast - Kenney Forgot Who Defeated the Nazis</title>
      <link>https://mcjones.ca/docs/alberta-advantage-podcast---kenney-forgot-who-defeated-the-nazis/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:37 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/alberta-advantage-podcast---kenney-forgot-who-defeated-the-nazis/</guid>
      <description>&lt;h1 id=&#34;alberta-advantage-podcast---kenney-forgot-who-defeated-the-nazis&#34;&gt;Alberta Advantage Podcast - Kenney Forgot Who Defeated the Nazis&lt;/h1&gt;&#xA;&lt;p&gt;At the 39 minute mark, there was an excellent remark showing how our collective knowledge is so collectively skewed by Eurocentric education.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;alberta-advantage-podcast---kenney-forgot-who-defeated-the-nazis-1&#34;&gt;Alberta Advantage Podcast - Kenney Forgot Who Defeated the Nazis&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+KvqrNT804&#34;&gt;https://overcast.fm/+KvqrNT804&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://albertaadvantage.libsyn.com/kenney-forgot-who-defeated-the-nazis&#34;&gt;https://albertaadvantage.libsyn.com/kenney-forgot-who-defeated-the-nazis&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #alberta advantage# --&gt;&#xA;&lt;!-- {BearID:7EF5D1E0-A895-422F-8113-BB630761E86A-28016-00002D97DC253779} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Alberta Advantage Podcast - Managing Universities to Death: Cuts and Performance Measures</title>
      <link>https://mcjones.ca/docs/alberta-advantage-podcast---managing-universities-to-death--cuts-and-performance-measures/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:37 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/alberta-advantage-podcast---managing-universities-to-death--cuts-and-performance-measures/</guid>
      <description>&lt;h1 id=&#34;alberta-advantage-podcast---managing-universities-to-death-cuts-and-performance-measures&#34;&gt;Alberta Advantage Podcast - Managing Universities to Death: Cuts and Performance Measures&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;alberta-advantage-podcast---mini-ep-managing-universities-to-death-cuts-and-performance-measures&#34;&gt;Alberta Advantage Podcast - MINI-EP: Managing Universities to Death: Cuts and “Performance Measures”&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+KvqrqLZtc&#34;&gt;https://overcast.fm/+KvqrqLZtc&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://albertaadvantage.libsyn.com/mini-ep-managing-universities-to-death-cuts-and-performance-measures&#34;&gt;https://albertaadvantage.libsyn.com/mini-ep-managing-universities-to-death-cuts-and-performance-measures&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #alberta advantage# --&gt;&#xA;&lt;!-- {BearID:96E6EB2C-8B69-4A74-8EA1-EDEE02C42AC6-28016-00002D97DC832317} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Alberta Advantage Podcast - MINI-EP: Trans Mountain&#39;s Ballooning Costs</title>
      <link>https://mcjones.ca/docs/alberta-advantage-podcast---mini-ep--trans-mountains-ballooning-costs/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:37 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/alberta-advantage-podcast---mini-ep--trans-mountains-ballooning-costs/</guid>
      <description>&lt;h1 id=&#34;alberta-advantage-podcast---mini-ep-trans-mountains-ballooning-costs&#34;&gt;Alberta Advantage Podcast - MINI-EP: Trans Mountain&amp;rsquo;s Ballooning Costs&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;alberta-advantage-podcast---mini-ep-trans-mountains-ballooning-costs-1&#34;&gt;Alberta Advantage Podcast - MINI-EP: Trans Mountain’s Ballooning Costs&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+Kvqq8ON2M&#34;&gt;https://overcast.fm/+Kvqq8ON2M&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://traffic.libsyn.com/secure/albertaadvantage/746898085-albertaadvantage-mini-ep-trans-mountains-ballooning-costs.mp3&#34;&gt;https://traffic.libsyn.com/secure/albertaadvantage/746898085-albertaadvantage-mini-ep-trans-mountains-ballooning-costs.mp3&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #alberta advantage# --&gt;&#xA;&lt;!-- {BearID:66910C2F-0368-4A8F-A2A1-BDE5CFE33488-28016-00002D97DCB13378} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Alberta Advantage Podcast - Oil Propaganda Breakdown - Enough Is Enough</title>
      <link>https://mcjones.ca/docs/alberta-advantage-podcast---oil-propaganda-breakdown---enough-is-enough/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:37 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/alberta-advantage-podcast---oil-propaganda-breakdown---enough-is-enough/</guid>
      <description>&lt;h1 id=&#34;alberta-advantage-podcast---oil-propaganda-breakdown---enough-is-enough&#34;&gt;Alberta Advantage Podcast - Oil Propaganda Breakdown - Enough Is Enough&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;alberta-advantage-podcast---oil-propaganda-breakdown-enough-is-enough&#34;&gt;Alberta Advantage Podcast - Oil Propaganda Breakdown: Enough Is Enough&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+KvqpE6Yrk&#34;&gt;https://overcast.fm/+KvqpE6Yrk&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://traffic.libsyn.com/secure/albertaadvantage/712353118-albertaadvantage-oil-propaganda-breakdown-enough-is-enough.mp3&#34;&gt;https://traffic.libsyn.com/secure/albertaadvantage/712353118-albertaadvantage-oil-propaganda-breakdown-enough-is-enough.mp3&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #alberta advantage# --&gt;&#xA;&lt;!-- {BearID:7DF68B2A-574D-44E8-9ED3-FDD0F990B5E9-28016-00002D97DD08E2D8} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Alberta Advantage Podcast - Work and Time-Discipline</title>
      <link>https://mcjones.ca/docs/alberta-advantage-podcast---work-and-time-discipline/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:37 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/alberta-advantage-podcast---work-and-time-discipline/</guid>
      <description>&lt;h1 id=&#34;alberta-advantage-podcast---work-and-time-discipline&#34;&gt;Alberta Advantage Podcast - Work and Time-Discipline&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;alberta-advantage-podcast---work-and-time-discipline-1&#34;&gt;Alberta Advantage Podcast - Work and Time-Discipline&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+KvqqFbxzQ&#34;&gt;https://overcast.fm/+KvqqFbxzQ&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://albertaadvantage.libsyn.com/work-and-time-discipline&#34;&gt;https://albertaadvantage.libsyn.com/work-and-time-discipline&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #alberta advantage# --&gt;&#xA;&lt;!-- {BearID:645B5DB5-9335-4264-8F0F-176D17775527-28016-00002D97DBF743F3} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Alberta Advantage Podcast - Back to School in Pandemic Alberta</title>
      <link>https://mcjones.ca/docs/alberta-advantage-podcast---back-to-school-in-pandemic-alberta/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:36 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/alberta-advantage-podcast---back-to-school-in-pandemic-alberta/</guid>
      <description>&lt;h1 id=&#34;alberta-advantage-podcast---back-to-school-in-pandemic-alberta&#34;&gt;Alberta Advantage Podcast - Back to School in Pandemic Alberta&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;alberta-advantage-podcast---back-to-school-in-pandemic-alberta-1&#34;&gt;Alberta Advantage Podcast - Back to School in Pandemic Alberta&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+Kvqru5p3A&#34;&gt;https://overcast.fm/+Kvqru5p3A&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://albertaadvantage.libsyn.com/back-to-school-in-pandemic-alberta&#34;&gt;https://albertaadvantage.libsyn.com/back-to-school-in-pandemic-alberta&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #alberta advantage# --&gt;&#xA;&lt;!-- {BearID:3825DAF7-A0C3-4DF2-8633-A126E01EA59C-28016-00002D97DB10EC9D} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Alberta Advantage Podcast - Doctors On Strike - 1962 and the Birth of Canadian Medicare</title>
      <link>https://mcjones.ca/docs/alberta-advantage-podcast---doctors-on-strike---1962-and-the-birth-of-canadian-medicare/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:36 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/alberta-advantage-podcast---doctors-on-strike---1962-and-the-birth-of-canadian-medicare/</guid>
      <description>&lt;h1 id=&#34;alberta-advantage-podcast---doctors-on-strike---1962-and-the-birth-of-canadian-medicare&#34;&gt;Alberta Advantage Podcast - Doctors On Strike - 1962 and the Birth of Canadian Medicare&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;alberta-advantage-podcast---doctors-on-strike-1962-and-the-birth-of-canadian-medicare&#34;&gt;Alberta Advantage Podcast - Doctors On Strike? 1962 and the Birth of Canadian Medicare&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+KvqpGkQXk&#34;&gt;https://overcast.fm/+KvqpGkQXk&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://albertaadvantage.libsyn.com/saskatchewans-1962-doctors-strike-and-the-birth-of-medicare&#34;&gt;https://albertaadvantage.libsyn.com/saskatchewans-1962-doctors-strike-and-the-birth-of-medicare&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #alberta advantage# --&gt;&#xA;&lt;!-- {BearID:80259551-625C-4EAE-A408-DDE2412C9F2B-28016-00002D97DAAEC09E} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Alberta Advantage Podcast - In Case of Strike</title>
      <link>https://mcjones.ca/docs/alberta-advantage-podcast---in-case-of-strike/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:36 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/alberta-advantage-podcast---in-case-of-strike/</guid>
      <description>&lt;h1 id=&#34;alberta-advantage-podcast---in-case-of-strike&#34;&gt;Alberta Advantage Podcast - In Case of Strike&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;alberta-advantage-podcast---in-case-of-strike-1&#34;&gt;Alberta Advantage Podcast - In Case of Strike…&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+Kvqo8u4kg&#34;&gt;https://overcast.fm/+Kvqo8u4kg&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://albertaadvantage.libsyn.com/in-case-of-strike&#34;&gt;https://albertaadvantage.libsyn.com/in-case-of-strike&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #alberta advantage# --&gt;&#xA;&lt;!-- {BearID:BD8F8C86-4F27-48DB-AE45-D47DCE4DD13F-28016-00002D97DA7C809A} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Alberta Advantage Podcast - Killing the Welfare State: Liberals and the 1990s</title>
      <link>https://mcjones.ca/docs/alberta-advantage-podcast---killing-the-welfare-state--liberals-and-the-1990s/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:36 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/alberta-advantage-podcast---killing-the-welfare-state--liberals-and-the-1990s/</guid>
      <description>&lt;h1 id=&#34;alberta-advantage-podcast---killing-the-welfare-state-liberals-and-the-1990s&#34;&gt;Alberta Advantage Podcast - Killing the Welfare State: Liberals and the 1990s&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;alberta-advantage-podcast---killing-the-welfare-state-liberals-and-the-1990s-1&#34;&gt;Alberta Advantage Podcast - Killing the Welfare State: Liberals and the 1990s&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+KvqqtMsbI&#34;&gt;https://overcast.fm/+KvqqtMsbI&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://albertaadvantage.libsyn.com/killing-the-welfare-state-liberals-and-the-1990s&#34;&gt;https://albertaadvantage.libsyn.com/killing-the-welfare-state-liberals-and-the-1990s&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #alberta advantage# --&gt;&#xA;&lt;!-- {BearID:0D371186-16C2-4143-9456-AA836B580230-28016-00002D97DB6E552E} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Alberta Advantage Podcast - Mobilizing for the Climate Emergency: Seth Klein&#39;s Good War</title>
      <link>https://mcjones.ca/docs/alberta-advantage-podcast---mobilizing-for-the-climate-emergency--seth-kleins-good-war/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:36 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/alberta-advantage-podcast---mobilizing-for-the-climate-emergency--seth-kleins-good-war/</guid>
      <description>&lt;h1 id=&#34;alberta-advantage-podcast---mobilizing-for-the-climate-emergency-seth-kleins-good-war&#34;&gt;Alberta Advantage Podcast - Mobilizing for the Climate Emergency: Seth Klein&amp;rsquo;s Good War&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;alberta-advantage-podcast---mobilizing-for-the-climate-emergency-seth-kleins-good-war-1&#34;&gt;Alberta Advantage Podcast - Mobilizing for the Climate Emergency: Seth Klein’s Good War&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+Kvqpc4c5Y&#34;&gt;https://overcast.fm/+Kvqpc4c5Y&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://albertaadvantage.libsyn.com/mobilizing-for-the-climate-emergency-seth-kleins-good-war&#34;&gt;https://albertaadvantage.libsyn.com/mobilizing-for-the-climate-emergency-seth-kleins-good-war&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #alberta advantage# --&gt;&#xA;&lt;!-- {BearID:471EF85E-1FA5-4515-832B-62CB865BDE65-28016-00002D97DAE2C058} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Alberta Advantage Podcast - Monsters of the Market - Horror and Capitalist Anxiety</title>
      <link>https://mcjones.ca/docs/alberta-advantage-podcast---monsters-of-the-market---horror-and-capitalist-anxiety/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:36 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/alberta-advantage-podcast---monsters-of-the-market---horror-and-capitalist-anxiety/</guid>
      <description>&lt;h1 id=&#34;alberta-advantage-podcast---monsters-of-the-market---horror-and-capitalist-anxiety&#34;&gt;Alberta Advantage Podcast - Monsters of the Market - Horror and Capitalist Anxiety&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;alberta-advantage-podcast---monsters-of-the-market-horror-and-capitalist-anxiety&#34;&gt;Alberta Advantage Podcast - Monsters of the Market: Horror and Capitalist Anxiety&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+Kvqrvy2f8&#34;&gt;https://overcast.fm/+Kvqrvy2f8&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://albertaadvantage.libsyn.com/monsters-of-the-market-horror-and-capitalist-anxiety&#34;&gt;https://albertaadvantage.libsyn.com/monsters-of-the-market-horror-and-capitalist-anxiety&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #alberta advantage# --&gt;&#xA;&lt;!-- {BearID:FD429BCF-3D04-41B6-BE4C-9481A4E3F060-28016-00002D97DA4D124B} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Alberta Advantage Podcast - The Politics of Statues</title>
      <link>https://mcjones.ca/docs/alberta-advantage-podcast---the-politics-of-statues/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:36 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/alberta-advantage-podcast---the-politics-of-statues/</guid>
      <description>&lt;h1 id=&#34;alberta-advantage-podcast---the-politics-of-statues&#34;&gt;Alberta Advantage Podcast - The Politics of Statues&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;alberta-advantage-podcast---the-politics-of-statues-1&#34;&gt;Alberta Advantage Podcast - The Politics of Statues&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+KvqpoWRhY&#34;&gt;https://overcast.fm/+KvqpoWRhY&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://albertaadvantage.libsyn.com/the-politics-of-statues&#34;&gt;https://albertaadvantage.libsyn.com/the-politics-of-statues&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #alberta advantage# --&gt;&#xA;&lt;!-- {BearID:A194D55F-14F2-4D1E-B217-6E092F4E17BD-28016-00002D97DB40405F} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Alberta Advantage Podcast - What Is Long Term Care, and What Does It Need to Be?</title>
      <link>https://mcjones.ca/docs/alberta-advantage-podcast---what-is-long-term-care-and-what-does-it-need-to-be/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:36 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/alberta-advantage-podcast---what-is-long-term-care-and-what-does-it-need-to-be/</guid>
      <description>&lt;h1 id=&#34;alberta-advantage-podcast---what-is-long-term-care-and-what-does-it-need-to-be&#34;&gt;Alberta Advantage Podcast - What Is Long Term Care, and What Does It Need to Be?&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;alberta-advantage-podcast---what-is-long-term-care-and-what-does-it-need-to-be-1&#34;&gt;Alberta Advantage Podcast - What Is Long Term Care, and What Does It Need to Be?&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+KvqpQbPc0&#34;&gt;https://overcast.fm/+KvqpQbPc0&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://albertaadvantage.libsyn.com/what-is-long-term-care-and-what-does-it-need-to-be&#34;&gt;https://albertaadvantage.libsyn.com/what-is-long-term-care-and-what-does-it-need-to-be&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #alberta advantage# --&gt;&#xA;&lt;!-- {BearID:3B9E16C1-89E9-4055-B369-C71A1688F591-28016-00002D97DB9B4CEE} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Alberta Advantage Podcast - Against Corporate Feminism -  Less Lean In, More Lenin</title>
      <link>https://mcjones.ca/docs/alberta-advantage-podcast---against-corporate-feminism----less-lean-in-more-lenin/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:35 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/alberta-advantage-podcast---against-corporate-feminism----less-lean-in-more-lenin/</guid>
      <description>&lt;h1 id=&#34;alberta-advantage-podcast---against-corporate-feminism----less-lean-in-more-lenin&#34;&gt;Alberta Advantage Podcast - Against Corporate Feminism -  Less Lean In, More Lenin&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;alberta-advantage-podcast---against-corporate-feminism-less-lean-in-more-lenin&#34;&gt;Alberta Advantage Podcast - Against Corporate Feminism: Less Lean In, More Lenin&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+KvqqkWzR8&#34;&gt;https://overcast.fm/+KvqqkWzR8&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://albertaadvantage.libsyn.com/against-corporate-feminism-less-lean-in-more-lenin&#34;&gt;https://albertaadvantage.libsyn.com/against-corporate-feminism-less-lean-in-more-lenin&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #alberta advantage# --&gt;&#xA;&lt;!-- {BearID:E5324782-ECD3-40C3-ACFF-BDA0E5C2E3C3-28016-00002D97D965F8DA} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Alberta Advantage Podcast - Alberta&#39;s War on Rats</title>
      <link>https://mcjones.ca/docs/alberta-advantage-podcast---albertas-war-on-rats/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:35 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/alberta-advantage-podcast---albertas-war-on-rats/</guid>
      <description>&lt;h1 id=&#34;alberta-advantage-podcast---albertas-war-on-rats&#34;&gt;Alberta Advantage Podcast - Alberta&amp;rsquo;s War on Rats&lt;/h1&gt;&#xA;&lt;p&gt;No Notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;alberta-advantage-podcast---albertas-war-on-rats-1&#34;&gt;Alberta Advantage Podcast - Alberta’s War on Rats&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+KvqohXet8&#34;&gt;https://overcast.fm/+KvqohXet8&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://albertaadvantage.libsyn.com/albertas-war-on-rats&#34;&gt;https://albertaadvantage.libsyn.com/albertas-war-on-rats&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #alberta advantage# --&gt;&#xA;&lt;!-- {BearID:ADF65B3A-E3A6-4414-8FC8-49B8F9B97019-28016-00002D97D9949505} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Alberta Advantage Podcast - Canada&#39;s National Energy Program, 1980-1985</title>
      <link>https://mcjones.ca/docs/alberta-advantage-podcast---canadas-national-energy-program-1980-1985/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:35 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/alberta-advantage-podcast---canadas-national-energy-program-1980-1985/</guid>
      <description>&lt;h1 id=&#34;alberta-advantage-podcast---canadas-national-energy-program-1980-1985&#34;&gt;Alberta Advantage Podcast - Canada&amp;rsquo;s National Energy Program, 1980-1985&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;alberta-advantage-podcast---canadas-national-energy-program-1980-1985-1&#34;&gt;Alberta Advantage Podcast - Canada’s National Energy Program, 1980-1985&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+KvqoWYYLg&#34;&gt;https://overcast.fm/+KvqoWYYLg&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://albertaadvantage.libsyn.com/canadas-national-energy-program-1980-1985&#34;&gt;https://albertaadvantage.libsyn.com/canadas-national-energy-program-1980-1985&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #alberta advantage# --&gt;&#xA;&lt;!-- {BearID:0348A947-591E-4AA8-BEBD-28A38D3DF7B6-28016-00002D97D9C1FBFC} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Alberta Advantage Podcast - Corporate Subsidy Sponges and Handout Hogs</title>
      <link>https://mcjones.ca/docs/alberta-advantage-podcast---corporate-subsidy-sponges-and-handout-hogs/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:35 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/alberta-advantage-podcast---corporate-subsidy-sponges-and-handout-hogs/</guid>
      <description>&lt;h1 id=&#34;alberta-advantage-podcast---corporate-subsidy-sponges-and-handout-hogs&#34;&gt;Alberta Advantage Podcast - Corporate Subsidy Sponges and Handout Hogs&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;alberta-advantage-podcast---corporate-subsidy-sponges-and-handout-hogs-1&#34;&gt;Alberta Advantage Podcast - Corporate Subsidy Sponges and Handout Hogs&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+KvqoQmgWQ&#34;&gt;https://overcast.fm/+KvqoQmgWQ&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://albertaadvantage.libsyn.com/corporate-subsidy-sponges-and-handout-hogs&#34;&gt;https://albertaadvantage.libsyn.com/corporate-subsidy-sponges-and-handout-hogs&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #alberta advantage# --&gt;&#xA;&lt;!-- {BearID:D4A68E1B-12DB-48BB-8AC1-37A5B94EDE47-28016-00002D97DA1EA605} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Alberta Advantage Podcast - Industrial Policy for the People</title>
      <link>https://mcjones.ca/docs/alberta-advantage-podcast---industrial-policy-for-the-people/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:35 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/alberta-advantage-podcast---industrial-policy-for-the-people/</guid>
      <description>&lt;h1 id=&#34;alberta-advantage-podcast---industrial-policy-for-the-people&#34;&gt;Alberta Advantage Podcast - Industrial Policy for the People&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;alberta-advantage-podcast---industrial-policy-for-the-people-1&#34;&gt;Alberta Advantage Podcast - Industrial Policy for the People&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+KvqoK4Ofo&#34;&gt;https://overcast.fm/+KvqoK4Ofo&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://albertaadvantage.libsyn.com/industrial-policy-for-the-people&#34;&gt;https://albertaadvantage.libsyn.com/industrial-policy-for-the-people&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #alberta advantage# --&gt;&#xA;&lt;!-- {BearID:63D6E91A-C983-4FAB-881D-805E18C7B962-28016-00002D97D9397A3A} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Alberta Advantage Podcast - Stacking Crises on Crises</title>
      <link>https://mcjones.ca/docs/alberta-advantage-podcast---stacking-crises-on-crises/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:35 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/alberta-advantage-podcast---stacking-crises-on-crises/</guid>
      <description>&lt;h1 id=&#34;alberta-advantage-podcast---stacking-crises-on-crises&#34;&gt;Alberta Advantage Podcast - Stacking Crises on Crises&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;alberta-advantage-podcast---stacking-crises-on-crises-1&#34;&gt;Alberta Advantage Podcast - Stacking Crises on Crises&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+Kvqp6fgdc&#34;&gt;https://overcast.fm/+Kvqp6fgdc&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://albertaadvantage.libsyn.com/stacking-crises-on-crises&#34;&gt;https://albertaadvantage.libsyn.com/stacking-crises-on-crises&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #alberta advantage# --&gt;&#xA;&lt;!-- {BearID:13769F7B-F0D3-4E36-A512-4519A715CD4A-28016-00002D97D8DDA7AA} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Alberta Advantage Podcast - Stampede - Misogyny, White Supremacy, and Settler Colonialism</title>
      <link>https://mcjones.ca/docs/alberta-advantage-podcast---stampede---misogyny-white-supremacy-and-settler-colonialism/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:35 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/alberta-advantage-podcast---stampede---misogyny-white-supremacy-and-settler-colonialism/</guid>
      <description>&lt;h1 id=&#34;alberta-advantage-podcast---stampede---misogyny-white-supremacy-and-settler-colonialism&#34;&gt;Alberta Advantage Podcast - Stampede - Misogyny, White Supremacy, and Settler Colonialism&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;alberta-advantage-podcast---stampede-misogyny-white-supremacy-and-settler-colonialism&#34;&gt;Alberta Advantage Podcast - Stampede: Misogyny, White Supremacy, and Settler Colonialism&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+KvqqxI9a4&#34;&gt;https://overcast.fm/+KvqqxI9a4&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://albertaadvantage.libsyn.com/stampede-misogyny-white-supremacy-and-settler-colonialism&#34;&gt;https://albertaadvantage.libsyn.com/stampede-misogyny-white-supremacy-and-settler-colonialism&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #alberta advantage# --&gt;&#xA;&lt;!-- {BearID:7AFDAEC8-8064-4FBB-AADD-B9C8FC8583BA-28016-00002D97D90ADB3B} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Alberta Advantage Podcast - Universal Basic Income - Utopian, or Not Bold Enough?</title>
      <link>https://mcjones.ca/docs/alberta-advantage-podcast---universal-basic-income---utopian-or-not-bold-enough/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:35 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/alberta-advantage-podcast---universal-basic-income---utopian-or-not-bold-enough/</guid>
      <description>&lt;h1 id=&#34;alberta-advantage-podcast---universal-basic-income---utopian-or-not-bold-enough&#34;&gt;Alberta Advantage Podcast - Universal Basic Income - Utopian, or Not Bold Enough?&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;alberta-advantage-podcast---universal-basic-income-utopian-or-not-bold-enough&#34;&gt;Alberta Advantage Podcast - Universal Basic Income: Utopian, or Not Bold Enough?&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+KvqoGrDCs&#34;&gt;https://overcast.fm/+KvqoGrDCs&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://albertaadvantage.libsyn.com/universal-basic-income-utopian-or-not-bold-enough&#34;&gt;https://albertaadvantage.libsyn.com/universal-basic-income-utopian-or-not-bold-enough&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #alberta advantage# --&gt;&#xA;&lt;!-- {BearID:A86646B4-9B8F-4E46-AB97-59B51C0A6451-28016-00002D97D9F0C457} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Alberta Advantage Podcast - Austerity in Saskatchewan - Roy Romanow&#39;s NDP</title>
      <link>https://mcjones.ca/docs/alberta-advantage-podcast---austerity-in-saskatchewan---roy-romanows-ndp/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:34 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/alberta-advantage-podcast---austerity-in-saskatchewan---roy-romanows-ndp/</guid>
      <description>&lt;h1 id=&#34;alberta-advantage-podcast---austerity-in-saskatchewan---roy-romanows-ndp&#34;&gt;Alberta Advantage Podcast - Austerity in Saskatchewan - Roy Romanow&amp;rsquo;s NDP&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;alberta-advantage-podcast---austerity-in-saskatchewan-roy-romanows-ndp&#34;&gt;Alberta Advantage Podcast - Austerity in Saskatchewan: Roy Romanow’s NDP&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+KvqrU3LnQ&#34;&gt;https://overcast.fm/+KvqrU3LnQ&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://albertaadvantage.libsyn.com/austerity-in-saskatchewan-roy-romanows-ndp&#34;&gt;https://albertaadvantage.libsyn.com/austerity-in-saskatchewan-roy-romanows-ndp&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #alberta advantage# --&gt;&#xA;&lt;!-- {BearID:0D459BBF-F1F0-4E07-BE8B-CDFE6FCCDB43-28016-00002D97D8AE4FC0} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Datanauts - 123 - Security Without Firewalls</title>
      <link>https://mcjones.ca/docs/datanauts---123---security-without-firewalls/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:34 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/datanauts---123---security-without-firewalls/</guid>
      <description>&lt;h1 id=&#34;datanauts---123---security-without-firewalls&#34;&gt;Datanauts - 123 - Security Without Firewalls&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-fat-pipe-of-the-packet-pushers-podcasts---datanauts-123-security-without-firewalls&#34;&gt;The Fat Pipe Of The Packet Pushers Podcasts - Datanauts 123: Security Without Firewalls&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+KN3LogLuU&#34;&gt;https://overcast.fm/+KN3LogLuU&lt;/a&gt;&#xA;&lt;a href=&#34;https://packetpushers.net/podcast/datanauts-123-security-without-firewalls/&#34;&gt;https://packetpushers.net/podcast/datanauts-123-security-without-firewalls/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #datanauts# --&gt;&#xA;&lt;!-- {BearID:121FCF6D-E20A-4CF9-B188-8D9BA5B458B8-28016-00002D97D882CA58} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Day Two Cloud - 116 - Emotional Intelligence, Hard Conversations, And Other Essential Management Skills</title>
      <link>https://mcjones.ca/docs/day-two-cloud---116---emotional-intelligence-hard-conversations-and-other-essential-management-skills/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:34 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/day-two-cloud---116---emotional-intelligence-hard-conversations-and-other-essential-management-skills/</guid>
      <description>&lt;h1 id=&#34;day-two-cloud---116---emotional-intelligence-hard-conversations-and-other-essential-management-skills&#34;&gt;Day Two Cloud - 116 - Emotional Intelligence, Hard Conversations, And Other Essential Management Skills&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-fat-pipe-of-the-packet-pushers-podcasts---day-two-cloud-116-emotional-intelligence-hard-conversations-and-other-essential-management-skills&#34;&gt;The Fat Pipe Of The Packet Pushers Podcasts - Day Two Cloud 116: Emotional Intelligence, Hard Conversations, And Other Essential Management Skills&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+KN3JbdLB4&#34;&gt;https://overcast.fm/+KN3JbdLB4&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://packetpushers.net/podcast/day-two-cloud-116-emotional-intelligence-hard-conversations-and-other-essential-management-skills/&#34;&gt;https://packetpushers.net/podcast/day-two-cloud-116-emotional-intelligence-hard-conversations-and-other-essential-management-skills/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #day two cloud# #packet pushers# --&gt;&#xA;&lt;!-- {BearID:05550ED2-7568-42FA-AC02-7DB4BA071477-28016-00002D97D7EB5D33} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Day Two Cloud - 143 - Application Security Isn&#39;t Just For Developers</title>
      <link>https://mcjones.ca/docs/day-two-cloud---143---application-security-isnt-just-for-developers/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:34 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/day-two-cloud---143---application-security-isnt-just-for-developers/</guid>
      <description>&lt;h1 id=&#34;day-two-cloud---143---application-security-isnt-just-for-developers&#34;&gt;Day Two Cloud - 143 - Application Security Isn&amp;rsquo;t Just For Developers&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-fat-pipe-of-the-packet-pushers-podcasts---day-two-cloud-143-application-security-isnt-just-for-developers&#34;&gt;The Fat Pipe Of The Packet Pushers Podcasts - Day Two Cloud 143: Application Security Isn’t Just For Developers&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+KN3KLw8ZY&#34;&gt;https://overcast.fm/+KN3KLw8ZY&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://packetpushers.net/podcast/day-two-cloud-143-application-security-isnt-just-for-developers/&#34;&gt;https://packetpushers.net/podcast/day-two-cloud-143-application-security-isnt-just-for-developers/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #day two cloud# #packet pushers# --&gt;&#xA;&lt;!-- {BearID:469328E0-B05B-4F5E-B8A5-4DE7142FB3E4-28016-00002D97D7BD6913} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Heavy Networking - 568 - Effective Technical Communication</title>
      <link>https://mcjones.ca/docs/heavy-networking---568---effective-technical-communication/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:34 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/heavy-networking---568---effective-technical-communication/</guid>
      <description>&lt;h1 id=&#34;heavy-networking---568---effective-technical-communication&#34;&gt;Heavy Networking - 568 - Effective Technical Communication&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-fat-pipe-of-the-packet-pushers-podcasts---heavy-networking-568-effective-technical-communication&#34;&gt;The Fat Pipe Of The Packet Pushers Podcasts - Heavy Networking 568: Effective Technical Communication&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+KN3JMm5RE&#34;&gt;https://overcast.fm/+KN3JMm5RE&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://packetpushers.net/podcast/heavy-networking-568-effective-technical-communication/&#34;&gt;https://packetpushers.net/podcast/heavy-networking-568-effective-technical-communication/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #heavy networking# --&gt;&#xA;&lt;!-- {BearID:7CF4C442-45DB-48C8-9673-40B5C0C18F84-28016-00002D97D8235062} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Bike Town Podcast - S1E1 - The Suburbs</title>
      <link>https://mcjones.ca/docs/bike-town-podcast---s1e1---the-suburbs/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:33 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/bike-town-podcast---s1e1---the-suburbs/</guid>
      <description>&lt;h1 id=&#34;bike-town-podcast---s1e1---the-suburbs&#34;&gt;Bike Town Podcast - S1E1 - The Suburbs&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;bike-town-podcast---s1e1--the-suburbs&#34;&gt;Bike Town Podcast - S1E1 | The Suburbs&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+Gbpjae9pA&#34;&gt;https://overcast.fm/+Gbpjae9pA&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://www.biketownpodcast.com/episodes/2016/4/17/episode-1-the-suburbs&#34;&gt;http://www.biketownpodcast.com/episodes/2016/4/17/episode-1-the-suburbs&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #bike town# --&gt;&#xA;&lt;!-- {BearID:C2A36B05-BD7A-4DAA-B60D-083710A81575-28016-00002D97D624FCC9} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Full Stack Journey - Scaling Infrastructure As Code Beyond A Single Engineer</title>
      <link>https://mcjones.ca/docs/full-stack-journey---scaling-infrastructure-as-code-beyond-a-single-engineer/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:33 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/full-stack-journey---scaling-infrastructure-as-code-beyond-a-single-engineer/</guid>
      <description>&lt;h1 id=&#34;full-stack-journey---scaling-infrastructure-as-code-beyond-a-single-engineer&#34;&gt;Full Stack Journey - Scaling Infrastructure As Code Beyond A Single Engineer&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;full-stack-journey---packet-pushers---full-stack-journey-052-scaling-infrastructure-as-code-beyond-a-single-engineer&#34;&gt;Full Stack Journey - Packet Pushers - Full Stack Journey 052: Scaling Infrastructure As Code Beyond A Single Engineer&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+I-rOjG18k&#34;&gt;https://overcast.fm/+I-rOjG18k&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://feeds.packetpushers.net/link/17413/14356760/full-stack-journey-052-scaling-infrastructure-as-code-beyond-a-single-engineer&#34;&gt;https://feeds.packetpushers.net/link/17413/14356760/full-stack-journey-052-scaling-infrastructure-as-code-beyond-a-single-engineer&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Full Stack Journey# --&gt;&#xA;&lt;!-- {BearID:32E1DBCC-B680-4DA5-8746-1414D8FF715A-28016-00002D97D734F856} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Twenty Thousand Hertz - Dies Irae</title>
      <link>https://mcjones.ca/docs/twenty-thousand-hertz---dies-irae/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:33 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/twenty-thousand-hertz---dies-irae/</guid>
      <description>&lt;h1 id=&#34;twenty-thousand-hertz---dies-irae&#34;&gt;Twenty Thousand Hertz - Dies Irae&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;twenty-thousand-hertz---dies-irae-1&#34;&gt;Twenty Thousand Hertz - Dies Irae&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+HhSfqjy60&#34;&gt;https://overcast.fm/+HhSfqjy60&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.20k.org/episodes/diesirae&#34;&gt;https://www.20k.org/episodes/diesirae&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Twenty Thousand Hertz# --&gt;&#xA;&lt;!-- {BearID:875B70BB-044B-46A7-B579-FE76DCF9D40C-28016-00002D97D651ADAC} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Twenty Thousand Hertz - Dining on Decibels</title>
      <link>https://mcjones.ca/docs/twenty-thousand-hertz---dining-on-decibels/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:33 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/twenty-thousand-hertz---dining-on-decibels/</guid>
      <description>&lt;h1 id=&#34;twenty-thousand-hertz---dining-on-decibels&#34;&gt;Twenty Thousand Hertz - Dining on Decibels&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;twenty-thousand-hertz---dining-on-decibels-1&#34;&gt;Twenty Thousand Hertz - Dining on Decibels&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+HhSfuPDj4&#34;&gt;https://overcast.fm/+HhSfuPDj4&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.20k.org/episodes/diningondecibels&#34;&gt;https://www.20k.org/episodes/diningondecibels&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Twenty Thousand Hertz# --&gt;&#xA;&lt;!-- {BearID:CD456D23-D080-45B0-B370-7F09612747FB-28016-00002D97D6DC8964} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Twenty Thousand Hertz - Level Up</title>
      <link>https://mcjones.ca/docs/twenty-thousand-hertz---level-up/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:33 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/twenty-thousand-hertz---level-up/</guid>
      <description>&lt;h1 id=&#34;twenty-thousand-hertz---level-up&#34;&gt;Twenty Thousand Hertz - Level Up&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;twenty-thousand-hertz---level-up-1&#34;&gt;Twenty Thousand Hertz - Level Up&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+HhSckbZD8&#34;&gt;https://overcast.fm/+HhSckbZD8&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.20k.org/episodes/levelup&#34;&gt;https://www.20k.org/episodes/levelup&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Twenty Thousand Hertz# --&gt;&#xA;&lt;!-- {BearID:121938A1-1BA2-403A-81E8-A0160FD5849F-28016-00002D97D7088211} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Twenty Thousand Hertz - Sound Escapes</title>
      <link>https://mcjones.ca/docs/twenty-thousand-hertz---sound-escapes/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:33 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/twenty-thousand-hertz---sound-escapes/</guid>
      <description>&lt;h1 id=&#34;twenty-thousand-hertz---sound-escapes&#34;&gt;Twenty Thousand Hertz - Sound Escapes&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;twenty-thousand-hertz---sound-escapes-1&#34;&gt;Twenty Thousand Hertz - Sound Escapes&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+HhSecGPjU&#34;&gt;https://overcast.fm/+HhSecGPjU&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.20k.org/episodes/soundescapes&#34;&gt;https://www.20k.org/episodes/soundescapes&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Twenty Thousand Hertz# --&gt;&#xA;&lt;!-- {BearID:62F1CADC-C073-4768-9F26-5231EDED51FE-28016-00002D97D6ADC698} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Twenty Thousand Hertz - The COMPRESSED History of Mastering</title>
      <link>https://mcjones.ca/docs/twenty-thousand-hertz---the-compressed-history-of-mastering/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:33 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/twenty-thousand-hertz---the-compressed-history-of-mastering/</guid>
      <description>&lt;h1 id=&#34;twenty-thousand-hertz---the-compressed-history-of-mastering&#34;&gt;Twenty Thousand Hertz - The COMPRESSED History of Mastering&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;twenty-thousand-hertz---the-compressed-history-of-mastering-1&#34;&gt;Twenty Thousand Hertz - The [COMPRESSED] History of Mastering&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+HhScvVsfc&#34;&gt;https://overcast.fm/+HhScvVsfc&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.20k.org/episodes/historyofmastering&#34;&gt;https://www.20k.org/episodes/historyofmastering&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Twenty Thousand Hertz# --&gt;&#xA;&lt;!-- {BearID:8E658BA6-1DB7-4490-B059-8A03C6A0F93D-28016-00002D97D680A0FC} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Walkcast - 9 - Failure: How one family has lost faith with Edmonton&#39;s Vision Zero campaign</title>
      <link>https://mcjones.ca/docs/walkcast---9---failure--how-one-family-has-lost-faith-with-edmontons-vision-zero-campaign/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:33 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/walkcast---9---failure--how-one-family-has-lost-faith-with-edmontons-vision-zero-campaign/</guid>
      <description>&lt;h1 id=&#34;walkcast---9---failure-how-one-family-has-lost-faith-with-edmontons-vision-zero-campaign&#34;&gt;Walkcast - 9 - Failure: How one family has lost faith with Edmonton&amp;rsquo;s Vision Zero campaign&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;walkcast---walkcast-ep-09--failure-how-one-family-has-lost-faith-with-edmontons-vision-zero-campaign&#34;&gt;Walkcast - Walkcast Ep. 09 — ‘Failure’: How one family has lost faith with Edmonton’s Vision Zero campaign&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+Jb5fYO2ig&#34;&gt;https://overcast.fm/+Jb5fYO2ig&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://soundcloud.com/tim-quereng-sser/walkcast-ep-09-failure-how-one-family-has-lost-faith-with-edmontons-vision-zero-campaign&#34;&gt;https://soundcloud.com/tim-quereng-sser/walkcast-ep-09-failure-how-one-family-has-lost-faith-with-edmontons-vision-zero-campaign&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #walkcast --&gt;&#xA;&lt;!-- {BearID:E7C63473-5C44-4096-8E65-66AC7F96EF97-28016-00002D97D763C2D3} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Bike Town Podcast - Doug the Bicycle Man</title>
      <link>https://mcjones.ca/docs/bike-town-podcast---doug-the-bicycle-man/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:32 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/bike-town-podcast---doug-the-bicycle-man/</guid>
      <description>&lt;h1 id=&#34;bike-town-podcast---doug-the-bicycle-man&#34;&gt;Bike Town Podcast - Doug the Bicycle Man&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;bike-town-podcast---s1e4--doug-the-bicycle-man&#34;&gt;Bike Town Podcast - S1E4 | Doug the Bicycle Man&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GbpjVfOD4&#34;&gt;https://overcast.fm/+GbpjVfOD4&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://www.biketownpodcast.com/episodes/2016/7/19/episode-4-doug-the-bicycle-man&#34;&gt;http://www.biketownpodcast.com/episodes/2016/7/19/episode-4-doug-the-bicycle-man&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #bike town# --&gt;&#xA;&lt;!-- {BearID:A246A65F-FFD4-4F66-A3E0-BDCB75A10C4A-28016-00002D97D5F7CEDF} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Bike Town Podcast - Effective Advocacy</title>
      <link>https://mcjones.ca/docs/bike-town-podcast---effective-advocacy/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:32 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/bike-town-podcast---effective-advocacy/</guid>
      <description>&lt;h1 id=&#34;bike-town-podcast---effective-advocacy&#34;&gt;Bike Town Podcast - Effective Advocacy&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;bike-town-podcast---s1e7--effective-advocacy&#34;&gt;Bike Town Podcast - S1E7 | Effective Advocacy&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+Gbpj2cgI8&#34;&gt;https://overcast.fm/+Gbpj2cgI8&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://www.biketownpodcast.com/episodes/2016/12/1/episode-7-advocacy&#34;&gt;http://www.biketownpodcast.com/episodes/2016/12/1/episode-7-advocacy&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #bike town# --&gt;&#xA;&lt;!-- {BearID:9B64B270-A2BA-424B-8A89-9FF300C4CEE6-28016-00002D97D5CAACBD} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Bike Town Podcast - How True Love Launched a Citizen Cyclery</title>
      <link>https://mcjones.ca/docs/bike-town-podcast---how-true-love-launched-a-citizen-cyclery/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:32 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/bike-town-podcast---how-true-love-launched-a-citizen-cyclery/</guid>
      <description>&lt;h1 id=&#34;bike-town-podcast---how-true-love-launched-a-citizen-cyclery&#34;&gt;Bike Town Podcast - How True Love Launched a Citizen Cyclery&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;bike-town-podcast---s2e01--how-true-love-launched-a-citizen-cyclery&#34;&gt;Bike Town Podcast - S2E01 | How True Love Launched a Citizen Cyclery&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GbphOrJiw&#34;&gt;https://overcast.fm/+GbphOrJiw&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://www.biketownpodcast.com/episodes/s2e01-citizen-cyclery&#34;&gt;http://www.biketownpodcast.com/episodes/s2e01-citizen-cyclery&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #bike town# --&gt;&#xA;&lt;!-- {BearID:BEF5423C-B757-4016-8DD2-C724356325F3-28016-00002D97D59BAEC7} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Bike Town Podcast - The Missing Mayor of Bike Town</title>
      <link>https://mcjones.ca/docs/bike-town-podcast---the-missing-mayor-of-bike-town/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:32 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/bike-town-podcast---the-missing-mayor-of-bike-town/</guid>
      <description>&lt;h1 id=&#34;bike-town-podcast---the-missing-mayor-of-bike-town&#34;&gt;Bike Town Podcast - The Missing Mayor of Bike Town&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;bike-town-podcast---s2e3--the-missing-mayor-of-bike-town&#34;&gt;Bike Town Podcast - S2E3 | The Missing Mayor of Bike Town&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GbpgBlddo&#34;&gt;https://overcast.fm/+GbpgBlddo&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://www.biketownpodcast.com/episodes/s2e03-missing-mayor-of-bike-town&#34;&gt;http://www.biketownpodcast.com/episodes/s2e03-missing-mayor-of-bike-town&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #bike town# --&gt;&#xA;&lt;!-- {BearID:CF2F9633-2469-4F30-B3B7-9C57ADD217ED-28016-00002D97D53FD9FF} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Bike Town Podcast - This Mom Bikes</title>
      <link>https://mcjones.ca/docs/bike-town-podcast---this-mom-bikes/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:32 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/bike-town-podcast---this-mom-bikes/</guid>
      <description>&lt;h1 id=&#34;bike-town-podcast---this-mom-bikes&#34;&gt;Bike Town Podcast - This Mom Bikes&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;bike-town-podcast---s2e2--this-mom-bikes&#34;&gt;Bike Town Podcast - S2E2 | This Mom Bikes&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GbphFI05U&#34;&gt;https://overcast.fm/+GbphFI05U&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://www.biketownpodcast.com/episodes/s2e02-this-mom-bikes&#34;&gt;http://www.biketownpodcast.com/episodes/s2e02-this-mom-bikes&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #bike town# --&gt;&#xA;&lt;!-- {BearID:DB6E8418-6D73-4FE4-8955-E28FC0EC4BEB-28016-00002D97D56F1538} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Escape Pod - 574 - Yosemite</title>
      <link>https://mcjones.ca/docs/escape-pod---574---yosemite/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:32 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/escape-pod---574---yosemite/</guid>
      <description>&lt;h1 id=&#34;escape-pod---574---yosemite&#34;&gt;Escape Pod - 574 - Yosemite&lt;/h1&gt;&#xA;&lt;h2 id=&#34;by-d-s-mcnab&#34;&gt;By &lt;a href=&#34;https://escapepod.org/people/d-s-mcnab/&#34;&gt;D. S. McNab&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;escape-pod---ep574-yosemite&#34;&gt;Escape Pod - EP574: Yosemite&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJrrU31bY&#34;&gt;https://overcast.fm/+GJrrU31bY&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://escapepod.org/2017/05/04/ep574-yosemite/&#34;&gt;http://escapepod.org/2017/05/04/ep574-yosemite/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Escape Pod# --&gt;&#xA;&lt;!-- {BearID:8B1A7257-EC6E-4FB7-B097-A7CDB7260F92-28016-00002D97D513718E} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Escape Pod - 579 - Texts from the Ghost War</title>
      <link>https://mcjones.ca/docs/escape-pod---579---texts-from-the-ghost-war/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:32 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/escape-pod---579---texts-from-the-ghost-war/</guid>
      <description>&lt;h1 id=&#34;escape-pod---579---texts-from-the-ghost-war&#34;&gt;Escape Pod - 579 - Texts from the Ghost War&lt;/h1&gt;&#xA;&lt;h2 id=&#34;by-alex-yuschik&#34;&gt;By &lt;a href=&#34;https://escapepod.org/people/alex-yuschik/&#34;&gt;Alex Yuschik&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;escape-pod---ep579-texts-from-the-ghost-war&#34;&gt;Escape Pod - EP579: Texts from the Ghost War&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJropi_0E&#34;&gt;https://overcast.fm/+GJropi_0E&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://escapepod.org/2017/06/09/ep579-texts-from-the-ghost-war/&#34;&gt;http://escapepod.org/2017/06/09/ep579-texts-from-the-ghost-war/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Escape Pod# --&gt;&#xA;&lt;!-- {BearID:AD4758BE-BBFB-4F23-8F86-6A83E245BF20-28016-00002D97D4E6CCE2} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Escape Pod - 581 - That Game We Played During the War</title>
      <link>https://mcjones.ca/docs/escape-pod---581---that-game-we-played-during-the-war/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:32 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/escape-pod---581---that-game-we-played-during-the-war/</guid>
      <description>&lt;h1 id=&#34;escape-pod---581---that-game-we-played-during-the-war&#34;&gt;Escape Pod - 581 - That Game We Played During the War&lt;/h1&gt;&#xA;&lt;h2 id=&#34;by-carrie-vaughn&#34;&gt;By &lt;a href=&#34;https://escapepod.org/people/carrie-vaughn/&#34;&gt;Carrie Vaughn&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;No notes recorded (Also really enjoyed her story in episode 667)&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;escape-pod---ep581-that-game-we-played-during-the-war&#34;&gt;Escape Pod - EP581: That Game We Played During the War&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJrpT4XRg&#34;&gt;https://overcast.fm/+GJrpT4XRg&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://escapepod.org/2017/06/22/ep581-that-game-we-played-during-the-war/&#34;&gt;http://escapepod.org/2017/06/22/ep581-that-game-we-played-during-the-war/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Escape Pod# --&gt;&#xA;&lt;!-- {BearID:2770132D-D454-4FD0-8FE1-8F29B3CCE3D1-28016-00002D97D4B7D1F4} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Escape Pod - 588 - Rocket Surgery</title>
      <link>https://mcjones.ca/docs/escape-pod---588---rocket-surgery/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:31 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/escape-pod---588---rocket-surgery/</guid>
      <description>&lt;h1 id=&#34;escape-pod---588---rocket-surgery&#34;&gt;Escape Pod - 588 - Rocket Surgery&lt;/h1&gt;&#xA;&lt;h2 id=&#34;by-effie-seiberg&#34;&gt;By &lt;a href=&#34;https://escapepod.org/people/effie-seiberg/&#34;&gt;Effie Seiberg&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;No notes recorded  (Also really enjoyed her story in episode 673)&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;escape-pod---escape-pod-588-rocket-surgery&#34;&gt;Escape Pod - Escape Pod 588: Rocket Surgery&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJrpVwOTA&#34;&gt;https://overcast.fm/+GJrpVwOTA&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://escapepod.org/2017/08/10/ep588-rocket-surgery/&#34;&gt;http://escapepod.org/2017/08/10/ep588-rocket-surgery/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Escape Pod# --&gt;&#xA;&lt;!-- {BearID:7A6F0D63-3B2E-4EA6-B956-4EE559E669A7-28016-00002D97D488785D} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Escape Pod - 607 - Red in Tooth and Cog</title>
      <link>https://mcjones.ca/docs/escape-pod---607---red-in-tooth-and-cog/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:31 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/escape-pod---607---red-in-tooth-and-cog/</guid>
      <description>&lt;h1 id=&#34;escape-pod---607---red-in-tooth-and-cog&#34;&gt;Escape Pod - 607 - Red in Tooth and Cog&lt;/h1&gt;&#xA;&lt;h2 id=&#34;by-cat-rambo&#34;&gt;By &lt;a href=&#34;https://escapepod.org/people/cat-rambo/&#34;&gt;Cat Rambo&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;escape-pod---escape-pod-607-red-in-tooth-and-cog&#34;&gt;Escape Pod - Escape Pod 607: Red in Tooth and Cog&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJrqzUCOg&#34;&gt;https://overcast.fm/+GJrqzUCOg&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://escapepod.org/2017/12/21/escape-pod-607-red-tooth-cog/&#34;&gt;http://escapepod.org/2017/12/21/escape-pod-607-red-tooth-cog/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Escape Pod# --&gt;&#xA;&lt;!-- {BearID:B7D64C8C-3F6A-415C-BC53-0832743FD5A3-28016-00002D97D45AAE4D} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Escape Pod - 608 - Even the Queen</title>
      <link>https://mcjones.ca/docs/escape-pod---608---even-the-queen/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:31 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/escape-pod---608---even-the-queen/</guid>
      <description>&lt;h1 id=&#34;escape-pod---608---even-the-queen&#34;&gt;Escape Pod - 608 - Even the Queen&lt;/h1&gt;&#xA;&lt;h2 id=&#34;by-connie-willis&#34;&gt;By &lt;a href=&#34;https://escapepod.org/people/connie-willis/&#34;&gt;Connie Willis&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;escape-pod---escape-pod-608-even-the-queen&#34;&gt;Escape Pod - Escape Pod 608: Even the Queen&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJrrjXAVo&#34;&gt;https://overcast.fm/+GJrrjXAVo&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://escapepod.org/2017/12/28/escape-pod-608-even-queen/&#34;&gt;http://escapepod.org/2017/12/28/escape-pod-608-even-queen/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Escape Pod# --&gt;&#xA;&lt;!-- {BearID:3178E968-FEE5-400A-8AC4-82D690252D8F-28016-00002D97D42B3DFA} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Escape Pod - 609 - Wasps Make Honey</title>
      <link>https://mcjones.ca/docs/escape-pod---609---wasps-make-honey/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:31 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/escape-pod---609---wasps-make-honey/</guid>
      <description>&lt;h1 id=&#34;escape-pod---609---wasps-make-honey&#34;&gt;Escape Pod - 609 - Wasps Make Honey&lt;/h1&gt;&#xA;&lt;h2 id=&#34;by-penelope-evans&#34;&gt;By &lt;a href=&#34;https://escapepod.org/people/penelope-evans/&#34;&gt;Penelope Evans&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;escape-pod---escape-pod-609-wasps-make-honey&#34;&gt;Escape Pod - Escape Pod 609: Wasps Make Honey&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJrpB9aD8&#34;&gt;https://overcast.fm/+GJrpB9aD8&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://escapepod.org/2018/01/04/escape-pod-609-wasps-make-honey/&#34;&gt;http://escapepod.org/2018/01/04/escape-pod-609-wasps-make-honey/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Escape Pod# --&gt;&#xA;&lt;!-- {BearID:FBB3DC0A-22CA-472A-B2B7-D1B5147E4F84-28016-00002D97D3FB84E6} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Escape Pod - 613 - Cat Pictures, Please</title>
      <link>https://mcjones.ca/docs/escape-pod---613---cat-pictures-please/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:31 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/escape-pod---613---cat-pictures-please/</guid>
      <description>&lt;h1 id=&#34;escape-pod---613---cat-pictures-please&#34;&gt;Escape Pod - 613 - Cat Pictures, Please&lt;/h1&gt;&#xA;&lt;h2 id=&#34;by-naomi-kritzer&#34;&gt;By &lt;a href=&#34;https://escapepod.org/people/naomi-kritzer/&#34;&gt;Naomi Kritzer&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;escape-pod---escape-pod-613-cat-pictures-please&#34;&gt;Escape Pod - Escape Pod 613: Cat Pictures, Please&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJroO30RQ&#34;&gt;https://overcast.fm/+GJroO30RQ&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://escapepod.org/2018/02/01/escape-pod-613-cat-pictures-please/&#34;&gt;http://escapepod.org/2018/02/01/escape-pod-613-cat-pictures-please/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Escape Pod# --&gt;&#xA;&lt;!-- {BearID:DCB0E852-CC7A-4758-AAEC-446C2176EDCB-28016-00002D97D3CE19B4} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Escape Pod - 617 - A Cure for Homesickness</title>
      <link>https://mcjones.ca/docs/escape-pod---617---a-cure-for-homesickness/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:31 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/escape-pod---617---a-cure-for-homesickness/</guid>
      <description>&lt;h1 id=&#34;escape-pod---617---a-cure-for-homesickness&#34;&gt;Escape Pod - 617 - A Cure for Homesickness&lt;/h1&gt;&#xA;&lt;h2 id=&#34;by-s-l-scott&#34;&gt;By &lt;a href=&#34;https://escapepod.org/people/s-l-scott/&#34;&gt;S. L. Scott&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;escape-pod---escape-pod-617-a-cure-for-homesickness-artemis-rising&#34;&gt;Escape Pod - Escape Pod 617: A Cure for Homesickness (Artemis Rising)&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJroF22D0&#34;&gt;https://overcast.fm/+GJroF22D0&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://escapepod.org/2018/03/01/escape-pod-617-cure-homesickness-artemis-rising/&#34;&gt;http://escapepod.org/2018/03/01/escape-pod-617-cure-homesickness-artemis-rising/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Escape Pod# --&gt;&#xA;&lt;!-- {BearID:51B48B65-AA9D-4A52-A26E-341C8273F720-28016-00002D97D39FE598} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Escape Pod - 618  All Profound and Logical Minds</title>
      <link>https://mcjones.ca/docs/escape-pod---618--all-profound-and-logical-minds/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:31 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/escape-pod---618--all-profound-and-logical-minds/</guid>
      <description>&lt;h1 id=&#34;escape-pod---618--all-profound-and-logical-minds&#34;&gt;Escape Pod - 618  All Profound and Logical Minds&lt;/h1&gt;&#xA;&lt;h2 id=&#34;by-bennett-north&#34;&gt;By &lt;a href=&#34;https://escapepod.org/people/bennett-north/&#34;&gt;Bennett North&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;No Notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;escape-pod---escape-pod-618-all-profound-and-logical-minds-artemis-rising&#34;&gt;Escape Pod - Escape Pod 618: All Profound and Logical Minds (Artemis Rising)&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJrpjAQJk&#34;&gt;https://overcast.fm/+GJrpjAQJk&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://escapepod.org/2018/03/08/escape-pod-618-profound-logical-minds-artemis-rising/&#34;&gt;http://escapepod.org/2018/03/08/escape-pod-618-profound-logical-minds-artemis-rising/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Escape Pod# --&gt;&#xA;&lt;!-- {BearID:371D9C5C-C0E6-4954-BC0D-9A80AB71ED68-28016-00002D97D36F65C1} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Escape Pod - 635 - After Midnight at the ZapStop</title>
      <link>https://mcjones.ca/docs/escape-pod---635---after-midnight-at-the-zapstop/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:31 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/escape-pod---635---after-midnight-at-the-zapstop/</guid>
      <description>&lt;h1 id=&#34;escape-pod---635---after-midnight-at-the-zapstop&#34;&gt;Escape Pod - 635 - After Midnight at the ZapStop&lt;/h1&gt;&#xA;&lt;h2 id=&#34;by-matthew-claxton&#34;&gt;By &lt;a href=&#34;https://escapepod.org/people/matthew-claxton/&#34;&gt;Matthew Claxton&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;escape-pod---escape-pod-635-after-midnight-at-the-zapstop&#34;&gt;Escape Pod - Escape Pod 635: After Midnight at the ZapStop&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJrpRNvQE&#34;&gt;https://overcast.fm/+GJrpRNvQE&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://escapepod.org/2018/07/05/escape-pod-635-after-midnight-at-the-zapstop/&#34;&gt;http://escapepod.org/2018/07/05/escape-pod-635-after-midnight-at-the-zapstop/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Escape Pod# --&gt;&#xA;&lt;!-- {BearID:C4AB22A9-3313-4575-8579-2C33C43FF32D-28016-00002D97D342F4E2} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Escape Pod - 651 - Impossible Dreams</title>
      <link>https://mcjones.ca/docs/escape-pod---651---impossible-dreams/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:30 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/escape-pod---651---impossible-dreams/</guid>
      <description>&lt;h1 id=&#34;escape-pod---651---impossible-dreams&#34;&gt;Escape Pod - 651 - Impossible Dreams&lt;/h1&gt;&#xA;&lt;h2 id=&#34;by-tim-pratt&#34;&gt;By &lt;a href=&#34;https://escapepod.org/people/tim-pratt/&#34;&gt;Tim Pratt&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;escape-pod---escape-pod-651-impossible-dreams-flashback-friday&#34;&gt;Escape Pod - Escape Pod 651: Impossible Dreams (Flashback Friday)&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJroV84sY&#34;&gt;https://overcast.fm/+GJroV84sY&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://escapepod.org/2018/10/25/escape-pod-651-impossible-dreams-flashback-friday/&#34;&gt;http://escapepod.org/2018/10/25/escape-pod-651-impossible-dreams-flashback-friday/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Escape Pod# --&gt;&#xA;&lt;!-- {BearID:20F28A5A-B8EC-4FAD-9858-BDB678E621E7-28016-00002D97D315DB3F} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Escape Pod - 652-655 - And Then There Were N-One</title>
      <link>https://mcjones.ca/docs/escape-pod---652-655---and-then-there-were-n-one/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:30 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/escape-pod---652-655---and-then-there-were-n-one/</guid>
      <description>&lt;h1 id=&#34;escape-pod---652-655---and-then-there-were-n-one&#34;&gt;Escape Pod - 652-655 - And Then There Were N-One&lt;/h1&gt;&#xA;&lt;h2 id=&#34;by-sarah-pinsker&#34;&gt;By &lt;a href=&#34;https://escapepod.org/people/sarah-pinsker/&#34;&gt;Sarah Pinsker&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;escape-pod---escape-pod-652-and-then-there-were-n-one-part-1&#34;&gt;Escape Pod - Escape Pod 652: And Then There Were (N-One), (Part 1)&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJrpZThqI&#34;&gt;https://overcast.fm/+GJrpZThqI&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://escapepod.org/2018/11/01/escape-pod-652-and-then-there-were-n-one-part-1/&#34;&gt;http://escapepod.org/2018/11/01/escape-pod-652-and-then-there-were-n-one-part-1/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h6 id=&#34;escape-pod---escape-pod-653-and-then-there-were-n-one-part-2&#34;&gt;Escape Pod - Escape Pod 653: And Then There Were (N-One) (Part 2)&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJrrjabjI&#34;&gt;https://overcast.fm/+GJrrjabjI&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://escapepod.org/2018/11/08/escape-pod-653-and-then-there-were-n-one-part-2/&#34;&gt;http://escapepod.org/2018/11/08/escape-pod-653-and-then-there-were-n-one-part-2/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h6 id=&#34;escape-pod---escape-pod-654-and-then-there-were-n-one-part-3&#34;&gt;Escape Pod - Escape Pod 654: And Then There Were (N-One) (Part 3)&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJrrswDQ4&#34;&gt;https://overcast.fm/+GJrrswDQ4&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://escapepod.org/2018/11/15/escape-pod-654-and-then-there-were-n-one-part-3/&#34;&gt;http://escapepod.org/2018/11/15/escape-pod-654-and-then-there-were-n-one-part-3/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h6 id=&#34;escape-pod---escape-pod-655-and-then-there-were-n-one-part-4&#34;&gt;Escape Pod - Escape Pod 655: And Then There Were (N-One) (Part 4)&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJrqKBKm8&#34;&gt;https://overcast.fm/+GJrqKBKm8&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://escapepod.org/2018/11/22/escape-pod-655-and-then-there-were-n-one-part-4/&#34;&gt;http://escapepod.org/2018/11/22/escape-pod-655-and-then-there-were-n-one-part-4/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Escape Pod# --&gt;&#xA;&lt;!-- {BearID:AB0CEF60-924B-4E30-A4A4-1440C8B2B2D7-28016-00002D97D25D18E5} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Escape Pod - 658 - Beatrix Released</title>
      <link>https://mcjones.ca/docs/escape-pod---658---beatrix-released/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:30 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/escape-pod---658---beatrix-released/</guid>
      <description>&lt;h1 id=&#34;escape-pod---658---beatrix-released&#34;&gt;Escape Pod - 658 - Beatrix Released&lt;/h1&gt;&#xA;&lt;h2 id=&#34;by-shaenon-k-garrity&#34;&gt;By &lt;a href=&#34;https://escapepod.org/people/shaenon-k-garrity/&#34;&gt;Shaenon K. Garrity&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;escape-pod---escape-pod-658-beatrix-released&#34;&gt;Escape Pod - Escape Pod 658: Beatrix Released&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJrqoa0iE&#34;&gt;https://overcast.fm/+GJrqoa0iE&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://escapepod.org/2018/12/13/escape-pod-658-beatrix-released/&#34;&gt;http://escapepod.org/2018/12/13/escape-pod-658-beatrix-released/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Escape Pod# --&gt;&#xA;&lt;!-- {BearID:79453903-CD77-4D81-8FA2-76EE15E308A4-28016-00002D97D230D78B} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Escape Pod - 666 - This Wine - Dark Feeling That Isn&#39;t The Blues</title>
      <link>https://mcjones.ca/docs/escape-pod---666---this-wine---dark-feeling-that-isnt-the-blues/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:30 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/escape-pod---666---this-wine---dark-feeling-that-isnt-the-blues/</guid>
      <description>&lt;h1 id=&#34;escape-pod---666---this-wine---dark-feeling-that-isnt-the-blues&#34;&gt;Escape Pod - 666 - This Wine - Dark Feeling That Isn&amp;rsquo;t The Blues&lt;/h1&gt;&#xA;&lt;h2 id=&#34;by-josé-pablo-iriarte&#34;&gt;By &lt;a href=&#34;https://escapepod.org/people/jose-pablo-iriarte/&#34;&gt;José Pablo Iriarte&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;escape-pod---escape-pod-666-this-wine-dark-feeling-that-isnt-the-blues&#34;&gt;Escape Pod - Escape Pod 666: This Wine-Dark Feeling That Isn’t The Blues&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJrpkAalA&#34;&gt;https://overcast.fm/+GJrpkAalA&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://escapepod.org/2019/02/07/escape-pod-666-this-wine-dark-feeling-that-isnt-the-blues/&#34;&gt;http://escapepod.org/2019/02/07/escape-pod-666-this-wine-dark-feeling-that-isnt-the-blues/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Escape Pod# --&gt;&#xA;&lt;!-- {BearID:400B678C-0808-4E4A-976A-29C1451B23DC-28016-00002D97D202109F} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Escape Pod - 667 - The Best We Can</title>
      <link>https://mcjones.ca/docs/escape-pod---667---the-best-we-can/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:30 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/escape-pod---667---the-best-we-can/</guid>
      <description>&lt;h1 id=&#34;escape-pod---667---the-best-we-can&#34;&gt;Escape Pod - 667 - The Best We Can&lt;/h1&gt;&#xA;&lt;h2 id=&#34;by-carrie-vaughn&#34;&gt;By &lt;a href=&#34;https://escapepod.org/people/carrie-vaughn/&#34;&gt;Carrie Vaughn&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;No notes recorded (Also really enjoyed her story in episode 681)&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;escape-pod---escape-pod-667-the-best-we-can&#34;&gt;Escape Pod - Escape Pod 667: The Best We Can&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJrpVR8_k&#34;&gt;https://overcast.fm/+GJrpVR8_k&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://escapepod.org/2019/02/14/escape-pod-667-the-best-we-can/&#34;&gt;http://escapepod.org/2019/02/14/escape-pod-667-the-best-we-can/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Escape Pod# --&gt;&#xA;&lt;!-- {BearID:6C16F80F-EB33-44E4-A4A0-252B8AA1E006-28016-00002D97D1D5544A} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Escape Pod - 671 - Octonet</title>
      <link>https://mcjones.ca/docs/escape-pod---671---octonet/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:29 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/escape-pod---671---octonet/</guid>
      <description>&lt;h1 id=&#34;escape-pod---671---octonet&#34;&gt;Escape Pod - 671 - Octonet&lt;/h1&gt;&#xA;&lt;h2 id=&#34;by-keyan-bowes&#34;&gt;By &lt;a href=&#34;https://escapepod.org/people/keyan-bowes/&#34;&gt;Keyan Bowes&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;escape-pod---escape-pod-671-octonet-artemis-rising&#34;&gt;Escape Pod - Escape Pod 671: Octonet (Artemis Rising)&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJrqm2ASg&#34;&gt;https://overcast.fm/+GJrqm2ASg&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://escapepod.org/2019/03/14/escape-pod-671-octonet-artemis-rising/&#34;&gt;http://escapepod.org/2019/03/14/escape-pod-671-octonet-artemis-rising/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Escape Pod# --&gt;&#xA;&lt;!-- {BearID:7B4B4D21-32EA-4DD6-AC88-8DAC8FF09479-28016-00002D97D1A802BE} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Escape Pod - 673 - Optimizing the Verified Good</title>
      <link>https://mcjones.ca/docs/escape-pod---673---optimizing-the-verified-good/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:29 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/escape-pod---673---optimizing-the-verified-good/</guid>
      <description>&lt;h1 id=&#34;escape-pod---673---optimizing-the-verified-good&#34;&gt;Escape Pod - 673 - Optimizing the Verified Good&lt;/h1&gt;&#xA;&lt;h2 id=&#34;by-effie-seiberg&#34;&gt;By &lt;a href=&#34;https://escapepod.org/people/effie-seiberg/&#34;&gt;Effie Seiberg&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;No notes recorded  (Also really enjoyed her story in episode 588)&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;escape-pod---escape-pod-673-optimizing-the-verified-good-artemis-rising&#34;&gt;Escape Pod - Escape Pod 673: Optimizing the Verified Good (Artemis Rising)&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJroin9F0&#34;&gt;https://overcast.fm/+GJroin9F0&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://escapepod.org/2019/03/28/escape-pod-673-optimizing-the-verified-good-artemis-rising/&#34;&gt;http://escapepod.org/2019/03/28/escape-pod-673-optimizing-the-verified-good-artemis-rising/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Escape Pod# --&gt;&#xA;&lt;!-- {BearID:9BB02316-B8FB-4105-8207-F1C501AE7A9F-28016-00002D97D179BA1D} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Escape Pod - 677 - Valedictorian</title>
      <link>https://mcjones.ca/docs/escape-pod---677---valedictorian/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:29 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/escape-pod---677---valedictorian/</guid>
      <description>&lt;h1 id=&#34;escape-pod---677---valedictorian&#34;&gt;Escape Pod - 677 - Valedictorian&lt;/h1&gt;&#xA;&lt;h2 id=&#34;by-nk-jemisin&#34;&gt;By &lt;a href=&#34;https://escapepod.org/people/n-k-jemisin/&#34;&gt;N.K. Jemisin&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;escape-pod---escape-pod-677-valedictorian-flashback-friday&#34;&gt;Escape Pod - Escape Pod 677: Valedictorian (Flashback Friday)&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJrpX5tkU&#34;&gt;https://overcast.fm/+GJrpX5tkU&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://escapepod.org/2019/04/25/escape-pod-677-valedictorian-flashback-friday/&#34;&gt;http://escapepod.org/2019/04/25/escape-pod-677-valedictorian-flashback-friday/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Escape Pod# --&gt;&#xA;&lt;!-- {BearID:859FAC4E-3B86-4EFD-AD61-EA4B1FA546F0-28016-00002D97D149F4B9} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Escape Pod - 683 - Flash Crash</title>
      <link>https://mcjones.ca/docs/escape-pod---683---flash-crash/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:29 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/escape-pod---683---flash-crash/</guid>
      <description>&lt;h1 id=&#34;escape-pod---683---flash-crash&#34;&gt;Escape Pod - 683 - Flash Crash&lt;/h1&gt;&#xA;&lt;h2 id=&#34;by-louis-evans&#34;&gt;By &lt;a href=&#34;https://escapepod.org/people/louis-evans/&#34;&gt;Louis Evans&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;escape-pod---escape-pod-683-flash-crash&#34;&gt;Escape Pod - Escape Pod 683: Flash Crash&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJrr_np5A&#34;&gt;https://overcast.fm/+GJrr_np5A&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://escapepod.org/2019/06/06/escape-pod-683-flash-crash/&#34;&gt;http://escapepod.org/2019/06/06/escape-pod-683-flash-crash/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Escape Pod# --&gt;&#xA;&lt;!-- {BearID:0FDD6D2E-8668-470B-9E67-CDB5A1F3ADAF-28016-00002D97D11C966E} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Escape Pod - 686 - Real Artists</title>
      <link>https://mcjones.ca/docs/escape-pod---686---real-artists/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:29 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/escape-pod---686---real-artists/</guid>
      <description>&lt;h1 id=&#34;escape-pod---686---real-artists&#34;&gt;Escape Pod - 686 - Real Artists&lt;/h1&gt;&#xA;&lt;h2 id=&#34;by-ken-liu&#34;&gt;By &lt;a href=&#34;https://escapepod.org/people/ken-liu/&#34;&gt;Ken Liu&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;escape-pod---escape-pod-686-real-artists-flashback-friday&#34;&gt;Escape Pod - Escape Pod 686: Real Artists (Flashback Friday)&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJrqmhERw&#34;&gt;https://overcast.fm/+GJrqmhERw&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://escapepod.org/2019/06/27/escape-pod-686-real-artists-flashback-friday/&#34;&gt;http://escapepod.org/2019/06/27/escape-pod-686-real-artists-flashback-friday/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Escape Pod# --&gt;&#xA;&lt;!-- {BearID:4AC84B69-A657-422C-AADA-02C67DB9679C-28016-00002D97D0ED5475} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Escape Pod - 705-707 - Rule of Three</title>
      <link>https://mcjones.ca/docs/escape-pod---705-707---rule-of-three/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:29 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/escape-pod---705-707---rule-of-three/</guid>
      <description>&lt;h1 id=&#34;escape-pod---705-707---rule-of-three&#34;&gt;Escape Pod - 705-707 - Rule of Three&lt;/h1&gt;&#xA;&lt;h2 id=&#34;by-lawrence-m-schoen&#34;&gt;By &lt;a href=&#34;https://escapepod.org/people/lawrence-m-schoen/&#34;&gt;Lawrence M. Schoen&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;escape-pod---escape-pod-705-rule-of-three-part-1-of-3&#34;&gt;Escape Pod - Escape Pod 705: Rule of Three (Part 1 of 3)&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJrrHwjnQ&#34;&gt;https://overcast.fm/+GJrrHwjnQ&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://escapepod.org/2019/11/07/escape-pod-705-rule-of-three-part-1-of-3/&#34;&gt;http://escapepod.org/2019/11/07/escape-pod-705-rule-of-three-part-1-of-3/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h6 id=&#34;escape-pod---escape-pod-706-rule-of-three-part-2-of-3&#34;&gt;Escape Pod - Escape Pod 706: Rule of Three (Part 2 of 3)&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJrozrWks&#34;&gt;https://overcast.fm/+GJrozrWks&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://escapepod.org/2019/11/14/escape-pod-706-rule-of-three-part-2-of-3/&#34;&gt;http://escapepod.org/2019/11/14/escape-pod-706-rule-of-three-part-2-of-3/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h6 id=&#34;escape-pod---escape-pod-707-rule-of-three-part-3-of-3&#34;&gt;Escape Pod - Escape Pod 707: Rule of Three (Part 3 of 3)&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJrosMAb8&#34;&gt;https://overcast.fm/+GJrosMAb8&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://escapepod.org/2019/11/21/escape-pod-707-rule-of-three-part-3-of-3/&#34;&gt;http://escapepod.org/2019/11/21/escape-pod-707-rule-of-three-part-3-of-3/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Escape Pod# --&gt;&#xA;&lt;!-- {BearID:63C0592F-8EF3-427F-B9A5-3571A79017DD-28016-00002D97D0549E62} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Escape Pod - 712 - When Robot and Crow Saved East St. Louis</title>
      <link>https://mcjones.ca/docs/escape-pod---712---when-robot-and-crow-saved-east-st.-louis/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:28 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/escape-pod---712---when-robot-and-crow-saved-east-st.-louis/</guid>
      <description>&lt;h1 id=&#34;escape-pod---712---when-robot-and-crow-saved-east-st-louis&#34;&gt;Escape Pod - 712 - When Robot and Crow Saved East St. Louis&lt;/h1&gt;&#xA;&lt;h2 id=&#34;by-annalee-newitz&#34;&gt;By &lt;a href=&#34;https://escapepod.org/people/annalee-newitz/&#34;&gt;Annalee Newitz&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;No notes recorded. This story pops back into my head EVERYTIME an annual robot is in a story.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;escape-pod---escape-pod-712-when-robot-and-crow-saved-east-st-louis&#34;&gt;Escape Pod - Escape Pod 712: When Robot and Crow Saved East St. Louis&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJrpgQf0s&#34;&gt;https://overcast.fm/+GJrpgQf0s&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://escapepod.org/2019/12/26/escape-pod-712-when-robot-and-crow-saved-east-st-louis/&#34;&gt;https://escapepod.org/2019/12/26/escape-pod-712-when-robot-and-crow-saved-east-st-louis/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Escape Pod# --&gt;&#xA;&lt;!-- {BearID:79A10B68-1E06-438F-BC7A-58FBADEDD797-28016-00002D97D02562B6} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Escape Pod - 713 - More Tomorrow</title>
      <link>https://mcjones.ca/docs/escape-pod---713---more-tomorrow/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:28 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/escape-pod---713---more-tomorrow/</guid>
      <description>&lt;h1 id=&#34;escape-pod---713---more-tomorrow&#34;&gt;Escape Pod - 713 - More Tomorrow&lt;/h1&gt;&#xA;&lt;h2 id=&#34;by-premee-mohamed&#34;&gt;By &lt;a href=&#34;https://escapepod.org/people/premee-mohamed/&#34;&gt;Premee Mohamed&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;escape-pod---escape-pod-713-more-tomorrow&#34;&gt;Escape Pod - Escape Pod 713: More Tomorrow&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJrpQBMW8&#34;&gt;https://overcast.fm/+GJrpQBMW8&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://escapepod.org/2020/01/02/escape-pod-713-more-tomorrow/&#34;&gt;https://escapepod.org/2020/01/02/escape-pod-713-more-tomorrow/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Escape Pod# --&gt;&#xA;&lt;!-- {BearID:AE6EBF9A-925B-47D9-8B7A-544004907D25-28016-00002D97CFF384C0} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Escape Pod - 725 - Falling Through</title>
      <link>https://mcjones.ca/docs/escape-pod---725---falling-through/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:28 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/escape-pod---725---falling-through/</guid>
      <description>&lt;h1 id=&#34;escape-pod---725---falling-through&#34;&gt;Escape Pod - 725 - Falling Through&lt;/h1&gt;&#xA;&lt;h2 id=&#34;by-steen-comer&#34;&gt;By &lt;del&gt;&lt;a href=&#34;https://escapepod.org/people/steen-comer/&#34;&gt;Steen Comer&lt;/a&gt;&lt;/del&gt;&lt;/h2&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;escape-pod---escape-pod-725-falling-through&#34;&gt;Escape Pod - Escape Pod 725: Falling Through&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJrrPCz7A&#34;&gt;https://overcast.fm/+GJrrPCz7A&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://escapepod.org/2020/03/26/escape-pod-725-falling-through/&#34;&gt;https://escapepod.org/2020/03/26/escape-pod-725-falling-through/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Escape Pod# --&gt;&#xA;&lt;!-- {BearID:DF9878BC-7FBA-40A3-857B-0699995576DD-28016-00002D97CFC379BF} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Escape Pod - 741 - Repo</title>
      <link>https://mcjones.ca/docs/escape-pod---741---repo/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:28 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/escape-pod---741---repo/</guid>
      <description>&lt;h1 id=&#34;escape-pod---741---repo&#34;&gt;Escape Pod - 741 - Repo&lt;/h1&gt;&#xA;&lt;h2 id=&#34;by-aaron-gallagher&#34;&gt;By &lt;a href=&#34;https://escapepod.org/people/aaron-gallagher/&#34;&gt;Aaron Gallagher&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;escape-pod---escape-pod-741-repo-summer-flashback&#34;&gt;Escape Pod - Escape Pod 741: Repo (Summer Flashback)&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJrqhhBKE&#34;&gt;https://overcast.fm/+GJrqhhBKE&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://escapepod.org/2020/07/16/escape-pod-741-repo-summer-flashback/&#34;&gt;https://escapepod.org/2020/07/16/escape-pod-741-repo-summer-flashback/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Escape Pod# --&gt;&#xA;&lt;!-- {BearID:A263DF48-D615-4699-88D0-DCD4CD3F9E76-28016-00002D97CF90EA51} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Escape Pod - 742 - Them Ships</title>
      <link>https://mcjones.ca/docs/escape-pod---742---them-ships/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:28 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/escape-pod---742---them-ships/</guid>
      <description>&lt;h1 id=&#34;escape-pod---742---them-ships&#34;&gt;Escape Pod - 742 - Them Ships&lt;/h1&gt;&#xA;&lt;h2 id=&#34;by-silvia-moreno-garcia&#34;&gt;By &lt;a href=&#34;https://escapepod.org/people/silvia-moreno-garcia/&#34;&gt;Silvia Moreno-Garcia&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;escape-pod---escape-pod-742-them-ships-summer-flashback&#34;&gt;Escape Pod - Escape Pod 742: Them Ships (Summer Flashback)&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJroAjf-A&#34;&gt;https://overcast.fm/+GJroAjf-A&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://escapepod.org/2020/07/24/escape-pod-742-them-ships-summer-flashback/&#34;&gt;https://escapepod.org/2020/07/24/escape-pod-742-them-ships-summer-flashback/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Escape Pod# --&gt;&#xA;&lt;!-- {BearID:91FD9E7A-F247-427C-982E-5611AE05989C-28016-00002D97CF61AB35} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Escape Pod - 746 - The 76 Goldwater Dime</title>
      <link>https://mcjones.ca/docs/escape-pod---746---the-76-goldwater-dime/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:28 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/escape-pod---746---the-76-goldwater-dime/</guid>
      <description>&lt;h1 id=&#34;escape-pod---746---the-76-goldwater-dime&#34;&gt;Escape Pod - 746 - The 76 Goldwater Dime&lt;/h1&gt;&#xA;&lt;h2 id=&#34;by-john-medaille&#34;&gt;By &lt;a href=&#34;https://escapepod.org/people/john-medaille/&#34;&gt;John Medaille&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;escape-pod---escape-pod-746-the-76-goldwater-dime-summer-flashback&#34;&gt;Escape Pod - Escape Pod 746: The ’76 Goldwater Dime (Summer Flashback)&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJrpwVQQw&#34;&gt;https://overcast.fm/+GJrpwVQQw&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://escapepod.org/2020/08/20/escape-pod-746-the-76-goldwater-dime-summer-flashback/&#34;&gt;https://escapepod.org/2020/08/20/escape-pod-746-the-76-goldwater-dime-summer-flashback/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Escape Pod# --&gt;&#xA;&lt;!-- {BearID:CA5AA154-05F8-4B6E-9AEC-B284DE1EE1EB-28016-00002D97CF3402CF} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Escape Pod - 750 - The Anatomy of Miracles</title>
      <link>https://mcjones.ca/docs/escape-pod---750---the-anatomy-of-miracles/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:28 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/escape-pod---750---the-anatomy-of-miracles/</guid>
      <description>&lt;h1 id=&#34;escape-pod---750---the-anatomy-of-miracles&#34;&gt;Escape Pod - 750 - The Anatomy of Miracles&lt;/h1&gt;&#xA;&lt;h2 id=&#34;by-filip-hajdar-drnovšek-zorko&#34;&gt;By &lt;a href=&#34;https://escapepod.org/people/filip-hajdar-drnovsek-zorko/&#34;&gt;Filip Hajdar Drnovšek Zorko&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;escape-pod---escape-pod-750-the-anatomy-of-miracles&#34;&gt;Escape Pod - Escape Pod 750: The Anatomy of Miracles&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJrrQp4mY&#34;&gt;https://overcast.fm/+GJrrQp4mY&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://escapepod.org/2020/09/17/escape-pod-750-the-anatomy-of-miracles/&#34;&gt;https://escapepod.org/2020/09/17/escape-pod-750-the-anatomy-of-miracles/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Escape Pod# --&gt;&#xA;&lt;!-- {BearID:071D993F-EFA5-4CC6-B446-9458664A9FD3-28016-00002D97CF03B98E} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Escape Pod - 755 - Consolidation</title>
      <link>https://mcjones.ca/docs/escape-pod---755---consolidation/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:28 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/escape-pod---755---consolidation/</guid>
      <description>&lt;h1 id=&#34;escape-pod---755---consolidation&#34;&gt;Escape Pod - 755 - Consolidation&lt;/h1&gt;&#xA;&lt;h2 id=&#34;by-langley-hyde&#34;&gt;By &lt;a href=&#34;https://escapepod.org/people/langley-hyde/&#34;&gt;Langley Hyde&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;escape-pod---escape-pod-755-consolidation&#34;&gt;Escape Pod - Escape Pod 755: Consolidation&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJrq_cnaA&#34;&gt;https://overcast.fm/+GJrq_cnaA&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://escapepod.org/2020/10/22/escape-pod-755-consolidation/&#34;&gt;https://escapepod.org/2020/10/22/escape-pod-755-consolidation/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Escape Pod# --&gt;&#xA;&lt;!-- {BearID:B37EB1C8-A119-4EF9-B879-6BE33D33F9FE-28016-00002D97CED50C54} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Escape Pod - 762 - Give the Family My Love</title>
      <link>https://mcjones.ca/docs/escape-pod---762---give-the-family-my-love/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:27 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/escape-pod---762---give-the-family-my-love/</guid>
      <description>&lt;h1 id=&#34;escape-pod---762---give-the-family-my-love&#34;&gt;Escape Pod - 762 - Give the Family My Love&lt;/h1&gt;&#xA;&lt;h2 id=&#34;by-at-greenblatt&#34;&gt;By &lt;a href=&#34;https://escapepod.org/people/a-t-greenblatt/&#34;&gt;A.T. Greenblatt&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;escape-pod---escape-pod-762-give-the-family-my-love&#34;&gt;Escape Pod - Escape Pod 762: Give the Family My Love&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJrpO3xQQ&#34;&gt;https://overcast.fm/+GJrpO3xQQ&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://escapepod.org/2020/12/10/escape-pod-762-give-the-family-my-love/&#34;&gt;https://escapepod.org/2020/12/10/escape-pod-762-give-the-family-my-love/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Escape Pod# --&gt;&#xA;&lt;!-- {BearID:61C94E99-A59F-44E5-A017-83727AE0B962-28016-00002D97CEA5E7E7} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Escape Pod - 822 - Lions and Tigers and Girlfriends, Oh My!</title>
      <link>https://mcjones.ca/docs/escape-pod---822---lions-and-tigers-and-girlfriends-oh-my/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:27 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/escape-pod---822---lions-and-tigers-and-girlfriends-oh-my/</guid>
      <description>&lt;h1 id=&#34;escape-pod---822---lions-and-tigers-and-girlfriends-oh-my&#34;&gt;Escape Pod - 822 - Lions and Tigers and Girlfriends, Oh My!&lt;/h1&gt;&#xA;&lt;h2 id=&#34;by-tina-connolly&#34;&gt;By &lt;a href=&#34;https://escapepod.org/people/tina-connolly/&#34;&gt;Tina Connolly&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;escape-pod---escape-pod-822-lions-and-tigers-and-girlfriends-oh-my&#34;&gt;Escape Pod - Escape Pod 822: Lions and Tigers and Girlfriends, Oh My!&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJro2s1QQ&#34;&gt;https://overcast.fm/+GJro2s1QQ&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://escapepod.org/2022/02/03/escape-pod-822-lions-and-tigers-and-girlfriends-oh-my/&#34;&gt;https://escapepod.org/2022/02/03/escape-pod-822-lions-and-tigers-and-girlfriends-oh-my/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Escape Pod# --&gt;&#xA;&lt;!-- {BearID:83F74D71-7D9F-4D0E-9CDF-B1393C942D9F-28016-00002D97CE77F5F6} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Escape Pod - 848 - An Incident on Ishtar</title>
      <link>https://mcjones.ca/docs/escape-pod---848---an-incident-on-ishtar/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:27 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/escape-pod---848---an-incident-on-ishtar/</guid>
      <description>&lt;h1 id=&#34;escape-pod---848---an-incident-on-ishtar&#34;&gt;Escape Pod - 848 - An Incident on Ishtar&lt;/h1&gt;&#xA;&lt;h2 id=&#34;by-brian-trent&#34;&gt;By &lt;a href=&#34;https://escapepod.org/people/brian-trent/&#34;&gt;Brian Trent&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;escape-pod---escape-pod-848-an-incident-on-ishtar&#34;&gt;Escape Pod - Escape Pod 848: An Incident on Ishtar&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GJrpCtMxg&#34;&gt;https://overcast.fm/+GJrpCtMxg&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://escapepod.org/2022/08/04/escape-pod-848-an-incident-on-ishtar/&#34;&gt;https://escapepod.org/2022/08/04/escape-pod-848-an-incident-on-ishtar/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Escape Pod# --&gt;&#xA;&lt;!-- {BearID:677459EF-5270-4F13-AD20-2140802A64A8-28016-00002D97CD8720C2} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Invisible City - 011 - Transforming The Suburbs</title>
      <link>https://mcjones.ca/docs/invisible-city---011---transforming-the-suburbs/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:26 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/invisible-city---011---transforming-the-suburbs/</guid>
      <description>&lt;h1 id=&#34;invisible-city---011---transforming-the-suburbs&#34;&gt;Invisible City - 011 - Transforming The Suburbs&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;invisible-city---ep-011-transforming-the-suburbs&#34;&gt;Invisible City - Ep. 011: Transforming The Suburbs&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GDWz7gcBs&#34;&gt;https://overcast.fm/+GDWz7gcBs&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://soundcloud.com/invisiblecitypodcast/ep011&#34;&gt;https://soundcloud.com/invisiblecitypodcast/ep011&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Invisible City# --&gt;&#xA;&lt;!-- {BearID:2E0AC135-5BEF-4366-B865-128C0653DFB0-28016-00002D97CD5AD08F} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Invisible City - 013 - Transit - An Instrument of Urban Freedom</title>
      <link>https://mcjones.ca/docs/invisible-city---013---transit---an-instrument-of-urban-freedom/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:26 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/invisible-city---013---transit---an-instrument-of-urban-freedom/</guid>
      <description>&lt;h1 id=&#34;invisible-city---013---transit---an-instrument-of-urban-freedom&#34;&gt;Invisible City - 013 - Transit - An Instrument of Urban Freedom&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;invisible-city---ep-013-transit---an-instrument-of-urban-freedom&#34;&gt;Invisible City - Ep. 013: Transit - An Instrument of Urban Freedom&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+GDWzL-fVI&#34;&gt;https://overcast.fm/+GDWzL-fVI&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://soundcloud.com/invisiblecitypodcast/ep013&#34;&gt;https://soundcloud.com/invisiblecitypodcast/ep013&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Invisible City# --&gt;&#xA;&lt;!-- {BearID:72B2895E-13E5-4CEE-B654-522762F9CCE4-28016-00002D97CD2AC632} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - Beyond Tragedy - The living history of Native America</title>
      <link>https://mcjones.ca/docs/cbc-ideas---beyond-tragedy---the-living-history-of-native-america/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:25 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---beyond-tragedy---the-living-history-of-native-america/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---beyond-tragedy---the-living-history-of-native-america&#34;&gt;CBC Ideas - Beyond Tragedy - The living history of Native America&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---beyond-tragedy-the-living-history-of-native-america&#34;&gt;CBC Ideas - Beyond Tragedy: The living history of Native America&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cSXbsnM&#34;&gt;https://overcast.fm/+cSXbsnM&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/ojibwe-writer-seeks-to-undo-tragic-view-of-native-american-history-1.5026269&#34;&gt;https://www.cbc.ca/radio/ideas/ojibwe-writer-seeks-to-undo-tragic-view-of-native-american-history-1.5026269&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:16952488-62C9-4AB0-AB2F-07790226242D-28016-00002D97CA972DB1} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - Christopher Hedges - Farewell America</title>
      <link>https://mcjones.ca/docs/cbc-ideas---christopher-hedges---farewell-america/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:25 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---christopher-hedges---farewell-america/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---christopher-hedges---farewell-america&#34;&gt;CBC Ideas - Christopher Hedges - Farewell America&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---christopher-hedges-farewell-america&#34;&gt;CBC Ideas - Christopher Hedges: Farewell America&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cTPA1fo&#34;&gt;https://overcast.fm/+cTPA1fo&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/christopher-hedges-farewell-america-1.4911396&#34;&gt;https://www.cbc.ca/radio/ideas/christopher-hedges-farewell-america-1.4911396&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:565B54EA-4AED-4A31-8B88-D4B772A3AF20-28016-00002D97CACD6ED3} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - Is Neoliberalism destroying the world</title>
      <link>https://mcjones.ca/docs/cbc-ideas---is-neoliberalism-destroying-the-world/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:25 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---is-neoliberalism-destroying-the-world/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---is-neoliberalism-destroying-the-world&#34;&gt;CBC Ideas - Is Neoliberalism destroying the world&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded - an example where Betteridge’s law of headlines is not correct.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---is-neoliberalism-destroying-the-world-1&#34;&gt;CBC Ideas - Is Neoliberalism destroying the world?&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cSBpL5s&#34;&gt;https://overcast.fm/+cSBpL5s&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/is-neoliberalism-destroying-the-world-1.4839399&#34;&gt;https://www.cbc.ca/radio/ideas/is-neoliberalism-destroying-the-world-1.4839399&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:CFDBF270-3583-417F-8965-F8B7303F9764-28016-00002D97CB2F1D78} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - Making a better world with a culture of citizen eaters</title>
      <link>https://mcjones.ca/docs/cbc-ideas---making-a-better-world-with-a-culture-of-citizen-eaters/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:25 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---making-a-better-world-with-a-culture-of-citizen-eaters/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---making-a-better-world-with-a-culture-of-citizen-eaters&#34;&gt;CBC Ideas - Making a better world with a culture of citizen eaters&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---making-a-better-world-with-a-culture-of-citizen-eaters-encore-dec-1-2017&#34;&gt;CBC Ideas - Making a better world with a culture of ‘citizen eaters’ (Encore Dec 1, 2017)&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cSpdnoI&#34;&gt;https://overcast.fm/+cSpdnoI&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/making-a-better-world-with-a-culture-of-citizen-eaters-1.4428835&#34;&gt;https://www.cbc.ca/radio/ideas/making-a-better-world-with-a-culture-of-citizen-eaters-1.4428835&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:6AA09B80-B4F1-4CD8-9EC6-0B96580C21DD-28016-00002D97CBBAF285} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - Precarious Work - David Weil on the disappearing company job</title>
      <link>https://mcjones.ca/docs/cbc-ideas---precarious-work---david-weil-on-the-disappearing-company-job/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:25 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---precarious-work---david-weil-on-the-disappearing-company-job/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---precarious-work---david-weil-on-the-disappearing-company-job&#34;&gt;CBC Ideas - Precarious Work - David Weil on the disappearing company job&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---precarious-work-david-weil-on-the-disappearing-company-job-encore-december-5-2017&#34;&gt;CBC Ideas - Precarious Work: David Weil on the disappearing company job (Encore December 5, 2017)&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cSqHEBQ&#34;&gt;https://overcast.fm/+cSqHEBQ&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/the-disappearing-company-job-1.4433392&#34;&gt;https://www.cbc.ca/radio/ideas/the-disappearing-company-job-1.4433392&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:4E67AE15-6E74-4ABF-91B5-C1D2B8D3E690-28016-00002D97CB8AF1B6} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - The Life Course - trauma, migration and renoviction in Vancouver</title>
      <link>https://mcjones.ca/docs/cbc-ideas---the-life-course---trauma-migration-and-renoviction-in-vancouver/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:25 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---the-life-course---trauma-migration-and-renoviction-in-vancouver/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---the-life-course---trauma-migration-and-renoviction-in-vancouver&#34;&gt;CBC Ideas - The Life Course - trauma, migration and renoviction in Vancouver&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---the-life-course---trauma-migration-and-renoviction-in-vancouver-1&#34;&gt;CBC Ideas - The Life Course - trauma, migration and ‘renoviction’ in Vancouver&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cQ757WQ&#34;&gt;https://overcast.fm/+cQ757WQ&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/the-life-course-trauma-migration-and-renoviction-in-vancouver-1.4855729&#34;&gt;https://www.cbc.ca/radio/ideas/the-life-course-trauma-migration-and-renoviction-in-vancouver-1.4855729&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:E428FB83-D367-480C-B725-B91E86296A6B-28016-00002D97CAFE21C0} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - World on fire - What wildfires teach us about living in the forest and a challenging climate</title>
      <link>https://mcjones.ca/docs/cbc-ideas---world-on-fire---what-wildfires-teach-us-about-living-in-the-forest-and-a-challenging-climate/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:25 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---world-on-fire---what-wildfires-teach-us-about-living-in-the-forest-and-a-challenging-climate/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---world-on-fire---what-wildfires-teach-us-about-living-in-the-forest-and-a-challenging-climate&#34;&gt;CBC Ideas - World on fire - What wildfires teach us about living in the forest and a challenging climate&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded.&lt;/p&gt;&#xA;&lt;p&gt;This episode is from &lt;strong&gt;2016&lt;/strong&gt;. That it was just as prescient in many following years should underscore things.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---world-on-fire-what-wildfires-teach-us-about-living-in-the-forest-and-a-challenging-climate-encore-may-16-2016&#34;&gt;CBC Ideas - World on fire: What wildfires teach us about living in the forest and a challenging climate (Encore May 16, 2016)&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cQ1of6M&#34;&gt;https://overcast.fm/+cQ1of6M&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/world-on-fire-what-wildfires-teach-us-about-living-in-the-forest-and-a-challenging-climate-1.3576953&#34;&gt;https://www.cbc.ca/radio/ideas/world-on-fire-what-wildfires-teach-us-about-living-in-the-forest-and-a-challenging-climate-1.3576953&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:0623190C-820F-4920-BC98-38629DF91B47-28016-00002D97CB5D8DDA} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - Confronting the Disinformation Age</title>
      <link>https://mcjones.ca/docs/cbc-ideas---confronting-the-disinformation-age/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:24 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---confronting-the-disinformation-age/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---confronting-the-disinformation-age&#34;&gt;CBC Ideas - Confronting the Disinformation Age&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---confronting-the-disinformation-age-1&#34;&gt;CBC Ideas - Confronting the Disinformation Age&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cT20CV8&#34;&gt;https://overcast.fm/+cT20CV8&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/confronting-the-disinformation-age-1.5146803&#34;&gt;https://www.cbc.ca/radio/ideas/confronting-the-disinformation-age-1.5146803&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:6C0121CE-4D83-422B-BFEB-83C2367C6264-28016-00002D97C9AE7605} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - Dignity down the toilet: Dignity down the toilet - Public bathrooms as a human right</title>
      <link>https://mcjones.ca/docs/cbc-ideas---dignity-down-the-toilet--dignity-down-the-toilet---public-bathrooms-as-a-human-right/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:24 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---dignity-down-the-toilet--dignity-down-the-toilet---public-bathrooms-as-a-human-right/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---dignity-down-the-toilet-dignity-down-the-toilet---public-bathrooms-as-a-human-right&#34;&gt;CBC Ideas - Dignity down the toilet: Dignity down the toilet - Public bathrooms as a human right&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---dignity-down-the-toilet-dignity-down-the-toilet-public-bathrooms-as-a-human-right&#34;&gt;CBC Ideas - Dignity down the toilet: Dignity down the toilet: Public bathrooms as a human right&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cTsnuP0&#34;&gt;https://overcast.fm/+cTsnuP0&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/dignity-down-the-toilet-public-bathrooms-as-a-human-right-1.5045766&#34;&gt;https://www.cbc.ca/radio/ideas/dignity-down-the-toilet-public-bathrooms-as-a-human-right-1.5045766&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:CD6E3989-43C1-4114-8E37-5AF83FAADFD7-28016-00002D97CA657F9B} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - Drug Use for Grown-Ups</title>
      <link>https://mcjones.ca/docs/cbc-ideas---drug-use-for-grown-ups/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:24 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---drug-use-for-grown-ups/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---drug-use-for-grown-ups&#34;&gt;CBC Ideas - Drug Use for Grown-Ups&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---drug-use-for-grown-ups-1&#34;&gt;CBC Ideas - Drug Use for Grown-Ups&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cTTQNHg&#34;&gt;https://overcast.fm/+cTTQNHg&lt;/a&gt;&lt;br&gt;&#xA;???&lt;/p&gt;&#xA;&lt;p&gt;Note: Episode does not appear to be available any longer&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:4C7C217E-2CD2-493A-AD85-D05088A5406A-28016-00002D97C9822ED9} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - How rethinking capitalism may save the planet</title>
      <link>https://mcjones.ca/docs/cbc-ideas---how-rethinking-capitalism-may-save-the-planet/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:24 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---how-rethinking-capitalism-may-save-the-planet/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---how-rethinking-capitalism-may-save-the-planet&#34;&gt;CBC Ideas - How rethinking capitalism may save the planet&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---how-rethinking-capitalism-may-save-the-planet-1&#34;&gt;CBC Ideas - How rethinking capitalism may save the planet&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cTq4VpE&#34;&gt;https://overcast.fm/+cTq4VpE&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/how-rethinking-capitalism-may-save-the-planet-1.5084547&#34;&gt;https://www.cbc.ca/radio/ideas/how-rethinking-capitalism-may-save-the-planet-1.5084547&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:F4CBFCCD-53D2-49C7-8B05-28634E062071-28016-00002D97CA09D36A} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - Lonely Together - The plight of urban isolation</title>
      <link>https://mcjones.ca/docs/cbc-ideas---lonely-together---the-plight-of-urban-isolation/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:24 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---lonely-together---the-plight-of-urban-isolation/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---lonely-together---the-plight-of-urban-isolation&#34;&gt;CBC Ideas - Lonely Together - The plight of urban isolation&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---lonely-together-the-plight-of-urban-isolation&#34;&gt;CBC Ideas - Lonely Together: The plight of urban isolation&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cSBbAU4&#34;&gt;https://overcast.fm/+cSBbAU4&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/lonely-together-the-plight-of-urban-isolation-1.5057995&#34;&gt;https://www.cbc.ca/radio/ideas/lonely-together-the-plight-of-urban-isolation-1.5057995&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:B147C53C-8487-443C-938A-0499737FE960-28016-00002D97CA3612EF} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - Marxism for the New Age</title>
      <link>https://mcjones.ca/docs/cbc-ideas---marxism-for-the-new-age/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:24 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---marxism-for-the-new-age/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---marxism-for-the-new-age&#34;&gt;CBC Ideas - Marxism for the New Age&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---marxism-for-the-new-age-1&#34;&gt;CBC Ideas - Marxism for the New Age&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cSev6Fc&#34;&gt;https://overcast.fm/+cSev6Fc&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/reclaiming-marxism-in-an-age-of-meaningless-work-1.5175707&#34;&gt;https://www.cbc.ca/radio/ideas/reclaiming-marxism-in-an-age-of-meaningless-work-1.5175707&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:15293DE1-2739-45FA-AB2E-888DA311F542-28016-00002D97C927839F} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - The Dangers of Denialism</title>
      <link>https://mcjones.ca/docs/cbc-ideas---the-dangers-of-denialism/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:24 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---the-dangers-of-denialism/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---the-dangers-of-denialism&#34;&gt;CBC Ideas - The Dangers of Denialism&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---the-dangers-of-denialism-1&#34;&gt;CBC Ideas - The Dangers of Denialism&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cRvg4gM&#34;&gt;https://overcast.fm/+cRvg4gM&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/the-dangers-of-denialism-1.5140231&#34;&gt;https://www.cbc.ca/radio/ideas/the-dangers-of-denialism-1.5140231&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:0254D8F5-DD31-490C-8E7B-F40CAA6A2FA9-28016-00002D97C9DC7C09} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - The Good Society in our Genes - Nicholas A. Christakis</title>
      <link>https://mcjones.ca/docs/cbc-ideas---the-good-society-in-our-genes---nicholas-a.-christakis/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:24 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---the-good-society-in-our-genes---nicholas-a.-christakis/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---the-good-society-in-our-genes---nicholas-a-christakis&#34;&gt;CBC Ideas - The Good Society in our Genes - Nicholas A. Christakis&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---the-good-society-in-our-genes-nicholas-a-christakis&#34;&gt;CBC Ideas - The Good Society in our Genes: Nicholas A. Christakis&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cTlaGpM&#34;&gt;https://overcast.fm/+cTlaGpM&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/how-our-genes-help-build-good-societies-nicholas-christakis-1.5172873&#34;&gt;https://www.cbc.ca/radio/ideas/how-our-genes-help-build-good-societies-nicholas-christakis-1.5172873&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:DCA497B8-BC2F-4EAC-8E30-C0528CA2018C-28016-00002D97C955A33D} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - Do baby boomers owe millennials an apology?</title>
      <link>https://mcjones.ca/docs/cbc-ideas---do-baby-boomers-owe-millennials-an-apology/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:23 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---do-baby-boomers-owe-millennials-an-apology/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---do-baby-boomers-owe-millennials-an-apology&#34;&gt;CBC Ideas - Do baby boomers owe millennials an apology?&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---debate-do-baby-boomers-owe-millennials-an-apology&#34;&gt;CBC Ideas - Debate| Do baby boomers owe millennials an apology?&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cQ46dek&#34;&gt;https://overcast.fm/+cQ46dek&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/debate-do-baby-boomers-owe-millennials-an-apology-1.5351727&#34;&gt;https://www.cbc.ca/radio/ideas/debate-do-baby-boomers-owe-millennials-an-apology-1.5351727&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:B61EE1DF-AA7B-45AF-8B8F-F4448CDBEA8E-28016-00002D97C7E8F2AF} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - How algorithms create a digital underclass</title>
      <link>https://mcjones.ca/docs/cbc-ideas---how-algorithms-create-a-digital-underclass/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:23 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---how-algorithms-create-a-digital-underclass/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---how-algorithms-create-a-digital-underclass&#34;&gt;CBC Ideas - How algorithms create a digital underclass&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---how-algorithms-create-a-digital-underclass-1&#34;&gt;CBC Ideas - How algorithms create a ‘digital underclass’&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cQPuikQ&#34;&gt;https://overcast.fm/+cQPuikQ&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/how-algorithms-create-a-digital-underclass-1.5269959&#34;&gt;https://www.cbc.ca/radio/ideas/how-algorithms-create-a-digital-underclass-1.5269959&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:0EE0FEF8-71F4-467F-AA42-E4280E9ABC5A-28016-00002D97C8CC2B59} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - Make debate great again - How bad political argument is undermining democracy</title>
      <link>https://mcjones.ca/docs/cbc-ideas---make-debate-great-again---how-bad-political-argument-is-undermining-democracy/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:23 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---make-debate-great-again---how-bad-political-argument-is-undermining-democracy/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---make-debate-great-again---how-bad-political-argument-is-undermining-democracy&#34;&gt;CBC Ideas - Make debate great again - How bad political argument is undermining democracy&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---make-debate-great-again-how-bad-political-argument-is-undermining-democracy&#34;&gt;CBC Ideas - Make debate great again: How bad political argument is undermining democracy&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cQuSJnY&#34;&gt;https://overcast.fm/+cQuSJnY&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/make-debate-great-again-how-bad-political-argument-is-undermining-democracy-1.5298110&#34;&gt;https://www.cbc.ca/radio/ideas/make-debate-great-again-how-bad-political-argument-is-undermining-democracy-1.5298110&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:0BD5E19C-B3F9-45AA-A752-89E8640EE0A8-28016-00002D97C89FF0A2} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - Reconciliation can&#39;t happen without reclamation of land, argues Max FineDay</title>
      <link>https://mcjones.ca/docs/cbc-ideas---reconciliation-cant-happen-without-reclamation-of-land-argues-max-fineday/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:23 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---reconciliation-cant-happen-without-reclamation-of-land-argues-max-fineday/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---reconciliation-cant-happen-without-reclamation-of-land-argues-max-fineday&#34;&gt;CBC Ideas - Reconciliation can&amp;rsquo;t happen without reclamation of land, argues Max FineDay&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---reconciliation-cant-happen-without-reclamation-of-land-argues-max-fineday-1&#34;&gt;CBC Ideas - Reconciliation can’t happen without reclamation of land, argues Max FineDay&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cQhPXcA&#34;&gt;https://overcast.fm/+cQhPXcA&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/reconciliation-can-t-happen-without-reclamation-of-land-argues-max-fineday-1.5430069&#34;&gt;https://www.cbc.ca/radio/ideas/reconciliation-can-t-happen-without-reclamation-of-land-argues-max-fineday-1.5430069&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:1A74D8EF-9470-4700-A642-0D6AD15346FA-28016-00002D97C7BD5744} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - The misunderstood Adam Smith gets both credit and blame for modern capitalism</title>
      <link>https://mcjones.ca/docs/cbc-ideas---the-misunderstood-adam-smith-gets-both-credit-and-blame-for-modern-capitalism/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:23 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---the-misunderstood-adam-smith-gets-both-credit-and-blame-for-modern-capitalism/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---the-misunderstood-adam-smith-gets-both-credit-and-blame-for-modern-capitalism&#34;&gt;CBC Ideas - The misunderstood Adam Smith gets both credit and blame for modern capitalism&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---the-misunderstood-adam-smith-gets-both-credit-and-blame-for-modern-capitalism-1&#34;&gt;CBC Ideas - The misunderstood Adam Smith gets both credit and blame for modern capitalism&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cQ8dznc&#34;&gt;https://overcast.fm/+cQ8dznc&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/the-misunderstood-adam-smith-gets-both-credit-and-blame-for-modern-capitalism-1.5303759&#34;&gt;https://www.cbc.ca/radio/ideas/the-misunderstood-adam-smith-gets-both-credit-and-blame-for-modern-capitalism-1.5303759&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:87AA65B2-30CE-4D4C-9C2A-0795DCFA3E3B-28016-00002D97C8707C53} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - The Portuguese Model - Lessons for dealing with a drug crisis</title>
      <link>https://mcjones.ca/docs/cbc-ideas---the-portuguese-model---lessons-for-dealing-with-a-drug-crisis/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:23 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---the-portuguese-model---lessons-for-dealing-with-a-drug-crisis/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---the-portuguese-model---lessons-for-dealing-with-a-drug-crisis&#34;&gt;CBC Ideas - The Portuguese Model - Lessons for dealing with a drug crisis&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---the-portuguese-model-lessons-for-dealing-with-a-drug-crisis&#34;&gt;CBC Ideas - The Portuguese Model: Lessons for dealing with a drug crisis&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cQJpChM&#34;&gt;https://overcast.fm/+cQJpChM&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/how-portugal-tackled-its-addiction-epidemic-to-become-a-world-model-1.5178848&#34;&gt;https://www.cbc.ca/radio/ideas/how-portugal-tackled-its-addiction-epidemic-to-become-a-world-model-1.5178848&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:0120CEAD-F552-4119-813B-3BD05C00B9B1-28016-00002D97C8FAFA8C} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - What is Democracy - Astra Taylor says it&#39;s worth fighting for</title>
      <link>https://mcjones.ca/docs/cbc-ideas---what-is-democracy---astra-taylor-says-its-worth-fighting-for/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:23 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---what-is-democracy---astra-taylor-says-its-worth-fighting-for/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---what-is-democracy---astra-taylor-says-its-worth-fighting-for&#34;&gt;CBC Ideas - What is Democracy - Astra Taylor says it&amp;rsquo;s worth fighting for&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---what-is-democracy-astra-taylor-says-its-worth-fighting-for&#34;&gt;CBC Ideas - What is Democracy? Astra Taylor says it’s worth fighting for&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cTG98K8&#34;&gt;https://overcast.fm/+cTG98K8&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/democracy-may-not-truly-exist-but-it-s-still-worth-fighting-for-astra-taylor-1.5321421&#34;&gt;https://www.cbc.ca/radio/ideas/democracy-may-not-truly-exist-but-it-s-still-worth-fighting-for-astra-taylor-1.5321421&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---what-is-democracy-pt-2&#34;&gt;CBC Ideas - What Is Democracy? Pt. 2&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cQ3igTs&#34;&gt;https://overcast.fm/+cQ3igTs&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/fighting-for-democracy-from-the-bottom-up-astra-taylor-pt-2-1.5327188&#34;&gt;https://www.cbc.ca/radio/ideas/fighting-for-democracy-from-the-bottom-up-astra-taylor-pt-2-1.5327188&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:3DD6468C-4B96-4D68-A03E-67401C030CFB-28016-00002D97C814523C} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - CBC Massey Lecture 5 - Shifting Power</title>
      <link>https://mcjones.ca/docs/cbc-ideas---cbc-massey-lecture-5---shifting-power/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:22 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---cbc-massey-lecture-5---shifting-power/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---cbc-massey-lecture-5---shifting-power&#34;&gt;CBC Ideas - CBC Massey Lecture 5 - Shifting Power&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---cbc-massey-lecture--5-shifting-power--toronto&#34;&gt;CBC Ideas - CBC Massey Lecture # 5: Shifting Power | Toronto&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cSw3EZU&#34;&gt;https://overcast.fm/+cSw3EZU&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/player/play/1714794563685&#34;&gt;https://www.cbc.ca/player/play/1714794563685&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:A0997497-800E-4E35-B02B-DA702DA03734-28016-00002D97C6AC7464} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - Does the deep state exist?</title>
      <link>https://mcjones.ca/docs/cbc-ideas---does-the-deep-state-exist/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:22 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---does-the-deep-state-exist/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---does-the-deep-state-exist&#34;&gt;CBC Ideas - Does the deep state exist?&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---does-the-deep-state-exist-1&#34;&gt;CBC Ideas - Does the deep state exist?&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cSvbGl8&#34;&gt;https://overcast.fm/+cSvbGl8&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/does-the-deep-state-exist-journalist-bruce-livesey-investigates-1.5363412&#34;&gt;https://www.cbc.ca/radio/ideas/does-the-deep-state-exist-journalist-bruce-livesey-investigates-1.5363412&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:B1668F40-2432-4903-839C-1233E7A1F255-28016-00002D97C78C5315} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - Global Trumpism -  Bailouts, Brexit and battling climate change</title>
      <link>https://mcjones.ca/docs/cbc-ideas---global-trumpism----bailouts-brexit-and-battling-climate-change/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:22 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---global-trumpism----bailouts-brexit-and-battling-climate-change/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---global-trumpism----bailouts-brexit-and-battling-climate-change&#34;&gt;CBC Ideas - Global Trumpism -  Bailouts, Brexit and battling climate change&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---global-trumpism-bailouts-brexit-and-battling-climate-change&#34;&gt;CBC Ideas - ‘Global Trumpism’: Bailouts, Brexit and battling climate change&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cSO0WnM&#34;&gt;https://overcast.fm/+cSO0WnM&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/global-trumpism-bailouts-brexit-and-battling-climate-change-1.5321199&#34;&gt;https://www.cbc.ca/radio/ideas/global-trumpism-bailouts-brexit-and-battling-climate-change-1.5321199&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:E6705323-8106-4698-8BEE-AE4A52747FFA-28016-00002D97C706C810} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - Money Rules - Is Capitalism Destroying Democracy?</title>
      <link>https://mcjones.ca/docs/cbc-ideas---money-rules---is-capitalism-destroying-democracy/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:22 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---money-rules---is-capitalism-destroying-democracy/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---money-rules---is-capitalism-destroying-democracy&#34;&gt;CBC Ideas - Money Rules - Is Capitalism Destroying Democracy?&lt;/h1&gt;&#xA;&lt;p&gt;Lol. Yes. No other notes recorded.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---money-rules-is-capitalism-destroying-democracy&#34;&gt;CBC Ideas - Money Rules: Is Capitalism Destroying Democracy?&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cShVQjg&#34;&gt;https://overcast.fm/+cShVQjg&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/how-capitalism-is-destroying-democracy-1.5786136&#34;&gt;https://www.cbc.ca/radio/ideas/how-capitalism-is-destroying-democracy-1.5786136&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:56CEAE25-B65D-4556-AEC5-5D5059BE0D86-28016-00002D97C67CB0FF} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - Psychologists confront impossible finding, triggering a revolution in the field</title>
      <link>https://mcjones.ca/docs/cbc-ideas---psychologists-confront-impossible-finding-triggering-a-revolution-in-the-field/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:22 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---psychologists-confront-impossible-finding-triggering-a-revolution-in-the-field/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---psychologists-confront-impossible-finding-triggering-a-revolution-in-the-field&#34;&gt;CBC Ideas - Psychologists confront impossible finding, triggering a revolution in the field&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---psychologists-confront-impossible-finding-triggering-a-revolution-in-the-field-1&#34;&gt;CBC Ideas - Psychologists confront impossible finding, triggering a revolution in the field&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cTpgRe8&#34;&gt;https://overcast.fm/+cTpgRe8&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/psychologists-confront-impossible-finding-triggering-a-revolution-in-the-field-1.5344467&#34;&gt;https://www.cbc.ca/radio/ideas/psychologists-confront-impossible-finding-triggering-a-revolution-in-the-field-1.5344467&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:D2D6CAA7-16C8-4066-BEBF-A39A9EDC1928-28016-00002D97C6DAD378} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - The Long Conversation - Why public broadcasting is more crucial than ever</title>
      <link>https://mcjones.ca/docs/cbc-ideas---the-long-conversation---why-public-broadcasting-is-more-crucial-than-ever/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:22 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---the-long-conversation---why-public-broadcasting-is-more-crucial-than-ever/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---the-long-conversation---why-public-broadcasting-is-more-crucial-than-ever&#34;&gt;CBC Ideas - The Long Conversation - Why public broadcasting is more crucial than ever&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---the-long-conversation-why-public-broadcasting-is-more-crucial-than-ever&#34;&gt;CBC Ideas - The Long Conversation: Why public broadcasting is more crucial than ever&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cSQc7i4&#34;&gt;https://overcast.fm/+cSQc7i4&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/the-long-conversation-why-public-broadcasting-is-more-crucial-than-ever-1.5789683&#34;&gt;https://www.cbc.ca/radio/ideas/the-long-conversation-why-public-broadcasting-is-more-crucial-than-ever-1.5789683&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:D12FCC79-0162-454C-A44B-6B7A40C29F51-28016-00002D97C64C5BB6} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - The Origins of Specious - Climate Change Denialism</title>
      <link>https://mcjones.ca/docs/cbc-ideas---the-origins-of-specious---climate-change-denialism/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:22 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---the-origins-of-specious---climate-change-denialism/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---the-origins-of-specious---climate-change-denialism&#34;&gt;CBC Ideas - The Origins of Specious - Climate Change Denialism&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---the-origins-of-specious-climate-change-denialism&#34;&gt;CBC Ideas - The Origins of Specious: Climate Change Denialism&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cRiZkg8&#34;&gt;https://overcast.fm/+cRiZkg8&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/climate-change-science-goes-back-decades-and-so-does-climate-change-skepticism-says-historian-1.5298510&#34;&gt;https://www.cbc.ca/radio/ideas/climate-change-science-goes-back-decades-and-so-does-climate-change-skepticism-says-historian-1.5298510&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:8FA60B28-ABB1-49A2-B0F6-2A320147009A-28016-00002D97C732B292} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - Writers on a mission - 3 high-stakes stories from award-winning authors</title>
      <link>https://mcjones.ca/docs/cbc-ideas---writers-on-a-mission---3-high-stakes-stories-from-award-winning-authors/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:22 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---writers-on-a-mission---3-high-stakes-stories-from-award-winning-authors/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---writers-on-a-mission---3-high-stakes-stories-from-award-winning-authors&#34;&gt;CBC Ideas - Writers on a mission - 3 high-stakes stories from award-winning authors&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---writers-on-a-mission--3-high-stakes-stories-from-award-winning-authors&#34;&gt;CBC Ideas - Writers on a mission — 3 high-stakes stories from award-winning authors&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cTX-f1Y&#34;&gt;https://overcast.fm/+cTX-f1Y&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/writers-on-a-mission-3-high-stakes-stories-from-award-winning-authors-1.5400981&#34;&gt;https://www.cbc.ca/radio/ideas/writers-on-a-mission-3-high-stakes-stories-from-award-winning-authors-1.5400981&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:E914E0E9-21A1-4F33-B724-5101091EC59A-28016-00002D97C75EC3C7} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - BBC Reith Lectures - Artificial Intelligence and Human Existence, Part One</title>
      <link>https://mcjones.ca/docs/cbc-ideas---bbc-reith-lectures---artificial-intelligence-and-human-existence-part-one/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:21 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---bbc-reith-lectures---artificial-intelligence-and-human-existence-part-one/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---bbc-reith-lectures---artificial-intelligence-and-human-existence-part-one&#34;&gt;CBC Ideas - BBC Reith Lectures - Artificial Intelligence and Human Existence, Part One&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---bbc-reith-lectures-artificial-intelligence-and-human-existence-part-one&#34;&gt;CBC Ideas - BBC Reith Lectures: Artificial Intelligence and Human Existence, Part One&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cSGVN_c&#34;&gt;https://overcast.fm/+cSGVN_c&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/player/play/1991468611624&#34;&gt;https://www.cbc.ca/player/play/1991468611624&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:3549FF6A-5BF1-44C6-B0EA-DF81524D588E-28016-00002D97C5286BB6} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - CBC Massey Lecture - Look At That Device In Your Hand</title>
      <link>https://mcjones.ca/docs/cbc-ideas---cbc-massey-lecture---look-at-that-device-in-your-hand/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:21 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---cbc-massey-lecture---look-at-that-device-in-your-hand/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---cbc-massey-lecture---look-at-that-device-in-your-hand&#34;&gt;CBC Ideas - CBC Massey Lecture - Look At That Device In Your Hand&lt;/h1&gt;&#xA;&lt;Things I Liked&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---cbc-massey-lecture--1-look-at-that-device-in-your-hand&#34;&gt;CBC Ideas - CBC Massey Lecture # 1: Look At That Device In Your Hand&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cR6NuYk&#34;&gt;https://overcast.fm/+cR6NuYk&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/we-need-to-reclaim-our-lives-from-our-phones-and-reset-says-cbc-massey-lecturer-ron-deibert-1.5792312&#34;&gt;https://www.cbc.ca/radio/ideas/we-need-to-reclaim-our-lives-from-our-phones-and-reset-says-cbc-massey-lecturer-ron-deibert-1.5792312&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:F6FBEDB6-8998-4064-B12C-C3C96FBC162A-28016-00002D97C5977CB7} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - Common Good - Why Don&#39;t We Live Together</title>
      <link>https://mcjones.ca/docs/cbc-ideas---common-good---why-dont-we-live-together/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:21 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---common-good---why-dont-we-live-together/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---common-good---why-dont-we-live-together&#34;&gt;CBC Ideas - Common Good - Why Don&amp;rsquo;t We Live Together&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---common-good--why-dont-we-live-together&#34;&gt;CBC Ideas - Common Good | Why Don’t We Live Together?&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cSllik8&#34;&gt;https://overcast.fm/+cSllik8&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas&#34;&gt;https://www.cbc.ca/radio/ideas&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:80C38603-D873-4BC1-ABFE-C29E7A623E40-28016-00002D97C5C363DC} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - Joseph Campbell and The Hero&#39;s Journey</title>
      <link>https://mcjones.ca/docs/cbc-ideas---joseph-campbell-and-the-heros-journey/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:21 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---joseph-campbell-and-the-heros-journey/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---joseph-campbell-and-the-heros-journey&#34;&gt;CBC Ideas - Joseph Campbell and The Hero&amp;rsquo;s Journey&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---just-one-story-joseph-campbell-and-the-heros-journey&#34;&gt;CBC Ideas - Just one story: Joseph Campbell and ‘The Hero’s Journey’&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cQS7QkU&#34;&gt;https://overcast.fm/+cQS7QkU&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/how-mythologist-joseph-campbell-made-luke-skywalker-a-hero-1.5262649&#34;&gt;https://www.cbc.ca/radio/ideas/how-mythologist-joseph-campbell-made-luke-skywalker-a-hero-1.5262649&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:C50B5A70-E317-4066-B0AE-B753EAF8B961-28016-00002D97C5EFC164} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - The COVID Generation</title>
      <link>https://mcjones.ca/docs/cbc-ideas---the-covid-generation/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:21 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---the-covid-generation/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---the-covid-generation&#34;&gt;CBC Ideas - The COVID Generation&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---the-covid-generation-1&#34;&gt;CBC Ideas - The COVID Generation&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cS_KnFY&#34;&gt;https://overcast.fm/+cS_KnFY&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/covid-19-generation-teens-world-pandemic-1.6392339&#34;&gt;https://www.cbc.ca/radio/ideas/covid-19-generation-teens-world-pandemic-1.6392339&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:ED77BEB0-1BD9-475E-8009-4C96C9A119D2-28016-00002D97C4F33979} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - Visions of the Apocalypse</title>
      <link>https://mcjones.ca/docs/cbc-ideas---visions-of-the-apocalypse/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:21 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---visions-of-the-apocalypse/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---visions-of-the-apocalypse&#34;&gt;CBC Ideas - Visions of the Apocalypse&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded. Originally from 1998.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---visions-of-the-apocalypse-1&#34;&gt;CBC Ideas - Visions of the Apocalypse&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cTBAhLo&#34;&gt;https://overcast.fm/+cTBAhLo&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/why-apocalyptic-thinking-is-here-to-stay-1.5772547&#34;&gt;https://www.cbc.ca/radio/ideas/why-apocalyptic-thinking-is-here-to-stay-1.5772547&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:473C914D-1860-4AC3-AE6B-51E41F07ABAD-28016-00002D97C5586BFD} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - CBC Massey Lectures - Asia and the Art of Storytelling</title>
      <link>https://mcjones.ca/docs/cbc-ideas---cbc-massey-lectures---asia-and-the-art-of-storytelling/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:20 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---cbc-massey-lectures---asia-and-the-art-of-storytelling/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---cbc-massey-lectures---asia-and-the-art-of-storytelling&#34;&gt;CBC Ideas - CBC Massey Lectures - Asia and the Art of Storytelling&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---cbc-massey-lectures---6-asia-and-the-art-of-storytelling&#34;&gt;CBC Ideas - CBC Massey Lectures | # 6: Asia and the Art of Storytelling&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cTPtJwc&#34;&gt;https://overcast.fm/+cTPtJwc&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/player/play/1997334595931&#34;&gt;https://www.cbc.ca/player/play/1997334595931&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:0231B387-0A41-4D44-9636-63442CEAB68D-28016-00002D97C4927FD0} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - Killam Prize Winner - Bioethicist Francoise Baylis</title>
      <link>https://mcjones.ca/docs/cbc-ideas---killam-prize-winner---bioethicist-francoise-baylis/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:20 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---killam-prize-winner---bioethicist-francoise-baylis/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---killam-prize-winner---bioethicist-francoise-baylis&#34;&gt;CBC Ideas - Killam Prize Winner - Bioethicist Francoise Baylis&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---killam-prize-winner-bioethicist-françoise-baylis&#34;&gt;CBC Ideas - Killam Prize Winner: Bioethicist Françoise Baylis&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cTYb0vI&#34;&gt;https://overcast.fm/+cTYb0vI&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/bioethicist-fran%C3%A7oise-baylis-asks-why-humans-think-they-can-just-take-everything-1.6573545&#34;&gt;https://www.cbc.ca/radio/ideas/bioethicist-fran%C3%A7oise-baylis-asks-why-humans-think-they-can-just-take-everything-1.6573545&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:17B47D76-335A-40FA-B793-4DF5F09DB3AA-28016-00002D97C458BF91} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - Passaggio</title>
      <link>https://mcjones.ca/docs/cbc-ideas---passaggio/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:20 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---passaggio/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---passaggio&#34;&gt;CBC Ideas - Passaggio&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---passaggio-1&#34;&gt;CBC Ideas - Passaggio&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cRev3To&#34;&gt;https://overcast.fm/+cRev3To&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/radio/ideas/passaggio-a-story-of-transition-identity-and-love-1.6292482&#34;&gt;https://www.cbc.ca/radio/ideas/passaggio-a-story-of-transition-identity-and-love-1.6292482&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:F6FAD297-4DBC-492A-842C-9C555F5CFF06-28016-00002D97C3C0160B} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - The Coffee Chronicles</title>
      <link>https://mcjones.ca/docs/cbc-ideas---the-coffee-chronicles/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:20 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---the-coffee-chronicles/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---the-coffee-chronicles&#34;&gt;CBC Ideas - The Coffee Chronicles&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---the-coffee-chronicles-1&#34;&gt;CBC Ideas - The Coffee Chronicles&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cSem08k&#34;&gt;https://overcast.fm/+cSem08k&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/player/play/1547998787655&#34;&gt;https://www.cbc.ca/player/play/1547998787655&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:67ADA4F7-E692-42C5-9C53-5D0133E857D3-28016-00002D97C4BD3CAB} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - The New World Disorder - The Future of Democracy</title>
      <link>https://mcjones.ca/docs/cbc-ideas---the-new-world-disorder---the-future-of-democracy/</link>
      <pubDate>Sun, 08 Jan 2023 05:54:20 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---the-new-world-disorder---the-future-of-democracy/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---the-new-world-disorder---the-future-of-democracy&#34;&gt;CBC Ideas - The New World Disorder - The Future of Democracy&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;cbc-ideas---the-new-world-disorder--the-future-of-democracy&#34;&gt;CBC Ideas - The New World Disorder | The Future of Democracy&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cQhSp44&#34;&gt;https://overcast.fm/+cQhSp44&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/listen/live-radio/1-23-ideas/clip/15995778-the-new-world-disorder-or-the-future-democracy&#34;&gt;https://www.cbc.ca/listen/live-radio/1-23-ideas/clip/15995778-the-new-world-disorder-or-the-future-democracy&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:93FB832A-1FDD-4472-A81F-52EA46EAD62B-28016-00002D97C4270403} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Coffee Recipes - Hario Switch</title>
      <link>https://mcjones.ca/docs/coffee-recipes---hario-switch/</link>
      <pubDate>Sun, 08 Jan 2023 00:21:16 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/coffee-recipes---hario-switch/</guid>
      <description>&lt;h1 id=&#34;coffee-recipes---hario-switch&#34;&gt;Coffee Recipes - Hario Switch&lt;/h1&gt;&#xA;&lt;p&gt;The advantage is you can use immersion AND pour through as you want.&lt;/p&gt;&#xA;&lt;p&gt;If you replace the cone with a V60 03 (bigger cone), you can do a larger amount.&lt;/p&gt;&#xA;&lt;h2 id=&#34;hario&#34;&gt;Hario&lt;/h2&gt;&#xA;&lt;p&gt;16g coffee&lt;br&gt;&#xA;50g water, bloom for 30 seconds&lt;br&gt;&#xA;210g water (240 total)&lt;br&gt;&#xA;Let immerse 2 min. Hit switch at 2:30 and drain&lt;/p&gt;&#xA;&lt;h2 id=&#34;eight-ounce-coffee&#34;&gt;Eight Ounce Coffee&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://m.youtube.com/watch?v=XXwrrGWOINQ&#34;&gt;https://m.youtube.com/watch?v=XXwrrGWOINQ&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;20g coffee&lt;br&gt;&#xA;60g water, let steep 1 minute&lt;br&gt;&#xA;Drain&lt;br&gt;&#xA;Close, 40g water (100g total), open&lt;br&gt;&#xA;Close, 50g water (150g total), open&lt;br&gt;&#xA;Close, 50g water (200g total), open&lt;br&gt;&#xA;Close, 100g water (300g total), open&lt;/p&gt;&#xA;&lt;p&gt;Total brew time is 4-5 minutes.&lt;/p&gt;&#xA;&lt;h2 id=&#34;tales-stall-the-fall&#34;&gt;Tale’s Stall the Fall&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://youtu.be/4wMyaw0FoZs&#34;&gt;https://youtu.be/4wMyaw0FoZs&lt;/a&gt;&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Boil water&lt;/li&gt;&#xA;&lt;li&gt;Rinse filter and heat Switch&lt;/li&gt;&#xA;&lt;li&gt;Close Switch&lt;/li&gt;&#xA;&lt;li&gt;Pour 260g water (just off boil)&lt;/li&gt;&#xA;&lt;li&gt;Add 20g coffee (very fine grind)&lt;/li&gt;&#xA;&lt;li&gt;40 sec clockwise stir with chopstick (vigorous to start, gentle after all grounds are wet)&lt;/li&gt;&#xA;&lt;li&gt;Open Switch&lt;/li&gt;&#xA;&lt;li&gt;5 sec vigorous clockwise stir&lt;/li&gt;&#xA;&lt;li&gt;Total brew time should be 1:30-1:40 (max 2:00)&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;h2 id=&#34;hoffmann&#34;&gt;Hoffmann&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://youtu.be/QjIvN8mlK9Y&#34;&gt;https://youtu.be/QjIvN8mlK9Y&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;tetsu-kasuya---2023&#34;&gt;Tetsu Kasuya - 2023&lt;/h2&gt;&#xA;&lt;p&gt;20g coffee&#xA;280g water (93 C)&#xA;Using 13 on an Encore (normally use 15 for V60)&lt;/p&gt;&#xA;&lt;p&gt;Leave Switch Open&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Pour 60g water&lt;/li&gt;&#xA;&lt;li&gt;Wait 30 seconds&lt;/li&gt;&#xA;&lt;li&gt;Pour second 60g water (120g total)&lt;/li&gt;&#xA;&lt;li&gt;Cool down to 70C&lt;/li&gt;&#xA;&lt;li&gt;At 01:15 - close&lt;/li&gt;&#xA;&lt;li&gt;Pour to 280g&lt;/li&gt;&#xA;&lt;li&gt;30 seconds later (01:45) - open&lt;/li&gt;&#xA;&lt;li&gt;Remove at 03:00 - if too much water left over - try a more coarse grind&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;p&gt;References the 4:6 method he also came up with.&lt;/p&gt;&#xA;&lt;h2 id=&#34;46-method-tetsu-kasuya&#34;&gt;4:6 Method (Tetsu Kasuya)&lt;/h2&gt;&#xA;&lt;p&gt;2016 V60 winning recipe&lt;/p&gt;&#xA;&lt;p&gt;40g coffee&#xA;600g water&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;(00:00) Bloom with 100g, wait 45 seconds&lt;/li&gt;&#xA;&lt;li&gt;(00:45) Add next pulse (140g), wait 45 seconds&lt;/li&gt;&#xA;&lt;li&gt;(01:30) Add next pulse (120g), wait 45 seconds&lt;/li&gt;&#xA;&lt;li&gt;(02:15) Add next pulse (120g), wait 45 seconds&lt;/li&gt;&#xA;&lt;li&gt;(03:00) Add next pulse (120g), wait 45 seconds&lt;/li&gt;&#xA;&lt;li&gt;(03:30) Remove&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;p&gt;The basic is 5 x 120g pours&#xA;But tweak the pours slightly for sweetness (long second pour) or acidity (longer first pour).&#xA;Last 3 pours affect the strength of the coffee - 4 x 90 instead of 3 x120 can increase. 2 x 180 would reduce.&lt;/p&gt;&#xA;&lt;!-- #coffee #public #hario-switch --&gt;&#xA;&lt;!-- {BearID:A49BCCBF-99C4-499D-80A3-3455032DF20E-31214-000017C5EB88FDFB} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Grabbing a list of Stars from Overcast&#39;s Data Export</title>
      <link>https://mcjones.ca/docs/grabbing-a-list-of-stars-from-overcasts-data-export/</link>
      <pubDate>Sat, 07 Jan 2023 06:15:44 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/grabbing-a-list-of-stars-from-overcasts-data-export/</guid>
      <description>&lt;h1 id=&#34;grabbing-a-list-of-stars-from-overcasts-data-export&#34;&gt;Grabbing a list of Stars from Overcast&amp;rsquo;s Data Export&lt;/h1&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Go to &lt;a href=&#34;https://overcast.fm/account&#34;&gt;https://overcast.fm/account&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;Download All your Data. This is a custom OPML file.&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;h2 id=&#34;most-basic&#34;&gt;Most Basic&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;grep userRecommendedDate overcast.opml&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;xmlpath-fun&#34;&gt;XMLPath Fun&lt;/h2&gt;&#xA;&lt;p&gt;This requires xmllint to be installed. (Installed with Xcode or Homebrew)&lt;/p&gt;&#xA;&lt;p&gt;Will output all of the feeds&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;xmllint -xpath &amp;#39;/opml/body/outline[@text=&amp;#34;feeds&amp;#34;]/outline/outline[@userRecommendedDate]&amp;#39; overcast.opml&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;For myself I created a list of Overcast URLs:&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;xmllint -xpath &amp;#39;/opml/body/outline[@text=&amp;#34;feeds&amp;#34;]/outline/outline[@userRecommendedDate]/@overcastUrl&amp;#39; --format overcast.opml | sed &amp;#39;s/ overcastUrl=\&amp;#34;//g&amp;#39; | sed &amp;#39;s/\&amp;#34;//g&amp;#39;&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;scripting&#34;&gt;Scripting&lt;/h2&gt;&#xA;&lt;p&gt;Sometimes you also just need to accept you can’t do a fun one liner and need to write a script.&lt;/p&gt;&#xA;&lt;p&gt;As such I made one (available at &lt;a href=&#34;https://gist.github.com/Chealion/e39a59ae487a7ce752a63d505c7872be&#34;&gt;https://gist.github.com/Chealion/e39a59ae487a7ce752a63d505c7872be&lt;/a&gt;)&lt;/p&gt;&#xA;&lt;p&gt;Python 3, using XPaths above, turning it into a format, and then using &lt;a href=&#34;https://bear.app/xurlbuilder/create/&#34;&gt;Bear’s callback URL&lt;/a&gt; format to create new notes.&lt;/p&gt;&#xA;&lt;!-- #public #python #bear-app #overcast --&gt;&#xA;&lt;!-- {BearID:82A7206F-42EB-4F10-9251-5F1603E7D2AF-28016-00002BBC39B34BFA} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Tailscale and the CLI</title>
      <link>https://mcjones.ca/docs/tailscale-and-the-cli/</link>
      <pubDate>Sat, 07 Jan 2023 03:19:09 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/tailscale-and-the-cli/</guid>
      <description>&lt;h1 id=&#34;tailscale-and-the-cli&#34;&gt;Tailscale and the CLI&lt;/h1&gt;&#xA;&lt;h2 id=&#34;tailscaled-up&#34;&gt;tailscaled up&lt;/h2&gt;&#xA;&lt;p&gt;Grab your auth key from &lt;url&gt;&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;sudo tailscale up --authkey tskey-abcdef1234567890&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;tailscale-ssh&#34;&gt;tailscale ssh&lt;/h2&gt;&#xA;&lt;p&gt;Using tailscale to ssh and take care of the authorization&lt;/p&gt;&#xA;&lt;h2 id=&#34;tailscale-files&#34;&gt;tailscale files&lt;/h2&gt;&#xA;&lt;p&gt;Using tailscale to send files around (scp using the tailscale daemon)&lt;/p&gt;&#xA;&lt;h2 id=&#34;tailscale-web&#34;&gt;tailscale web&lt;/h2&gt;&#xA;&lt;p&gt;???&lt;/p&gt;&#xA;&lt;h2 id=&#34;resources&#34;&gt;Resources&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://tailscale.com/kb/1065/macos-variants/&#34;&gt;https://tailscale.com/kb/1065/macos-variants/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #tailscale --&gt;&#xA;&lt;!-- {BearID:5D36912F-B9E2-4341-B125-0626725B89D3-28016-00002B8104446E79} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Tech Lead Journal - 102 - Building Inspired &amp; Empowered Product Teams - Marty Cagan</title>
      <link>https://mcjones.ca/docs/tech-lead-journal---102---building-inspired--empowered-product-teams---marty-cagan/</link>
      <pubDate>Sat, 10 Dec 2022 19:23:24 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/tech-lead-journal---102---building-inspired--empowered-product-teams---marty-cagan/</guid>
      <description>&lt;h1 id=&#34;tech-lead-journal---102---building-inspired--empowered-product-teams---marty-cagan&#34;&gt;Tech Lead Journal - 102 - Building Inspired &amp;amp; Empowered Product Teams - Marty Cagan&lt;/h1&gt;&#xA;&lt;h3 id=&#34;traits-of-good-product-teams&#34;&gt;Traits of Good Product Teams&lt;/h3&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Is the team given a problem to solve? (Not a feature to build)&lt;/li&gt;&#xA;&lt;li&gt;Are they addressing the risks before or after? (Value, feasibility, usability, viability)&lt;/li&gt;&#xA;&lt;li&gt;How do they solve the problems? (Product Design / Engineering side by side - not dictated or waterfall. Empowered engineers)&lt;/li&gt;&#xA;&lt;li&gt;Outcomes not output&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;p&gt;On Ownership &amp;amp; Alignment - points to Team Topologies.&lt;/p&gt;&#xA;&lt;p&gt;Manager’s responsibility is coaching.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;tech-lead-journal---102---building-inspired--empowered-product-teams---marty-cagan-1&#34;&gt;Tech Lead Journal - 102 - Building Inspired &amp;amp; Empowered Product Teams - Marty Cagan&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+fKlxlKhOk&#34;&gt;https://overcast.fm/+fKlxlKhOk&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://techleadjournal.dev/episodes/102/&#34;&gt;https://techleadjournal.dev/episodes/102/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Tech Lead Journal# --&gt;&#xA;&lt;!-- {BearID:49D1C825-1694-47C1-BBD4-8AC6745DB16E-24277-0000173778C0DA7F} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Developing Leadership - 25 - Reviving Engineering Teams and Overcoming the Fear of Shipping with Craig Kerstiens</title>
      <link>https://mcjones.ca/docs/developing-leadership---25---reviving-engineering-teams-and-overcoming-the-fear-of-shipping-with-craig-kerstiens/</link>
      <pubDate>Tue, 29 Nov 2022 16:28:55 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/developing-leadership---25---reviving-engineering-teams-and-overcoming-the-fear-of-shipping-with-craig-kerstiens/</guid>
      <description>&lt;h1 id=&#34;developing-leadership---25---reviving-engineering-teams-and-overcoming-the-fear-of-shipping-with-craig-kerstiens&#34;&gt;Developing Leadership - 25 - Reviving Engineering Teams and Overcoming the Fear of Shipping with Craig Kerstiens&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;developing-leadership---episode-25--reviving-engineering-teams--overcoming-the-fear-of-shipping-with-craig-kerstiens&#34;&gt;Developing Leadership - Episode 25 | Reviving Engineering Teams &amp;amp; Overcoming the Fear of Shipping with Craig Kerstiens&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+xOJ3RgDrQ&#34;&gt;https://overcast.fm/+xOJ3RgDrQ&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.developingleadership.co/episode/episode-25-reviving-engineering-teams-overcoming-the-fear-of-shipping-with-craig-kerstiens&#34;&gt;https://www.developingleadership.co/episode/episode-25-reviving-engineering-teams-overcoming-the-fear-of-shipping-with-craig-kerstiens&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #developing leadership# --&gt;&#xA;&lt;!-- {BearID:C14A2118-37B8-4E34-999B-4337075F2252-4029-00000A622DC56068} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Heavy Strategy - 028 - Do&#39;s and Don&#39;ts of Selecting Technology Provider</title>
      <link>https://mcjones.ca/docs/heavy-strategy---028---dos-and-donts-of-selecting-technology-provider/</link>
      <pubDate>Fri, 11 Nov 2022 20:31:55 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/heavy-strategy---028---dos-and-donts-of-selecting-technology-provider/</guid>
      <description>&lt;h1 id=&#34;heavy-strategy---028---dos-and-donts-of-selecting-technology-provider&#34;&gt;Heavy Strategy - 028 - Do&amp;rsquo;s and Don&amp;rsquo;ts of Selecting Technology Provider&lt;/h1&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Business goal/solution first and foremost&lt;/li&gt;&#xA;&lt;li&gt;Technology needs to be looked as a multiplier of value.&lt;/li&gt;&#xA;&lt;li&gt;ITIL does not deal with “living things” or rapid revolutionary change.&lt;/li&gt;&#xA;&lt;li&gt;Scorecards or one sheets of pros/cons to try and avoid falling in love with a product. They are not perfect - it’s the review process that matters more.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;heavy-strategy---hs-028--dos-and-donts-of-selecting-technology-provider&#34;&gt;Heavy Strategy - HS 028 – Do’s and Don’ts of Selecting Technology Provider&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+kr1ZIucEU&#34;&gt;https://overcast.fm/+kr1ZIucEU&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://packetpushers.net/podcast/hs-028-dos-and-donts-of-selecting-technology-provider/&#34;&gt;https://packetpushers.net/podcast/hs-028-dos-and-donts-of-selecting-technology-provider/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #heavy strategy# --&gt;&#xA;&lt;!-- {BearID:C1153F34-204C-4240-8007-A4CCEF84B622-17573-0000088781633ACD} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Behind the Bastards - The Man Who Ruined New York</title>
      <link>https://mcjones.ca/docs/behind-the-bastards---the-man-who-ruined-new-york/</link>
      <pubDate>Sun, 30 Oct 2022 22:44:50 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/behind-the-bastards---the-man-who-ruined-new-york/</guid>
      <description>&lt;h1 id=&#34;behind-the-bastards---the-man-who-ruined-new-york&#34;&gt;Behind the Bastards - The Man Who Ruined New York&lt;/h1&gt;&#xA;&lt;p&gt;A fantastic look at just how Robert Moses wielded his soft power as the head of parks to redline and destroy so much of the public good in New York.&lt;/p&gt;&#xA;&#xA;&#xA;&#xA;  &lt;blockquote&gt;&#xA;    &lt;p&gt;Confirming - yes the &lt;del&gt;&lt;a href=&#34;https://twitter.com/bastardspod&#34;&gt;@bastardspod&lt;/a&gt;&lt;/del&gt; episodes on Rob Moses are solid. Really liked this bit on transit. It’s not hard to come up with recent examples in &lt;del&gt;&lt;a href=&#34;https://twitter.com/search?q=%23yyctransit&#34;&gt;#yyctransit&lt;/a&gt;&lt;/del&gt; and &lt;del&gt;&lt;a href=&#34;https://twitter.com/search?q=%23yycwalk&#34;&gt;#yycwalk&lt;/a&gt;&lt;/del&gt; that are intentionally or not echo this.&lt;/p&gt;&#xA;&#xA;  &lt;/blockquote&gt;&#xA;&#xA;&lt;p&gt;Part 2 - 43:54 - “A classic example of architecture exclusion. The case settled but it presents a stark example of the dangers inherent in exclusionary transit design. There are body counts to this shit. When the walls are made up of moats of fast moving cars, people are going to die try to get from A to B.  People who can’t afford public transit. People are going to get arrested hoping on public transit ‘cause they can’t afford it because it is expensive because funds have been drained away. The consequences of all this are so titanic, and echo out so widely in our society. They all come down to - we don’t think it’s good for the mall if certain people can travel there.”&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;behind-the-bastards---the-man-who-ruined-new-york-1&#34;&gt;Behind the Bastards - The Man Who Ruined New York&lt;/h6&gt;&#xA;&lt;p&gt;Part 1:&#xA;&lt;a href=&#34;https://overcast.fm/+4cUMJ80-k&#34;&gt;https://overcast.fm/+4cUMJ80-k&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.iheart.com/podcast/105-behind-the-bastards-29236323/episode/part-one-the-man-who-ruined-99056594/&#34;&gt;https://www.iheart.com/podcast/105-behind-the-bastards-29236323/episode/part-one-the-man-who-ruined-99056594/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Part 2:&#xA;&lt;a href=&#34;https://overcast.fm/+4cUN2CbH0&#34;&gt;https://overcast.fm/+4cUN2CbH0&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.iheart.com/podcast/105-behind-the-bastards-29236323/episode/part-two-the-man-who-ruined-99138608/&#34;&gt;https://www.iheart.com/podcast/105-behind-the-bastards-29236323/episode/part-two-the-man-who-ruined-99138608/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Behind The Bastards# --&gt;&#xA;&lt;!-- {BearID:3CA8C9FD-D199-4B5E-9F35-2B78830ED38C-4436-000002DDBD26FDE4} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas -  The Future of Democracy</title>
      <link>https://mcjones.ca/docs/cbc-ideas----the-future-of-democracy/</link>
      <pubDate>Fri, 28 Oct 2022 21:41:47 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas----the-future-of-democracy/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas----the-future-of-democracy&#34;&gt;CBC Ideas -  The Future of Democracy&lt;/h1&gt;&#xA;&lt;p&gt;Touches very nicely that we didn’t get into this with a single cause and we are not going to get out with a silver bullet. Folks do believe in democratic ideals but are disenfranchised with the outcomes of the neoliberal control of democracy we see today.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;ideas---the-new-world-disorder--the-future-of-democracy&#34;&gt;Ideas - The New World Disorder | The Future of Democracy&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cQhSp44&#34;&gt;https://overcast.fm/+cQhSp44&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/listen/live-radio/1-23-ideas/clip/15938847-the-new-world-disorder-or-the-future-democracy&#34;&gt;https://www.cbc.ca/listen/live-radio/1-23-ideas/clip/15938847-the-new-world-disorder-or-the-future-democracy&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:64EFA076-C027-4E08-B243-8A3D809546AC-1324-000000BAD1813BDF} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Heavy Strategy - 026 - So You Want to Develop A Technology Strategy?</title>
      <link>https://mcjones.ca/docs/heavy-strategy---026---so-you-want-to-develop-a-technology-strategy/</link>
      <pubDate>Fri, 14 Oct 2022 03:14:36 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/heavy-strategy---026---so-you-want-to-develop-a-technology-strategy/</guid>
      <description>&lt;h1 id=&#34;heavy-strategy---026---so-you-want-to-develop-a-technology-strategy&#34;&gt;Heavy Strategy - 026 - So You Want to Develop A Technology Strategy?&lt;/h1&gt;&#xA;&lt;p&gt;At 15:21-15:45 Johna’s excellent summation is awesome.&lt;/p&gt;&#xA;&#xA;&#xA;&#xA;  &lt;blockquote&gt;&#xA;    &lt;p&gt;these are the technology principles we have all agreed to because and the reason we have agreed to them […] because they align with our business. Because we have done the work that says these are the technology principles that enable the business drivers we’ve captured.&lt;/p&gt;&#xA;&#xA;  &lt;/blockquote&gt;&#xA;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;heavy-strategy---hs-026-so-you-want-to-develop-a-technology-strategy-&#34;&gt;Heavy Strategy - HS 026 So You Want to Develop A Technology Strategy ?&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+kr1Y_KWys&#34;&gt;https://overcast.fm/+kr1Y_KWys&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://packetpushers.net/podcast/hs-026-so-you-want-to-develop-a-technology-strategy/&#34;&gt;https://packetpushers.net/podcast/hs-026-so-you-want-to-develop-a-technology-strategy/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #heavy strategy# --&gt;&#xA;&lt;!-- {BearID:1BE7F4BD-FDFF-476B-96F4-B98F1876CCFC-7527-000003B188C590D0} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Creating Bear URLs</title>
      <link>https://mcjones.ca/docs/creating-bear-urls/</link>
      <pubDate>Thu, 13 Oct 2022 17:51:33 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/creating-bear-urls/</guid>
      <description>&lt;h1 id=&#34;creating-bear-urls&#34;&gt;Creating Bear URLs&lt;/h1&gt;&#xA;&lt;p&gt;Bear has a URL generator to help creating the custom URLs for actions within the app:&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://bear.app/xurlbuilder&#34;&gt;https://bear.app/xurlbuilder&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Eg. &lt;code&gt;bear://x-callback-url/open-tag?name=public&lt;/code&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;create-notes&#34;&gt;Create Notes&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://bear.app/xurlbuilder/create/&#34;&gt;https://bear.app/xurlbuilder/create/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;bear://x-callback-url/create?title=Title&amp;amp;tags=tag1%2Ctag2&amp;amp;type=html&amp;amp;new_window=yes&amp;amp;edit=yes&amp;amp;url=https%3A%2F%2Furl_here&amp;amp;text=Some%20body%20text&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;!-- #public #bear-app --&gt;&#xA;&lt;!-- {BearID:B19E12C0-E629-430D-B2B9-CF8D26BF0682-970-00000519AC987BF4} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Heavy Networking - 631 - Saying No</title>
      <link>https://mcjones.ca/docs/heavy-networking---631---saying-no/</link>
      <pubDate>Sun, 11 Sep 2022 19:58:57 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/heavy-networking---631---saying-no/</guid>
      <description>&lt;h1 id=&#34;heavy-networking---631---saying-no&#34;&gt;Heavy Networking - 631 - Saying No&lt;/h1&gt;&#xA;&lt;p&gt;Why saying no is maturity. This is a conversation sparked by the guest’s blog post &lt;a href=&#34;https://networkingnerd.net/2022/03/18/no-is-a-complete-sentence/&#34;&gt;No is a complete sentence&lt;/a&gt;&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-fat-pipe-of-the-packet-pushers-podcasts---heavy-networking-631-saying-no&#34;&gt;The Fat Pipe Of The Packet Pushers Podcasts - Heavy Networking 631: Saying No&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+KN3L1v97I&#34;&gt;https://overcast.fm/+KN3L1v97I&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://packetpushers.net/podcast/heavy-networking-631-saying-no/&#34;&gt;https://packetpushers.net/podcast/heavy-networking-631-saying-no/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #heavy networking# --&gt;&#xA;&lt;!-- {BearID:4249FDD0-87AE-4881-A909-35E02C7BCA5D-18032-00000864FC90EF40} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>The Forgotten Corner - 068 -  Policing our kids, with Bridget Stirling</title>
      <link>https://mcjones.ca/docs/the-forgotten-corner---068----policing-our-kids-with-bridget-stirling/</link>
      <pubDate>Thu, 08 Sep 2022 00:51:53 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/the-forgotten-corner---068----policing-our-kids-with-bridget-stirling/</guid>
      <description>&lt;h1 id=&#34;the-forgotten-corner---068----policing-our-kids-with-bridget-stirling&#34;&gt;The Forgotten Corner - 068 -  Policing our kids, with Bridget Stirling&lt;/h1&gt;&#xA;&lt;p&gt;The school resource officer program sounds good until you look at the data and… it’s awful. Why do we insist on thinking it’s great to put untrained officers into roles they have no business being in?&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-forgotten-corner---episode-68-policing-our-kids-with-bridget-stirling&#34;&gt;The Forgotten Corner - Episode 68: Policing our kids, with Bridget Stirling&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+aZ46xsxko&#34;&gt;https://overcast.fm/+aZ46xsxko&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.forgottencornerpod.com/episodes/episode-68-policing-our-kids-with-bridget-stirling&#34;&gt;https://www.forgottencornerpod.com/episodes/episode-68-policing-our-kids-with-bridget-stirling&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #the forgotten corner# --&gt;&#xA;&lt;!-- {BearID:9BA37640-83E4-474F-975F-0889906E0828-18032-0000043C4C2FC233} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Heavy Strategy - 023 - Horrors and Hurdles of Hybrid Work</title>
      <link>https://mcjones.ca/docs/heavy-strategy---023---horrors-and-hurdles-of-hybrid-work/</link>
      <pubDate>Sat, 03 Sep 2022 22:18:54 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/heavy-strategy---023---horrors-and-hurdles-of-hybrid-work/</guid>
      <description>&lt;h1 id=&#34;heavy-strategy---023---horrors-and-hurdles-of-hybrid-work&#34;&gt;Heavy Strategy - 023 - Horrors and Hurdles of Hybrid Work&lt;/h1&gt;&#xA;&lt;p&gt;A fun look at how hybrid doesn’t solve much, but the alternatives are worse.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;heavy-strategy---hs-023-horrors-and-hurdles-of-hybrid-work&#34;&gt;Heavy Strategy - HS 023 Horrors and Hurdles of Hybrid Work&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+kr1aZchks&#34;&gt;https://overcast.fm/+kr1aZchks&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://packetpushers.net/podcast/hs-023-horrors-and-hurdles-of-hybrid-work/&#34;&gt;https://packetpushers.net/podcast/hs-023-horrors-and-hurdles-of-hybrid-work/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #heavy strategy# --&gt;&#xA;&lt;!-- {BearID:0F0188D3-C006-40EA-AF89-5EB72B05C379-44228-00000A0A875BC251} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Heavy Strategy - 012 - Professional Development in Infrastructure Technology</title>
      <link>https://mcjones.ca/docs/heavy-strategy---012---professional-development-in-infrastructure-technology/</link>
      <pubDate>Wed, 31 Aug 2022 23:31:39 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/heavy-strategy---012---professional-development-in-infrastructure-technology/</guid>
      <description>&lt;h1 id=&#34;heavy-strategy---012---professional-development-in-infrastructure-technology&#34;&gt;Heavy Strategy - 012 - Professional Development in Infrastructure Technology&lt;/h1&gt;&#xA;&lt;p&gt;The 33 minute mark about PMs and Process was particularly good&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;heavy-strategy---heavy-strategy-012-professional-development-in-infrastructure-technology&#34;&gt;Heavy Strategy - Heavy Strategy 012: Professional Development in Infrastructure Technology&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+kr1aU2dwg&#34;&gt;https://overcast.fm/+kr1aU2dwg&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #heavy strategy# --&gt;&#xA;&lt;!-- {BearID:CCF492CE-E61B-4743-9551-95751C6F3278-44228-000006FFCA8F2603} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Show spaces with vim</title>
      <link>https://mcjones.ca/docs/show-spaces-with-vim/</link>
      <pubDate>Tue, 30 Aug 2022 21:36:45 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/show-spaces-with-vim/</guid>
      <description>&lt;h1 id=&#34;show-spaces-with-vim&#34;&gt;Show spaces with vim&lt;/h1&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;:set listchars=eol:$,tab:&amp;gt;-,trail:~,space:␣&#xA;:set list&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;The &lt;code&gt;space:␣&lt;/code&gt; is gold. Thank you &lt;a href=&#34;https://askubuntu.com/questions/74485/how-to-display-hidden-characters-in-vim#comment1621885_74503&#34;&gt;loxaxs&lt;/a&gt;!&lt;/p&gt;&#xA;&lt;!-- #public #vim #snippet --&gt;&#xA;&lt;!-- {BearID:644129C8-62E5-4226-A928-E9EE6B4686F3-13673-0000108DFD13B7E7} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Tech Lead Journal - 88 - Observability Engineering - Liz Fong-Jones</title>
      <link>https://mcjones.ca/docs/tech-lead-journal---88---observability-engineering---liz-fong-jones/</link>
      <pubDate>Sat, 27 Aug 2022 22:37:46 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/tech-lead-journal---88---observability-engineering---liz-fong-jones/</guid>
      <description>&lt;h1 id=&#34;tech-lead-journal---88---observability-engineering---liz-fong-jones&#34;&gt;Tech Lead Journal - 88 - Observability Engineering - Liz Fong-Jones&lt;/h1&gt;&#xA;&lt;p&gt;At the 26 min mark, I enjoyed the walk down first principles of debugging. We can’t always expect folks to be able to do this, but it also helps a lot when approaching problems.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;tech-lead-journal---88---observability-engineering---liz-fong-jones-1&#34;&gt;Tech Lead Journal - 88 - Observability Engineering - Liz Fong-Jones&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+fKlw4ytDM&#34;&gt;https://overcast.fm/+fKlw4ytDM&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://techleadjournal.dev/episodes/88/&#34;&gt;https://techleadjournal.dev/episodes/88/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Tech Lead Journal# --&gt;&#xA;&lt;!-- {BearID:BF1BD27B-96F1-4FC0-8041-F68E6E11944B-20030-00000334C2617D96} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Escape Pod - The Sun From Both Sides</title>
      <link>https://mcjones.ca/docs/escape-pod---the-sun-from-both-sides/</link>
      <pubDate>Thu, 18 Aug 2022 16:42:13 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/escape-pod---the-sun-from-both-sides/</guid>
      <description>&lt;h1 id=&#34;escape-pod---the-sun-from-both-sides&#34;&gt;Escape Pod - The Sun From Both Sides&lt;/h1&gt;&#xA;&lt;h2 id=&#34;by-rsa-garcia&#34;&gt;By &lt;a href=&#34;https://escapepod.org/people/r-s-a-garcia/&#34;&gt;R.S.A. Garcia&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;A companion novella called Philia, Eros, Storge, Agápe, Pragma was released later and gives an awesome look at the Kairi background while this one had focused on the Valcenian&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;escape-pod-the-sun-from-both-sides&#34;&gt;Escape Pod: The Sun From Both Sides&lt;/h6&gt;&#xA;&lt;p&gt;Part 1: &lt;a href=&#34;https://escapepod.org/2020/11/05/escape-pod-757-the-sun-from-both-sides-part-1-of-3/&#34;&gt;https://escapepod.org/2020/11/05/escape-pod-757-the-sun-from-both-sides-part-1-of-3/&lt;/a&gt;&lt;br&gt;&#xA;Part 2: &lt;a href=&#34;https://escapepod.org/2020/11/12/escape-pod-758-the-sun-from-both-sides-part-2-of-3/&#34;&gt;https://escapepod.org/2020/11/12/escape-pod-758-the-sun-from-both-sides-part-2-of-3/&lt;/a&gt;&lt;br&gt;&#xA;Part 3: &lt;a href=&#34;https://escapepod.org/2020/11/19/escape-pod-759-the-sun-from-both-sides-part-3-of-3/&#34;&gt;https://escapepod.org/2020/11/19/escape-pod-759-the-sun-from-both-sides-part-3-of-3/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Escape Pod# --&gt;&#xA;&lt;!-- {BearID:D1F3A172-8639-4A3C-9E1E-A6B37798CC72-13673-000000FB85D129FF} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Escape Pod - Philia, Eros, Storge, Agape, Pragma</title>
      <link>https://mcjones.ca/docs/escape-pod---philia-eros-storge-agape-pragma/</link>
      <pubDate>Thu, 18 Aug 2022 16:41:15 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/escape-pod---philia-eros-storge-agape-pragma/</guid>
      <description>&lt;h1 id=&#34;escape-pod---philia-eros-storge-agape-pragma&#34;&gt;Escape Pod - Philia, Eros, Storge, Agape, Pragma&lt;/h1&gt;&#xA;&lt;h2 id=&#34;by-rsa-garcia&#34;&gt;By &lt;a href=&#34;https://escapepod.org/people/r-s-a-garcia/&#34;&gt;R.S.A. Garcia&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;A companions novella to The From Both Sides exploring the Kairi. My biggest complaint about audio is that scene changes are a lot more subtle than in text.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;escape-pod-philia-eros-storge-agápe-pragma&#34;&gt;Escape Pod: Philia, Eros, Storge, Agápe, Pragma&lt;/h6&gt;&#xA;&lt;p&gt;Part 1: &lt;a href=&#34;https://escapepod.org/2022/05/05/escape-pod-835-philia-eros-storge-agape-pragma-part-1-of-4/&#34;&gt;https://escapepod.org/2022/05/05/escape-pod-835-philia-eros-storge-agape-pragma-part-1-of-4/&lt;/a&gt;&lt;br&gt;&#xA;Part 2: &lt;a href=&#34;https://escapepod.org/2022/05/12/escape-pod-836-philia-eros-storge-agape-pragma-part-2-of-4/&#34;&gt;https://escapepod.org/2022/05/12/escape-pod-836-philia-eros-storge-agape-pragma-part-2-of-4/&lt;/a&gt;&lt;br&gt;&#xA;Part 3: &lt;a href=&#34;https://escapepod.org/2022/05/19/escape-pod-837-philia-eros-storge-agape-pragma-part-3-of-4/&#34;&gt;https://escapepod.org/2022/05/19/escape-pod-837-philia-eros-storge-agape-pragma-part-3-of-4/&lt;/a&gt;&lt;br&gt;&#xA;Part 4: &lt;a href=&#34;https://escapepod.org/2022/05/26/escape-pod-838-philia-eros-storge-agape-pragma-part-4-of-4/&#34;&gt;https://escapepod.org/2022/05/26/escape-pod-838-philia-eros-storge-agape-pragma-part-4-of-4/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #Escape Pod# --&gt;&#xA;&lt;!-- {BearID:1B68E4D0-DE09-4BC2-A104-181611F3E7A2-749-000000A5F9C2D2E1} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - Myth of Normal</title>
      <link>https://mcjones.ca/docs/cbc-ideas---myth-of-normal/</link>
      <pubDate>Fri, 12 Aug 2022 18:19:07 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---myth-of-normal/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---myth-of-normal&#34;&gt;CBC Ideas - Myth of Normal&lt;/h1&gt;&#xA;&lt;p&gt;Part 2 - around 3 minutes:&lt;/p&gt;&#xA;&#xA;&#xA;&#xA;  &lt;blockquote&gt;&#xA;    &lt;p&gt;Neurodiversity is the recognition that human beings have different kinds of brains, different ways of thinking, different ways of experiencing the world, different ways of experiencing the five senses,  and that our world is better for it. … Neurodiversity increases the strength and resilience of human communities by bringing different ways of thinking and problem solving together.”&lt;/p&gt;&#xA;&#xA;  &lt;/blockquote&gt;&#xA;&#xA;&lt;p&gt;Part 2 - around 29 minutes:&lt;/p&gt;&#xA;&#xA;&#xA;&#xA;  &lt;blockquote&gt;&#xA;    &lt;p&gt;The damage that’s done is born of the misunderstanding, the flat out ignorance on the part of the general public where they’re still stuck in the smart, stupid dichotomy in terms of ranking minds. It’s such a crude and misleading metric&lt;/p&gt;&#xA;&#xA;  &lt;/blockquote&gt;&#xA;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;ideas---myth-of-normal&#34;&gt;Ideas - Myth of Normal&lt;/h6&gt;&#xA;&lt;p&gt;Part One:&#xA;&lt;a href=&#34;https://www.cbc.ca/listen/live-radio/1-23-ideas/clip/15909379-myth-normal-part-one&#34;&gt;https://www.cbc.ca/listen/live-radio/1-23-ideas/clip/15909379-myth-normal-part-one&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://overcast.fm/+cQxv97M&#34;&gt;https://overcast.fm/+cQxv97M&lt;/a&gt;&#xA;Part Two:&#xA;&lt;a href=&#34;https://www.cbc.ca/listen/live-radio/1-23-ideas/clip/15911449-myth-normal-part-two&#34;&gt;https://www.cbc.ca/listen/live-radio/1-23-ideas/clip/15911449-myth-normal-part-two&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://overcast.fm/+cTl67HE&#34;&gt;https://overcast.fm/+cTl67HE&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:94066AA5-38B8-40FA-B7CB-933A37B8E433-32977-000006C1D4EEC973} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Hidden Brain - Money 2.0 - Rewrite Your Money Story</title>
      <link>https://mcjones.ca/docs/hidden-brain---money-2.0---rewrite-your-money-story/</link>
      <pubDate>Fri, 12 Aug 2022 18:18:37 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/hidden-brain---money-2.0---rewrite-your-money-story/</guid>
      <description>&lt;h1 id=&#34;hidden-brain---money-20---rewrite-your-money-story&#34;&gt;Hidden Brain - Money 2.0 - Rewrite Your Money Story&lt;/h1&gt;&#xA;&lt;p&gt;Looking through how views and reactions to money are formed and passed down. The whole section about “money scripts” is a good explanation.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;hidden-brain---money-20-rewrite-your-money-story&#34;&gt;Hidden Brain - Money 2.0: Rewrite Your Money Story&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+1WhNU8nR8&#34;&gt;https://overcast.fm/+1WhNU8nR8&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://hiddenbrain.org/podcast/money-2-0-rewrite-your-money-story/&#34;&gt;https://hiddenbrain.org/podcast/money-2-0-rewrite-your-money-story/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #hidden brain# --&gt;&#xA;&lt;!-- {BearID:B8850466-4D41-4410-B6B1-BA62CEB02EF3-32977-000006C1AA3D7402} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Overcast -&gt; Bear Shortcut</title>
      <link>https://mcjones.ca/docs/overcast---bear-shortcut/</link>
      <pubDate>Thu, 11 Aug 2022 03:55:23 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/overcast---bear-shortcut/</guid>
      <description>&lt;h1 id=&#34;overcast---bear-shortcut&#34;&gt;Overcast -&amp;gt; Bear Shortcut&lt;/h1&gt;&#xA;&lt;p&gt;The shortcut I use to send a particularly good episode to Bear has the following steps:&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Take the info from Overcast and put into a new Bear note.&lt;/li&gt;&#xA;&lt;li&gt;I then copy some text to the clipboard and add that text to the Bear note because Shortcuts has some really weird bugs that prevents me from adding it.&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;p&gt;It can be checked out at &lt;a href=&#34;https://mcjones.ca/downloads/Overcast%20to%20Bear.shortcut.zip&#34;&gt;https://mcjones.ca/downloads/Overcast%20to%20Bear.shortcut.zip&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #shortcuts #overcast #bear-app --&gt;&#xA;&lt;!-- {BearID:577C2F56-FD9F-41CC-A36C-4F883323D703-51307-00002380DF702979} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Sensu Filters</title>
      <link>https://mcjones.ca/docs/sensu-filters/</link>
      <pubDate>Thu, 11 Aug 2022 01:42:09 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sensu-filters/</guid>
      <description>&lt;h1 id=&#34;sensu-filters&#34;&gt;Sensu Filters&lt;/h1&gt;&#xA;&lt;p&gt;Our standard filter for events.&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt; # Passes Standard filter if:&#xA; # 1. Failed 3 checks in a row (will not send a resolution if we only failed once or twice)&#xA; # 2. OR every hour if we&amp;#39;re still in a bad state.&#xA; # 3. OR if an &amp;#34;instant&amp;#34; label was applied to the check (event.check.labels)&#xA;&#xA;  standard:&#xA;    ensure: present&#xA;    action: allow&#xA;    expressions:&#xA;      - &amp;#39;(event.check.occurrences == 3 &amp;amp;&amp;amp; event.check.occurences_watermark &amp;gt; 2) || ( (event.check.occurrences % (3600 / event.check.interval) == 0) &amp;amp;&amp;amp; (event.check.status &amp;gt; 0) ) || ( event.check.labels.instant == &amp;#34;true&amp;#34; )&amp;#39;&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;!-- #public #sensu #puppet --&gt;&#xA;&lt;!-- {BearID:64518DC9-5600-455F-8FD4-3A4552ADAFBA-51307-000023552418F5C0} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Strong Towns - Ryan Crane</title>
      <link>https://mcjones.ca/docs/strong-towns---ryan-crane/</link>
      <pubDate>Thu, 04 Aug 2022 18:55:54 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/strong-towns---ryan-crane/</guid>
      <description>&lt;h1 id=&#34;strong-towns---ryan-crane&#34;&gt;Strong Towns - Ryan Crane&lt;/h1&gt;&#xA;&lt;p&gt;Solid run down of safety and engineering.&lt;/p&gt;&#xA;&lt;p&gt;I really liked the bit about latent causes versus active causes as a different way of showing systemic vs human causes in safety&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;the-strong-towns-podcast---ryan-crane-malpractice-and-accountability-in-engineering---a-surgeons-take&#34;&gt;The Strong Towns Podcast - Ryan Crane Malpractice and Accountability in Engineering - A Surgeon’s Take&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+qpp1zxIxs&#34;&gt;https://overcast.fm/+qpp1zxIxs&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://podcast.strongtowns.org/e/ryan-crane-malpractice-and-accountability-in-engineering-a-surgeon-s-take/&#34;&gt;https://podcast.strongtowns.org/e/ryan-crane-malpractice-and-accountability-in-engineering-a-surgeon-s-take/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #strong towns# --&gt;&#xA;&lt;!-- {BearID:EE420233-D878-4060-AE02-FD283C5D2282-16385-0000130750278366} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Developing Leadership - Things That Drive Us Crazy</title>
      <link>https://mcjones.ca/docs/developing-leadership---things-that-drive-us-crazy/</link>
      <pubDate>Sat, 30 Jul 2022 21:17:23 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/developing-leadership---things-that-drive-us-crazy/</guid>
      <description>&lt;h1 id=&#34;developing-leadership---things-that-drive-us-crazy&#34;&gt;Developing Leadership - Things That Drive Us Crazy&lt;/h1&gt;&#xA;&lt;p&gt;Quotes / Points:&#xA;“Philosophy and the soul of the alignment tool”&#xA;“Draw the owl. You know it’s going to be messy going to get to be s draw the owl”&#xA;Need to understand what the alignment tool is supposed to be doing.&lt;/p&gt;&#xA;&lt;p&gt;14:53&#xA;Never act like you have the answer. “Our goals are to achieve this. We’re going to try this way of doing it because we need to optimize x, y, and z to achieve these goals and this will get us there. And if it doesn’t work, we throw it out”&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;developing-leadership---episode-15--things-that-drive-us-crazy-in-software-engineering-leadership&#34;&gt;Developing Leadership - Episode 15 | Things That Drive Us Crazy in Software Engineering Leadership&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+xOJ1gRD-4&#34;&gt;https://overcast.fm/+xOJ1gRD-4&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://podcast.developingleadership.co/e/episode-15-things-that-drive-us-crazy-in-software-engineering-leadership/&#34;&gt;https://podcast.developingleadership.co/e/episode-15-things-that-drive-us-crazy-in-software-engineering-leadership/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #developing leadership# --&gt;&#xA;&lt;!-- {BearID:78186886-6913-4814-8A85-B933503F8014-77991-00000D0B65DD4A18} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Chrome Kiosk Mode and Revolving Tabs</title>
      <link>https://mcjones.ca/docs/chrome-kiosk-mode-and-revolving-tabs/</link>
      <pubDate>Thu, 28 Jul 2022 20:07:56 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/chrome-kiosk-mode-and-revolving-tabs/</guid>
      <description>&lt;h1 id=&#34;chrome-kiosk-mode-and-revolving-tabs&#34;&gt;Chrome Kiosk Mode and Revolving Tabs&lt;/h1&gt;&#xA;&lt;p&gt;TIL you can use Chrome to open multiple tabs in kiosk (no menu, no UI mode).&lt;/p&gt;&#xA;&lt;p&gt;On macOS you can launch it with the &lt;code&gt;—kiosk&lt;/code&gt; flag and then follow it with any number of &lt;code&gt;--app&lt;/code&gt; arguments for the tabs. Combine this with an extension like &lt;a href=&#34;https://chrome.google.com/webstore/detail/revolver-tabs/dlknooajieciikpedpldejhhijacnbda?hl=en&#34;&gt;Revolver&lt;/a&gt; or &lt;a href=&#34;https://chrome.google.com/webstore/detail/tabcarousel/ddldimidiliclngjipajmjjiakhbcohn?hl=en&#34;&gt;TabCarousel&lt;/a&gt; and you’ve got a super simple and quick status page rotation setup.&lt;/p&gt;&#xA;&lt;p&gt;If my particular case I’m running it on a separate old Mac mini:&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;ssh user@IP&#xA;&#xA;screen&#xA;&#xA;/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --kiosk --app &amp;#34;https://mcjones.ca&amp;#34; --app &amp;#34;https://chealion.ca&amp;#34;&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;!-- #public #chrome --&gt;&#xA;&lt;!-- {BearID:73D7C24F-CCA4-4B8C-BE3D-AAA40EED31A8-22769-00000B031CECFA69} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - The Authoritarian Personality</title>
      <link>https://mcjones.ca/docs/cbc-ideas---the-authoritarian-personality/</link>
      <pubDate>Tue, 19 Jul 2022 13:50:35 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---the-authoritarian-personality/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---the-authoritarian-personality&#34;&gt;CBC Ideas - The Authoritarian Personality&lt;/h1&gt;&#xA;&lt;p&gt;A fantastic run through what and how the authoritarian personality is back in vogue in the past decade.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cRwBfTs&#34;&gt;https://overcast.fm/+cRwBfTs&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/listen/live-radio/1-23-ideas/clip/15904668-the-authoritarian-personality&#34;&gt;https://www.cbc.ca/listen/live-radio/1-23-ideas/clip/15904668-the-authoritarian-personality&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:93C15AE4-22A4-485B-9FB0-CB375BE67989-54386-000012B26C67C02A} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Bootstrap Notes</title>
      <link>https://mcjones.ca/docs/bootstrap-notes/</link>
      <pubDate>Fri, 15 Jul 2022 05:11:36 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/bootstrap-notes/</guid>
      <description>&lt;h1 id=&#34;bootstrap-notes&#34;&gt;Bootstrap Notes&lt;/h1&gt;&#xA;&lt;p&gt;Sometimes it makes sense to just accept standards and roll with it instead of failing miserably at rewriting and relearning CSS you learned a decade ago.&lt;/p&gt;&#xA;&lt;h2 id=&#34;usage&#34;&gt;Usage&lt;/h2&gt;&#xA;&lt;p&gt;Bootstrap has a CSS component and an optional JS component that is required if you want to use some of the more interactive components: &lt;a href=&#34;https://getbootstrap.com/docs/5.2/getting-started/introduction/#js-components&#34;&gt;https://getbootstrap.com/docs/5.2/getting-started/introduction/#js-components&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;The easiest to include via CDN, but it helps to have a copy locally as well.&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;&amp;lt;link href=&amp;#34;https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css&amp;#34; rel=&amp;#34;stylesheet&amp;#34;&#xA;integrity=&amp;#34;sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor&amp;#34; crossorigin=&amp;#34;anonymous&amp;#34;&amp;gt;&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;docs&#34;&gt;Docs&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://getbootstrap.com/docs/5.2&#34;&gt;https://getbootstrap.com/docs/5.2&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;cheatsheet&#34;&gt;Cheatsheet&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://getbootstrap.com/docs/5.2/examples/cheatsheet/&#34;&gt;https://getbootstrap.com/docs/5.2/examples/cheatsheet/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;spacing&#34;&gt;Spacing&lt;/h2&gt;&#xA;&lt;p&gt;Most pertinent notes from:&#xA;&lt;a href=&#34;https://getbootstrap.com/docs/4.0/utilities/spacing/&#34;&gt;https://getbootstrap.com/docs/4.0/utilities/spacing/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;m = margin&lt;br&gt;&#xA;p = padding&lt;/p&gt;&#xA;&lt;p&gt;t, b, l, r = top, bottom, left, right&lt;br&gt;&#xA;x, y = Both left and right, or both top and bottom&lt;/p&gt;&#xA;&lt;p&gt;0 = eliminate / 0&lt;br&gt;&#xA;1 = spacer * 0.25&lt;br&gt;&#xA;2 = spacer * 0.5&lt;br&gt;&#xA;3 = spacer&lt;br&gt;&#xA;4 = spacer * 1.5&lt;br&gt;&#xA;5 = spacer * 3&lt;br&gt;&#xA;Auto&lt;/p&gt;&#xA;&lt;p&gt;Eg.&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;.ml-1 {&#xA;  margin-left: ($spacer * .25) !important;&#xA;}&#xA;&#xA;.px-2 {&#xA;  padding-left: ($spacer * .5) !important;&#xA;  padding-right: ($spacer * .5) !important;&#xA;}&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;!-- #public #bootstrap #webdev --&gt;&#xA;&lt;!-- {BearID:BBFF02BA-42CF-4229-8DBF-75C9C565AC6C-68161-00000A793BAA2811} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Instant Pot Mashed Potatoes</title>
      <link>https://mcjones.ca/docs/instant-pot-mashed-potatoes/</link>
      <pubDate>Tue, 12 Jul 2022 01:04:28 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/instant-pot-mashed-potatoes/</guid>
      <description>&lt;h1 id=&#34;instant-pot-mashed-potatoes&#34;&gt;Instant Pot Mashed Potatoes&lt;/h1&gt;&#xA;&lt;p&gt;5 lbs can fit in the 8 quart&lt;/p&gt;&#xA;&lt;p&gt;Quarter and put with a cup of water. Pressure cook for 15&lt;br&gt;&#xA;Natural release (wait 10 min)&lt;br&gt;&#xA;Drain&lt;br&gt;&#xA;Mash with butter and milk&lt;/p&gt;&#xA;&lt;!-- #public #recipe #instant-pot --&gt;&#xA;&lt;!-- {BearID:776DF90B-40BB-4236-855B-2F4990AEC59F-29888-000007047325D702} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Instant Pot Potatoes</title>
      <link>https://mcjones.ca/docs/instant-pot-potatoes/</link>
      <pubDate>Mon, 11 Jul 2022 19:04:28 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/instant-pot-potatoes/</guid>
      <description>&lt;h1 id=&#34;instant-pot-potatoes&#34;&gt;Instant Pot Potatoes&lt;/h1&gt;&#xA;&lt;p&gt;5 lbs can fit in the 8 quart&lt;/p&gt;&#xA;&lt;p&gt;Quarter and put with a cup of water. Pressure cook for 15&lt;br&gt;&#xA;Natural release (wait 10 min)&lt;br&gt;&#xA;Drain&lt;br&gt;&#xA;Mash with butter and milk&lt;/p&gt;&#xA;&lt;!-- #public #recipe --&gt;&#xA;&lt;!-- {BearID:776DF90B-40BB-4236-855B-2F4990AEC59F-29888-000007047325D702} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Use dsh in parallel</title>
      <link>https://mcjones.ca/docs/use-dsh-in-parallel/</link>
      <pubDate>Tue, 05 Jul 2022 01:34:05 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/use-dsh-in-parallel/</guid>
      <description>&lt;h1 id=&#34;use-dsh-in-parallel&#34;&gt;Use dsh in parallel&lt;/h1&gt;&#xA;&lt;p&gt;Use &lt;code&gt;-c&lt;/code&gt; for all at once&lt;/p&gt;&#xA;&lt;p&gt;Or &lt;code&gt;-F X&lt;/code&gt; for a certain number at a time&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;dsh -Mg containers -F 5 whoami&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;!-- #public #snippet #dsh --&gt;&#xA;&lt;!-- {BearID:1318DF0B-B992-4C6E-BC4D-2F7D574A5A4F-1190-00000AE66BAC8E29} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>My General Go To Lightroom Preset</title>
      <link>https://mcjones.ca/docs/my-general-go-to-lightroom-preset/</link>
      <pubDate>Sun, 26 Jun 2022 02:56:32 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/my-general-go-to-lightroom-preset/</guid>
      <description>&lt;h1 id=&#34;my-general-go-to-lightroom-preset&#34;&gt;My General Go To Lightroom Preset&lt;/h1&gt;&#xA;&lt;h2 id=&#34;2022&#34;&gt;2022&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;WB: As Shot&lt;/li&gt;&#xA;&lt;li&gt;Auto Tone&lt;/li&gt;&#xA;&lt;li&gt;Clarity: 25&lt;/li&gt;&#xA;&lt;li&gt;Vibrance: 15&lt;/li&gt;&#xA;&lt;li&gt;Sat: 0&lt;/li&gt;&#xA;&lt;li&gt;Tone Curve: 15, 5, -5, -15&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;In 2018 Medium and Strong Contrast settings were removed: &lt;a href=&#34;https://helpx.adobe.com/ca/lightroom-cc/kb/tone-curve-presets.html&#34;&gt;https://helpx.adobe.com/ca/lightroom-cc/kb/tone-curve-presets.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Fix is to download the preset and add them to your presets.&lt;/p&gt;&#xA;&lt;!-- #public #lightroom --&gt;&#xA;&lt;!-- {BearID:193E68B4-E64E-4E29-8F04-0E1B6C98730B-1481-000015B9318D5B7A} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>sips</title>
      <link>https://mcjones.ca/docs/sips/</link>
      <pubDate>Tue, 21 Jun 2022 23:31:27 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sips/</guid>
      <description>&lt;h1 id=&#34;sips&#34;&gt;sips&lt;/h1&gt;&#xA;&lt;p&gt;&lt;code&gt;sips&lt;/code&gt; is awesome but I can never remember my most used cases.&lt;/p&gt;&#xA;&lt;h2 id=&#34;square-image&#34;&gt;Square Image&lt;/h2&gt;&#xA;&lt;p&gt;Take a non-square image and “square it” - often for avatars and such.&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;sips -g pixelWidth test.png&#xA;sips -g pixelHeight test.png&#xA;# Set YYY to the max of the values above&#xA;sips -p YYY YYY test.png -o square.png&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;whatever--to-16x10&#34;&gt;Whatever  to 16x10&lt;/h2&gt;&#xA;&lt;p&gt;This is my go to command when downloading new images from the Webb Telescope.&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;sips Hubble_Deep_Field_SMACS0723.png -Z 1600x1600 -p 1600 3840 -o test.png&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;This doesn’t always work as expected (eg. Sips-300 with Ventura. If so, the &lt;code&gt;-Z&lt;/code&gt; values need to be tweaked.&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Find ratio of image (width/height)&lt;/p&gt;&#xA;&lt;p&gt;eg. 9474/4654 = 2.035&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;If greater than 2.4 (3840/1600) -  multiply 1600 by the ratio. To use for Z (1600*2.035 = 3256)&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;If ratio is less than 2.4 - multiply 3840 by the ratio. To use for Z (3840*2.035 = 7814)&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;sips MyImage.png -Z 7814x7814 -p 1600 3840 -o MyImage_CONVERT.png&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;crop-to-16x10&#34;&gt;Crop to 16x10&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;sips SomeTallImage.png -Z 3840x3840 -p 1600 3840 --cropOffset 635 -800 -o test.png&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;The offsets (x,y) in pixels require quite a bit of tweaking based on the image being resized to the longest side being 3840.&lt;/p&gt;&#xA;&lt;h3 id=&#34;james-webb-telescope&#34;&gt;James Webb Telescope&lt;/h3&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://webbtelescope.org/resource-gallery/images&#34;&gt;https://webbtelescope.org/resource-gallery/images&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;The fact this page does not have an RSS feed maddens me.&lt;/p&gt;&#xA;&lt;h2 id=&#34;common-flags&#34;&gt;Common flags&lt;/h2&gt;&#xA;&lt;p&gt;&lt;code&gt;-i&lt;/code&gt; - add icon in Finder&lt;/p&gt;&#xA;&lt;!-- #public #macos --&gt;&#xA;&lt;!-- {BearID:571EA800-1D33-4F17-9822-E9234F341200-1481-00000E988377EA6A} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>SQL on a CSV file using sqlite</title>
      <link>https://mcjones.ca/docs/sql-on-a-csv-file-using-sqlite/</link>
      <pubDate>Tue, 21 Jun 2022 16:15:19 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sql-on-a-csv-file-using-sqlite/</guid>
      <description>&lt;h1 id=&#34;sql-on-a-csv-file-using-sqlite&#34;&gt;SQL on a CSV file using sqlite&lt;/h1&gt;&#xA;&lt;p&gt;Using sqlite’s in memory database to load a .csv called taxi.csv&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;sqlite3 :memory: -cmd &amp;#39;.mode csv&amp;#39; -cmd &amp;#39;.import taxi.csv taxi&amp;#39; \&#xA;  &amp;#39;SELECT passenger_count, COUNT(*), AVG(total_amount) FROM taxi GROUP BY passenger_count&amp;#39;&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Source: &lt;a href=&#34;https://til.simonwillison.net/sqlite/one-line-csv-operations&#34;&gt;https://til.simonwillison.net/sqlite/one-line-csv-operations&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;This was found for doing some work to benchmark dsq - a tool for querying against a multitude of format types (JSON, CSV, Excel, Parquet, etc.) - &lt;a href=&#34;https://github.com/multiprocessio/dsq&#34;&gt;https://github.com/multiprocessio/dsq&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #snippet #sqlite --&gt;&#xA;&lt;!-- {BearID:810C0134-B05B-44C9-9037-C94CA2D7580D-1481-00000E25ACF07D01} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Jason Stanley Quote</title>
      <link>https://mcjones.ca/docs/jason-stanley-quote/</link>
      <pubDate>Sat, 18 Jun 2022 16:16:45 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/jason-stanley-quote/</guid>
      <description>&lt;h1 id=&#34;jason-stanley-quote&#34;&gt;Jason Stanley Quote&lt;/h1&gt;&#xA;&#xA;&#xA;&#xA;  &lt;blockquote&gt;&#xA;    &lt;p&gt;As Jason Stanley wrote in How Fascism Works, “What happens when conspiracy theories become the coin of politics, and mainstream media and educational institutions are discredited is that citizens no longer have a common reality that can serve as a background for democratic deliberation.”&lt;/p&gt;&#xA;&#xA;  &lt;/blockquote&gt;&#xA;&#xA;&lt;p&gt;&lt;a href=&#34;https://www.nationalobserver.com/2022/06/18/opinion/bitcoin-bust-wont-take-down-pierre-poilievre&#34;&gt;https://www.nationalobserver.com/2022/06/18/opinion/bitcoin-bust-wont-take-down-pierre-poilievre&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #max-fawcett #jason-stanley #fascism #quotes --&gt;&#xA;&lt;!-- {BearID:42C5963E-CB6C-43C5-AB9D-75BD67042809-36527-00002125E1ADB606} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Evi Nemeth</title>
      <link>https://mcjones.ca/docs/evi-nemeth/</link>
      <pubDate>Wed, 15 Jun 2022 02:30:31 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/evi-nemeth/</guid>
      <description>&lt;h1 id=&#34;evi-nemeth&#34;&gt;Evi Nemeth&lt;/h1&gt;&#xA;&lt;p&gt;It’s impossible to encapsulate all of Evi’s wisdom here, but these tenets have stuck with us:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Be conservative in what you send and liberal in what you receive. (This tenet is also known as Postel’s Law, named in honor of Jon Postel, who served as Editor of the RFC series from 1969 until his death in 1998.)&lt;/li&gt;&#xA;&lt;li&gt;Be liberal in who you hire, but fire early.&lt;/li&gt;&#xA;&lt;li&gt;Don’t use weasel words.&lt;/li&gt;&#xA;&lt;li&gt;Undergraduates are the secret superpower.&lt;/li&gt;&#xA;&lt;li&gt;You can never use too much red ink.&lt;/li&gt;&#xA;&lt;li&gt;You don’t really understand something until you’ve implemented it.&lt;/li&gt;&#xA;&lt;li&gt;It’s always time for sushi.&lt;/li&gt;&#xA;&lt;li&gt;Be willing to try something twice.&lt;/li&gt;&#xA;&lt;li&gt;Always use sudo.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://books.google.ca/books?id=f7M1DwAAQBAJ&amp;amp;pg=PT44&amp;amp;lpg=PT44&#34;&gt;From Unix and Linux System Administration Handbook 5th Edition.&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #quotes #evi-nemeth --&gt;&#xA;&lt;!-- {BearID:89084BCA-AC39-4EDA-9DC0-9B05E22FE43D-90177-00001D19EB2700C8} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Scale up Steps for Iced Coffee</title>
      <link>https://mcjones.ca/docs/scale-up-steps-for-iced-coffee/</link>
      <pubDate>Sat, 11 Jun 2022 20:30:49 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/scale-up-steps-for-iced-coffee/</guid>
      <description>&lt;h1 id=&#34;scale-up-steps-for-iced-coffee&#34;&gt;Scale up Steps for Iced Coffee&lt;/h1&gt;&#xA;&lt;p&gt;Recipe Amounts:&lt;br&gt;&#xA;Ice: Water / 2&lt;br&gt;&#xA;Coffee: Coffee * 1.5&lt;/p&gt;&#xA;&lt;p&gt;Eg.&lt;/p&gt;&#xA;&lt;p&gt;20g coffee and 300g water becomes:&lt;br&gt;&#xA;30g, 300g water and 150g ice.&lt;/p&gt;&#xA;&lt;!-- #public #coffee #recipe --&gt;&#xA;&lt;!-- {BearID:1E3F165D-2296-4D56-8D9B-FCDF52A97954-49872-00002C7A56F6B965} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Passkey / Webauthn</title>
      <link>https://mcjones.ca/docs/passkey---webauthn/</link>
      <pubDate>Wed, 08 Jun 2022 18:20:44 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/passkey---webauthn/</guid>
      <description>&lt;h1 id=&#34;passkey--webauthn&#34;&gt;Passkey / Webauthn&lt;/h1&gt;&#xA;&lt;p&gt;WebAuthn is public key cryptography but more widespread and available via the FIDO (Fast IDentity Online) alliance.&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://fidoalliance.org/how-fido-works/&#34;&gt;https://fidoalliance.org/how-fido-works/&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://caniuse.com/?search=webauthn&#34;&gt;https://caniuse.com/?search=webauthn&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;services&#34;&gt;Services&lt;/h2&gt;&#xA;&lt;p&gt;What services can we sign into with webauthn?&lt;/p&gt;&#xA;&lt;p&gt;A distinct lack of support at the moment. The most offers for it so far are only as second factors.&lt;/p&gt;&#xA;&lt;p&gt;1Password, Gmail offer keys as a second factor.&lt;/p&gt;&#xA;&lt;h2 id=&#34;clients&#34;&gt;Clients&lt;/h2&gt;&#xA;&lt;p&gt;What does a user require to provide their credentials?&lt;/p&gt;&#xA;&lt;p&gt;Physical FIDO2-compatible security keys:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Yubikeys - $55 USD&lt;/li&gt;&#xA;&lt;li&gt;Token2&lt;/li&gt;&#xA;&lt;li&gt;Feitian - a little less expensive&lt;/li&gt;&#xA;&lt;li&gt;Google Titan&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Software based:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;macOS Ventura (Secure Enclave)&lt;/li&gt;&#xA;&lt;li&gt;iOS 16 (Secure Enclave)&lt;/li&gt;&#xA;&lt;li&gt;1Password 8&lt;/li&gt;&#xA;&lt;li&gt;Windows ??&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;resource-links&#34;&gt;Resource Links&lt;/h2&gt;&#xA;&lt;p&gt;Apple - &lt;a href=&#34;https://support.apple.com/en-us/HT213305&#34;&gt;https://support.apple.com/en-us/HT213305&lt;/a&gt;&#xA;1Password has announced support but nothing yet.&#xA;&lt;a href=&#34;https://webauthn.io/&#34;&gt;https://webauthn.io/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #webauthn --&gt;&#xA;&lt;!-- {BearID:BB8256C9-49B9-4C62-8069-D9A505D7B489-49872-0000270E8378E05B} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>tmux 3.3 and macOS command line editing issue</title>
      <link>https://mcjones.ca/docs/tmux-3.3-and-macos-command-line-editing-issue/</link>
      <pubDate>Mon, 06 Jun 2022 02:58:56 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/tmux-3.3-and-macos-command-line-editing-issue/</guid>
      <description>&lt;h1 id=&#34;tmux-33-and-macos-command-line-editing-issue&#34;&gt;tmux 3.3 and macOS command line editing issue&lt;/h1&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;micheal@~ % clear&#xA;terminals database is inaccessible&#xA;micheal@~ % echo $TERM&#xA;tmux-256color&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;a href=&#34;https://github.com/tmux/tmux/issues/3203&#34;&gt;https://github.com/tmux/tmux/issues/3203&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://github.com/Homebrew/homebrew-core/issues/102748&#34;&gt;https://github.com/Homebrew/homebrew-core/issues/102748&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;The tl;dr is that the first release of tmux 3.3 on Homebrew had a bad default-terminal set for using it with macOS. This has been fixed by setting the following in .tmux.conf:&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;set-option -g default-terminal screen-256color&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;a href=&#34;https://github.com/Chealion/dotfiles/commit/d0adef739b54df96b60c56b2774a2a0efa752bdd&#34;&gt;https://github.com/Chealion/dotfiles/commit/d0adef739b54df96b60c56b2774a2a0efa752bdd&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #tmux #macos --&gt;&#xA;&lt;!-- {BearID:BEA39F40-ED41-4AF7-BEE7-2BF16DEF8BEE-49872-0000228C58EE9D3E} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Migrate from Go get to Go Install</title>
      <link>https://mcjones.ca/docs/migrate-from-go-get-to-go-install/</link>
      <pubDate>Mon, 06 Jun 2022 02:37:47 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/migrate-from-go-get-to-go-install/</guid>
      <description>&lt;h1 id=&#34;migrate-from-go-get-to-go-install&#34;&gt;Migrate from Go get to Go Install&lt;/h1&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://go.dev/doc/go-get-install-deprecation&#34;&gt;https://go.dev/doc/go-get-install-deprecation&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;In Go 1.17, go get was deprecated.&#xA;In Go 1.18 it was disabled.&lt;/p&gt;&#xA;&lt;p&gt;Use&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;go install github.com/user/package@latest&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;The tl;dr is use install instead of get but updating is different.&lt;/p&gt;&#xA;&lt;p&gt;Instead of &lt;code&gt;go get -u&lt;/code&gt; you will use the same install command and modify the version tag (or keep with latest)&lt;/p&gt;&#xA;&lt;!-- #public #golang --&gt;&#xA;&lt;!-- {BearID:D0A2DCBF-4895-4DBB-9298-077C88CB700E-49872-00002285414AAA31} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Beyond the Code - Company Values</title>
      <link>https://mcjones.ca/docs/beyond-the-code---company-values/</link>
      <pubDate>Thu, 26 May 2022 04:42:51 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/beyond-the-code---company-values/</guid>
      <description>&lt;h1 id=&#34;beyond-the-code---company-values&#34;&gt;Beyond the Code - Company Values&lt;/h1&gt;&#xA;&lt;p&gt;8 things from @jlengstorf&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Set clear expectations first and foremost&lt;/li&gt;&#xA;&lt;li&gt;Align incentives&lt;/li&gt;&#xA;&lt;li&gt;Be kind not nice&lt;/li&gt;&#xA;&lt;li&gt;Get good at editing&lt;/li&gt;&#xA;&lt;li&gt;Make the right thing the easy thing&lt;/li&gt;&#xA;&lt;li&gt;Keep showing up&lt;/li&gt;&#xA;&lt;li&gt;Find the joy in learning&lt;/li&gt;&#xA;&lt;li&gt;Be the tide that lifts all ships&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://jason.af/be-kind&#34;&gt;https://jason.af/be-kind&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #coaching --&gt;&#xA;&lt;!-- {BearID:45811529-B2E4-46D0-853C-D172EF6737CF-49872-0000101D0703A5F1} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>How to translate a name from _base back to it&#39;s original value?</title>
      <link>https://mcjones.ca/docs/how-to-translate-a-name-from-_base-back-to-its-original-value/</link>
      <pubDate>Tue, 03 May 2022 15:54:00 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/how-to-translate-a-name-from-_base-back-to-its-original-value/</guid>
      <description>&lt;h1 id=&#34;how-to-translate-a-name-from-_base-back-to-its-original-value&#34;&gt;How to translate a name from _base back to it&amp;rsquo;s original value?&lt;/h1&gt;&#xA;&lt;p&gt;Can we or is it a one way hash?&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;NAME=$(echo -n IMAGE_ID | openssl dgst -sha1)&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;SHA1 = one way hash&lt;/p&gt;&#xA;&lt;!-- #public #openstack #nova --&gt;&#xA;&lt;!-- {BearID:981AA2D7-E68B-4D45-BE6E-E3059841C1BA-21964-000023CCDBF53421} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>The Star</title>
      <link>https://mcjones.ca/docs/the-star/</link>
      <pubDate>Sun, 01 May 2022 17:40:07 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/the-star/</guid>
      <description>&lt;h1 id=&#34;the-star&#34;&gt;The Star&lt;/h1&gt;&#xA;&lt;p&gt;By Arthur C. Clarke&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://sites.uni.edu/morgans/astro/course/TheStar.pdf&#34;&gt;https://sites.uni.edu/morgans/astro/course/TheStar.pdf&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Discovered thanks to a tweet from Bynkii:&#xA;&lt;a href=&#34;https://twitter.com/bynkii/status/1520601326635433984&#34;&gt;https://twitter.com/bynkii/status/1520601326635433984&lt;/a&gt;&lt;br&gt;&#xA;Was a quote tweet of&#xA;&lt;a href=&#34;https://twitter.com/bookishseawitch/status/1519692127801860096&#34;&gt;https://twitter.com/bookishseawitch/status/1519692127801860096&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Short story that will haunt people. Great story.&lt;/p&gt;&#xA;&lt;!-- #public #short-stories --&gt;&#xA;&lt;!-- {BearID:29F54D37-7762-4AB4-BAAB-2E1FCAFD5304-63193-00000A5DB327DC88} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Pedestrian Infodump</title>
      <link>https://mcjones.ca/docs/pedestrian-infodump/</link>
      <pubDate>Thu, 10 Mar 2022 15:36:51 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/pedestrian-infodump/</guid>
      <description>&lt;h1 id=&#34;pedestrian-infodump&#34;&gt;Pedestrian Infodump&lt;/h1&gt;&#xA;&lt;p&gt;I apologize for the length of the thread - it’s a bit of an info dump and if there’s any information I have that is out of date, please do let me know. I don’t want to be sharing incorrect information.&lt;/p&gt;&#xA;&lt;p&gt;The tl;dr is the Province, the police, and to a much lesser extent the City are doing a poor job at making data open and accessible when it comes to this topic. Contacting 311 or the Police should be great if you want the data and know how to map it. Not so great if you want to understand or share information.&lt;/p&gt;&#xA;&lt;p&gt;The canonical list lands and lives with &lt;a href=&#34;https://twitter.com/ABTransComm&#34;&gt;@ABTransComm&lt;/a&gt;. &lt;a href=&#34;https://twitter.com/calgarypolice&#34;&gt;@CalgaryPolice&lt;/a&gt; are the ones who will create the incident details and their system will send it to the provincial database. There is a delay on items depending on an investigation.&lt;/p&gt;&#xA;&lt;p&gt;The folks at the City who write the pedestrian strategy reports get the information for the year from the police service. This information can be requested via &lt;a href=&#34;https://twitter.com/calgarypolice&#34;&gt;@CalgaryPolice&lt;/a&gt; ’s “Research Request Form” but is NOT open data.&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://twitter.com/yyctransport&#34;&gt;@yyctransport&lt;/a&gt;’s data and the data available at data.calgary.ca ultimately is limited to the folks at the Traffic Management Centre (&lt;a href=&#34;http://calgary.ca/Transportation/Roads/Pages/Traffic/Traffic-management/Traffic-management.aspx&#34;&gt;http://calgary.ca/Transportation/Roads/Pages/Traffic/Traffic-management/Traffic-management.aspx&lt;/a&gt;) knowing and recording an incident’s details. They are however primarily focused on traffic flow, so as such many incidents can be missed.&lt;/p&gt;&#xA;&lt;p&gt;So this all comes back to - this data is being recorded but ultimately is not being made available. I know both &lt;a href=&#34;https://twitter.com/mattdrance&#34;&gt;@mattdrance&lt;/a&gt; in Edmonton and I have asked for &lt;a href=&#34;https://twitter.com/ABTransComm&#34;&gt;@ABTransComm&lt;/a&gt; to add this information to &lt;a href=&#34;https://open.alberta.ca&#34;&gt;https://open.alberta.ca&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Ultimately the most information has come whenever someone has FOIP’d this information and got a point in time snapshot from &lt;a href=&#34;https://twitter.com/calgarypolice&#34;&gt;@CalgaryPolice&lt;/a&gt;  - including Bike Calgary, &lt;a href=&#34;https://twitter.com/tshowell&#34;&gt;@tshowell&lt;/a&gt;, and others over the years.&lt;/p&gt;&#xA;&lt;p&gt;Another source I’ve had to use is hoping numbers you’re wondering about can be found summarized in the Step Forward Reports presented to council. Knowing what report to look for and when it comes to council is another major barrier.&lt;/p&gt;&#xA;&lt;p&gt;The report comes (came?) to committee in Decembers where it went to T&amp;amp;T (now known as Infra &amp;amp; Planning), but I don’t remember seeing one at the end of 2021 and can not find it.&lt;/p&gt;&#xA;&lt;p&gt;At &lt;a href=&#34;https://www.calgary.ca/ca/city-clerks/legislative-services/agenda-minutes-search.html&#34;&gt;https://www.calgary.ca/ca/city-clerks/legislative-services/agenda-minutes-search.html&lt;/a&gt;  search for “Step Forward” (2016/2017 name) or “Safer Mobility Plan Annual Report” for years since then.&lt;/p&gt;&#xA;&lt;p&gt;General Links:&lt;br&gt;&#xA;Alberta Vehicle Stats: &lt;a href=&#34;https://www.alberta.ca/collision-vehicle-licence-statistics.aspx&#34;&gt;https://www.alberta.ca/collision-vehicle-licence-statistics.aspx&lt;/a&gt;&lt;br&gt;&#xA;Alberta Collision Stats: &lt;a href=&#34;https://open.alberta.ca/publications/0844-7985&#34;&gt;https://open.alberta.ca/publications/0844-7985&lt;/a&gt; (last updated with 2018 stats)&lt;br&gt;&#xA;Calgary Herald / @tshowell 2016: &lt;a href=&#34;https://calgaryherald.com/news/local-news/cost-of-pedestrian-collisions-too-high-to-ignore-say-calgary-police&#34;&gt;https://calgaryherald.com/news/local-news/cost-of-pedestrian-collisions-too-high-to-ignore-say-calgary-police&lt;/a&gt;&lt;br&gt;&#xA;Calgary Traffic Incidents: &lt;a href=&#34;https://data.calgary.ca/Transportation-Transit/Traffic-Incidents/35ra-9556&#34;&gt;https://data.calgary.ca/Transportation-Transit/Traffic-Incidents/35ra-9556&lt;/a&gt;&lt;br&gt;&#xA;Number of pedestrian incidents visualization based on above: &lt;a href=&#34;https://data.calgary.ca/Transportation-Transit/Timeline-of-Incidents-involving-pedestrians/qm96-zrf3&#34;&gt;https://data.calgary.ca/Transportation-Transit/Timeline-of-Incidents-involving-pedestrians/qm96-zrf3&lt;/a&gt;&lt;br&gt;&#xA;PedDownYYC’s Code and caveats: &lt;a href=&#34;https://github.com/chealion/peddown&#34;&gt;https://github.com/chealion/peddown&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #peddown --&gt;&#xA;&lt;!-- {BearID:4CE2766C-8AD5-4040-BFEE-B99E5962A86E-36523-000031C8AA4DA2CF} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Homebrew and Casks</title>
      <link>https://mcjones.ca/docs/homebrew-and-casks/</link>
      <pubDate>Sat, 25 Dec 2021 02:33:03 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/homebrew-and-casks/</guid>
      <description>&lt;h1 id=&#34;homebrew-and-casks&#34;&gt;Homebrew and Casks&lt;/h1&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;brew update&#xA;brew upgrade&#xA;brew outdated&#xA;&#xA;&amp;lt;!-- #List outdated casks --&amp;gt;&#xA;brew outdated --cask --greedy&#xA;&#xA;brew upgrade --cask &amp;lt;name&amp;gt; -f&#xA;&#xA;for i in $(brew outdated --cask --greedy | awk &amp;#39;{ print $1 }&amp;#39;); do brew upgrade --cask ${i}; done&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;!-- #public #homebrew #macos --&gt;&#xA;&lt;!-- {BearID:D78A5184-D038-438C-8299-C3F365537BA3-29797-000143A8642B5BAC} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Pearl vs Loose Leaf</title>
      <link>https://mcjones.ca/docs/pearl-vs-loose-leaf/</link>
      <pubDate>Sun, 14 Nov 2021 00:59:12 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/pearl-vs-loose-leaf/</guid>
      <description>&lt;h1 id=&#34;pearl-vs-loose-leaf&#34;&gt;Pearl vs Loose Leaf&lt;/h1&gt;&#xA;&#xA;&#xA;&#xA;  &lt;blockquote&gt;&#xA;    &lt;p&gt;these pearls don’t fully unravel after one brew, which means this process can be repeated 2-3 more times. So inherently, you’re receiving more than twice the value per ounce for pearled tea compared to other loose-leaf teas,&lt;/p&gt;&#xA;&#xA;  &lt;/blockquote&gt;&#xA;&#xA;&lt;p&gt;&lt;a href=&#34;https://www.hackberrytea.com/blogs/tea-education/the-costs-benefits-of-pearl-tea&#34;&gt;https://www.hackberrytea.com/blogs/tea-education/the-costs-benefits-of-pearl-tea&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #recipe #tea --&gt;&#xA;&lt;!-- {BearID:9C40F8A1-6115-4CF4-B7E8-2372C9983052-13691-00009410F4BB82F6} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Instant Pot Pork Tenderloin Bah Ku Teh</title>
      <link>https://mcjones.ca/docs/instant-pot-pork-tenderloin-bah-ku-teh/</link>
      <pubDate>Mon, 01 Nov 2021 02:24:18 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/instant-pot-pork-tenderloin-bah-ku-teh/</guid>
      <description>&lt;h1 id=&#34;instant-pot-pork-tenderloin-bah-ku-teh&#34;&gt;Instant Pot Pork Tenderloin Bah Ku Teh&lt;/h1&gt;&#xA;&lt;p&gt;Mix of &lt;a href=&#34;https://www.thekitchn.com/instant-pot-pork-tenderloin-22948815&#34;&gt;https://www.thekitchn.com/instant-pot-pork-tenderloin-22948815&lt;/a&gt;&#xA;and&#xA;&lt;a href=&#34;https://www.tastingtable.com/cook/recipes/bak-kut-teh-recipe-pork-rib-soup&#34;&gt;https://www.tastingtable.com/cook/recipes/bak-kut-teh-recipe-pork-rib-soup&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Designed to be modifiable&lt;/p&gt;&#xA;&lt;h2 id=&#34;ingredients&#34;&gt;Ingredients&lt;/h2&gt;&#xA;&lt;p&gt;2 pork tenderloins (1 to 1.5 lbs each)&lt;br&gt;&#xA;2 Tbsp oil&lt;/p&gt;&#xA;&lt;h3 id=&#34;dry-rub&#34;&gt;Dry Rub&lt;/h3&gt;&#xA;&lt;p&gt;1.5 tsp thyme&lt;br&gt;&#xA;1 tsp salt&lt;br&gt;&#xA;3/4 tsp oregano&lt;br&gt;&#xA;3/4 tsp onion powder&lt;/p&gt;&#xA;&lt;h3 id=&#34;soup&#34;&gt;Soup&lt;/h3&gt;&#xA;&lt;p&gt;1 package chicken stock (~1L)&lt;br&gt;&#xA;2 Tbsp ground white pepper&lt;br&gt;&#xA;1 Tbsp ground black pepper&lt;br&gt;&#xA;1 tsp salt&lt;br&gt;&#xA;4 whole star anise&lt;br&gt;&#xA;1 tsp ground cinnamon&lt;br&gt;&#xA;2 heads of garlic, crushed&lt;br&gt;&#xA;6 Tbsp soy sauce&lt;/p&gt;&#xA;&lt;h2 id=&#34;directions&#34;&gt;Directions&lt;/h2&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Combine dry rub ingredients in small bowl&lt;/li&gt;&#xA;&lt;li&gt;Pat dry pork tenderloins and sprinkle rub on tenderloins&lt;/li&gt;&#xA;&lt;li&gt;Heat Instant Pot with Sauté function&lt;/li&gt;&#xA;&lt;li&gt;Add vegetable oil and stir to coat insert&lt;/li&gt;&#xA;&lt;li&gt;Add tenderloins as a single layer and cook until browned on the bottom (~4-5 minutes)&lt;/li&gt;&#xA;&lt;li&gt;Flip tenderloins and brown other side (4-5 minutes)&lt;/li&gt;&#xA;&lt;li&gt;Remove tenderloins&lt;/li&gt;&#xA;&lt;li&gt;Add soup ingredients to oil and juices still in insert. Scrape any browned bits to avoid sticking. Turn off Sauté function&lt;/li&gt;&#xA;&lt;li&gt;Put tenderloins back in and Pressure Cook under High pressure for 6 minutes&lt;/li&gt;&#xA;&lt;li&gt;When time is down, let naturally release pressure (~5 minutes) and then release any left over temperature&lt;/li&gt;&#xA;&lt;li&gt;Confirm tenderloin is at least 145 F (63 C). If not, close lid and wait 2 minutes.&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;!-- #recipe #public #instant-pot --&gt;&#xA;&lt;!-- {BearID:4413C35B-AAB7-4DA0-BFE8-845D747EECC3-1207-00015D9FD34DDD3A} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Instant Pot Air Fryer Notes</title>
      <link>https://mcjones.ca/docs/instant-pot-air-fryer-notes/</link>
      <pubDate>Sun, 12 Sep 2021 03:03:37 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/instant-pot-air-fryer-notes/</guid>
      <description>&lt;h1 id=&#34;instant-pot-air-fryer-notes&#34;&gt;Instant Pot Air Fryer Notes&lt;/h1&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://instantpot.com/instantpot-cooking-time/&#34;&gt;https://instantpot.com/instantpot-cooking-time/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;sausage&#34;&gt;Sausage&lt;/h2&gt;&#xA;&lt;p&gt;Single layer 400 F - 8-12 min&lt;br&gt;&#xA;Defrosted first.&lt;/p&gt;&#xA;&lt;h2 id=&#34;bacon&#34;&gt;Bacon&lt;/h2&gt;&#xA;&lt;p&gt;400 F - 15-20 min. Stir with tongs every 3-5 min&lt;/p&gt;&#xA;&lt;h2 id=&#34;croquettes&#34;&gt;Croquettes&lt;/h2&gt;&#xA;&lt;p&gt;Frozen: 400F - 15 min. Flip halfway&lt;br&gt;&#xA;Fresh: 400F - 8-10 min&lt;/p&gt;&#xA;&lt;h2 id=&#34;salmon&#34;&gt;Salmon&lt;/h2&gt;&#xA;&lt;p&gt;390 7 min&lt;/p&gt;&#xA;&lt;p&gt;Skin side up on parchment paper&lt;/p&gt;&#xA;&lt;h2 id=&#34;green-onion-pancakes&#34;&gt;Green Onion Pancakes&lt;/h2&gt;&#xA;&lt;p&gt;Cook to defrost and then move to top to crisp:&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Put frozen pancake in foil in bottom of basket. 7 min 380 F&lt;/li&gt;&#xA;&lt;li&gt;Move pancake to metal topper and put new frozen pancake in foil. 7 min 380 F. Flip top pancake at half way mark.&lt;/li&gt;&#xA;&lt;li&gt;Repeat until done&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;h2 id=&#34;brussel-sprouts&#34;&gt;Brussel Sprouts&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Toss cut in half sprouts with oil, salt, pepper.&lt;/li&gt;&#xA;&lt;li&gt;20-25 minutes in basket at 400F&lt;/li&gt;&#xA;&lt;li&gt;Stir at the 10, 15, and 20 min marks&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;steak&#34;&gt;Steak&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://instantpot.com/blogs/recipes/air-fried-rib-eye-steak&#34;&gt;https://instantpot.com/blogs/recipes/air-fried-rib-eye-steak&lt;/a&gt;&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Place the steaks onto a cutting board. Coat both sides of each of each steak with olive oil and season well with salt, pepper, and garlic powder.&lt;/li&gt;&#xA;&lt;li&gt;Preheat the Instant Pot to 400°F / 205°C and set the time to 8 minutes. Add the steaks to the heated air fryer basket.&lt;/li&gt;&#xA;&lt;li&gt;Air Fry for 4 minutes.&lt;/li&gt;&#xA;&lt;li&gt;Flip the steaks and add butter to each one. Air Fry for an additional 4 minutes.&lt;/li&gt;&#xA;&lt;li&gt;Let the steaks rest for 5 minutes before serving.&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;!-- #public #recipe #instant-pot --&gt;&#xA;&lt;!-- {BearID:4548592C-B9B9-455D-81C6-2D9396D0FAB1-62551-000040E5DB1D7633} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>12th Ave Cycle Track Progress Thread</title>
      <link>https://mcjones.ca/docs/12th-ave-cycle-track-progress-thread/</link>
      <pubDate>Thu, 09 Sep 2021 17:18:23 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/12th-ave-cycle-track-progress-thread/</guid>
      <description>&lt;h1 id=&#34;12th-ave-cycle-track-progress-thread&#34;&gt;12th Ave Cycle Track Progress Thread&lt;/h1&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://twitter.com/Chealion/status/1417270294935347220&#34;&gt;https://twitter.com/Chealion/status/1417270294935347220&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #sunalta #public --&gt;&#xA;&lt;!-- {BearID:DAEAE04B-462B-4869-A793-A3212E2CF8F9-56394-00021FCC97D3B58E} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Curbing Traffic</title>
      <link>https://mcjones.ca/docs/curbing-traffic/</link>
      <pubDate>Sun, 22 Aug 2021 16:14:40 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/curbing-traffic/</guid>
      <description>&lt;h1 id=&#34;curbing-traffic&#34;&gt;Curbing Traffic&lt;/h1&gt;&#xA;&lt;p&gt;Melissa Bruntlett and Chris Bruntlett&lt;/p&gt;&#xA;&lt;h2 id=&#34;quotes&#34;&gt;Quotes&lt;/h2&gt;&#xA;&lt;p&gt;“It’s about refusing to sacrifice vast amounts of the public realm to the private automobile; instead reserving space for commerce, community, and social connection. The ubiquitous bicycles are simply a by-product of that larger process; a tool to achieve the end goal of what policy makers call an autoluw (low car or nearly car free) city.”&#xA;P.4&lt;/p&gt;&#xA;&lt;h2 id=&#34;points&#34;&gt;Points&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Roads make our cities archipelagos - a series of islands.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;!-- #book #public #urbanism --&gt;&#xA;&lt;!-- {BearID:4F9BE58F-55FB-48B2-8A68-BD24890627EE-36121-00002618B3B42252} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Chrome - Save Webpage as PNG</title>
      <link>https://mcjones.ca/docs/chrome---save-webpage-as-png/</link>
      <pubDate>Tue, 27 Jul 2021 05:34:23 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/chrome---save-webpage-as-png/</guid>
      <description>&lt;h1 id=&#34;chrome---save-webpage-as-png&#34;&gt;Chrome - Save Webpage as PNG&lt;/h1&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Inspect Element to bring up dev tools&lt;/li&gt;&#xA;&lt;li&gt;Command-Shift-P to “Run Command” (found under three dots)&lt;/li&gt;&#xA;&lt;li&gt;Type screenshot&lt;/li&gt;&#xA;&lt;li&gt;Capture Full Size Screenshot&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;!-- #public #chrome --&gt;&#xA;&lt;!-- {BearID:33A73CDA-9996-4C0D-981F-DC4AB259C47C-7395-000000671F4C0C89} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Best Board Games Stores in Calgary</title>
      <link>https://mcjones.ca/docs/best-board-games-stores-in-calgary/</link>
      <pubDate>Fri, 27 Nov 2020 20:57:14 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/best-board-games-stores-in-calgary/</guid>
      <description>&lt;h1 id=&#34;best-board-games-stores-in-calgary&#34;&gt;Best Board Games Stores in Calgary&lt;/h1&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;The Sentry Box&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Sunalta&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;Discovery Hut&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Chinook and Market Mall&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;Under The Mountain Games&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Brentwood&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;ShoeBox Games&#xA;&lt;ul&gt;&#xA;&lt;li&gt;509 McKnight Blvd NE&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;If you have to go online - thank you folks on Reddit: &lt;a href=&#34;https://www.reddit.com/r/bgdealscanada/comments/jlib40/canadian_boardgame_stores/&#34;&gt;https://www.reddit.com/r/bgdealscanada/comments/jlib40/canadian_boardgame_stores/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #calgary --&gt;&#xA;&lt;!-- {BearID:76AEE7DE-880C-4DFE-805D-F9587470AD96-11900-00030C9660171DAF} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Kill Chains</title>
      <link>https://mcjones.ca/docs/kill-chains/</link>
      <pubDate>Tue, 25 Aug 2020 20:24:43 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/kill-chains/</guid>
      <description>&lt;h1 id=&#34;kill-chains&#34;&gt;Kill Chains&lt;/h1&gt;&#xA;&lt;p&gt;“a military concept related to the structure of an attack” - Wikipedia&lt;/p&gt;&#xA;&lt;h2 id=&#34;lockheeds-cyber-kill-chain&#34;&gt;Lockheed’s Cyber Kill Chain:&lt;/h2&gt;&#xA;&lt;p&gt;The steps a cyberattack always ends up taking&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Reconnaissance&lt;/p&gt;&#xA;&lt;p&gt;Email Addresses, info&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Weaponization&lt;/p&gt;&#xA;&lt;p&gt;Exploit creation&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Delivery&lt;/p&gt;&#xA;&lt;p&gt;Phishing, USB stick, etc.&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Exploitation&lt;/p&gt;&#xA;&lt;p&gt;Exploit vulnerability&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Installation&lt;/p&gt;&#xA;&lt;p&gt;Install malware&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Command and Control&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;Actions on Objectives&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;p&gt;Defensive courses of action can be taken against these phases:[14]&lt;/p&gt;&#xA;&lt;p&gt;Detect: determine whether an attacker is poking around&#xA;Deny: prevent information disclosure and unauthorized access&#xA;Disrupt: stop or change outbound traffic (to attacker)&#xA;Degrade: counter-attack command and control&#xA;Deceive: interfere with command and control&#xA;Contain: network segmentation changes&lt;/p&gt;&#xA;&lt;p&gt;Biggest limitation to this approach is that it does not consider insider threats and lends itself to approaching things as only coming from outside the firewall vs zero trust or other approaches.&lt;/p&gt;&#xA;&lt;p&gt;——&lt;/p&gt;&#xA;&lt;h2 id=&#34;mitre-attck&#34;&gt;MITRE ATT&amp;amp;CK&lt;/h2&gt;&#xA;&lt;p&gt;The ATT&amp;amp;CK framework is more complex than the linear one from Lockheed and has more steps:&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Initial Access - Used to gain an initial foothold within a network&lt;/li&gt;&#xA;&lt;li&gt;Execution - Technique that results on the execution of code on a local or remote system&lt;/li&gt;&#xA;&lt;li&gt;Persistence - Method used to maintain a presence on the system&lt;/li&gt;&#xA;&lt;li&gt;Privilege Escalation - Result of actions used to gain higher level of permission&lt;/li&gt;&#xA;&lt;li&gt;Defense Evasion - Method used to evade detection or security defenses&lt;/li&gt;&#xA;&lt;li&gt;Credentialed Access - Use of legitimate credential to access system&lt;/li&gt;&#xA;&lt;li&gt;Discovery - Post-compromise technique used to gain internal knowledge of system&lt;/li&gt;&#xA;&lt;li&gt;Lateral Movement - Movement from one system over the network to another&lt;/li&gt;&#xA;&lt;li&gt;Collection - Process of gathering information, such as files, prior to exfiltration&lt;/li&gt;&#xA;&lt;li&gt;Command and Control - Maintaining communication within targeted network&lt;/li&gt;&#xA;&lt;li&gt;Exfiltration - Discovery and removal of sensitive information from a system&lt;/li&gt;&#xA;&lt;li&gt;Impact - Techniques used to disrupt business and operational processes[17]&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;h2 id=&#34;unified-kill-chain&#34;&gt;Unified Kill Chain&lt;/h2&gt;&#xA;&lt;p&gt;Combines both of the above into 18 steps&#xA;&lt;a href=&#34;https://en.wikipedia.org/wiki/Kill_chain#/media/File:The_Unified_Kill_Chain.png&#34;&gt;https://en.wikipedia.org/wiki/Kill_chain#/media/File:The_Unified_Kill_Chain.png&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #security --&gt;&#xA;&lt;!-- {BearID:090B5FC9-C301-4D77-81C9-10DEA29794D1-5563-000003A3D605FA71} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Bulb Comparisons</title>
      <link>https://mcjones.ca/docs/bulb-comparisons/</link>
      <pubDate>Wed, 05 Aug 2020 18:18:34 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/bulb-comparisons/</guid>
      <description>&lt;h1 id=&#34;bulb-comparisons&#34;&gt;Bulb Comparisons&lt;/h1&gt;&#xA;&lt;p&gt;Incandescent, brightness, LED wattage, CFL wattage&lt;/p&gt;&#xA;&lt;p&gt;40W:&#x9;400-500 Lumens&#x9;&#x9;6-7W&#x9;&#x9;8-12W&lt;br&gt;&#xA;60W:&#x9;650-850 Lumens&#x9;&#x9;7-10W&#x9;&#x9;13-18W&lt;br&gt;&#xA;100W:&#x9;1450-1700 Lumens&#x9;14-20W&#x9;&#x9;23-30W&lt;/p&gt;&#xA;&lt;p&gt;Lower wattage numbers are what you normally see.&lt;/p&gt;&#xA;&lt;p&gt;7 / 13 / 60&lt;br&gt;&#xA;14 / 23 / 100&lt;/p&gt;&#xA;&lt;!-- #public #household --&gt;&#xA;&lt;!-- {BearID:214150F0-9FB9-43C1-A45F-AD6E88F5620D-4629-00064D642E7FEFEC} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Toasted Tuna Buns</title>
      <link>https://mcjones.ca/docs/toasted-tuna-buns/</link>
      <pubDate>Thu, 09 Jul 2020 04:34:34 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/toasted-tuna-buns/</guid>
      <description>&lt;h1 id=&#34;toasted-tuna-buns&#34;&gt;Toasted Tuna Buns&lt;/h1&gt;&#xA;&lt;h2 id=&#34;ingredients&#34;&gt;Ingredients&lt;/h2&gt;&#xA;&lt;p&gt;8 stalks celery&lt;br&gt;&#xA;1 medium onion&lt;br&gt;&#xA;3 cans chunked tuna (drained)&lt;br&gt;&#xA;1/2 jar mayo&lt;br&gt;&#xA;1/4 lemon&lt;br&gt;&#xA;1 block marble cheese (grated)&lt;br&gt;&#xA;Spices to taste&lt;/p&gt;&#xA;&lt;h2 id=&#34;directions&#34;&gt;Directions&lt;/h2&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Mince/chop onion and celery into small pieces&lt;/li&gt;&#xA;&lt;li&gt;Add tuna, mayo and grated cheese. Mix well&lt;/li&gt;&#xA;&lt;li&gt;Add squeeze of lemon&lt;/li&gt;&#xA;&lt;li&gt;Add spices (ground pepper) and mix&lt;/li&gt;&#xA;&lt;li&gt;Cover buns evenly and bake at 400F for 20 minutes (until tops are golden brown)&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;!-- #recipe #public --&gt;&#xA;&lt;!-- {BearID:F47BE99B-55D7-4561-A5DE-1E649D6FB775-3487-000B5876411921C4} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Bharazi</title>
      <link>https://mcjones.ca/docs/bharazi/</link>
      <pubDate>Sun, 05 Jul 2020 18:48:50 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/bharazi/</guid>
      <description>&lt;h1 id=&#34;bharazi&#34;&gt;Bharazi&lt;/h1&gt;&#xA;&lt;p&gt;From the &lt;a href=&#34;https://ismailimail.blog/category/community-activities/calgary-stampede/&#34;&gt;Ismali Community Stampede Breakfast&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;ingredients&#34;&gt;Ingredients&lt;/h2&gt;&#xA;&lt;p&gt;1/4 cup oil&lt;br&gt;&#xA;1/2 cup fresh diced onions&lt;br&gt;&#xA;1/2 cup fresh blended tomatoes&lt;br&gt;&#xA;1/2 tsp garlic paste&lt;br&gt;&#xA;1 Tbsp green chutney (jalapeno and cilantro blended)&lt;br&gt;&#xA;1/4 tsp turmeric powder&lt;br&gt;&#xA;1/2 tsp salt&lt;br&gt;&#xA;1/4 tsp citric acid&lt;br&gt;&#xA;2 cans pigeon peas (drained and rinsed)&lt;br&gt;&#xA;1/2 cup evaporated milk&lt;br&gt;&#xA;1/2 can coconut milk&lt;br&gt;&#xA;Cilantro to garnish&lt;/p&gt;&#xA;&lt;h2 id=&#34;directions&#34;&gt;Directions&lt;/h2&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Heat pan on medium heat&lt;/li&gt;&#xA;&lt;li&gt;Add oil and allow oil to heat&lt;/li&gt;&#xA;&lt;li&gt;Add onions and cook to transparent&lt;/li&gt;&#xA;&lt;li&gt;Add tomatoes and mix&lt;/li&gt;&#xA;&lt;li&gt;Add garlic and mix&lt;/li&gt;&#xA;&lt;li&gt;Add green chutney and mix&lt;/li&gt;&#xA;&lt;li&gt;Add turmeric and mix&lt;/li&gt;&#xA;&lt;li&gt;Add salt and citric acid and mix&lt;/li&gt;&#xA;&lt;li&gt;Add pigeon peas. Mix with spices&lt;/li&gt;&#xA;&lt;li&gt;Add coconut milk and stir&lt;/li&gt;&#xA;&lt;li&gt;Once boiling, add milk. Continue stirring to avoid burning.&lt;/li&gt;&#xA;&lt;li&gt;Allow to simmer&lt;/li&gt;&#xA;&lt;li&gt;Add plenty of cilatnro&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;!-- #recipe #public --&gt;&#xA;&lt;!-- {BearID:2E8F88BC-FC06-45C4-8D71-200AEA7D52A3-3487-000A4F5C128ABED6} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Testing Sensu Checks</title>
      <link>https://mcjones.ca/docs/testing-sensu-checks/</link>
      <pubDate>Wed, 01 Apr 2020 21:02:59 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/testing-sensu-checks/</guid>
      <description>&lt;h1 id=&#34;testing-sensu-checks&#34;&gt;Testing Sensu Checks&lt;/h1&gt;&#xA;&lt;h2 id=&#34;on-machine&#34;&gt;On Machine&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;sudo -u sensu &amp;lt;check command&amp;gt;&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;It is easier to cd into the dynamic asset cache folder first:&#xA;&lt;code&gt;cd /var/cache/sensu/sensu-agent/???&lt;/code&gt; .&lt;/p&gt;&#xA;&lt;p&gt;If using the Ruby runtime:&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;[ root@sensu-proxy /var/cache/sensu/sensu-agent/ff3ba13e1a20f89eaac7613fc2c072a8a355918dbaf158b8d1565ebf02d066f3382dde872c1d80002ded762d8a3a860ccce20410b8dedb47b69fd7038e918dde/bin ] # ./ruby /var/cache/sensu/sensu-agent/75f212aab3255c5862ea84b83951097bd1ad41963714e0f5bbafd5404556b962091d5c95790b3e5f10ac9a728838887f16d84af33e4956bd2265c77d61fbda54/bin/check-dns.rb -s 199.116.232.2 -d google.ca&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;testing-filtershandlers&#34;&gt;Testing Filters/Handlers&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;curl -X POST \&#xA;-H &amp;#39;Content-Type: application/json&amp;#39; \&#xA;-d &amp;#39;{&#xA;  &amp;#34;check&amp;#34;: {&#xA;    &amp;#34;metadata&amp;#34;: {&#xA;      &amp;#34;name&amp;#34;: &amp;#34;test-critical-check-0002&amp;#34;&#xA;    },&#xA;    &amp;#34;status&amp;#34;: 2,&#xA;    &amp;#34;output&amp;#34;: &amp;#34;test-critical-check&amp;#34;,&#xA;    &amp;#34;handlers&amp;#34;: [&amp;#34;email&amp;#34;],&#xA;    &amp;#34;subscriptions&amp;#34;: [&amp;#34;honolulu&amp;#34;, &amp;#34;test&amp;#34;]&#xA;  }&#xA;}&amp;#39; \&#xA;http://127.0.0.1:3031/events &#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Run this at least 3 times to get past the standard filter&lt;/p&gt;&#xA;&lt;p&gt;And clear:&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;curl -X POST \&#xA;-H &amp;#39;Content-Type: application/json&amp;#39; \&#xA;-d &amp;#39;{&#xA;  &amp;#34;check&amp;#34;: {&#xA;    &amp;#34;metadata&amp;#34;: {&#xA;      &amp;#34;name&amp;#34;: &amp;#34;test-critical-check-0002&amp;#34;&#xA;    },&#xA;    &amp;#34;status&amp;#34;: 0,&#xA;    &amp;#34;output&amp;#34;: &amp;#34;test-critical-check&amp;#34;,&#xA;    &amp;#34;handlers&amp;#34;: [&amp;#34;email&amp;#34;],&#xA;    &amp;#34;subscriptions&amp;#34;: [&amp;#34;honolulu&amp;#34;, &amp;#34;test&amp;#34;]&#xA;  }&#xA;}&amp;#39; \&#xA;http://127.0.0.1:3031/events &#xA;&lt;/code&gt;&lt;/pre&gt;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;Jun 30 19:42:39 dair-hnl-sensu-01 sensu-backend[15708]: {&amp;#34;component&amp;#34;:&amp;#34;pipelined&amp;#34;,&amp;#34;error&amp;#34;:&amp;#34;ReferenceError: &amp;#39;honolulu&amp;#39; is not defined&amp;#34;,&amp;#34;level&amp;#34;:&amp;#34;error&amp;#34;,&amp;#34;msg&amp;#34;:&amp;#34;error executing JS&amp;#34;,&amp;#34;time&amp;#34;:&amp;#34;2020-06-30T19:42:39-06:00&amp;#34;}&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;manually-triggeringtesting-a-handler&#34;&gt;Manually Triggering/Testing a Handler&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;cd /var/cache/sensu/sensu-backend&#xA;find . -name &amp;#39;sensu-email-handler&amp;#39;&#xA;cd &amp;lt;HASH FROM ABOVE&amp;gt;/bin&#xA;&#xA;sensuctl event info ENTITY CHECK --format json | ./sensu-email-handler -f sensu@dair-atir.canarie.ca -t dair-sysadmins@cybera.ca -s smtp.cybera.ca  -i&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;other-resources&#34;&gt;Other Resources&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://docs.sensu.io/sensu-go/latest/operations/maintain-sensu/troubleshoot/#manually-execute-a-handler&#34;&gt;https://docs.sensu.io/sensu-go/latest/operations/maintain-sensu/troubleshoot/#manually-execute-a-handler&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #sensu --&gt;&#xA;&lt;!-- {BearID:1C0AFCA6-28B6-43A8-B5F8-9B143E15A225-1087-000085409E159F25} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Instant Pot Pork Tenderloin</title>
      <link>https://mcjones.ca/docs/instant-pot-pork-tenderloin/</link>
      <pubDate>Sat, 04 Jan 2020 20:16:59 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/instant-pot-pork-tenderloin/</guid>
      <description>&lt;h1 id=&#34;instant-pot-pork-tenderloin&#34;&gt;Instant Pot Pork Tenderloin&lt;/h1&gt;&#xA;&lt;p&gt;Original: &lt;a href=&#34;https://www.thekitchn.com/instant-pot-pork-tenderloin-22948815&#34;&gt;https://www.thekitchn.com/instant-pot-pork-tenderloin-22948815&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Designed to be modifiable&lt;/p&gt;&#xA;&lt;h2 id=&#34;ingredients&#34;&gt;Ingredients&lt;/h2&gt;&#xA;&lt;h3 id=&#34;dry-rub&#34;&gt;Dry Rub&lt;/h3&gt;&#xA;&lt;p&gt;1.5 tsp thyme&lt;br&gt;&#xA;1 tsp salt&lt;br&gt;&#xA;3/4 tsp oregano&lt;br&gt;&#xA;3/4 tsp onion powder&lt;/p&gt;&#xA;&lt;p&gt;Highly recommend 5 spice and ginger powder&lt;/p&gt;&#xA;&lt;h3 id=&#34;pork&#34;&gt;Pork&lt;/h3&gt;&#xA;&lt;p&gt;2 pork tenderloins (1 to 1.5 lbs each)&lt;br&gt;&#xA;2 Tbsp vegetable oil&lt;br&gt;&#xA;1 head garlic&lt;br&gt;&#xA;1/2 cup chicken broth&lt;br&gt;&#xA;1 Tbsp cornstarch&lt;br&gt;&#xA;1 Tbsp water&lt;/p&gt;&#xA;&lt;h2 id=&#34;directions&#34;&gt;Directions&lt;/h2&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Combine dry rub ingredients in small bowl&lt;/li&gt;&#xA;&lt;li&gt;Pat dry pork tenderloins and sprinkle rub on tenderloins&lt;/li&gt;&#xA;&lt;li&gt;Heat Instant Pot with Sauté function&lt;/li&gt;&#xA;&lt;li&gt;Add vegetable oil and stir to coat insert&lt;/li&gt;&#xA;&lt;li&gt;Add tenderloins as a single layer and cook until browned on the bottom (~4-5 minutes)&lt;/li&gt;&#xA;&lt;li&gt;Flip tenderloins and brown other side (4-5 minutes)&lt;/li&gt;&#xA;&lt;li&gt;Remove tenderloins&lt;/li&gt;&#xA;&lt;li&gt;Add garlic and broth to oil and juices still in insert. Scrape any browned bits to avoid sticking. Turn off Sauté function&lt;/li&gt;&#xA;&lt;li&gt;Put tenderloins back in and Pressure Cook under High pressure for 1 minute.&lt;/li&gt;&#xA;&lt;li&gt;When time is down, let naturally release pressure (~5 minutes) and then release any left over temperature&lt;/li&gt;&#xA;&lt;li&gt;Confirm tenderloin is at least 145 F (63 C). If not, close lid and wait 2 minutes.&lt;/li&gt;&#xA;&lt;li&gt;Transfer tenderloins to cutting board&lt;/li&gt;&#xA;&lt;li&gt;Combine cornstarch and water in a bowl until cornstarch is dissolved&lt;/li&gt;&#xA;&lt;li&gt;Set Instant Pot to Sauté, add cornstarch and water mixture and simmer until thickened (~2 minutes)&lt;/li&gt;&#xA;&lt;li&gt;Cut Tenderloin into 1/4 inch thick slices and serve with sauce.&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;h2 id=&#34;roast&#34;&gt;Roast&lt;/h2&gt;&#xA;&lt;p&gt;If doing a pork roast - pressure cook for 15 min per pound&lt;/p&gt;&#xA;&lt;!-- #public #instant-pot #recipe --&gt;&#xA;&lt;!-- {BearID:A1BFF276-8CC8-46DC-81C0-DF40AEF8BE53-509-0000C6A028A9C8ED} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Git subtrees</title>
      <link>https://mcjones.ca/docs/git-subtrees/</link>
      <pubDate>Tue, 13 Aug 2019 00:21:20 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/git-subtrees/</guid>
      <description>&lt;h1 id=&#34;git-subtrees&#34;&gt;Git subtrees&lt;/h1&gt;&#xA;&lt;h2 id=&#34;whats-the-problem&#34;&gt;What’s the Problem?&lt;/h2&gt;&#xA;&lt;p&gt;How do you incorporate 3rd party code that you inevitably need to tweak to fit or want to track as part of your own repository?&lt;/p&gt;&#xA;&lt;p&gt;eg. Public Puppet modules&#xA;Themes for Wordpress, Hugo, Ghost, etc.&lt;/p&gt;&#xA;&lt;h2 id=&#34;git-options&#34;&gt;Git Options&lt;/h2&gt;&#xA;&lt;p&gt;Git offers two options - submodules and subtrees.&lt;/p&gt;&#xA;&lt;h2 id=&#34;submodules&#34;&gt;Submodules&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Static&lt;/li&gt;&#xA;&lt;li&gt;Single Commit/Hash Reference&lt;/li&gt;&#xA;&lt;li&gt;Lots of overhead&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Submodules reference a single hash/commit and as such require a lot of overhead. They are completely autonomous as distinct repositories. Which means if someone updates, it’s not updated for anyone else.&lt;/p&gt;&#xA;&lt;h2 id=&#34;subtrees&#34;&gt;Subtrees&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Import a repo as a directory&lt;/li&gt;&#xA;&lt;li&gt;Changes can go to upstream or part of your repository&lt;/li&gt;&#xA;&lt;li&gt;But with flexibility comes complexity&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Subtrees meanwhile let you nest another repository as a directory. This allows you to make changes to that tree and keep those commits as part of your history while squashing the entire upstream history into a single commit. You can also update the module and keep your changes using standard git commands.&lt;/p&gt;&#xA;&lt;h2 id=&#34;example&#34;&gt;Example&lt;/h2&gt;&#xA;&lt;h3 id=&#34;importing-as-a-subtree&#34;&gt;Importing as a Subtree&lt;/h3&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;mkdir my-fancy-repo&#xA;cd my-fancy-repo&#xA;git init .&#xA;touch README&#xA;git add .&#xA;git commit -m &amp;#34;My fancy repo begins&amp;#34;&#xA;&#xA;git subtree add --prefix merge-parsers https://github.com/cybera/fortisiem-parsers master --squash&#xA;&#xA;ls -laFh&#xA;&#xA;git log --pretty&#xA;git remote -v&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Kind of easy and we’ve merged a repo into ours, and it’s not tracking upstream.&lt;/p&gt;&#xA;&lt;h3 id=&#34;tracking-subtrees&#34;&gt;Tracking Subtrees&lt;/h3&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;git remote add -f tracking-parsers https://github.com/cybera/fortisiem-parsers.git&#xA;git subtree add --prefix tracking-parsers https://github.com/cybera/fortisiem-parsers master --squash&#xA;&#xA;ls -laFh&#xA;&#xA;git log --pretty&#xA;git remote -v&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Like the merge - we can now change the files in the module and commit the changes to our repository.&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;git remote add -f &amp;lt;name&amp;gt; &amp;lt;url&amp;gt;&#xA;git subtree add --prefix &amp;lt;path&amp;gt; &amp;lt;name&amp;gt; &amp;lt;branch/tag&amp;gt; --squash&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h3 id=&#34;updating-subtrees&#34;&gt;Updating Subtrees&lt;/h3&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;git fetch tracking-parsers&#xA;git subtree pull --prefix tracking-parsers tracking-parsers master --squash&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;git subtree pull --prefix &amp;lt;path&amp;gt; &amp;lt;name&amp;gt; &amp;lt;branch/tag&amp;gt; --squash&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h3 id=&#34;pushing-changes-upstream&#34;&gt;Pushing changes upstream&lt;/h3&gt;&#xA;&lt;p&gt;This will likely require some editing in a different branch - so that you are only pushing the changes you wish to send up.&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;git subtree push --prefix tracking-parsers tracking-parsers master&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h3 id=&#34;getting-rid-of-subtrees&#34;&gt;Getting rid of subtrees&lt;/h3&gt;&#xA;&lt;p&gt;Chose the wrong subtree and want to get rid of it. It’s a bit more complicated.&lt;/p&gt;&#xA;&lt;h4 id=&#34;just-removing&#34;&gt;Just removing&lt;/h4&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;git rm path&#xA;git remote remove &amp;lt;origin&amp;gt;&#xA;git commit -m &amp;#34;Remove &amp;lt;x&amp;gt;&amp;#34;&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;And done. You do still have the history of that repo in your repo however.&lt;/p&gt;&#xA;&lt;h4 id=&#34;purging&#34;&gt;Purging&lt;/h4&gt;&#xA;&lt;p&gt;If you want to recover the disk space, it’s a lot more involved and you’ll need to use &lt;code&gt;filter-branch&lt;/code&gt; - see &lt;a href=&#34;https://stackoverflow.com/questions/26107798/how-to-remove-previously-added-git-subtree-and-its-history&#34;&gt;StackOverflow&lt;/a&gt; for the steps:&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;git filter-branch --index-filter &amp;#39;git rm --cached --ignore-unmatch -rf &amp;lt;prefix&amp;gt;&amp;#39; --prune-empty -f HEAD&#xA;git reflog expire --expire-unreachable=now --all&#xA;git gc --prune=now&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;resources&#34;&gt;Resources&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://www.atlassian.com/blog/git/alternatives-to-git-submodule-git-subtree&#34;&gt;https://www.atlassian.com/blog/git/alternatives-to-git-submodule-git-subtree&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #git #snippet --&gt;&#xA;&lt;!-- {BearID:48B64C15-6289-47D9-9B96-54BE9DD6B1F4-794-000331C3B620C14A} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Greek Yogurt (Instant Pot)</title>
      <link>https://mcjones.ca/docs/greek-yogurt-instant-pot/</link>
      <pubDate>Sun, 23 Dec 2018 21:30:25 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/greek-yogurt-instant-pot/</guid>
      <description>&lt;h1 id=&#34;greek-yogurt-instant-pot&#34;&gt;Greek Yogurt (Instant Pot)&lt;/h1&gt;&#xA;&lt;h2 id=&#34;ingredients&#34;&gt;Ingredients&lt;/h2&gt;&#xA;&lt;p&gt;4 L milk&#xA;2 Tbsp starter&lt;/p&gt;&#xA;&lt;p&gt;Or&lt;/p&gt;&#xA;&lt;p&gt;1 L milk&#xA;1.5 tsp starter&lt;/p&gt;&#xA;&lt;h2 id=&#34;instructions&#34;&gt;Instructions&lt;/h2&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;(Optional) Sterilize the pot by setting to steam for 5 min. Drain, cool off pot.&lt;/li&gt;&#xA;&lt;li&gt;Pour milk into cool pot.&lt;/li&gt;&#xA;&lt;li&gt;Push yogurt and adjust to say boil&lt;/li&gt;&#xA;&lt;li&gt;Whisk milk every 10 minutes until temperature reaches 180 F / 82 C. If necessary put on sauté (this should take 45 minutes)&lt;/li&gt;&#xA;&lt;li&gt;Remove pot and put in sink of cold water and let cool (~10 minutes)&lt;/li&gt;&#xA;&lt;li&gt;Add starter to milk&lt;/li&gt;&#xA;&lt;li&gt;Put back into Instant Pot and set to Yogurt (normal) to 8-9 hours (9 is more tangy)&lt;/li&gt;&#xA;&lt;li&gt;When done, cool and then transfer to a strainer (1 chemex filter in metal strainer works great)&lt;/li&gt;&#xA;&lt;li&gt;Let strain for 3-4 hours or overnight.&lt;/li&gt;&#xA;&lt;li&gt;Enjoy!&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;h2 id=&#34;notes&#34;&gt;Notes&lt;/h2&gt;&#xA;&lt;p&gt;Yogurt starter - plain yogurt or previous yogurt. Milk + bacteria.&lt;/p&gt;&#xA;&lt;!-- #recipe #public --&gt;&#xA;&lt;!-- {BearID:B1739830-F099-45EA-A56F-5713F07A845D-65191-000336F1637FB510} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Instant Pot Rice</title>
      <link>https://mcjones.ca/docs/instant-pot-rice/</link>
      <pubDate>Tue, 27 Nov 2018 02:29:18 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/instant-pot-rice/</guid>
      <description>&lt;h1 id=&#34;instant-pot-rice&#34;&gt;Instant Pot Rice&lt;/h1&gt;&#xA;&lt;h2 id=&#34;standard-jasmine-long-grain&#34;&gt;“Standard” Jasmine long grain&lt;/h2&gt;&#xA;&lt;p&gt;Time is the same regardless of quantity.&#xA;My preferred ratio: 1.25 to 1&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Rinse rice thoroughly&lt;/li&gt;&#xA;&lt;li&gt;Add water 1.25 times the amount of rice&lt;/li&gt;&#xA;&lt;li&gt;Set to Pressure Cook for 4 minutes&lt;/li&gt;&#xA;&lt;li&gt;When done, let sit for 10 minutes and then release pressure&lt;/li&gt;&#xA;&lt;li&gt;Serve!&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;p&gt;Optionally add:&#xA;3 Tbsp Lime juice and 3/4 cup cilantro&#xA;Use 1 can coconut milk + 1/4 cup water with 3 cups rice&#xA;Saute garlic, ginger and or oil in pot before adding rice and water.&lt;/p&gt;&#xA;&lt;h2 id=&#34;wild-rice&#34;&gt;Wild Rice&lt;/h2&gt;&#xA;&lt;p&gt;1.5 to 1&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Rinse rice thoroughly&lt;/li&gt;&#xA;&lt;li&gt;Add water 1.5 times the amount of rice&lt;/li&gt;&#xA;&lt;li&gt;Pressure Cook 15 minutes&lt;/li&gt;&#xA;&lt;li&gt;When done, let sit for 10 minutes, and then release pressure&lt;/li&gt;&#xA;&lt;li&gt;Serve!&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;h2 id=&#34;short-grain&#34;&gt;Short Grain&lt;/h2&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Rinse rice&lt;/li&gt;&#xA;&lt;li&gt;Cover with water and let sit 20 minutes&lt;/li&gt;&#xA;&lt;li&gt;Drain&lt;/li&gt;&#xA;&lt;li&gt;1:1 water to (dry) rice ratio&lt;/li&gt;&#xA;&lt;li&gt;Cook 2 min high, let natural release 10 min&lt;/li&gt;&#xA;&lt;li&gt;Remove&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;h2 id=&#34;brown&#34;&gt;Brown&lt;/h2&gt;&#xA;&lt;p&gt;25 minutes&lt;/p&gt;&#xA;&lt;!-- #recipe #public #instant-pot --&gt;&#xA;&lt;!-- {BearID:CA17CE1F-FFF5-4DCA-AD1A-140A492A9E0A-79377-00070BE9EDA4A748} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>The Expanse (Series)</title>
      <link>https://mcjones.ca/docs/the-expanse-series/</link>
      <pubDate>Sat, 24 Nov 2018 05:39:42 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/the-expanse-series/</guid>
      <description>&lt;h1 id=&#34;the-expanse-series&#34;&gt;The Expanse (Series)&lt;/h1&gt;&#xA;&lt;h2 id=&#34;chronological&#34;&gt;Chronological&lt;/h2&gt;&#xA;&lt;p&gt;✅ The Butcher of Anderson Station&lt;br&gt;&#xA;✅ Drive - how the Epstein drive came to be&lt;br&gt;&#xA;✅ The Churn - Amos backstory&lt;br&gt;&#xA;✅ 1. Leviathan Wakes (2011) - 592 pages&lt;br&gt;&#xA;✅ The Last Flight of the Cassandra (short story)&lt;br&gt;&#xA;✅ 2. Caliban’s War (2012) - 624 pages&lt;br&gt;&#xA;✅ Gods of Risk&lt;br&gt;&#xA;✅ 3. Abaddon’s Gate (2013) - 576 pages&lt;br&gt;&#xA;✅ The Vital Abyss&lt;br&gt;&#xA;✅ 4. Cibola Burn (2014) - 624 pages&lt;br&gt;&#xA;✅ 5. Nemesis Games (2015) - 576 pages&lt;br&gt;&#xA;✅ 6. Babylon’s Ashes (2016) - 576 pages&lt;br&gt;&#xA;✅ Strange Dogs&lt;br&gt;&#xA;✅ 7. Persepolis Rising (2017) - 592 pages&lt;br&gt;&#xA;✅ Auberon&lt;br&gt;&#xA;✅ 8. Tiamat’s Wrath (2019) - 576 pages&lt;br&gt;&#xA;9. Leviathan Falls (2021) - 528 pages&lt;br&gt;&#xA;The Sins of Our Father (2022)&lt;/p&gt;&#xA;&lt;p&gt;Note: Memory&amp;rsquo;s Legion will have the novellas collected.&lt;/p&gt;&#xA;&lt;p&gt;NOTE:&lt;/p&gt;&#xA;&lt;p&gt;The Vital Abyss is best read between Nemesis Games and Babylon’s Ashes for spoilers but timeline is 3.5&#xA;The Churn can be considered spoilery before Nemesis Games&lt;/p&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://www.polygon.com/22816216/expanse-leviathan-falls-ending-james-sa-corey-interview&#34;&gt;https://www.polygon.com/22816216/expanse-leviathan-falls-ending-james-sa-corey-interview&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #book --&gt;&#xA;&lt;!-- {BearID:61DA8511-7A1F-44C7-9BA8-514925B7F56B-10512-00000548DA55E23E} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Kale Chips</title>
      <link>https://mcjones.ca/docs/kale-chips/</link>
      <pubDate>Fri, 05 Oct 2018 02:06:40 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/kale-chips/</guid>
      <description>&lt;h1 id=&#34;kale-chips&#34;&gt;Kale Chips&lt;/h1&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Preheat oven to 300F&lt;/li&gt;&#xA;&lt;li&gt;Line a baking sheet with parchment paper&lt;/li&gt;&#xA;&lt;li&gt;Wash kale and pat leaves dry with paper towel. They should be dry or very close to it.&lt;/li&gt;&#xA;&lt;li&gt;Break kale into chop size pieces. Discards stems and veins (or cook another way&lt;/li&gt;&#xA;&lt;li&gt;Place kale chips closely together without overlapping on the baking sheet(s)&lt;/li&gt;&#xA;&lt;li&gt;Lightly massage with olive oil, salt, and garlic powder&lt;/li&gt;&#xA;&lt;li&gt;Cook for 10 minutes&lt;/li&gt;&#xA;&lt;li&gt;Flip kale chips&lt;/li&gt;&#xA;&lt;li&gt;Cook for 10-15 minutes more.&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;!-- #recipe #public --&gt;&#xA;&lt;!-- {BearID:5EC460F6-3B6D-448F-BA31-26D267D2CE16-70953-0006378A1A722C0E} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Reverse Sear Details</title>
      <link>https://mcjones.ca/docs/reverse-sear-details/</link>
      <pubDate>Wed, 29 Aug 2018 02:50:37 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/reverse-sear-details/</guid>
      <description>&lt;h1 id=&#34;reverse-sear-details&#34;&gt;Reverse Sear Details&lt;/h1&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://www.seriouseats.com/2017/03/how-to-reverse-sear-best-way-to-cook-steak.html&#34;&gt;The Reverse Sear Is the Best Way to Cook a Steak, Period | The Food Lab | Serious Eats&lt;/a&gt;&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Season&lt;/li&gt;&#xA;&lt;li&gt;Preheat oven to between 200 and 275 F (93 and 135 C)&lt;/li&gt;&#xA;&lt;li&gt;Place steak/burger/etc. on rack in oven until 10-15F below end temperature&lt;/li&gt;&#xA;&lt;li&gt;Heat iron skillet at high&lt;/li&gt;&#xA;&lt;li&gt;Add 1 Tbsp oil once warmed. Once starts to smoke:&lt;/li&gt;&#xA;&lt;li&gt;Sear steak/burger/etc. in skillet (~45 seconds to two minuets per side)&lt;/li&gt;&#xA;&lt;li&gt;Serve&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;p&gt;Rare: Pull at 105 (40), done at 120 (49) - 20-25 min in oven&lt;br&gt;&#xA;Medium Rare: Pull at 115 (46), done at 130 (54) - 25-30 min in oven&lt;br&gt;&#xA;Medium: Pull at 125 (52), done at 140 (60) - 30-35 in oven&lt;br&gt;&#xA;Medium Well: Pull at 135 (57), done at 150 (66) - 35-40 in oven.&lt;/p&gt;&#xA;&lt;!-- #recipe #public --&gt;&#xA;&lt;!-- {BearID:36B44FAB-1485-46D3-9B43-D26B1F2FBE08-316-00025A76ADFEA822} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Tea</title>
      <link>https://mcjones.ca/docs/tea/</link>
      <pubDate>Mon, 04 Jun 2018 20:30:33 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/tea/</guid>
      <description>&lt;h1 id=&#34;tea&#34;&gt;Tea&lt;/h1&gt;&#xA;&lt;h2 id=&#34;loose-leaf&#34;&gt;Loose Leaf&lt;/h2&gt;&#xA;&lt;p&gt;Rule of thumb: 3 grams tea to 240mL of water&lt;br&gt;&#xA;Work mug can hold 425 mL (5.3g tea)&lt;/p&gt;&#xA;&lt;p&gt;Tea Thermos at home: 450 mL? (5.5g)&lt;/p&gt;&#xA;&lt;p&gt;David’s tea scoop holds just over 5g of tea so 1 scoop with the tea thermos has been good”&lt;/p&gt;&#xA;&lt;h2 id=&#34;black&#34;&gt;Black&lt;/h2&gt;&#xA;&lt;p&gt;5.6g tea&lt;br&gt;&#xA;1 cup 98 C water (240 mL)&lt;br&gt;&#xA;3-5 minute steep&lt;/p&gt;&#xA;&lt;p&gt;88-93 (190-200F)&lt;/p&gt;&#xA;&lt;p&gt;Uses: 1. Sometimes 2.&lt;/p&gt;&#xA;&lt;h2 id=&#34;white--green&#34;&gt;White / Green&lt;/h2&gt;&#xA;&lt;p&gt;76-82 (170-180F )&lt;/p&gt;&#xA;&lt;p&gt;Japanese: 1-2 minutes&lt;br&gt;&#xA;Chinese: 2-3 minutes&lt;br&gt;&#xA;White: 2-5&lt;/p&gt;&#xA;&lt;p&gt;Usually can get 2-3 uses out of a set of green tea leaves.&lt;/p&gt;&#xA;&lt;h3 id=&#34;pearls&#34;&gt;Pearls&lt;/h3&gt;&#xA;&lt;p&gt;More reuse. Same timing.&lt;/p&gt;&#xA;&lt;h2 id=&#34;oolong&#34;&gt;Oolong&lt;/h2&gt;&#xA;&lt;p&gt;82-93 (180-200F)&lt;br&gt;&#xA;Light: 2-3&lt;br&gt;&#xA;Dark: 3-5&lt;/p&gt;&#xA;&lt;p&gt;Uses: 2-3&lt;/p&gt;&#xA;&lt;h2 id=&#34;darkherbal&#34;&gt;Dark/Herbal&lt;/h2&gt;&#xA;&lt;p&gt;100 (212F)&lt;br&gt;&#xA;5-10 minutes&lt;/p&gt;&#xA;&lt;h2 id=&#34;tea-tasting-notes&#34;&gt;Tea Tasting Notes&lt;/h2&gt;&#xA;&lt;h3 id=&#34;dragon-ball&#34;&gt;Dragon Ball&lt;/h3&gt;&#xA;&lt;p&gt;Simple, easy, not very strong&lt;/p&gt;&#xA;&lt;h3 id=&#34;jasmine-tea-imperial-pearls&#34;&gt;Jasmine Tea Imperial Pearls&lt;/h3&gt;&#xA;&lt;p&gt;Delicious&lt;/p&gt;&#xA;&lt;!-- #public #tea #recipe --&gt;&#xA;&lt;!-- {BearID:305AF6C5-BDD0-43BA-A1F8-D7FA26550619-367-0000C95674BC74AB} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Easy Crispy Waffles</title>
      <link>https://mcjones.ca/docs/easy-crispy-waffles/</link>
      <pubDate>Sat, 31 Mar 2018 04:39:59 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/easy-crispy-waffles/</guid>
      <description>&lt;h1 id=&#34;easy-crispy-waffles&#34;&gt;Easy Crispy Waffles&lt;/h1&gt;&#xA;&lt;p&gt;Original Source:&#xA;&lt;a href=&#34;http://crispywaffle.com/?p=110&#34;&gt;http://crispywaffle.com/?p=110&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Other alternatives:&#xA;&lt;a href=&#34;https://smittenkitchen.com/2013/05/essential-raised-waffles/&#34;&gt;https://smittenkitchen.com/2013/05/essential-raised-waffles/&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;http://www.thekitchn.com/recipe-overnight-yeasted-waffles-recipes-from-the-kitchn-199052&#34;&gt;http://www.thekitchn.com/recipe-overnight-yeasted-waffles-recipes-from-the-kitchn-199052&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;Makes ~12 waffles&lt;br&gt;&#xA;Use 1/3 cup&lt;br&gt;&#xA;Use more flour (300g)&lt;/p&gt;&#xA;&lt;h2 id=&#34;ingredients&#34;&gt;Ingredients&lt;/h2&gt;&#xA;&lt;p&gt;2 c flour ( ~ 300 grams)&lt;br&gt;&#xA;1.5 tsp yeast  (4 grams)&#xA;1/2 cup melted butter  (115 grams)&#xA;2 cups warm milk&lt;br&gt;&#xA;2 eggs&lt;br&gt;&#xA;2 tsp vanilla extract&lt;br&gt;&#xA;1 tbsp sugar&lt;br&gt;&#xA;1/2 ts salt&lt;/p&gt;&#xA;&lt;h2 id=&#34;directions&#34;&gt;Directions&lt;/h2&gt;&#xA;&lt;p&gt;Night before:&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Combine and whisk together dry ingredients in large bowl: flour, yeast, sugar and salt.&lt;/li&gt;&#xA;&lt;li&gt;Combine the butter and milk.&lt;/li&gt;&#xA;&lt;li&gt;Combine 1 &amp;amp; 2&lt;/li&gt;&#xA;&lt;li&gt;Whisk eggs and vanilla together&lt;/li&gt;&#xA;&lt;li&gt;Add egg/vanilla mixture to main mixture and whisk.&lt;/li&gt;&#xA;&lt;li&gt;Cover and let sit in fridge overnight or 4 hours on counter&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;p&gt;Morning:&lt;br&gt;&#xA;7. Stir batter to deflate&#xA;8. Make waffles&lt;/p&gt;&#xA;&lt;!-- #recipe #public --&gt;&#xA;&lt;!-- {BearID:F9362F59-282E-43C4-B476-2895A55B5C76-43586-000141C8DA70B73F} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Chili Goma Ebi</title>
      <link>https://mcjones.ca/docs/chili-goma-ebi/</link>
      <pubDate>Fri, 02 Mar 2018 02:49:48 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/chili-goma-ebi/</guid>
      <description>&lt;h1 id=&#34;chili-goma-ebi&#34;&gt;Chili Goma Ebi&lt;/h1&gt;&#xA;&lt;h2 id=&#34;ingredients&#34;&gt;Ingredients&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Cooked shrimp (deveined &amp;amp; shell off) ; can be thawed from frozen&lt;/li&gt;&#xA;&lt;li&gt;Seaweed flakes/nori komi furikake&lt;/li&gt;&#xA;&lt;li&gt;Sesame oil&lt;/li&gt;&#xA;&lt;li&gt;Chili sauce/flakes&lt;/li&gt;&#xA;&lt;li&gt;Green onion&lt;/li&gt;&#xA;&lt;li&gt;Mirin&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;-if desired:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Mayo/greek yogurt&lt;/li&gt;&#xA;&lt;li&gt;Avocado&lt;/li&gt;&#xA;&lt;li&gt;Sesame seeds&lt;/li&gt;&#xA;&lt;li&gt;Togaraishi&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;directions&#34;&gt;Directions&lt;/h2&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Cut shrimp into small pieces&lt;/li&gt;&#xA;&lt;li&gt;Slice green onion&lt;/li&gt;&#xA;&lt;li&gt;Mix with seaweed, sesame oil, &amp;amp; chilli to taste&lt;/li&gt;&#xA;&lt;li&gt;Add a dash of mirin&#xA;&lt;ol&gt;&#xA;&lt;li&gt;For a creamier texture (or to tone down the spiciness), add mayo or Greek yogurt&lt;/li&gt;&#xA;&lt;li&gt;If desired, chop avocado into pieces (roughly the same size of the shrimp)&lt;/li&gt;&#xA;&lt;li&gt;Add sesame seeds &amp;amp;/or togaraishi to taste&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;Mix ingredients well. Eat cold on sushi rice, or hot on regular white rice. Salt to taste&lt;/li&gt;&#xA;&lt;li&gt;Allow to rest to allow flavours to meld&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;!-- #recipe #public --&gt;&#xA;&lt;!-- {BearID:BAB20A42-348D-4BD2-B065-884AA4122458-1780-000541AD97A374F1} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>yt-dlp instructions</title>
      <link>https://mcjones.ca/docs/yt-dlp-instructions/</link>
      <pubDate>Thu, 01 Mar 2018 21:02:01 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/yt-dlp-instructions/</guid>
      <description>&lt;h1 id=&#34;yt-dlp-instructions&#34;&gt;yt-dlp instructions&lt;/h1&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;# Formats&#xA;yt-dlp -F &amp;#34;https://www.youtube.com/watch?v=DIBw9dSVKdU&amp;#34;&#xA;&#xA;# Easiest grab&#xA;yt-dlp -f bestvideo+bestaudio &amp;#34;https://www.youtube.com/watch?v=DIBw9dSVKdU&amp;#34;&#xA;&#xA;or&#xA;&#xA;# Stick with mp4/m4a&#xA;yt-dlp -f &amp;#39;bestvideo[ext=mp4]+bestaudio[ext=m4a]/bestvideo+bestaudio&amp;#39; --merge-output-format mp4 &amp;#34;https://www.youtube.com/watch?v=DIBw9dSVKdU&amp;#34;&#xA;&#xA;# Best m4a&#xA;yt-dlp -f &amp;#39;bestaudio[ext=m4a]&amp;#39; -x &amp;#34;https://www.youtube.com/watch?v=II_5jBaYmGQ&amp;#34;&#xA;&#xA;-x = extract audio&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;code&gt;yt-dlp&lt;/code&gt; has been replaced with the &lt;code&gt;yt-dlp&lt;/code&gt; fork&lt;/p&gt;&#xA;&lt;!-- #public #snippet --&gt;&#xA;&lt;!-- {BearID:72BDB959-8F4F-4432-B005-AAC34B9A8453-1780-00053142E40FEC96} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Random X to openstack CLI translations</title>
      <link>https://mcjones.ca/docs/random-x-to-openstack-cli-translations/</link>
      <pubDate>Wed, 07 Feb 2018 18:46:34 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/random-x-to-openstack-cli-translations/</guid>
      <description>&lt;h1 id=&#34;random-x-to-openstack-cli-translations&#34;&gt;Random X to openstack CLI translations&lt;/h1&gt;&#xA;&lt;p&gt;Official Doc: &lt;a href=&#34;https://docs.openstack.org/python-openstackclient/latest/cli/decoder.html&#34;&gt;https://docs.openstack.org/python-openstackclient/latest/cli/decoder.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;cinder&#34;&gt;Cinder&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;cinder reset-state&#xA;openstack volume set --state&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;keystone&#34;&gt;Keystone&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;keystone token-get&#xA;openstack token issue&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;neutron&#34;&gt;Neutron&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;neutron l3-agent-list-hosting-router&#xA;openstack network agent list --long --router &#xA;&#xA;neutron dhcp-agent-list-hosting-net&#xA;openstack network agent list --long --network&#xA;&#xA;neutron router-list-on-l3-agent&#xA;oepnstack router list --long --agents&#xA;&#xA;neutron agent-list&#xA;openstack network agent list&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;nova&#34;&gt;Nova&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;nova service-disable &#xA;openstack compute service set&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;nova boot&#xA;openstack server create&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;nova hypervisor-stats&#xA;openstack hypervisor stats show&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;nova instance-action-list&#xA;openstack server event list&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;nova reset-state&#xA;openstack server set --state&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;nova service-list&#xA;openstack compute service list&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;h2 id=&#34;swift&#34;&gt;Swift&lt;/h2&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;swift list&#xA;openstack container list&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;swift list &amp;lt;container&amp;gt;&#xA;openstack object list &amp;lt;container&amp;gt;&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;swift upload&#xA;openstack object create&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;swift download&#xA;openstack object save&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;swift stat&#xA;openstack object store account show&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;NOTE: tempurl is not in the openstackcli.&lt;/p&gt;&#xA;&lt;!-- #snippet #openstack #public --&gt;&#xA;&lt;!-- {BearID:48A0A732-A8D3-40F9-B69D-F861095B4DAE-840-000408030C93C27D} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Broiled Salmon</title>
      <link>https://mcjones.ca/docs/broiled-salmon/</link>
      <pubDate>Tue, 19 Dec 2017 03:13:42 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/broiled-salmon/</guid>
      <description>&lt;h1 id=&#34;broiled-salmon&#34;&gt;Broiled Salmon&lt;/h1&gt;&#xA;&lt;p&gt;Season salmon with salt, oil, pepper, etc. (eg. Drizzle with grapeseed oil, rub with salmon seasoning)&lt;/p&gt;&#xA;&lt;p&gt;Heat oven to 425 F and set rack so it salmon will be 6 inch from broiler.&lt;/p&gt;&#xA;&lt;p&gt;Switch to broil on HI&lt;/p&gt;&#xA;&lt;p&gt;Broil salmon until browned (5-7 minutes). If need be, remove after 5 minutes and put on lower rack for 3-4 minutes.&lt;/p&gt;&#xA;&lt;p&gt;Thermometer temperature:&lt;br&gt;&#xA;Preferred: Remove at 120&lt;br&gt;&#xA;Safe: Remove at 140. Cooked at 145&lt;/p&gt;&#xA;&lt;p&gt;Does great in a toaster oven as well.&lt;/p&gt;&#xA;&lt;p&gt;Based off of:&#xA;&lt;a href=&#34;http://www.seriouseats.com/recipes/2017/05/baked-broiled-salmon-harissa-mayonnaise.html&#34;&gt;Broiled Salmon With Chili-Lime Mayonnaise Recipe | Serious Eats&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;furikake-crusting-version&#34;&gt;Furikake Crusting Version&lt;/h2&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Preheat to 425F&lt;/li&gt;&#xA;&lt;li&gt;Season with sesame oil and salt&lt;/li&gt;&#xA;&lt;li&gt;Optionally broil skin side to crisp it first and then flip.&lt;/li&gt;&#xA;&lt;li&gt;Cover top and sides in furikake&lt;/li&gt;&#xA;&lt;li&gt;Broil 5-7 minutes. Lower rack for 3-4 minutes if it has not hit 120F&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;!-- #recipe #public --&gt;&#xA;&lt;!-- {BearID:2DEFD742-B23B-4C62-9E41-654CC68A99A0-87168-00036C16988645C3} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Cores, CPU and Disk Size from Installer</title>
      <link>https://mcjones.ca/docs/cores-cpu-and-disk-size-from-installer/</link>
      <pubDate>Wed, 05 Apr 2017 17:17:07 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cores-cpu-and-disk-size-from-installer/</guid>
      <description>&lt;h1 id=&#34;cores-cpu-and-disk-size-from-installer&#34;&gt;Cores, CPU and Disk Size from Installer&lt;/h1&gt;&#xA;&lt;p&gt;Go to Terminal and run the following:&lt;/p&gt;&#xA;&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;sysctl hw.physicalcpu&#xA;sysctl hw.memsize | awk &amp;#39;{ print $2/1024/1024/1024 &amp;#34; GB&amp;#34;}&amp;#39;&#xA;df -h&#xA;&lt;/code&gt;&lt;/pre&gt;&lt;!-- #snippet #public #macos --&gt;&#xA;&lt;!-- {BearID:9B191F56-7979-4F8C-AEE9-176CE63DBCBD-832-0002A4CD6777FFA0} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Green Onion Pancake</title>
      <link>https://mcjones.ca/docs/green-onion-pancake/</link>
      <pubDate>Fri, 31 Mar 2017 17:20:23 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/green-onion-pancake/</guid>
      <description>&lt;h1 id=&#34;green-onion-pancake&#34;&gt;Green Onion Pancake&lt;/h1&gt;&#xA;&lt;p&gt;&lt;a href=&#34;http://www.thekitchn.com/how-to-make-scallion-pancakes-cooking-lessons-from-the-kitchn-107405&#34;&gt;http://www.thekitchn.com/how-to-make-scallion-pancakes-cooking-lessons-from-the-kitchn-107405&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;ingredients&#34;&gt;Ingredients&lt;/h2&gt;&#xA;&lt;p&gt;2 1/2 cups white flour (355 grams)&lt;br&gt;&#xA;1 cup warm water&lt;br&gt;&#xA;Oil for the pancakes, such as vegetable, sesame, or shortening&lt;br&gt;&#xA;Coarse kosher salt&lt;br&gt;&#xA;1 bunch scallions&lt;br&gt;&#xA;High smoke point oil for the pan, such as vegetable, canola, or peanut oil&lt;/p&gt;&#xA;&lt;h2 id=&#34;directions&#34;&gt;Directions&lt;/h2&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Make the dough and let it rest: Mix 2 1/2 cups flour with 1 cup water until it forms a smooth dough.&lt;/li&gt;&#xA;&lt;li&gt;Knead by doubling the dough over and pressing it down repeatedly, until the dough is even more smooth and very elastic. Coat this ball of dough lightly in oil and put it back in the bowl.&lt;/li&gt;&#xA;&lt;li&gt;Cover the bowl with a damp cloth and let the dough rest for about 30 minutes.&lt;/li&gt;&#xA;&lt;li&gt;Roll out the dough: Cut the dough into 4 equal parts.&lt;/li&gt;&#xA;&lt;li&gt;Lightly oil the back of a large metal baking sheet (or a smooth stone countertop or pastry board).&lt;/li&gt;&#xA;&lt;li&gt;Roll out one part of the dough on the back of the baking sheet. Roll until it is a thin rectangle at least 12 x 9 inches.&lt;/li&gt;&#xA;&lt;li&gt;Finely chop the bunch of scallions. (I usually use the green tops and just the very top of the white parts.) Set them on your work surface along with a small bowl of kosher salt.&lt;/li&gt;&#xA;&lt;li&gt;Top the dough: Lightly brush the top of the dough with (sesame) oil, then sprinkle it evenly with chopped scallions and kosher salt.&lt;/li&gt;&#xA;&lt;li&gt;Roll up the dough: Starting from the long end, roll the dough up tightly, creating one long snake of rolled-up dough.&lt;/li&gt;&#xA;&lt;li&gt;Cut in half: Cut the dough snake in two equal parts.&lt;/li&gt;&#xA;&lt;li&gt;Coil the dough and let it rest: Take one of these halves and coil into a round dough bundle. Let it rest for at least 15 minutes and ideally longer, while you repeat this process with the rest of the dough.&lt;/li&gt;&#xA;&lt;li&gt;Roll out the coil: Pat a coiled dough bundle into a flat, smooth, round pancake. You can do this with a rolling pin or with your hands.&lt;/li&gt;&#xA;&lt;li&gt;Cook the pancake for 2 minutes: Heat a 10-inch heavy skillet or sauté pan over medium-high heat, and oil it with a drizzle of canola, vegetable, or peanut oil. When the oil shimmers, pick up the pancake dough and lay it gently in the pan. It should sizzle, but not burn. Cook for 2 minutes on one side.&lt;/li&gt;&#xA;&lt;li&gt;Flip and cook for an additional 2 minutes: Flip the pancake over with a spatula and cook for an additional 2 minutes on the other side, or until golden brown. Repeat steps 9-11 with the rest of the pancake dough coils.&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;h2 id=&#34;to-serve&#34;&gt;To Serve&lt;/h2&gt;&#xA;&lt;p&gt;Cut the pancake into wedges with a pair of kitchen scissors, and serve immediately with soy sauce or another dipping sauce.&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h1 id=&#34;edmonton-derivative&#34;&gt;Edmonton Derivative&lt;/h1&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://www.youtube.com/watch?v=D3FTJESc1GY&#34;&gt;Green Onion Cake Man - YouTube&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;ingredients-1&#34;&gt;Ingredients&lt;/h2&gt;&#xA;&lt;p&gt;4 cup flour&lt;br&gt;&#xA;1 tsp baking powder&lt;br&gt;&#xA;1/4 tsp baking soda&lt;br&gt;&#xA;2 cup water&lt;br&gt;&#xA;1/2 cup oil&lt;br&gt;&#xA;1 tsp sesame oil&lt;br&gt;&#xA;Salt to taste&lt;br&gt;&#xA;2-3 bunches green onion&lt;/p&gt;&#xA;&lt;h2 id=&#34;directions-1&#34;&gt;Directions&lt;/h2&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Mix flour, baking powder and baking soda&lt;/li&gt;&#xA;&lt;li&gt;Add water&lt;/li&gt;&#xA;&lt;li&gt;Mix into shaggy dough&lt;/li&gt;&#xA;&lt;li&gt;Cover and let sit for 30 min&lt;/li&gt;&#xA;&lt;li&gt;Put chopped onions, salt into oil and sesame oil and mix&lt;/li&gt;&#xA;&lt;li&gt;Roll out dough (consistency should be like your cheek)&lt;/li&gt;&#xA;&lt;li&gt;Pour out oil and onion onto dough.&lt;/li&gt;&#xA;&lt;li&gt;Stretch and roll (like cinnamon buns)&lt;/li&gt;&#xA;&lt;li&gt;Cut roll into 2 inch pieces&lt;/li&gt;&#xA;&lt;li&gt;Pinch edges shut, and then twist and push down.&lt;/li&gt;&#xA;&lt;li&gt;Flatten with hands and transfer onto parchment paper between them.&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;p&gt;To cook&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;On medium high heat, add some oil to pan&lt;/li&gt;&#xA;&lt;li&gt;Put pancake in the pan.&lt;/li&gt;&#xA;&lt;li&gt;Turn after golden brown&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;p&gt;—-&lt;/p&gt;&#xA;&lt;h1 id=&#34;serious-eats-1&#34;&gt;Serious Eats 1&lt;/h1&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://www.seriouseats.com/recipes/2011/04/extra-flaky-scallion-pancakes-recipe.html&#34;&gt;https://www.seriouseats.com/recipes/2011/04/extra-flaky-scallion-pancakes-recipe.html&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;ingredients-2&#34;&gt;Ingredients&lt;/h2&gt;&#xA;&lt;p&gt;2 cups (~300 grams) flour&lt;br&gt;&#xA;1 cup (250 mL) boiling water&lt;br&gt;&#xA;1/4 cup sesame oil&lt;br&gt;&#xA;2 cups thinly sliced green onions&lt;br&gt;&#xA;Kosher Salt&lt;/p&gt;&#xA;&lt;h2 id=&#34;directions-2&#34;&gt;Directions&lt;/h2&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Combine flour and 3/4 cup of boiling water. Mix well. Add more water a bit at a time until it just comes together.&lt;/li&gt;&#xA;&lt;li&gt;Transfer to counter and knead until smooth&lt;/li&gt;&#xA;&lt;li&gt;Transfer to a bowl and/or cover with a damp towel or plastic to rest for 30 minutes.&lt;/li&gt;&#xA;&lt;li&gt;Divide into 4 even pieces and roll each into a smooth ball.&lt;/li&gt;&#xA;&lt;li&gt;Roll out into a disk roughly 8” in diameter&lt;/li&gt;&#xA;&lt;li&gt;Brush sesame oil on top and season with salt.&lt;/li&gt;&#xA;&lt;li&gt;Roll up disk and twist roll into a tight spiral, tucking the end underneath&lt;/li&gt;&#xA;&lt;li&gt;Roll out again to a 8” disk&lt;/li&gt;&#xA;&lt;li&gt;Brush again with sesame oil, 1/2 cup of green onions and roll up again.&lt;/li&gt;&#xA;&lt;li&gt;Twist into a spiral and flatten gently.&lt;/li&gt;&#xA;&lt;li&gt;Re-reoll into a 7 inch disk, brush with oil and transfer to a plate or onto parchment paper for easy stacking.&lt;/li&gt;&#xA;&lt;li&gt;Repeat 5-11 with the remaining balls&lt;/li&gt;&#xA;&lt;li&gt;Grill pancakes ~2 minutes per side&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;hr&gt;&#xA;&lt;h1 id=&#34;micheal-alternative&#34;&gt;Micheal Alternative&lt;/h1&gt;&#xA;&lt;h2 id=&#34;ingredients-3&#34;&gt;Ingredients&lt;/h2&gt;&#xA;&lt;p&gt;4 cups flour (~640 grams)&lt;br&gt;&#xA;1 tsp baking powder&lt;br&gt;&#xA;1/4 tsp baking soda&lt;br&gt;&#xA;2 cup boiling water (500mL)&lt;br&gt;&#xA;1/2 cup oil&lt;br&gt;&#xA;1 tsp sesame oil&lt;br&gt;&#xA;Coarse Kosher Salt to Taste&lt;br&gt;&#xA;2 Bunches green onion (chopped)&lt;/p&gt;&#xA;&lt;p&gt;Oil for pan needs to have high smoke point.&lt;/p&gt;&#xA;&lt;h2 id=&#34;directions-3&#34;&gt;Directions&lt;/h2&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Mix the flour, baking power, and baking soda&lt;/li&gt;&#xA;&lt;li&gt;Add the water and mix/knead into a smooth dough&lt;/li&gt;&#xA;&lt;li&gt;Cover and let sit covered with a damp cloth for 30 minutes.&lt;/li&gt;&#xA;&lt;li&gt;(Optional) Combine the oil, sesame oil, salt, and chopped green onion in bowl and mix together&lt;/li&gt;&#xA;&lt;li&gt;Check dough - it should be the consistency of your cheek and then roll out. Cut into 4 parts.&lt;/li&gt;&#xA;&lt;li&gt;Roll out one of the parts until spread roughly 12 x 9 inches&lt;/li&gt;&#xA;&lt;li&gt;Brush with oil and season with salt&lt;/li&gt;&#xA;&lt;li&gt;Roll up the dough tightly (like a cinnamon bun), create one long snake of rolled up dough.&lt;/li&gt;&#xA;&lt;li&gt;Curl up and pinch edges shut.&lt;/li&gt;&#xA;&lt;li&gt;Roll out dough again until spread roughly 12 x 9 inches&lt;/li&gt;&#xA;&lt;li&gt;Top the dough by combining a quarter of the oil, green onion mix (or 1/8 cup oil, 1/4 tsp sesame oil, and green onion)&lt;/li&gt;&#xA;&lt;li&gt;Roll up the dough tightly (like a cinnamon bun), creating one long snake of rolled up dough&lt;/li&gt;&#xA;&lt;li&gt;Cut into ~2 inch pieces&lt;/li&gt;&#xA;&lt;li&gt;Pinch edges shut, and then twist and push down flat.&lt;/li&gt;&#xA;&lt;li&gt;Flatten with hands and transfer onto parchment paper placing a square of parchment paper between them.&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;h3 id=&#34;cooking&#34;&gt;Cooking&lt;/h3&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;On medium high heat, add some oil to pan&lt;/li&gt;&#xA;&lt;li&gt;Put pancake in the pan.&lt;/li&gt;&#xA;&lt;li&gt;Turn after golden brown (~2 minutes)&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;hr&gt;&#xA;&lt;h2 id=&#34;verna-banana&#34;&gt;Verna Banana&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://www.vernabanana.com/recipes/super-flaky-chinese-spring-onion-scallion-pancakes&#34;&gt;https://www.vernabanana.com/recipes/super-flaky-chinese-spring-onion-scallion-pancakes&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;ingredients-4&#34;&gt;Ingredients&lt;/h2&gt;&#xA;&lt;p&gt;300g flour&#xA;150g water&#xA;1/2 tsp salt&lt;/p&gt;&#xA;&lt;p&gt;100g spring onions, finely chopped&#xA;5 shittake mushrooms, finely chopped (optional)&#xA;50g flour&#xA;1/2 cup oil&#xA;1 tsp Chinese five spice&#xA;1 tsp salt&lt;/p&gt;&#xA;&lt;p&gt;1 Tbsp light soy sauce&#xA;1 tsp sesame oil&#xA;1 tsp rice vinegar&#xA;1 tsp chili oil&lt;/p&gt;&#xA;&lt;h2 id=&#34;directions-4&#34;&gt;Directions&lt;/h2&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;In a large bowl, combine plain flour and salt. Gradually add lukewarm water, mixing until a dough forms.&lt;/li&gt;&#xA;&lt;li&gt;Knead the dough on a floured surface for about 5-10 minutes until smooth. Cover with a damp cloth and let it rest for at least 30 minutes.&lt;/li&gt;&#xA;&lt;li&gt;In a heatproof bowl, mix chopped spring onions, shiitake mushrooms (if using), 50g plain flour, Chinese five spice, and salt.&lt;/li&gt;&#xA;&lt;li&gt;Heat up the oil until smoking and carefully pour it over the mixed aromatics. This will cook them and release a lovely fragrance. Mix thoroughly and set aside.&lt;/li&gt;&#xA;&lt;li&gt;Divide the rested dough into four pieces. Roll each piece into a thin circle (about 10-12 inches in diameter).&lt;/li&gt;&#xA;&lt;li&gt;Brush a generous layer of the filling onto the rolled-out dough. Sprinkle the filling evenly over the surface, leaving a small border around the edges.&lt;/li&gt;&#xA;&lt;li&gt;Roll the dough tightly into a log. Coil the log into a spiral shape, tucking the end underneath. Flatten gently and roll out again into a thicker pancake (about 1/2 inch thick). See video below for better demonstration.&lt;/li&gt;&#xA;&lt;li&gt;Heat a non-stick skillet over medium heat and add enough vegetable oil to cover the bottom. Once hot, add the pancake and cook for about 3-4 minutes on each side, or until golden brown and crispy. Add more oil as needed.&lt;/li&gt;&#xA;&lt;li&gt;In a small bowl, mix soy sauce, sesame oil, and rice vinegar. Stir well.&lt;/li&gt;&#xA;&lt;li&gt;Cut the pancakes into wedges and serve hot with the dipping sauce. Enjoy the flaky, crispy goodness!&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;!-- #recipe #public --&gt;&#xA;&lt;!-- {BearID:EEFFF40C-65A6-454B-BA9C-5A4A652AF161-832-000131218C3908A1} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Pre-Accident Investigation Podcast 99 - Sidney Dekker, Heaven, and a Trip to the USA</title>
      <link>https://mcjones.ca/docs/pre-accident-investigation-podcast-99---sidney-dekker-heaven-and-a-trip-to-the-usa/</link>
      <pubDate>Sat, 07 Jan 2017 02:26:56 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/pre-accident-investigation-podcast-99---sidney-dekker-heaven-and-a-trip-to-the-usa/</guid>
      <description>&lt;h1 id=&#34;pre-accident-investigation-podcast-99---sidney-dekker-heaven-and-a-trip-to-the-usa&#34;&gt;Pre-Accident Investigation Podcast 99 - Sidney Dekker, Heaven, and a Trip to the USA&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;h6 id=&#34;preaccident-investigation-podcast---papod-99---sidney-dekker-heaven-and-a-trip-to-the-usa&#34;&gt;PreAccident Investigation Podcast - PAPod 99 - Sidney Dekker, Heaven, and a Trip to the USA&lt;/h6&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+EODOkGW9c&#34;&gt;https://overcast.fm/+EODOkGW9c&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://preaccidentpodcast.podbean.com/e/papod-99-sidney-dekker-heaven-and-a-trip-to-the-usa/&#34;&gt;https://preaccidentpodcast.podbean.com/e/papod-99-sidney-dekker-heaven-and-a-trip-to-the-usa/&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast --&gt;&#xA;&lt;!-- #Pre-Accident Investigation# --&gt;&#xA;&lt;!-- {BearID:E3467189-48D6-4F55-BE1D-61D706098645-302-0000006B64701743} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>CBC Ideas - Ideas From The Trenches - The Dangerous Game</title>
      <link>https://mcjones.ca/docs/cbc-ideas---ideas-from-the-trenches---the-dangerous-game/</link>
      <pubDate>Thu, 05 Jan 2017 02:00:49 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/cbc-ideas---ideas-from-the-trenches---the-dangerous-game/</guid>
      <description>&lt;h1 id=&#34;cbc-ideas---ideas-from-the-trenches---the-dangerous-game&#34;&gt;CBC Ideas - Ideas From The Trenches - The Dangerous Game&lt;/h1&gt;&#xA;&lt;p&gt;No notes recorded&lt;/p&gt;&#xA;&lt;hr&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://overcast.fm/+cSy5wgc&#34;&gt;https://overcast.fm/+cSy5wgc&lt;/a&gt;&lt;br&gt;&#xA;&lt;a href=&#34;https://www.cbc.ca/player/play/821130307583&#34;&gt;https://www.cbc.ca/player/play/821130307583&lt;/a&gt;&lt;/p&gt;&#xA;&lt;!-- #public #podcast #CBC Ideas# --&gt;&#xA;&lt;!-- {BearID:1076713E-A2EA-47EC-B6C1-5C0BD4841750-302-0000006B645A3373} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Coffee Recipes</title>
      <link>https://mcjones.ca/docs/coffee-recipes/</link>
      <pubDate>Tue, 13 Dec 2016 06:52:19 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/coffee-recipes/</guid>
      <description>&lt;h1 id=&#34;coffee-recipes&#34;&gt;Coffee Recipes&lt;/h1&gt;&#xA;&lt;h2 id=&#34;rules-of-thumb&#34;&gt;Rules of Thumb&lt;/h2&gt;&#xA;&lt;p&gt;Base Ratio is 16 g water to 1 g water&lt;br&gt;&#xA;Chemex - 15.6:1&lt;br&gt;&#xA;Aeropress - 13:1&lt;br&gt;&#xA;V60 - 17:1&lt;/p&gt;&#xA;&lt;h2 id=&#34;baratza-settings&#34;&gt;Baratza Settings&lt;/h2&gt;&#xA;&lt;p&gt;The gotcha is that it&amp;rsquo;s tweakable for your taste and the coffee in question. You have to get good at identifying under (sour, weak, empty) and over (bitter, strong, empty) extraction. If done right, we&amp;rsquo;ll see sweetness, clarity (notes of the coffee are evident), acidity, finish&lt;/p&gt;&#xA;&lt;p&gt;AeroPress - 12&lt;br&gt;&#xA;V60 - 15&lt;br&gt;&#xA;Kone - 16&#xA;Chemex - 20&lt;br&gt;&#xA;Work Chemex - 24&#xA;French Press - 24 to 26&lt;/p&gt;&#xA;&lt;h2 id=&#34;recipes-for-japanese-iced-coffee&#34;&gt;&lt;a href=&#34;https://mcjones.ca/docs/recipes-for-japanese-style-iced-coffee/&#34;&gt;Recipes for Japanese Iced Coffee&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;h2 id=&#34;recipes-for-kone&#34;&gt;&lt;a href=&#34;https://mcjones.ca/docs/recipes-for-kone/&#34;&gt;Recipes for Kone&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;h2 id=&#34;recipes-for-chemex&#34;&gt;&lt;a href=&#34;https://mcjones.ca/docs/recipes-for-chemex/&#34;&gt;Recipes for Chemex&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;h2 id=&#34;recipes-for-aeropress&#34;&gt;&lt;a href=&#34;https://mcjones.ca/docs/recipes-for-aeropress/&#34;&gt;Recipes for AeroPress&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;h2 id=&#34;recipes-for-v60&#34;&gt;&lt;a href=&#34;https://mcjones.ca/docs/recipes-for-v60/&#34;&gt;Recipes for V60&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;h2 id=&#34;recipes-for-mugen&#34;&gt;&lt;a href=&#34;https://mcjones.ca/docs/recipes-for-mugen/&#34;&gt;Recipes for Mugen&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;h2 id=&#34;recipes-for-switch&#34;&gt;&lt;a href=&#34;https://mcjones.ca/docs/recipes-for-switch/&#34;&gt;Recipes for Switch&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;h2 id=&#34;recipes-for-suiren&#34;&gt;&lt;a href=&#34;https://mcjones.ca/docs/recipes-for-suiren&#34;&gt;Recipes for Suiren&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;h2 id=&#34;recipes-for-pegasus&#34;&gt;&lt;a href=&#34;https://mcjones.ca/docs/recipes-for-pegasus&#34;&gt;Recipes for Pegasus&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;h2 id=&#34;random-coffee-notes&#34;&gt;Random Coffee Notes&lt;/h2&gt;&#xA;&lt;p&gt;Beans are 28% by weight water soluble.&lt;/p&gt;&#xA;&lt;p&gt;Sour, Light, Weak = too coarse&#xA;Bitter, Harsh, = too fine&lt;/p&gt;&#xA;&lt;!-- #recipe --&gt;&#xA;&lt;!-- #coffee #public --&gt;&#xA;&lt;!-- {BearID:B0DA6D76-10AA-4D7B-8053-C7193DD9EB97-979-0000008FDA42C76C} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Man-Tou (not Manto)</title>
      <link>https://mcjones.ca/docs/man-tou-not-manto/</link>
      <pubDate>Tue, 13 Dec 2016 06:52:19 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/man-tou-not-manto/</guid>
      <description>&lt;h1 id=&#34;man-tou-not-manto&#34;&gt;Man-Tou (not Manto)&lt;/h1&gt;&#xA;&lt;p&gt;1 cup warm milk&lt;br&gt;&#xA;1/4 cup oil&lt;br&gt;&#xA;1 egg, beaten&lt;br&gt;&#xA;1/2 cup warm  water (125 grams)&lt;br&gt;&#xA;1/2 cup sugar (115 grams)&lt;br&gt;&#xA;5 cups flour (875 grams)&lt;br&gt;&#xA;1 Tbsp yeast (instant)&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;If using regular yeast, mix it with warm water and 1 Tbsp sugar. let sit for 10 min.&lt;/li&gt;&#xA;&lt;li&gt;Mix all liquid and egg&lt;/li&gt;&#xA;&lt;li&gt;Add liquid into flour, sugar, and instant yeast mix. Stir and knead to form dough. May have to use more flour so dough does not stick to hands. (Normally need at least an extra cup of flour)&lt;/li&gt;&#xA;&lt;li&gt;Let rise in oiled bowl, covered in a warm place for about 1-1.5 hours until doubled in size.&lt;/li&gt;&#xA;&lt;li&gt;Punch dough down, Divide into 2. Knead each portion until air bubbles are gone and texture is smooth. (Dough should be white)&lt;/li&gt;&#xA;&lt;li&gt;Roll out into a tube and cut into desired size (eg. 5cm diameter, 5cm tall) and let rise ~30 minutes.&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;p&gt;Steam for 12 minutes (Bun on parchment paper works best)&#xA;In Instant Pot: Steam button for 6 minutes&lt;/p&gt;&#xA;&lt;!-- #bread --&gt;&#xA;&lt;!-- #recipe #public --&gt;&#xA;&lt;!-- {BearID:C28B1219-9D44-46EC-860B-14E924A5764D-979-0000008FDA2F8141} --&gt;&#xA;</description>
    </item>
    
    <item>
      <title>Sourdough</title>
      <link>https://mcjones.ca/docs/sourdough/</link>
      <pubDate>Tue, 13 Dec 2016 06:48:53 +0000</pubDate><author>chealion@chealion.ca (Micheal Jones)</author>
      <guid>https://mcjones.ca/docs/sourdough/</guid>
      <description>&lt;h1 id=&#34;sourdough&#34;&gt;Sourdough&lt;/h1&gt;&#xA;&lt;p&gt;The Sourdough recipe I’ve used since ~2016.&lt;/p&gt;&#xA;&lt;p&gt;Slightly modified from Kitchn: &lt;a href=&#34;http://www.thekitchn.com/how-to-make-sourdough-bread-224367&#34;&gt;http://www.thekitchn.com/how-to-make-sourdough-bread-224367&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;2 x 430g loafs&#xA;69.1% hydration&#xA;~ hours&#xA;Overnight or ~9 hours&lt;/p&gt;&#xA;&lt;h2 id=&#34;levain&#34;&gt;Levain&lt;/h2&gt;&#xA;&lt;p&gt;75g flour&#xA;75g water&#xA;100g starter (1 Tbsp is orig - 15g or 10%?)&#xA;8-12 hours&lt;/p&gt;&#xA;&lt;p&gt;For the dough:&#xA;1 tablespoon salt&#xA;525 grams (~2 1/2 cups) water&#xA;700 grams (~5 1/2 cups) all-purpose flour or bread flour&#xA;Note: have been using 735 grams&lt;/p&gt;&#xA;&lt;p&gt;12-16 hours to make from beginning to end (excluding leaven):&#xA;Mix, 30 min, 3 hours folding, 1 hour rise, shape, 4 hour rise, 1 hour cook&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;Make sure your sourdough culture is active: If your sourdough has been in the fridge, take it out 2 to 3 days before you plan to bake. Feed it daily to make sure it&amp;rsquo;s strong and very active before you make the bread.&lt;/li&gt;&#xA;&lt;li&gt;Make the leaven (overnight): The night before you plan to make the dough, combine a tablespoon of active sourdough culture with the flour and water for the leaven. Mix thoroughly to form a thick batter. Cover and let stand at room temperature overnight, for about 12 hours.&lt;/li&gt;&#xA;&lt;li&gt;Test that the leaven is ready: Generally, if the surface of the leaven is very bubbly, it&amp;rsquo;s ready to be used. To double check, drop a small spoonful of the leaven in a cup of water; if the leaven floats, it&amp;rsquo;s ready.&lt;/li&gt;&#xA;&lt;li&gt;Dissolve the salt: Combine the salt and 50 grams (about 1/4 cup) of the water for the dough in a small bowl. Set aside, stirring every so often to make sure the salt dissolves.&lt;/li&gt;&#xA;&lt;li&gt;Mix the leaven and water: Combine the leaven and the remaining 475 grams (2 cups) of water for the dough in a large mixing bowl. Stir with a spatula or use your hands to break up and dissolve the leaven into the water. It&amp;rsquo;s OK if the leaven doesn&amp;rsquo;t fully dissolve and a few clumps remain.&lt;/li&gt;&#xA;&lt;li&gt;Add the flour: Stir the flour into the water and leaven with a spatula until you see no more visible dry flour and you&amp;rsquo;ve formed a very shaggy dough.&lt;/li&gt;&#xA;&lt;li&gt;Rest the dough (30 minutes, or up to 4 hours): Cover the bowl and let the dough rest for at least 30 minutes or up to 4 hours. This is the autolyse stage where the flour is fully absorbing the water and enzymes in the flour begin breaking down the starches and proteins.&lt;/li&gt;&#xA;&lt;li&gt;Mix in the salt: Pour the dissolved salt over the dough. Work the liquid and salt into the dough by pinching and squeezing the dough. The dough will feel quite wet and loose at this point.&lt;/li&gt;&#xA;&lt;li&gt;Begin folding the dough (2 1/2 hours): To fold the dough, grab the dough at one side, lift it up, and fold it over on top of itself. Fold the dough four times, moving clockwise from the top of the bowl (or giving the bowl a quarter turn in between folds). Let the dough rest 30 minutes, then repeat. Do this a total of 6 times, every half hour for a total of 2 1/2 hours. The dough will start out shaggy and very loose, but will gradually smooth out and become tighter as you continue folding.&lt;/li&gt;&#xA;&lt;li&gt;Let the dough rise undisturbed (30 to 60 minutes): Once you&amp;rsquo;ve finished the folds, let the dough rise undisturbed for 30 to 60 minutes, until it looks slightly puffed. This dough won&amp;rsquo;t double in size the way regular, non-sourdough breads will; it should just look larger than it did when you started.&lt;/li&gt;&#xA;&lt;li&gt;Divide the dough: Sprinkle some flour over your counter and turn the dough out on top. Work gently to avoid deflating the dough. Use a pastry scraper to divide the dough in half.&lt;/li&gt;&#xA;&lt;li&gt;Shape the dough into loose rounds: Sprinkle a little flour over each piece of dough. Use your pastry scraper to shape each one into loose rounds — this isn&amp;rsquo;t the final shaping, just a preliminary shaping to prep the dough for further shaping. Shape them into rounds by slipping your pastry scraper under the edge of the dough and then scraping it around curve of the dough, like turning left when driving. Do this a few times to build the surface tension in the dough (it makes more sense to do it than to read about it!). Flour your pastry scraper as needed to keep it from sticking to the dough.&lt;/li&gt;&#xA;&lt;li&gt;Rest the dough (20 to 30 minutes): Once both pieces of dough are shaped, let them rest for 20 to 30 minutes to relax the gluten again before final shaping.&lt;/li&gt;&#xA;&lt;li&gt;Prepare 2 bread proofing baskets, colanders, or mixing bowls: Line 2 bread proofing baskets, colanders, or mixing bowls with clean dishtowels. Dust them heavily with flour, rubbing the flour into the cloth on the bottom and up the sides with your fingers. Use more flour than you think you&amp;rsquo;ll need — it should form a thin layer over the surface of the towel.&lt;/li&gt;&#xA;&lt;li&gt;Shape the loaves again: Dust the top of one of the balls of dough with flour. Flip it over with a pastry scraper so that the floured side is against the board and the un-floured, sticky surface is up. Shape the loaf much like you folded the dough earlier: Grab the lip of the dough at the bottom, pull it gently up, then fold it over onto the center of the dough. Repeat with the right and left side of the dough. Repeat with the top of the dough, but once you&amp;rsquo;ve fold it downward, use your thumb to grab the bottom lip again and gently roll the dough right-side up. If it&amp;rsquo;s not quite a round or doesn&amp;rsquo;t seem taut to you, cup your palms around the dough and rotate it against the counter to shape it up. Repeat with the second ball of dough.&lt;/li&gt;&#xA;&lt;li&gt;Transfer to the proofing baskets: Dust the tops and sides of the shaped loaves generously with flour. Place them into the proofing baskets upside down, so the seams from shaping are on top.&lt;/li&gt;&#xA;&lt;li&gt;Let the dough rise (3 to 4 hours, or &lt;em&gt;overnight&lt;/em&gt; in the fridge): Cover the baskets loosely with plastic, or place them inside clean plastic bags. Let them rise at room temperature until they look billowy and poofy, 3 to 4 hours. Alternatively, place the covered basket in the refrigerator and let them rise slowly overnight, 12 to 15 hours. If rising overnight, bake the loaves straight from the fridge; no need to warm before baking.&lt;/li&gt;&#xA;&lt;li&gt;Heat the oven to 500°F: Place two Dutch ovens or other heavy-bottomed pots with lids in the oven, and heat to 500°F. (If you don&amp;rsquo;t have two pots, you can bake one loaf after the next.)&lt;/li&gt;&#xA;&lt;li&gt;Transfer the loaves to the Dutch ovens: Carefully remove one of the Dutch ovens from the oven and remove the lid. Tip the loaf into the pot so the seam-side is down. Repeat with the second loaf. (See Recipe Note if your loaf sticks to the basket.)&lt;/li&gt;&#xA;&lt;li&gt;Score the top of the loaf: Use a lame, sharp knife, or serrated knife to quickly score the surface of the loaves. Try to score at a slight angle, so you&amp;rsquo;re cutting almost parallel to the surface of the loaf; this gives the loaves the distinctive &amp;ldquo;shelf&amp;rdquo; along the score line.&lt;/li&gt;&#xA;&lt;li&gt;Bake the loaves for 20 minutes: Cover the pots and place them in the oven to bake for 20 minutes.&lt;/li&gt;&#xA;&lt;li&gt;Reduce the oven temperature to 450°F and bake another 10 minutes. Resist the temptation to check the loaves at this point; just reduce the oven temperature.&lt;/li&gt;&#xA;&lt;li&gt;Remove the lids: After 30 minutes of baking, remove the lids from the pots to release any remaining steam. At this point, the loaves should have &amp;ldquo;sprung&amp;rdquo; up, have a dry surface, and be just beginning to show golden color. Place the pots back in the oven, uncovered.&lt;/li&gt;&#xA;&lt;li&gt;Bake another 15 to 25 minutes. Continue baking until the crust is deeply browned; aim for just short of burnt. It might feel a bit unnatural to bake loaves this fully, but this is where a lot of the flavor and texture of the crust comes in.&lt;/li&gt;&#xA;&lt;li&gt;Cool the loaves completely: When done, lift the loaves out of the pots using a spatula. Transfer them to cooling racks to cool completely. Wait until they have cooled to room temperature before slicing.&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;h3 id=&#34;things-to-try&#34;&gt;Things to try&lt;/h3&gt;&#xA;&lt;p&gt;When in basket stage, use oil instead of flour and dust lightly with flour.&#xA;Add seeds when first combining.&lt;/p&gt;&#xA;&lt;!-- #recipe #bread #public --&gt;&#xA;&lt;!-- {BearID:14A78B6D-5553-4324-8A6B-3BBC470F46BB-979-0000008EB2BB4B1A} --&gt;&#xA;</description>
    </item>
    
  </channel>
</rss>
