<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.4.1">Jekyll</generator><link href="https://www.joshbeckman.org/feed.xml" rel="self" type="application/atom+xml" /><link href="https://www.joshbeckman.org/" rel="alternate" type="text/html" /><updated>2026-06-08T15:50:39+00:00</updated><id>https://www.joshbeckman.org/feed.xml</id><title type="html">Josh Beckman’s Organization</title><subtitle>Building in the open</subtitle><author><name>Josh Beckman</name><email>josh@joshbeckman.org</email><uri>https://www.joshbeckman.org/about</uri></author><entry><title type="html">Exit Boot Weights 🏋️</title><link href="https://www.joshbeckman.org/exercise/weight-training/18814277436" rel="alternate" type="text/html" title="Exit Boot Weights 🏋️" /><published>2026-06-06T17:30:59+00:00</published><updated>2026-06-06T17:30:59+00:00</updated><id>https://www.joshbeckman.org/exercise/weight-training/18814277436</id><content type="html" xml:base="https://www.joshbeckman.org/exercise/weight-training/18814277436"><![CDATA[<p><img src="/assets/images/TpxyCuPySJJRy4oZAQealbKbHWgRXMnQVZI-uqQqC_4-727x2048.jpg.jpeg" alt="Exit Boot Weights" /></p>

<p>Finally I got out of the boot this week so I’m trying to ease back into lifting. So nothing stressing my feet or calves. Upper body only today, but it felt great to be lifting again.</p>

<p>Barbell Bench Press
8x 205lb</p>

<p>Push Press
10x140lb</p>

<p>Cable Rope Tricep Extension
8x87.5 lb</p>

<p>Dip
5x16</p>

<p>Dumbbell Front Raise
8x35 lb</p>

<p>EZ-Bar Overhead Tricep Extension
8x40 lb</p>

<p>Sit Up
3x21</p>

<p>Unknown location (probably inside)</p>]]></content><author><name>Josh Beckman</name><email>josh@joshbeckman.org</email><uri>https://www.joshbeckman.org/about</uri></author><category term="exercise" /><category term="weight-training" /><category term="weight-training" /><summary type="html"><![CDATA[]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://www.joshbeckman.org/assets/images/TpxyCuPySJJRy4oZAQealbKbHWgRXMnQVZI-uqQqC_4-727x2048.jpg.jpeg" /><media:content medium="image" url="https://www.joshbeckman.org/assets/images/TpxyCuPySJJRy4oZAQealbKbHWgRXMnQVZI-uqQqC_4-727x2048.jpg.jpeg" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">My Split-Flap Display Now Shows the Weather</title><link href="https://www.joshbeckman.org/blog/my-split-flap-display-now-shows-the-weather" rel="alternate" type="text/html" title="My Split-Flap Display Now Shows the Weather" /><published>2026-06-05T00:00:00+00:00</published><updated>2026-06-05T00:00:00+00:00</updated><id>https://www.joshbeckman.org/blog/my-split-flap-display-now-shows-the-weather</id><content type="html" xml:base="https://www.joshbeckman.org/blog/my-split-flap-display-now-shows-the-weather"><![CDATA[<p>The seven-digit split-flap display in my studio used to count the hours since I was born. Now it shows the forecast: <code class="language-plaintext highlighter-rouge">4077069</code>, a 40% chance of rain, a high of 77°F, and a low of 69°F.</p>

<p>I <a href="https://www.joshbeckman.org/blog/life-clock">made it a Life Clock last year</a>, counting up the hours of my life. I still like that idea (I even reprogrammed it to show my daughter’s days of life this spring after she was born). But a number that only ever ticks up, slowly, slowly loses attention. I wanted the display to tell me something I’d actually act on when I glance up from my desk. The weather can be that thing for a while.</p>

<h2 id="packing-a-forecast-into-seven-digits">Packing a forecast into seven digits</h2>

<p>The display shows exactly seven digits and nothing else, so I had to encode a whole forecast into a single number.</p>

<p>I split the seven digits into three fields:</p>

<table>
  <thead>
    <tr>
      <th>Digits</th>
      <th>Meaning</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>1</td>
      <td>Rain likelihood, 0–9</td>
    </tr>
    <tr>
      <td>2–4</td>
      <td>High temperature, °F</td>
    </tr>
    <tr>
      <td>5–7</td>
      <td>Low temperature, °F</td>
    </tr>
  </tbody>
</table>

<p>The <strong>rain digit</strong> is just the chance of rain divided by ten and floored, so a 45% chance becomes <code class="language-plaintext highlighter-rouge">4</code> and a 90% chance becomes <code class="language-plaintext highlighter-rouge">9</code>. One digit is plenty for knowing “should I be worried.”</p>

<p>The <strong>temperatures</strong> each get three digits. That’s easy enough for <code class="language-plaintext highlighter-rouge">77</code> (<code class="language-plaintext highlighter-rouge">077</code>) or <code class="language-plaintext highlighter-rouge">105</code>, but Chicago winters mean I needed negatives, and the display has no minus sign. So I borrowed the leading digit. Since no real temperature here reaches 900°F, a <code class="language-plaintext highlighter-rouge">9</code> in the hundreds place means “this is negative”:</p>

<ul>
  <li><code class="language-plaintext highlighter-rouge">5°F</code> displays as <code class="language-plaintext highlighter-rouge">005</code></li>
  <li><code class="language-plaintext highlighter-rouge">-5°F</code> displays as <code class="language-plaintext highlighter-rouge">905</code></li>
  <li><code class="language-plaintext highlighter-rouge">-12°F</code> displays as <code class="language-plaintext highlighter-rouge">912</code></li>
</ul>

<p>One thing I like about this layout: every digit does work. The Life Clock left its leading digit parked on zero, since the hours of my life don’t fill seven places yet (likely never would). That digit wouldn’t flip to <code class="language-plaintext highlighter-rouge">1</code> until I crossed about 114 years old.</p>

<h2 id="switching-to-tomorrow-at-sunset">Switching to tomorrow at sunset</h2>

<p>I want to know tomorrow’s forecast when the day is effectively over. That really varies, but sunset is a good rule of thumb for when I start thinking more about the next day.</p>

<p>So the display rolls over at sunset to show tomorrow’s forecast.</p>

<h2 id="the-code">The code</h2>

<p>The display polls a small <a href="https://www.val.town/x/joshbeckman/counterService">Val Town</a> service that returns a single <code class="language-plaintext highlighter-rouge">number</code>. The data comes from <a href="https://open-meteo.com/">Open-Meteo</a>, which is free and needs no API key.</p>]]></content><author><name>Josh Beckman</name><email>josh@joshbeckman.org</email><uri>https://www.joshbeckman.org/about</uri></author><category term="blog" /><category term="software-engineering" /><category term="tools" /><category term="weather" /><summary type="html"><![CDATA[The seven-digit split-flap display in my studio used to count the hours since I was born. Now it shows the forecast: 4077069, a 40% chance of rain, a high of 77°F, and a low of 69°F.]]></summary></entry><entry><title type="html">Stop ruining it via Seth’s Blog</title><link href="https://www.joshbeckman.org/notes/01kt89bnak5z4rnxnbjyjhs9w9" rel="alternate" type="text/html" title="Stop ruining it via Seth’s Blog" /><published>2026-06-04T00:00:00+00:00</published><updated>2026-06-04T00:00:00+00:00</updated><id>https://www.joshbeckman.org/notes/01kt89bnak5z4rnxnbjyjhs9w9</id><content type="html" xml:base="https://www.joshbeckman.org/notes/01kt89bnak5z4rnxnbjyjhs9w9"><![CDATA[<p>Most software is fast until you make it slow.</p>

<p>Most often the issue isn’t “empowerment”. People start out wanting to achieve things, to change things to be better, to do a good job.
The active issue is disempowerment</p>]]></content><author><name>Seth&apos;s Blog</name></author><category term="notes" /><category term="leadership" /><summary type="html"><![CDATA[Most software is fast until you make it slow.]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://seths.blog/wp-content/uploads/2018/06/seth_godin_ogimages_v02_1806138-1.jpg" /><media:content medium="image" url="https://seths.blog/wp-content/uploads/2018/06/seth_godin_ogimages_v02_1806138-1.jpg" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">Last Boot Weight Training 🏋️</title><link href="https://www.joshbeckman.org/exercise/weight-training/18762067563" rel="alternate" type="text/html" title="Last Boot Weight Training 🏋️" /><published>2026-06-02T21:29:48+00:00</published><updated>2026-06-02T21:29:48+00:00</updated><id>https://www.joshbeckman.org/exercise/weight-training/18762067563</id><content type="html" xml:base="https://www.joshbeckman.org/exercise/weight-training/18762067563"><![CDATA[<p>My final workout in the boot was a 4x3 (skipping the squats because I think they were hurting me).</p>

<p>4x35 pushups</p>

<p>4x25 pull-ups</p>

<p>4x33 sit-ups</p>

<p>Unknown location (probably inside)</p>]]></content><author><name>Josh Beckman</name><email>josh@joshbeckman.org</email><uri>https://www.joshbeckman.org/about</uri></author><category term="exercise" /><category term="weight-training" /><category term="weight-training" /><summary type="html"><![CDATA[My final workout in the boot was a 4x3 (skipping the squats because I think they were hurting me).]]></summary></entry><entry><title type="html">Backrooms</title><link href="https://www.joshbeckman.org/blog/watching/letterboxd-review-1341339786-backrooms-2026" rel="alternate" type="text/html" title="Backrooms" /><published>2026-06-01T00:00:00+00:00</published><updated>2026-06-01T00:00:00+00:00</updated><id>https://www.joshbeckman.org/blog/watching/letterboxd-review-1341339786-backrooms-2026</id><content type="html" xml:base="https://www.joshbeckman.org/blog/watching/letterboxd-review-1341339786-backrooms-2026"><![CDATA[<p><img src="https://a.ltrbxd.com/resized/film-poster/9/7/6/4/1/9/976419-backrooms-2026-0-600-0-900-crop.jpg?v=f7a99e3fc8" /></p>
<p><em>This review may contain spoilers.</em></p>
<p>This film does a good job of pulling your attention just around the corner....just one more corner...just one more corner....just a little further....then BAM.</p>
<p>Most of the time is spent in that edging squirm, feeling stuck into taking the next step, like glue on your shoes making the floor move your feet.</p>
<p>There were some seriously grand and terrifying moments: the grotesquery around the christmas tree, the gleeful inhumanity around the dinner table. But ultimately I think there were too many confounding tangents (Mary's mom was here why?) to make this as cohesive as I would have liked. As I left, I thought, maybe that's what they wanted me to feel: unfinished, claustrophobic from all the space and searching.</p>
<p>Getting lost in your own psyche is a recipe for getting eaten.</p>]]></content><author><name>Josh Beckman</name><email>josh@joshbeckman.org</email><uri>https://www.joshbeckman.org/about</uri></author><category term="blog" /><category term="watching" /><category term="letterboxd" /><summary type="html"><![CDATA[This review may contain spoilers. This film does a good job of pulling your attention just around the corner....just one more corner...just one more corner....just a little further....then BAM. Most of the time is spent in that edging squirm, feeling stuck into taking the next step, like glue on your shoes making the floor move your feet. There were some seriously grand and terrifying moments: the grotesquery around the christmas tree, the gleeful inhumanity around the dinner table. But ultimately I think there were too many confounding tangents (Mary's mom was here why?) to make this as cohesive as I would have liked. As I left, I thought, maybe that's what they wanted me to feel: unfinished, claustrophobic from all the space and searching. Getting lost in your own psyche is a recipe for getting eaten.]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://a.ltrbxd.com/resized/film-poster/9/7/6/4/1/9/976419-backrooms-2026-0-600-0-900-crop.jpg?v=f7a99e3fc8" /><media:content medium="image" url="https://a.ltrbxd.com/resized/film-poster/9/7/6/4/1/9/976419-backrooms-2026-0-600-0-900-crop.jpg?v=f7a99e3fc8" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">Achilles Boot Bodyweight 🏋️</title><link href="https://www.joshbeckman.org/exercise/weight-training/18732640258" rel="alternate" type="text/html" title="Achilles Boot Bodyweight 🏋️" /><published>2026-05-31T16:55:59+00:00</published><updated>2026-05-31T16:55:59+00:00</updated><id>https://www.joshbeckman.org/exercise/weight-training/18732640258</id><content type="html" xml:base="https://www.joshbeckman.org/exercise/weight-training/18732640258"><![CDATA[<p><img src="/assets/images/UHrr4GFJnJmDrNHZIvDB_u25Znv4LMOh0eWVk9XIlPs-1158x2048.jpg.jpeg" alt="Achilles Boot Bodyweight" /></p>

<p>Another 4x4 workout in the boot</p>

<p>Air Squats
TOTAL REPS
152 in 4 sets
HIGHEST REPS
38 in 1 set
ESTIMATED STRENGTH
46.7 reps in 1 set
Crunches
TOTAL REPS
128 in 4 sets
HIGHEST REPS
32 in 1 set
ESTIMATED STRENGTH</p>
<ul>
  <li>39.4 reps in 1 set
Push Up
TOTAL REPS
132 in 4 sets
HIGHEST REPS
33 in 1 set
ESTIMATED STRENGTH
40.6 reps in 1 set
Pull Up
TOTAL REPS
100 in 4 sets
HIGHEST REPS
25 in 1 set</li>
</ul>

<p>Unknown location (probably inside)</p>]]></content><author><name>Josh Beckman</name><email>josh@joshbeckman.org</email><uri>https://www.joshbeckman.org/about</uri></author><category term="exercise" /><category term="weight-training" /><category term="weight-training" /><summary type="html"><![CDATA[]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://www.joshbeckman.org/assets/images/UHrr4GFJnJmDrNHZIvDB_u25Znv4LMOh0eWVk9XIlPs-1158x2048.jpg.jpeg" /><media:content medium="image" url="https://www.joshbeckman.org/assets/images/UHrr4GFJnJmDrNHZIvDB_u25Znv4LMOh0eWVk9XIlPs-1158x2048.jpg.jpeg" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">Obsession</title><link href="https://www.joshbeckman.org/blog/watching/letterboxd-review-1340226361-obsession-2025-2" rel="alternate" type="text/html" title="Obsession" /><published>2026-05-31T00:00:00+00:00</published><updated>2026-05-31T00:00:00+00:00</updated><id>https://www.joshbeckman.org/blog/watching/letterboxd-review-1340226361-obsession-2025-2</id><content type="html" xml:base="https://www.joshbeckman.org/blog/watching/letterboxd-review-1340226361-obsession-2025-2"><![CDATA[<p><img src="https://a.ltrbxd.com/resized/film-poster/1/2/3/4/4/7/2/1234472-obsession-2025-2-0-600-0-900-crop.jpg?v=cff6fc00b6" /></p>
<p>I enjoyed this film so <em>so so so so</em> much. (Big crooked smile.)</p>
<p>It's loud. It twisted the knife in every scene, tensing my body further and further. And the ending! Triple roundhouse to the gut that was :chefs-kiss:.</p>
<p>So much tension with no release: moments of will they? won't they? that stretch to the point of breaking and then don't resolve so you're left wound up for the next moment to crank it even higher.</p>
<p>The backlighting is <em>on point</em> in this one. And the music: both combine to convey the "Nikki" in play at any given moment in terrifying clarity.</p>
<p>Choosing screams over the end credits was a bet that paid off. (Side note: this movie was sooo loud and full of characters screaming mid-sentence that you could be forgiven for being overwhelmed but boy did I love the intensity.)</p>
<p>Inde Navarrette's performance as Nikki is right up there with Mia Goth as Pearl for my all-time scariest monologues and utterly terrifying emotional range.</p>
<p>Cowardice kills.</p>]]></content><author><name>Josh Beckman</name><email>josh@joshbeckman.org</email><uri>https://www.joshbeckman.org/about</uri></author><category term="blog" /><category term="watching" /><category term="letterboxd" /><summary type="html"><![CDATA[I enjoyed this film so so so so so much. (Big crooked smile.) It's loud. It twisted the knife in every scene, tensing my body further and further. And the ending! Triple roundhouse to the gut that was :chefs-kiss:. So much tension with no release: moments of will they? won't they? that stretch to the point of breaking and then don't resolve so you're left wound up for the next moment to crank it even higher. The backlighting is on point in this one. And the music: both combine to convey the "Nikki" in play at any given moment in terrifying clarity. Choosing screams over the end credits was a bet that paid off. (Side note: this movie was sooo loud and full of characters screaming mid-sentence that you could be forgiven for being overwhelmed but boy did I love the intensity.) Inde Navarrette's performance as Nikki is right up there with Mia Goth as Pearl for my all-time scariest monologues and utterly terrifying emotional range. Cowardice kills.]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://a.ltrbxd.com/resized/film-poster/1/2/3/4/4/7/2/1234472-obsession-2025-2-0-600-0-900-crop.jpg?v=cff6fc00b6" /><media:content medium="image" url="https://a.ltrbxd.com/resized/film-poster/1/2/3/4/4/7/2/1234472-obsession-2025-2-0-600-0-900-crop.jpg?v=cff6fc00b6" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">If I Had Legs I’d Kick You</title><link href="https://www.joshbeckman.org/blog/watching/letterboxd-review-1340188270-if-i-had-legs-id-kick-you" rel="alternate" type="text/html" title="If I Had Legs I’d Kick You" /><published>2026-05-29T00:00:00+00:00</published><updated>2026-05-29T00:00:00+00:00</updated><id>https://www.joshbeckman.org/blog/watching/letterboxd-review-1340188270-if-i-had-legs-id-kick-you</id><content type="html" xml:base="https://www.joshbeckman.org/blog/watching/letterboxd-review-1340188270-if-i-had-legs-id-kick-you"><![CDATA[<p><img src="https://a.ltrbxd.com/resized/film-poster/1/0/4/6/5/2/2/1046522-if-i-had-legs-id-kick-you-0-600-0-900-crop.jpg?v=831a0c76c9" /></p>
<p>I think Mary Bronstein bet her husband that she could invert almost everything about <em>Uncut Gems</em> and still make the audience feel the same way.</p>
<p>Where that movie follows the male main character as the driving force, careening through the world like a bull in a china shop, this one follows a woman as the world falls through the gaps in her grasp. But you feel exhilarating anguish - and humor in that anguish - all the same.</p>
<p>The visual (non-visual?) choice of never showing the daughter - just hearing her voice off-screen - was ingenious and added subtle horror to every scene. Abstract, guilty weight instead of personhood that keeps you locked in to Linda's subjective experience.</p>
<p>As a new parent myself, I gripped my cushion out of recognition through the new-mom-and-baby scenes. And I still think the most terrifying part of her situation is in the first scene: your child is sick and you can't help.</p>]]></content><author><name>Josh Beckman</name><email>josh@joshbeckman.org</email><uri>https://www.joshbeckman.org/about</uri></author><category term="blog" /><category term="watching" /><category term="letterboxd" /><summary type="html"><![CDATA[I think Mary Bronstein bet her husband that she could invert almost everything about Uncut Gems and still make the audience feel the same way. Where that movie follows the male main character as the driving force, careening through the world like a bull in a china shop, this one follows a woman as the world falls through the gaps in her grasp. But you feel exhilarating anguish - and humor in that anguish - all the same. The visual (non-visual?) choice of never showing the daughter - just hearing her voice off-screen - was ingenious and added subtle horror to every scene. Abstract, guilty weight instead of personhood that keeps you locked in to Linda's subjective experience. As a new parent myself, I gripped my cushion out of recognition through the new-mom-and-baby scenes. And I still think the most terrifying part of her situation is in the first scene: your child is sick and you can't help.]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://a.ltrbxd.com/resized/film-poster/1/0/4/6/5/2/2/1046522-if-i-had-legs-id-kick-you-0-600-0-900-crop.jpg?v=831a0c76c9" /><media:content medium="image" url="https://a.ltrbxd.com/resized/film-poster/1/0/4/6/5/2/2/1046522-if-i-had-legs-id-kick-you-0-600-0-900-crop.jpg?v=831a0c76c9" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">Note on Mitigating Spectre and Other Security Threats: The Cloudflare Workers Security Model via The Cloudflare Blog</title><link href="https://www.joshbeckman.org/notes/1020268020" rel="alternate" type="text/html" title="Note on Mitigating Spectre and Other Security Threats: The Cloudflare Workers Security Model via The Cloudflare Blog" /><published>2026-05-29T00:00:00+00:00</published><updated>2026-05-29T00:00:00+00:00</updated><id>https://www.joshbeckman.org/notes/1020268020</id><content type="html" xml:base="https://www.joshbeckman.org/notes/1020268020"><![CDATA[<blockquote>
  <p>Popular security culture often dwells on clever hacks and clean fixes. But for the difficult real-world problems, often there is no right answer or simple fix, only the hard work of building defenses thicker and thicker.</p>
  <div class="quoteback-footer"><div class="quoteback-avatar"><img class="mini-favicon" src="https://s2.googleusercontent.com/s2/favicons?domain=blog.cloudflare.com" /></div><div class="quoteback-metadata"><div class="metadata-inner"><span style="display:none">FROM:</span><div aria-label="The Cloudflare Blog" class="quoteback-author"> The Cloudflare Blog</div><div aria-label="Mitigating Spectre and Other Security Threats: The Cloudflare Workers Security Model" class="quoteback-title"> Mitigating Spectre and Other Security Threats: The Cloudflare Workers Security Model</div></div></div><div class="quoteback-backlink"><a target="_blank" aria-label="go to the full text of this quotation" rel="noopener" href="https://blog.cloudflare.com/mitigating-spectre-and-other-security-threats-the-cloudflare-workers-security-model/#:~:text=Popular%20security%20culture,thicker%20and%20thicker." class="quoteback-arrow"> Source</a></div></div>
</blockquote>

<p>I’m exploring sandboxing at work ad this was a great read.</p>]]></content><author><name>The Cloudflare Blog</name></author><category term="notes" /><category term="safety" /><summary type="html"><![CDATA[Popular security culture often dwells on clever hacks and clean fixes. But for the difficult real-world problems, often there is no right answer or simple fix, only the hard work of building defenses thicker and thicker. FROM: The Cloudflare Blog Mitigating Spectre and Other Security Threats: The Cloudflare Workers Security Model Source]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blog.cloudflare.com/content/images/2020/07/Screen-Shot-2020-07-28-at-2.43.24-PM.png" /><media:content medium="image" url="https://blog.cloudflare.com/content/images/2020/07/Screen-Shot-2020-07-28-at-2.43.24-PM.png" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">Afternoon Body Weight Training 🏋️</title><link href="https://www.joshbeckman.org/exercise/weight-training/18694910529" rel="alternate" type="text/html" title="Afternoon Body Weight Training 🏋️" /><published>2026-05-28T21:25:12+00:00</published><updated>2026-05-28T21:25:12+00:00</updated><id>https://www.joshbeckman.org/exercise/weight-training/18694910529</id><content type="html" xml:base="https://www.joshbeckman.org/exercise/weight-training/18694910529"><![CDATA[<p><img src="/assets/images/h0catZ7lmqHUwYZuu-VQZVfLX0SgS2sH1JcueTON17A-1158x2048.jpg.jpeg" alt="Afternoon Body Weight Training" /></p>

<p>FITBOD
5/28/26 • 25m
Air Squats
TOTAL REPS
152 in 4 sets
HIGHEST REPS
· 38 in 1 set
ESTIMATED STRENGTH
· 46.7 reps in 1 set
Crunches
TOTAL REPS
96 in 3 sets
HIGHEST REPS
32 in 1 set
ESTIMATED STRENGTH
37.1 reps in 1 set
Push Up
TOTAL REPS
120 in 4 sets
HIGHEST REPS
30 in 1 set
ESTIMATED STRENGTH
36.9 reps in 1 set
Pull Up
TOTAL REPS
100 in 4 sets
HIGHEST REPS
25 in 1 set
ESTIMATED STRENGTH
30.7 reps in 1 set</p>

<p>Last week in the boot, I hope.</p>

<p>Unknown location (probably inside)</p>]]></content><author><name>Josh Beckman</name><email>josh@joshbeckman.org</email><uri>https://www.joshbeckman.org/about</uri></author><category term="exercise" /><category term="weight-training" /><category term="weight-training" /><summary type="html"><![CDATA[]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://www.joshbeckman.org/assets/images/h0catZ7lmqHUwYZuu-VQZVfLX0SgS2sH1JcueTON17A-1158x2048.jpg.jpeg" /><media:content medium="image" url="https://www.joshbeckman.org/assets/images/h0catZ7lmqHUwYZuu-VQZVfLX0SgS2sH1JcueTON17A-1158x2048.jpg.jpeg" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">Note on If You Let AI Do Your Writing, I Will Come to Your House and Kill You via Sam Kriss</title><link href="https://www.joshbeckman.org/notes/1019606937" rel="alternate" type="text/html" title="Note on If You Let AI Do Your Writing, I Will Come to Your House and Kill You via Sam Kriss" /><published>2026-05-27T00:00:00+00:00</published><updated>2026-05-27T00:00:00+00:00</updated><id>https://www.joshbeckman.org/notes/1019606937</id><content type="html" xml:base="https://www.joshbeckman.org/notes/1019606937"><![CDATA[<blockquote>
  <p>People whose brains have been eaten by LLMs still maintain that ‘It’s not gradient, it’s texture’ or whatever is still <em>their idea</em>, expressed by the machine, but there is almost never any idea there at all. If your ideas were any good, you wouldn’t need to use the machine; as it stands your sub-literate scrawlings are the best thing about you. At least they’re yours.</p>

  <p>But you people don’t listen. However bad a writer you think you are, you are not worse than AI. But you still keep letting it do your writing for you, as if I won’t be able to tell. Listen: I can tell. I can always tell. You think I won’t notice, but I will. There’s no hiding from me. If you let AI do your writing I will find out, and I will kill you.</p>
  <div class="quoteback-footer"><div class="quoteback-avatar"><img class="mini-favicon" src="https://s2.googleusercontent.com/s2/favicons?domain=samkriss.substack.com" /></div><div class="quoteback-metadata"><div class="metadata-inner"><span style="display:none">FROM:</span><div aria-label="Sam Kriss" class="quoteback-author"> Sam Kriss</div><div aria-label="If You Let AI Do Your Writing, I Will Come to Your House and Kill You" class="quoteback-title"> If You Let AI Do Your Writing, I Will Come to Your House and Kill You</div></div></div><div class="quoteback-backlink"><a target="_blank" aria-label="go to the full text of this quotation" rel="noopener" href="https://samkriss.substack.com/p/if-you-let-ai-do-your-writing-i-will#:~:text=People%20whose%20brains,will%20kill%20you." class="quoteback-arrow"> Source</a></div></div>
</blockquote>

<p>I love Sam’s writing.</p>

<p>I want people to enjoy my writing. That’s why I write it myself.</p>

<p>I have taken to having LLMs <a href="https://www.joshbeckman.org/blog/practicing/moving-the-critic-into-my-editor">check my writing and critique it</a>, but I write it myself. At least then, if someone is moved, I moved them.</p>]]></content><author><name>Sam Kriss</name></author><category term="notes" /><category term="ai" /><category term="writing" /><summary type="html"><![CDATA[People whose brains have been eaten by LLMs still maintain that ‘It’s not gradient, it’s texture’ or whatever is still their idea, expressed by the machine, but there is almost never any idea there at all. If your ideas were any good, you wouldn’t need to use the machine; as it stands your sub-literate scrawlings are the best thing about you. At least they’re yours. But you people don’t listen. However bad a writer you think you are, you are not worse than AI. But you still keep letting it do your writing for you, as if I won’t be able to tell. Listen: I can tell. I can always tell. You think I won’t notice, but I will. There’s no hiding from me. If you let AI do your writing I will find out, and I will kill you. FROM: Sam Kriss If You Let AI Do Your Writing, I Will Come to Your House and Kill You Source]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://substackcdn.com/image/fetch/$s_!T9HI!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa4850192-6d97-4046-b900-aeeb6643ecdd_1788x1481.jpeg" /><media:content medium="image" url="https://substackcdn.com/image/fetch/$s_!T9HI!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa4850192-6d97-4046-b900-aeeb6643ecdd_1788x1481.jpeg" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">Roast Notes: Bubbe’s Blend by Metropolis and Schneider Deli</title><link href="https://www.joshbeckman.org/blog/roast-notes-bubbes-blend-by-metropolis-and-schneider-deli" rel="alternate" type="text/html" title="Roast Notes: Bubbe’s Blend by Metropolis and Schneider Deli" /><published>2026-05-25T15:46:44+00:00</published><updated>2026-05-25T15:46:44+00:00</updated><id>https://www.joshbeckman.org/blog/roast-notes-bubbes-blend-by-metropolis-and-schneider-deli</id><content type="html" xml:base="https://www.joshbeckman.org/blog/roast-notes-bubbes-blend-by-metropolis-and-schneider-deli"><![CDATA[<p>We were lucky enough to have <a href="https://www.schneiderdeli.com/">Schneider Deli</a> open a new location just down the street from us and they have a custom roast by <a href="https://metropoliscoffee.com/">Metropolis Coffee Company</a> on drip.
As I sipped it at the counter, the place was packed with couples and families. Light streamed in from the east-facing windows and the booths were just as lively as the kitchen.
I bought a bag of the beans to try at home.</p>

<p><img width="3024" height="2268" alt="Bag of Bubbe's Blend medium roast" src="/assets/images/a0e08528-670d-4bd3-975c-ac882a0b11fd.jpeg" /></p>

<table>
  <thead>
    <tr>
      <th>Aspects</th>
      <th> </th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Roast</td>
      <td>Medium</td>
    </tr>
    <tr>
      <td>Origin</td>
      <td>Blend (unknown)</td>
    </tr>
    <tr>
      <td>Process</td>
      <td>Unknown</td>
    </tr>
    <tr>
      <td>Roast Date</td>
      <td>2026-05-05</td>
    </tr>
  </tbody>
</table>

<p>The beans alone have a pungent smell, like damp moss and bitter leather.
I like it.
During the brew, the grounds smell like burnt caramel and walnut.</p>

<table>
  <thead>
    <tr>
      <th>Brew</th>
      <th> </th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Grind</td>
      <td>Medium-Fine</td>
    </tr>
    <tr>
      <td>Method</td>
      <td>V60 pour-over</td>
    </tr>
    <tr>
      <td>Ratio</td>
      <td>1:14</td>
    </tr>
    <tr>
      <td>Water Temp</td>
      <td>199°F</td>
    </tr>
  </tbody>
</table>

<p>In the cup, I taste light pecan and chocolate - lighter than the strong aromas would lead you to believe.
After a bit, I taste sweet apple as well.</p>

<p>It’s no single-origin, but it’s a solid blend; good for serving in a thick ceramic mug at the deli counter.</p>]]></content><author><name>Josh Beckman</name><email>josh@joshbeckman.org</email><uri>https://www.joshbeckman.org/about</uri></author><category term="blog" /><category term="coffee" /><category term="roast-notes" /><category term="chicago" /><summary type="html"><![CDATA[We were lucky enough to have Schneider Deli open a new location just down the street from us and they have a custom roast by Metropolis Coffee Company on drip. As I sipped it at the counter, the place was packed with couples and families. Light streamed in from the east-facing windows and the booths were just as lively as the kitchen. I bought a bag of the beans to try at home.]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://www.joshbeckman.org/assets/images/a0e08528-670d-4bd3-975c-ac882a0b11fd.jpeg" /><media:content medium="image" url="https://www.joshbeckman.org/assets/images/a0e08528-670d-4bd3-975c-ac882a0b11fd.jpeg" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">Note on My Year of Liveness via Todepond dot com</title><link href="https://www.joshbeckman.org/notes/1018455830" rel="alternate" type="text/html" title="Note on My Year of Liveness via Todepond dot com" /><published>2026-05-23T00:00:00+00:00</published><updated>2026-05-23T00:00:00+00:00</updated><id>https://www.joshbeckman.org/notes/1018455830</id><content type="html" xml:base="https://www.joshbeckman.org/notes/1018455830"><![CDATA[<blockquote>
  <p>I will never shut up about the value of living and breathing openness. I learned / gained so much from opening myself up to collaboration AT ALL TIMES. my life is a lot richer now.</p>
  <div class="quoteback-footer"><div class="quoteback-avatar"><img class="mini-favicon" src="https://s2.googleusercontent.com/s2/favicons?domain=www.todepond.com" /></div><div class="quoteback-metadata"><div class="metadata-inner"><span style="display:none">FROM:</span><div aria-label="Todepond dot com" class="quoteback-author"> Todepond dot com</div><div aria-label="My Year of Liveness" class="quoteback-title"> My Year of Liveness</div></div></div><div class="quoteback-backlink"><a target="_blank" aria-label="go to the full text of this quotation" rel="noopener" href="https://www.todepond.com/sky/live-year/#:~:text=I%20will%20never,lot%20richer%20now." class="quoteback-arrow"> Source</a></div></div>
</blockquote>

<p>Life is richer with others.</p>]]></content><author><name>Todepond dot com</name></author><category term="notes" /><category term="commons" /><summary type="html"><![CDATA[I will never shut up about the value of living and breathing openness. I learned / gained so much from opening myself up to collaboration AT ALL TIMES. my life is a lot richer now. FROM: Todepond dot com My Year of Liveness Source]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://www.todepond.com/og.png" /><media:content medium="image" url="https://www.todepond.com/og.png" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">Leaps are steps at a distance.</title><link href="https://www.joshbeckman.org/proverbs/every-giant-leap-is-actually-a-series-of-small-steps" rel="alternate" type="text/html" title="Leaps are steps at a distance." /><published>2026-05-19T02:15:45+00:00</published><updated>2026-05-19T02:15:45+00:00</updated><id>https://www.joshbeckman.org/proverbs/every-giant-leap-is-actually-a-series-of-small-steps</id><content type="html" xml:base="https://www.joshbeckman.org/proverbs/every-giant-leap-is-actually-a-series-of-small-steps"><![CDATA[<p>You can build something complex without ever doing anything complex. Iterate on one piece, then the next, then the next — look up and find a system with properties none of the pieces had on their own.</p>

<p>The reverse is also true. Any “amazing” equation unwinds into simple legal moves: add a term, balance the sides, factor. What looks like a leap turns out to be a walk.</p>

<p>The leap and the steps are the same thing at two distances. From far away you see the jump; up close, only ever the next step. <a href="https://www.joshbeckman.org/search/?q=%27practice-and-training&amp;keys=tags">Practice</a> makes the close view feel obvious. Iteration makes the far view possible.</p>]]></content><author><name>Josh Beckman</name><email>josh@joshbeckman.org</email><uri>https://www.joshbeckman.org/about</uri></author><category term="proverbs" /><category term="exploration" /><summary type="html"><![CDATA[You can build something complex without ever doing anything complex. Iterate on one piece, then the next, then the next — look up and find a system with properties none of the pieces had on their own.]]></summary></entry><entry><title type="html">Body weight 🏋️</title><link href="https://www.joshbeckman.org/exercise/weight-training/18560387369" rel="alternate" type="text/html" title="Body weight 🏋️" /><published>2026-05-18T21:09:43+00:00</published><updated>2026-05-18T21:09:43+00:00</updated><id>https://www.joshbeckman.org/exercise/weight-training/18560387369</id><content type="html" xml:base="https://www.joshbeckman.org/exercise/weight-training/18560387369"><![CDATA[<p>Another 4x4 quick exercise to combat my boot cabin fever.</p>

<p>4x35 pushups
4x25 pull-ups
4x25 sit-ups
4x25 air squats</p>

<p>Unknown location (probably inside)</p>]]></content><author><name>Josh Beckman</name><email>josh@joshbeckman.org</email><uri>https://www.joshbeckman.org/about</uri></author><category term="exercise" /><category term="weight-training" /><category term="weight-training" /><summary type="html"><![CDATA[Another 4x4 quick exercise to combat my boot cabin fever.]]></summary></entry><entry><title type="html">Project Hail Mary</title><link href="https://www.joshbeckman.org/blog/watching/letterboxd-review-1328099416-project-hail-mary" rel="alternate" type="text/html" title="Project Hail Mary" /><published>2026-05-16T00:00:00+00:00</published><updated>2026-05-16T00:00:00+00:00</updated><id>https://www.joshbeckman.org/blog/watching/letterboxd-review-1328099416-project-hail-mary</id><content type="html" xml:base="https://www.joshbeckman.org/blog/watching/letterboxd-review-1328099416-project-hail-mary"><![CDATA[<p><img src="https://a.ltrbxd.com/resized/film-poster/6/1/1/2/8/8/611288-project-hail-mary-0-600-0-900-crop.jpg?v=ac31b6ec03" /></p>
<p>Yes I’m going to like a space travel story. Yes I’m going to like Ryan Gosling. Yes I’m going to love a faceless monster. </p>
<p><br />Ultimately this one was too saccharine and too unscientifically shallow for me to really regard it as a good film, but I enjoyed my ride on the rocket ship.</p>]]></content><author><name>Josh Beckman</name><email>josh@joshbeckman.org</email><uri>https://www.joshbeckman.org/about</uri></author><category term="blog" /><category term="watching" /><category term="letterboxd" /><summary type="html"><![CDATA[Yes I’m going to like a space travel story. Yes I’m going to like Ryan Gosling. Yes I’m going to love a faceless monster.  Ultimately this one was too saccharine and too unscientifically shallow for me to really regard it as a good film, but I enjoyed my ride on the rocket ship.]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://a.ltrbxd.com/resized/film-poster/6/1/1/2/8/8/611288-project-hail-mary-0-600-0-900-crop.jpg?v=ac31b6ec03" /><media:content medium="image" url="https://a.ltrbxd.com/resized/film-poster/6/1/1/2/8/8/611288-project-hail-mary-0-600-0-900-crop.jpg?v=ac31b6ec03" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">Note on Something Deeper Than Hantavirus via Your Local Epidemiologist</title><link href="https://www.joshbeckman.org/notes/1015992640" rel="alternate" type="text/html" title="Note on Something Deeper Than Hantavirus via Your Local Epidemiologist" /><published>2026-05-15T00:00:00+00:00</published><updated>2026-05-15T00:00:00+00:00</updated><id>https://www.joshbeckman.org/notes/1015992640</id><content type="html" xml:base="https://www.joshbeckman.org/notes/1015992640"><![CDATA[<blockquote>
  <p>In crisis communication, a well-known formula is: outrage x hazard. So even if the hazard is low, if concern is great, you’d better be speaking with clarity, acknowledging uncertainty, listening to the questions, concerns, and confusion, and bringing people along for the ride.</p>
  <div class="quoteback-footer"><div class="quoteback-avatar"><span class="mini-emoji"> ✉️</span></div><div class="quoteback-metadata"><div class="metadata-inner"><span style="display:none">FROM:</span><div aria-label="Your Local Epidemiologist" class="quoteback-author"> Your Local Epidemiologist</div><div aria-label="Something Deeper Than Hantavirus" class="quoteback-title"> Something Deeper Than Hantavirus</div></div></div></div>
</blockquote>

<p>Calibrate to the audience perception.</p>]]></content><author><name>Your Local Epidemiologist</name></author><category term="notes" /><category term="communication" /><category term="medicine" /><summary type="html"><![CDATA[In crisis communication, a well-known formula is: outrage x hazard. So even if the hazard is low, if concern is great, you’d better be speaking with clarity, acknowledging uncertainty, listening to the questions, concerns, and confusion, and bringing people along for the ride. ✉️FROM: Your Local Epidemiologist Something Deeper Than Hantavirus]]></summary></entry><entry><title type="html">4x4 Calisthenics 🏋️</title><link href="https://www.joshbeckman.org/exercise/weight-training/18509635491" rel="alternate" type="text/html" title="4x4 Calisthenics 🏋️" /><published>2026-05-14T21:32:16+00:00</published><updated>2026-05-14T21:32:16+00:00</updated><id>https://www.joshbeckman.org/exercise/weight-training/18509635491</id><content type="html" xml:base="https://www.joshbeckman.org/exercise/weight-training/18509635491"><![CDATA[<p><img src="/assets/images/R9QpU12Lk2YgP6paTcWa_QuOOesK43Wl3ErGGMFwcvQ-2048x1536.jpg.jpeg" alt="4x4 Calisthenics" /></p>

<p>This is the shelf beside the pull-ups door frame.</p>

<p>Another 4x4 workout, like earlier this week. Calisthenics I can do while wearing the boot. 
4x30 pushups
4x25 pull-ups
4x25 sit-ups 
4x25 air squats</p>

<p>Just now I’m realizing that the boot is actually added weight in the pull-ups. That’s why they’re harder than usual.</p>

<p>Unknown location (probably inside)</p>]]></content><author><name>Josh Beckman</name><email>josh@joshbeckman.org</email><uri>https://www.joshbeckman.org/about</uri></author><category term="exercise" /><category term="weight-training" /><category term="weight-training" /><summary type="html"><![CDATA[]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://www.joshbeckman.org/assets/images/R9QpU12Lk2YgP6paTcWa_QuOOesK43Wl3ErGGMFwcvQ-2048x1536.jpg.jpeg" /><media:content medium="image" url="https://www.joshbeckman.org/assets/images/R9QpU12Lk2YgP6paTcWa_QuOOesK43Wl3ErGGMFwcvQ-2048x1536.jpg.jpeg" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">One Leg Weight Training 🏋️</title><link href="https://www.joshbeckman.org/exercise/weight-training/18483226110" rel="alternate" type="text/html" title="One Leg Weight Training 🏋️" /><published>2026-05-12T21:18:48+00:00</published><updated>2026-05-12T21:18:48+00:00</updated><id>https://www.joshbeckman.org/exercise/weight-training/18483226110</id><content type="html" xml:base="https://www.joshbeckman.org/exercise/weight-training/18483226110"><![CDATA[<p><img src="/assets/images/AvxLuciwhZppFjRLp6C9SgJMkbXqeL8ninDaMlG7goQ-2048x1536.jpg.jpeg" alt="One Leg Weight Training" /></p>

<p>I finally got an MRI a couple weeks ago because my Achilles heel has still been hurting. Then last week the MRI results showed a partial longitudinal tear of my Achilles tendon. So now I’m in an immobilizing boot for a month.</p>

<p>With that, I didn’t exercise for a while, so this is my first in the boot. I just did calisthenics at home:
4x25 pushups
4x25 sit ups
4x25 pull ups
4x25 air squats (in the boot)
50 more pushups</p>

<p>Felt good to get my heart rate up again.</p>

<p>I hate the boot.</p>

<p>Unknown location (probably inside)</p>]]></content><author><name>Josh Beckman</name><email>josh@joshbeckman.org</email><uri>https://www.joshbeckman.org/about</uri></author><category term="exercise" /><category term="weight-training" /><category term="weight-training" /><summary type="html"><![CDATA[]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://www.joshbeckman.org/assets/images/AvxLuciwhZppFjRLp6C9SgJMkbXqeL8ninDaMlG7goQ-2048x1536.jpg.jpeg" /><media:content medium="image" url="https://www.joshbeckman.org/assets/images/AvxLuciwhZppFjRLp6C9SgJMkbXqeL8ninDaMlG7goQ-2048x1536.jpg.jpeg" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">Note on Note On: The Notebook: A History of Thinking on Paper via Ex Libris Kirkland: Recently Added Notes</title><link href="https://www.joshbeckman.org/notes/1014761065" rel="alternate" type="text/html" title="Note on Note On: The Notebook: A History of Thinking on Paper via Ex Libris Kirkland: Recently Added Notes" /><published>2026-05-12T00:00:00+00:00</published><updated>2026-05-12T00:00:00+00:00</updated><id>https://www.joshbeckman.org/notes/1014761065</id><content type="html" xml:base="https://www.joshbeckman.org/notes/1014761065"><![CDATA[<blockquote>
  <p>There’s a section on ‘patient diaries’, which are not written by a patient but written about a patient. Apparently when you are in a medically induced coma, or treacheotemized, etc, people come back and often have traumatic memories - not from the actual events themselves but from their brain trying to make sense of what happened; they think they were abducted by aliens, or their loved ones were replaced by robots, or they were molested in their incapacitated state. So some Danish nurses started a practice of keeping a handwritten diary for the patient, which their loved ones can also add to, about what’s happening - and then when the patient is back to normal, they give them this handwritten account, and it really helps ground the patient back into reality and make sense of their lost time. It’s so weird, and so beautiful an idea!</p>
  <div class="quoteback-footer"><div class="quoteback-avatar"><img class="mini-favicon" src="https://s2.googleusercontent.com/s2/favicons?domain=exlibriskirkland.com" /></div><div class="quoteback-metadata"><div class="metadata-inner"><span style="display:none">FROM:</span><div aria-label="Ex Libris Kirkland: Recently Added Notes" class="quoteback-author"> Ex Libris Kirkland: Recently Added Notes</div><div aria-label="Note On: The Notebook: A History of Thinking on Paper" class="quoteback-title"> Note On: The Notebook: A History of Thinking on Paper</div></div></div><div class="quoteback-backlink"><a target="_blank" aria-label="go to the full text of this quotation" rel="noopener" href="https://exlibriskirkland.com/books/the-notebook-a-history-of-thinking-on-paper#:~:text=There%E2%80%99s%20a%20section,beautiful%20an%20idea%21" class="quoteback-arrow"> Source</a></div></div>
</blockquote>

<p>Taking notes as medicine.</p>

<p>I didn’t know about this, but already I started a journal for our baby daughter like this. We leave a note for each day and have family/friends leave notes when they are with her those days. The hope was for it to be a keepsake for her, but maybe it will help ground her as a person, to have this history of her infancy.</p>]]></content><author><name>Ex Libris Kirkland: Recently Added Notes</name></author><category term="notes" /><category term="medicine" /><category term="note-taking" /><summary type="html"><![CDATA[There’s a section on ‘patient diaries’, which are not written by a patient but written about a patient. Apparently when you are in a medically induced coma, or treacheotemized, etc, people come back and often have traumatic memories - not from the actual events themselves but from their brain trying to make sense of what happened; they think they were abducted by aliens, or their loved ones were replaced by robots, or they were molested in their incapacitated state. So some Danish nurses started a practice of keeping a handwritten diary for the patient, which their loved ones can also add to, about what’s happening - and then when the patient is back to normal, they give them this handwritten account, and it really helps ground the patient back into reality and make sense of their lost time. It’s so weird, and so beautiful an idea! FROM: Ex Libris Kirkland: Recently Added Notes Note On: The Notebook: A History of Thinking on Paper Source]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://mattkirkland.com/favicon.ico" /><media:content medium="image" url="https://mattkirkland.com/favicon.ico" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">@tao@mathstodon.xyz via Terence Tao</title><link href="https://www.joshbeckman.org/notes/01kr9hr7z7vzy431ba2p8jccqs" rel="alternate" type="text/html" title="@tao@mathstodon.xyz via Terence Tao" /><published>2026-05-10T00:00:00+00:00</published><updated>2026-05-10T00:00:00+00:00</updated><id>https://www.joshbeckman.org/notes/01kr9hr7z7vzy431ba2p8jccqs</id><content type="html" xml:base="https://www.joshbeckman.org/notes/01kr9hr7z7vzy431ba2p8jccqs"><![CDATA[<p>This cooking analogy is becoming very useful for Tao. Digestion is required for incorporation and advancement.</p>]]></content><author><name>Terence Tao</name></author><category term="notes" /><category term="ai" /><category term="education" /><summary type="html"><![CDATA[This cooking analogy is becoming very useful for Tao. Digestion is required for incorporation and advancement.]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://mathstodon.xyz/packs/media/icons/apple-touch-icon-1024x1024-db6849588b44f525363c37b65ef0ac66.png" /><media:content medium="image" url="https://mathstodon.xyz/packs/media/icons/apple-touch-icon-1024x1024-db6849588b44f525363c37b65ef0ac66.png" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">Good Pull 🏋️</title><link href="https://www.joshbeckman.org/exercise/weight-training/18391544887" rel="alternate" type="text/html" title="Good Pull 🏋️" /><published>2026-05-05T21:13:30+00:00</published><updated>2026-05-05T21:13:30+00:00</updated><id>https://www.joshbeckman.org/exercise/weight-training/18391544887</id><content type="html" xml:base="https://www.joshbeckman.org/exercise/weight-training/18391544887"><![CDATA[<p><img src="/assets/images/ss_67KGetrZ8FWvSZF36IL7r246Iyz1z7QbiION4qsk-646x2048.jpg.jpeg" alt="Good Pull" /></p>

<p>Lots of arms and back today and while it wasn’t my strongest showing, I felt strong.</p>

<p>Those back extensions got my in the glutes, though.</p>

<p>Unknown location (probably inside)</p>]]></content><author><name>Josh Beckman</name><email>josh@joshbeckman.org</email><uri>https://www.joshbeckman.org/about</uri></author><category term="exercise" /><category term="weight-training" /><category term="weight-training" /><summary type="html"><![CDATA[]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://www.joshbeckman.org/assets/images/ss_67KGetrZ8FWvSZF36IL7r246Iyz1z7QbiION4qsk-646x2048.jpg.jpeg" /><media:content medium="image" url="https://www.joshbeckman.org/assets/images/ss_67KGetrZ8FWvSZF36IL7r246Iyz1z7QbiION4qsk-646x2048.jpg.jpeg" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">The Scene Inside and Outside The House</title><link href="https://www.joshbeckman.org/blog/photos/the-scene-inside-and-outside-the-house" rel="alternate" type="text/html" title="The Scene Inside and Outside The House" /><published>2026-05-04T11:34:23+00:00</published><updated>2026-05-04T11:34:23+00:00</updated><id>https://www.joshbeckman.org/blog/photos/the-scene-inside-and-outside-the-house</id><content type="html" xml:base="https://www.joshbeckman.org/blog/photos/the-scene-inside-and-outside-the-house"><![CDATA[<p>It’s May 4th and I’m working from home in the sunshine.</p>

<p><img width="2555" height="3840" alt="Outside" src="/assets/images/fe86dca4-b0f9-4c6c-acc2-a45b8634148e.jpeg" /></p>

<p><img width="3024" height="2013" alt="Inside" src="/assets/images/d7e60570-1f78-4dd6-ba9a-b1f5799a4cc0.jpeg" /></p>]]></content><author><name>Josh Beckman</name><email>josh@joshbeckman.org</email><uri>https://www.joshbeckman.org/about</uri></author><category term="blog" /><category term="photos" /><summary type="html"><![CDATA[It’s May 4th and I’m working from home in the sunshine.]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://www.joshbeckman.org/assets/images/fe86dca4-b0f9-4c6c-acc2-a45b8634148e.jpeg" /><media:content medium="image" url="https://www.joshbeckman.org/assets/images/fe86dca4-b0f9-4c6c-acc2-a45b8634148e.jpeg" xmlns:media="http://search.yahoo.com/mrss/" /></entry><entry><title type="html">Indoor Row</title><link href="https://www.joshbeckman.org/exercise/workout/18365498147" rel="alternate" type="text/html" title="Indoor Row" /><published>2026-05-03T21:17:12+00:00</published><updated>2026-05-03T21:17:12+00:00</updated><id>https://www.joshbeckman.org/exercise/workout/18365498147</id><content type="html" xml:base="https://www.joshbeckman.org/exercise/workout/18365498147"><![CDATA[<p>After Sunday beers with friends, I had time to fit in a 6400m row in 27min, setting it at 8/10 on the Concept2. Listening to good music made it easier to get in a groove.</p>

<p>My finger pads are hurting and raw from this after doing 100 pull-ups on the home rock wall last night.</p>

<p>Unknown location (probably inside)</p>]]></content><author><name>Josh Beckman</name><email>josh@joshbeckman.org</email><uri>https://www.joshbeckman.org/about</uri></author><category term="exercise" /><category term="workout" /><category term="workout" /><summary type="html"><![CDATA[After Sunday beers with friends, I had time to fit in a 6400m row in 27min, setting it at 8/10 on the Concept2. Listening to good music made it easier to get in a groove. My finger pads are hurting and raw from this after doing 100 pull-ups on the home rock wall last night.]]></summary></entry><entry><title type="html">Roast Notes: Sun Catcher by Peet’s</title><link href="https://www.joshbeckman.org/blog/roast-notes-sun-catcher-by-peets" rel="alternate" type="text/html" title="Roast Notes: Sun Catcher by Peet’s" /><published>2026-05-03T00:00:00+00:00</published><updated>2026-05-03T00:00:00+00:00</updated><id>https://www.joshbeckman.org/blog/roast-notes-sun-catcher-by-peets</id><content type="html" xml:base="https://www.joshbeckman.org/blog/roast-notes-sun-catcher-by-peets"><![CDATA[<p>I bought a bag of <a href="https://www.peets.com/products/suncatcher">Sun Catcher</a> from Peet’s this week when I was picking up a quick cup in a rush before work.</p>

<p><img src="/assets/images/IMG_0900.jpeg" alt="Bag of Sun Catcher light roast from Peet's" /></p>

<table>
  <thead>
    <tr>
      <th>Aspects</th>
      <th> </th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Roast</td>
      <td>Light</td>
    </tr>
    <tr>
      <td>Origin</td>
      <td>Brazil, Kenya</td>
    </tr>
    <tr>
      <td>Process</td>
      <td>Natural and Washed</td>
    </tr>
    <tr>
      <td>Roast Date</td>
      <td>2026-03-06</td>
    </tr>
  </tbody>
</table>

<p>Opening the bag and once brewed, I get smells of mandarin, fresh leather, and wet tree bark. It’s darkly sour.</p>

<table>
  <thead>
    <tr>
      <th>Brew</th>
      <th> </th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Grind</td>
      <td>Medium-Fine</td>
    </tr>
    <tr>
      <td>Method</td>
      <td>V60 pour-over</td>
    </tr>
    <tr>
      <td>Ratio</td>
      <td>1:14</td>
    </tr>
    <tr>
      <td>Water Temp</td>
      <td>199°F</td>
    </tr>
  </tbody>
</table>

<p>I taste key lime, salt, and caramel. But not much comes to mind, and it’s not a strong enough flavor to trigger much of a reaction from my palate, either. Meh.
I continue to think that the big players make weak flavors.</p>]]></content><author><name>Josh Beckman</name><email>josh@joshbeckman.org</email><uri>https://www.joshbeckman.org/about</uri></author><category term="blog" /><category term="coffee" /><category term="roast-notes" /><summary type="html"><![CDATA[I bought a bag of Sun Catcher from Peet’s this week when I was picking up a quick cup in a rush before work.]]></summary><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://www.joshbeckman.org/assets/images/IMG_0900.jpeg" /><media:content medium="image" url="https://www.joshbeckman.org/assets/images/IMG_0900.jpeg" xmlns:media="http://search.yahoo.com/mrss/" /></entry></feed>