<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Blake Merryman</title>
    <link>https://blakemerryman.com/</link>
    <description>Recent content on Blake Merryman</description>
    <generator>Hugo -- 0.157.0</generator>
    <language>en-us</language>
    <lastBuildDate>Fri, 10 Apr 2026 12:52:49 -0600</lastBuildDate>
    <atom:link href="https://blakemerryman.com/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>LLM Wiki</title>
      <link>https://blakemerryman.com/linked/2026/04/llm-wiki/</link>
      <pubDate>Fri, 10 Apr 2026 12:52:49 -0600</pubDate>
      <guid>https://blakemerryman.com/linked/2026/04/llm-wiki/</guid>
      <description>A look at Karpathy&amp;#39;s llm-wiki pattern, where an LLM writes and maintains a structured wiki as a persistent knowledge artifact. Includes my own experience applying the concept and a pointer to AST-based tooling for software projects.</description>
      <content:encoded><![CDATA[<p>From a <a href="https://gist.github.com/karpathy/442a6bf555914893e9891c11519de94f" target="_blank" rel="noopener noreferrer">Github Gist by Andrej Karpathy</a>

(<a href="/resources/llm-wiki.md">local copy</a>
 for posterity):</p>
<blockquote>
<p>A pattern for building personal knowledge bases using LLMs.</p>
<p>[&hellip;]</p>
<p>Most people&rsquo;s experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves
relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from
scratch on every question. There&rsquo;s no accumulation.</p>
<p>[&hellip;]</p>
<p>The idea here is different. Instead of just retrieving from raw documents at query time, the LLM incrementally builds
and maintains a persistent wiki — a structured, interlinked collection of markdown files that sits between you and the
raw sources.</p>
</blockquote>
<p>As a human reader, I get immense value out of online wikis (like Wikipedia) and will often not even need the actual
source material for the vast majority of my searches. When reading fiction, I will frequently use book-specific wikis as
supplemental reading when I&rsquo;m trying to remember certain details (e.g. where else have I seen this character?). My
personal knowledge base (and this site, to some degree) is an effort to build a wiki-like system, that I control, to
augment my own memory. Wikis save me a lot of time.</p>
<p>Applying this same principle to LLM systems is a fascinating idea. Wikis (theoretically) can save a lot of tokens.</p>
<hr>
<blockquote>
<p>The knowledge is compiled once and then kept current, not re-derived on every query.<br>
[&hellip;]<br>
You never (or rarely) write the wiki yourself — the LLM writes and maintains all of it. You&rsquo;re in charge of sourcing,
exploration, and asking the right questions. The LLM does all the grunt work</p>
</blockquote>
<hr>
<blockquote>
<h2 id="architecture">Architecture</h2>
<p>There are three layers:</p>
<p><strong>Raw sources</strong> — your curated collection of source documents. Articles, papers, images, data files. These are immutable
— the LLM reads from them but never modifies them. This is your source of truth.</p>
<p><strong>The wiki</strong> — a directory of LLM-generated markdown files. Summaries, entity pages, concept pages, comparisons, an
overview, a synthesis. The LLM owns this layer entirely. It creates pages, updates them when new sources arrive,
maintains cross-references, and keeps everything consistent. You read it; the LLM writes it.</p>
<p><strong>The schema</strong> — a document (e.g. CLAUDE.md for Claude Code or AGENTS.md for Codex) that tells the LLM how the wiki is
structured, what the conventions are, and what workflows to follow when ingesting sources, answering questions, or
maintaining the wiki. This is the key configuration file — it&rsquo;s what makes the LLM a disciplined wiki maintainer
rather than a generic chatbot. You and the LLM co-evolve this over time as you figure out what works for your domain.</p>
</blockquote>
<hr>
<blockquote>
<h2 id="operations">Operations</h2>
<p><strong>Ingest.</strong> You drop a new source into the raw collection and tell the LLM to process it. [&hellip;]</p>
<p><strong>Query.</strong> You ask questions against the wiki. The LLM searches for relevant pages, reads them, and synthesizes an
answer with citations. [&hellip;] The important insight: good answers can be filed back into the wiki as new pages. [&hellip;]
This way your explorations compound in the knowledge base just like ingested sources do.</p>
<p><strong>Lint.</strong> Periodically, ask the LLM to health-check the wiki. Look for: contradictions between pages, stale claims
that newer sources have superseded, orphan pages with no inbound links, important concepts mentioned but lacking
their own page, missing cross-references, data gaps that could be filled with a web search. [&hellip;]</p>
</blockquote>
<hr>
<blockquote>
<p>The tedious part of maintaining a knowledge base is not the reading or the thinking — it&rsquo;s the bookkeeping.</p>
<p>[&hellip;]</p>
<p>The right way to use this is to share it with your LLM agent and work together to instantiate a version that fits your
needs.</p>
</blockquote>
<hr>
<p>I&rsquo;ve applied the concepts for this idea to one of my projects. My first attempt was a failure. It generated a wiki, but the instructions written to CLAUDE.md contained a fatal flaw: Claude would greedily consume the wiki on
every query. This was filling my context window quickly. I&rsquo;ve since updated those instructions and seen
efficiency improvements. Plenty of room to improve, though. I plan to explore implementing a few of the
operations as commands and an agent for coordination.</p>
<p>Another interesting idea I&rsquo;ve seen around this concept: for software projects, using compiled artifacts like
<a href="https://en.wikipedia.org/wiki/Abstract_syntax_tree" target="_blank" rel="noopener noreferrer">AST</a>
 to provide the basis for the wiki.
See <a href="https://github.com/Houseofmvps/codesight?tab=readme-ov-file#wiki-knowledge" target="_blank" rel="noopener noreferrer">Codesight</a>
 for more details.</p>
]]></content:encoded>
    </item>
    <item>
      <title>The Dark Wizard</title>
      <link>https://blakemerryman.com/linked/2026/03/the-dark-wizard/</link>
      <pubDate>Mon, 30 Mar 2026 17:34:08 -0600</pubDate>
      <guid>https://blakemerryman.com/linked/2026/03/the-dark-wizard/</guid>
      <description>The Dark Wizard is a four-part HBO Max docuseries about Dean Potter, one of climbing&amp;#39;s most legendary and controversial figures. It premieres April 14 and screens at the Boulder International Film Festival on April 10.</description>
      <content:encoded><![CDATA[<p>From the mouth of the late Dean Potter in <a href="https://www.youtube.com/watch?v=h7gTjnio7oQ" target="_blank" rel="noopener noreferrer">the trailer for <em>The Dark Wizard</em> (YouTube)</a>
 (via <a href="https://www.climbing.com/videos/the-dark-wizard-hbo-dean-potter-trailer-release-date/" target="_blank" rel="noopener noreferrer">Climbing Magazine</a>
):</p>
<blockquote>
<p>When I was a little boy, my first memory was this dream of falling.
[&hellip;]
My whole life, I&rsquo;ve been obsessed with the dream. But maybe it wasn&rsquo;t me falling to my death. Maybe it was me flying.</p>
</blockquote>
<p>Dean Potter is a near mythical figure in the world of climbing.
He was famous for his daring exploits while climbing, BASE jumping, and highlining (often performing multiple at the same time).
He was infamous for his disregard for tradition, safety, and the law.</p>
<blockquote>
<p>From directors Peter Mortimer and Nick Rosen comes an unflinching portrait of Dean Potter, the world’s most
influential and controversial climber, BASE jumper and highline walker.</p>
</blockquote>
<p>The two directors behind the series are also responsible for:</p>
<ul>
<li><a href="https://www.imdb.com/title/tt11790780" target="_blank" rel="noopener noreferrer">The Alpinist</a>
 (2021)</li>
<li><a href="https://www.imdb.com/title/tt7286916/" target="_blank" rel="noopener noreferrer">The Dawn Wall</a>
 (2017)</li>
<li>Founding <a href="https://reelrocktour.com/pages/about" target="_blank" rel="noopener noreferrer">Reel Rock</a>
 (2005)</li>
</ul>
<p><em>The Alpinist</em> and <em>The Dawn Wall</em> are both fantastic climbing documentaries. Both are worth your time.</p>
<p>Now that I live in Colorado, it&rsquo;s an annual tradition to attend the world premiere of <em>Reel Rock</em> in Boulder. <em>The Dark Wizard</em> will also screen at the <a href="https://tickets.biff1.com/schedule/69aee56c59adbede3ec3739c" target="_blank" rel="noopener noreferrer">Boulder International Film Festival</a>
 on April 10.</p>
<p>The four-part docuseries premieres April 14 on <a href="https://www.hbomax.com/shows/dark-wizard/76e78c26-21c9-45b4-b84b-4c3e1f8ff763" target="_blank" rel="noopener noreferrer">HBO Max</a>
.</p>
<p>This looks to be a must-watch for climbers (or climbing enthusiasts).</p>
]]></content:encoded>
    </item>
    <item>
      <title>Claude Code as Infrastructure</title>
      <link>https://blakemerryman.com/linked/2026/03/claude-code-as-infrastructure/</link>
      <pubDate>Wed, 25 Mar 2026 11:49:34 -0600</pubDate>
      <guid>https://blakemerryman.com/linked/2026/03/claude-code-as-infrastructure/</guid>
      <description>On treating Claude Code as infrastructure, not a chatbot, and what that&amp;#39;s meant for running a business and this blog as a solo developer.</description>
      <content:encoded><![CDATA[<p>From a post by <a href="https://www.reddit.com/r/ClaudeAI/comments/1rwmj25/i_stopped_using_claudeai_entirely_i_run_my_entire/" target="_blank" rel="noopener noreferrer">ColdPlankton9273 on r/ClaudeAI</a>
:</p>
<blockquote>
<p>Everything I do runs through Claude Code. Not just coding. My morning routine, my CRM, my content pipeline, my lead
sourcing, my follow-ups. All of it.</p>
<p>I built a system that runs my entire business from the terminal. One command in the morning, and my whole day is laid
out. I copy, paste, check boxes, move on.</p>
<p>At some point I stopped thinking of Claude as something I chat with and started treating it as infrastructure. That
changed everything.</p>
<p>Don&rsquo;t get me wrong, I still chat with it, but only on [Claude Code].</p>
<p>Anyone else gone full Claude Code for non-coding work?</p>
</blockquote>
<p>I&rsquo;ll have a lot more to write about this in the future, but I have been using Claude Code to help launch <a href="https://merrymantechnology.com" target="_blank" rel="noopener noreferrer">my
business</a>
. I have a lot of experience building software but I lack experience in the
other skills that are required to run your own business: managing infrastructure, product strategy &amp; research,
marketing, design, and the day-to-day details of administration. As a solo indie developer, it&rsquo;s empowering to have a
(semi-)reliable personal assistant that can do a little bit of everything.</p>
<p>I even use Claude Code to semi-automate the running of <em>this</em> blog. Claude has helped me:</p>
<ul>
<li>Write a custom Hugo theme that I&rsquo;m more happy with and which allows me to drop an external dependency.</li>
<li>Automate the boilerplate and grunt work required to manage a static site.</li>
<li>Audit the site to catch mistakes and inconsistencies.</li>
<li>Add a new <a href="/linked/2026/03/linked-list-blogging/">linked list</a>
 feature to the blog.</li>
<li>Proofread my writing to catch mistakes before publishing.</li>
</ul>
<p>Now I get to focus almost entirely on the writing.</p>
]]></content:encoded>
    </item>
    <item>
      <title>Linked List Blogging</title>
      <link>https://blakemerryman.com/linked/2026/03/linked-list-blogging/</link>
      <pubDate>Fri, 20 Mar 2026 19:30:44 -0600</pubDate>
      <guid>https://blakemerryman.com/linked/2026/03/linked-list-blogging/</guid>
      <description>A roundup of seminal posts on link blogging, with commentary on the format&amp;#39;s history and my own approach to curating links worth sharing.</description>
      <content:encoded><![CDATA[<p>From the depths of the <a href="https://daringfireball.net/2004/06/linked_list" target="_blank" rel="noopener noreferrer">Daring Fireball</a>
 archives:</p>
<blockquote>
<p>New feature at Daring Fireball: the Linked List, a daily list of interesting links and brief commentary on DF-related
topics, updated frequently but not frenetically. Call it a “link log”, or “linkblog”, or just “a good way to dick
around on the Internet for a few minutes a day”.</p>
</blockquote>
<p>I&rsquo;ve been following Daring Fireball (by John Gruber) since 2008. I remember the days (before I learned how to use RSS)
when I would repeatedly refresh the home page as I went about my day at college. In many ways, Daring Fireball is one of
the (if not <em>the</em>) reasons I became interested in writing software for Apple platforms.</p>
<hr>
<p>From <a href="https://simonwillison.net/2024/Dec/22/link-blog" target="_blank" rel="noopener noreferrer">Simon Willison&rsquo;s Weblog</a>
:</p>
<blockquote>
<p>I started running a basic link blog on this domain back in November 2003—publishing links (which I called “blogmarks”)
with a title, URL, short snippet of commentary and a “via” link where appropriate.</p>
<p>[&hellip;]</p>
<p>I’m going to describe the informal set of guidelines I’ve set myself for how I link blog, in the hope that it might
encourage other people to give this a try themselves.</p>
</blockquote>
<p>Willison goes into great detail about his guidelines. My guidelines are basically:</p>
<ul>
<li>Something I found interesting</li>
<li>Something I want to remember</li>
<li>Something I want to share</li>
</ul>
<p>Willison closes with:</p>
<blockquote>
<p>Sharing interesting links with commentary is a low effort, high value way to contribute to internet life at large.</p>
</blockquote>
<p>Willison&rsquo;s <a href="https://simonwillison.net/2022/Nov/6/what-to-blog-about/" target="_blank" rel="noopener noreferrer">&ldquo;What to blog about&rdquo;</a>
 is also a must read.</p>
<hr>
<p>Other pioneers in this space:</p>
<ul>
<li>Dave Winer (<a href="http://scripting.com/" target="_blank" rel="noopener noreferrer">Scripting News</a>
, 1994)</li>
<li>Jason Kottke (<a href="https://kottke.org" target="_blank" rel="noopener noreferrer">kottke.org</a>
, 1998)</li>
</ul>
]]></content:encoded>
    </item>
    <item>
      <title>The 49MB Web Page</title>
      <link>https://blakemerryman.com/linked/2026/03/the-49mb-web-page/</link>
      <pubDate>Thu, 19 Mar 2026 15:10:16 -0600</pubDate>
      <guid>https://blakemerryman.com/linked/2026/03/the-49mb-web-page/</guid>
      <description>Shubham Bose audits the bloat of modern news sites — plus how this site compares at roughly 2,000× leaner than nytimes.com.</description>
      <content:encoded><![CDATA[<p>From the blog of <a href="https://thatshubham.com/blog/news-audit" target="_blank" rel="noopener noreferrer">Shubham Bose</a>
:</p>
<blockquote>
<p>I went to the New York Times to glimpse at four headlines and was greeted with 422 network requests and 49 megabytes
of data. It took two minutes before the page settled. And then you wonder why every sane tech person has an adblocker
installed on systems of all their loved ones.</p>
</blockquote>
<p>I&rsquo;ve been a long-time user of <a href="https://1blocker.com" target="_blank" rel="noopener noreferrer">1Blocker</a>
, <a href="https://oblador.github.io/hush/" target="_blank" rel="noopener noreferrer">Hush</a>
, and
<a href="https://andadinosaur.com/launch-vinegar" target="_blank" rel="noopener noreferrer">Vinegar</a>
 to help wrangle the madness of today&rsquo;s internet.</p>
<blockquote>
<p>Simplified versions like text.npr.org, lite.cnn.com and <a href="https://www.cbc.ca/lite" target="_blank" rel="noopener noreferrer">www.cbc.ca/lite</a>
 still exist out there. And RSS feeds do too.</p>
</blockquote>
<p>For the record, a typical post on this site (no images) weighs in as follows:</p>
<table>
  <thead>
      <tr>
          <th>Asset</th>
          <th>Size</th>
      </tr>
  </thead>
  <tbody>
      <tr>
          <td>HTML (a typical page)</td>
          <td>~5 KB</td>
      </tr>
      <tr>
          <td>CSS</td>
          <td>~15 KB</td>
      </tr>
      <tr>
          <td>Analytics<sup id="fnref:1"><a href="#fn:1" class="footnote-ref" role="doc-noteref">1</a></sup></td>
          <td>~2.5 KB</td>
      </tr>
      <tr>
          <td><strong>Total</strong></td>
          <td><strong>~23 KB</strong></td>
      </tr>
  </tbody>
</table>
<p>At just 23 KB, that&rsquo;s roughly 2,000× lighter than the home page of the New York Times. This site is built to be fast and
lean.<sup id="fnref:2"><a href="#fn:2" class="footnote-ref" role="doc-noteref">2</a></sup></p>
<p>Some supplementary (and seething) commentary from <a href="https://daringfireball.net/2026/03/your_frustration_is_the_product" target="_blank" rel="noopener noreferrer">Daring Fireball</a>
:</p>
<blockquote>
<p>Even websites from publishers who care about quality are doing things on the web that they would never do with their
print editions.</p>
<p>[&hellip;]</p>
<p>The web is the only medium the world has ever seen where its highest-profile decision makers are people who despise
the medium and are trying to drive people away from it.</p>
</blockquote>
<p>This post from Daring Fireball weighs in at a trim 157 KB, over half of which comes from the screenshot (an extremely
rare inclusion on DF).</p>
<p>Back to Shubham Bose to close it out:</p>
<blockquote>
<p>They built a system that treats your attention as an extractable resource. The most radical thing you can do is
refuse to be extracted.</p>
</blockquote>
<div class="footnotes" role="doc-endnotes">
<hr>
<ol>
<li id="fn:1">
<p>This site uses <a href="https://vercel.com/docs/analytics" target="_blank" rel="noopener noreferrer">Vercel Web Analytics</a>
, a privacy-first, cookie-free analytics
tool built into the Vercel platform. It only stores anonymized data and never tracks individual visitors.&#160;<a href="#fnref:1" class="footnote-backref" role="doc-backlink">&#x21a9;&#xfe0e;</a></p>
</li>
<li id="fn:2">
<p><a href="/posts/2023/in-memory-of-george/">A post on this site with a full photo gallery</a>
 weighs in at ~1.2 MB total.
That&rsquo;s still ~40× lighter than the NYT.&#160;<a href="#fnref:2" class="footnote-backref" role="doc-backlink">&#x21a9;&#xfe0e;</a></p>
</li>
</ol>
</div>
]]></content:encoded>
    </item>
    <item>
      <title>Why Blog If Nobody Reads It?</title>
      <link>https://blakemerryman.com/linked/2026/03/why-blog-if-nobody-reads-it/</link>
      <pubDate>Wed, 18 Mar 2026 20:53:01 -0600</pubDate>
      <guid>https://blakemerryman.com/linked/2026/03/why-blog-if-nobody-reads-it/</guid>
      <description>A reflection on why blogging matters even without readers, and a commitment to documenting the highs and lows of going indie.</description>
      <content:encoded><![CDATA[<p>From (the ironically now defunct) <a href="https://web.archive.org/web/20250210121306/https://andysblog.uk/why-blog-if-nobody-reads-it/" target="_blank" rel="noopener noreferrer">Andy&rsquo;s Blog</a>
 (via The Internet Archive):</p>
<blockquote>
<p>Let’s tell the truth, then: Nobody reads your blog. [&hellip;] At least, not as many as you’d like.</p>
</blockquote>
<p>This is not meant to be a mass market blog. Thank you for tagging along.</p>
<blockquote>
<p>When you write, you think better. When you think better, you create better.</p>
<p>So, who’s there real audience?</p>
<p>You’re not just writing for today’s invisible audience. You’re writing for:</p>
<ul>
<li>Future you. Your posts become a time capsule of your evolving mind.</li>
<li>One right person. Maybe one day, someone stumbles across your words at exactly the right moment. And that changes something for them.</li>
<li>The work itself. Consistency beats virality. A hundred posts with depth will outlast a single viral hit.</li>
</ul>
</blockquote>
<p>I&rsquo;ve been thinking about this a lot as I chart this new course in life. I want to document how running a small software
company goes.</p>
<p>Whether it goes poorly or well, by writing about it, I&rsquo;ll (hopefully) learn from my mistakes and understand what actually
worked. If you follow along, <em>you</em> may learn something as well.</p>
<p>And honestly, I just <em>want</em> to write more. I find it cathartic. To that end, I&rsquo;ve added a new <a href="/linked/">&ldquo;linked list&rdquo;</a>
 feature to this blog and streamlined my workflow. My personal essays are sporadic and varied; I&rsquo;m hoping this will help me move the needle on my writing consistency.</p>
]]></content:encoded>
    </item>
    <item>
      <title>What happened to WASD keyboards?</title>
      <link>https://blakemerryman.com/linked/2026/03/what-happened-to-wasd-keyboards/</link>
      <pubDate>Wed, 18 Mar 2026 16:54:05 -0600</pubDate>
      <guid>https://blakemerryman.com/linked/2026/03/what-happened-to-wasd-keyboards/</guid>
      <description>WASD Keyboards has shut down — a personal farewell to a company whose keyboards have been the most used tool of my craft for over a decade.</description>
      <content:encoded><![CDATA[<p>From a post in <a href="https://discourse.codinghorror.com/t/what-happened-to-wasd-keyboards/10143" target="_blank" rel="noopener noreferrer">Coding Horror Discussion</a>
:</p>
<p><strong>Daniel_Langworthy</strong> (April 13, 2025):</p>
<blockquote>
<p>@codinghorror do you know what happened to WASDKeyboards? I am so sad, I love my keyboards I got from them but they seem to just be gone</p>
</blockquote>
<p><strong>JimPas</strong> (April 13, 2025):</p>
<blockquote>
<p>Hi Daniel. I checked this out and the last post on their support site was back in Nov 2024. Scrolling down to the bottom of the page shows this, so it doesn&rsquo;t look good:</p>
</blockquote>
<p>It shows a screenshot of a notice that reads: &ldquo;Service Temporarily Unavailable&rdquo;.</p>
<p><strong>Glenwing</strong> (April 15, 2025):</p>
<blockquote>
<p>I stopped by their office address in early January. Their name was still on the sign, but they’re gone. Replaced with some Solar startup.</p>
</blockquote>
<hr>
<p>This is sad news indeed!</p>
<p>After I started <a href="/posts/2014/first-day-at-griffin/">my first software engineering job</a>
 in 2014, one of the first things I purchased was a mechanical keyboard from WASD: a CODE V1 87-Key Mechanical Keyboard with Cherry MX Clear keys.</p>
<p>I felt strongly (and still do) that writing software is a craft and any good craftsperson should invest in quality tools, learn how to use them effectively, and care for them. That keyboard went with me to every new job and moved across the country from Tennessee to California to Colorado. I&rsquo;ve never had a single issue with it.</p>
<p>In 2022 when I needed both an office and home setup for Apple&rsquo;s hybrid schedule, I added the CODE V3 (87-Key Mechanical Keyboard - Cherry MX Clear) to my setup. The V3 was for work; the V1 for home.</p>
<p>Now that I <a href="/posts/2026/going-indie/">work independently</a>
, the V3 is my daily driver but the V1 is still alive and well, boxed up in my office awaiting a day when it&rsquo;s needed again.</p>
]]></content:encoded>
    </item>
    <item>
      <title>Going Indie</title>
      <link>https://blakemerryman.com/posts/2026/going-indie/</link>
      <pubDate>Tue, 10 Mar 2026 00:00:00 +0000</pubDate>
      <guid>https://blakemerryman.com/posts/2026/going-indie/</guid>
      <description>After a decade of building software for other companies, I&amp;#39;m going indie!</description>
      <content:encoded><![CDATA[<p>After a decade of building software for other companies, I&rsquo;m going indie! I&rsquo;m launching <a href="https://www.merrymantechnology.com/updates/hello-world/" target="_blank" rel="noopener noreferrer">Merryman Technology</a>
 to focus on the problems that I find most interesting.</p>
<p>This is a one-person operation: it&rsquo;s just me, building software for Apple platforms. The kind of software I want to use myself: focused, thoughtful, and delightful in the details.</p>
<p>I&rsquo;ve spent my career caring deeply about the quality of the software I ship. That doesn&rsquo;t change now. If anything, working for myself means I get to hold it to an even higher standard.</p>
<p>There&rsquo;s more to come.</p>
<p>Good software should spark a little joy. I&rsquo;m working on it.</p>
<p>Thanks for checking it out!</p>
]]></content:encoded>
    </item>
    <item>
      <title>Monthly Recap: March</title>
      <link>https://blakemerryman.com/posts/2024/monthly-recap-march/</link>
      <pubDate>Thu, 04 Apr 2024 23:08:25 -0600</pubDate>
      <guid>https://blakemerryman.com/posts/2024/monthly-recap-march/</guid>
      <description>A recap of March: 58.6 miles, 8,967 feet of elevation gain, and a new love of trail running.</description>
      <content:encoded><![CDATA[<p>The month of March was a busy one for me. I recently started trail running and have really been trying to log some
miles. Kellie and I are gave up on our <a href="/posts/2024/training-for-adventure/">backpacking training program</a>
. It was just
too repetitive. We&rsquo;ve since moved on doing our own things (me running, her working with a trainer). We <em>have</em> kept up
our streak of weekend hikes. We at seven weeks and counting!</p>
<p>According to Strava, in March, I spent 22 hours active (walking, running, hiking, etc.), traveled 58.6 miles, and gained
8,967 feet of elevation. Over the past five weeks, I&rsquo;m averaging around 12 miles and 1786 feet of elevation gain per
week. My current routine is to run twice during the week for general fitness, climb twice at the gym, hike with Kellie
at least once, and do one longer trail run on the weekends. I feel like I&rsquo;m getting stronger and I&rsquo;m down about eight
pounds.</p>
<p>I kind of started trail running out of the blue (more on that in a future post) and I&rsquo;ve been blown away by how much
I&rsquo;ve enjoyed it. I&rsquo;m not going for any PRs or FKTs&hellip; I&rsquo;m just happy to be out here running around in the mountains.</p>
<p>It seems like we&rsquo;re finally at the tail end of winter. We had a lot of snow in March and it was
<a href="/posts/2024/2024-03-17-ceran-saint-vrain-trail/">fun at times</a>
 but I think Kellie and I are both ready for spring.</p>]]></content:encoded>
    </item>
    <item>
      <title>How to Export Kindle Highlights</title>
      <link>https://blakemerryman.com/posts/2024/how-to-export-kindle-highlights/</link>
      <pubDate>Thu, 04 Apr 2024 22:01:38 -0600</pubDate>
      <guid>https://blakemerryman.com/posts/2024/how-to-export-kindle-highlights/</guid>
      <description>How to export Kindle highlights and clean them up using regex in Sublime Text.</description>
      <content:encoded><![CDATA[<p>For my <a href="/tags/books">book posts</a>
, I was looking for an easy way to export my Kindle Highlights. I was hoping for a true
export but the best I&rsquo;ve found so far is <a href="https://read.amazon.com/notebook" target="_blank" rel="noopener noreferrer">Amazon Kindle Notebook</a>
. This gives me a
relatively clean page to copy and paste from but you end up with a lot of entries like this:</p>
<pre tabindex="0"><code>Yellow highlight | Location: 564
My awesome quote!

Yellow highlight | Location: 566
Another cool quote...
</code></pre><p>Using <a href="https://www.sublimetext.com" target="_blank" rel="noopener noreferrer">Sublime Text</a>
, you can use easily clean this up by:</p>
<ol>
<li>Select Find &gt; Replace from the menu bar</li>
<li>Ensure regular expressions is selected</li>
<li>Past the following regex into the find field (note the trailing period):</li>
</ol>
<pre tabindex="0"><code>^.*Yellow highlight.*\n
</code></pre><ol start="4">
<li>Replace all with an empty space!</li>
</ol>
<p>This leaves you with a relatively clean copy of your highlights.</p>]]></content:encoded>
    </item>
    <item>
      <title>🧗🏻‍♂️ My First Freeway</title>
      <link>https://blakemerryman.com/posts/2024/my-first-freeway/</link>
      <pubDate>Wed, 03 Apr 2024 09:00:00 -0600</pubDate>
      <guid>https://blakemerryman.com/posts/2024/my-first-freeway/</guid>
      <description>Solo climbing Freeway on the Second Flatiron — a Boulder classic with a famous diving board jump.</description>
      <content:encoded><![CDATA[<p><img src="/posts/2024/my-first-freeway/diving-board_hu_1012b8c2d0f2af88.webp"
       alt="Blake midair after jumping from the famous Freeway diving board. Taken April 2024" title="Blake midair after jumping from the famous Freeway diving board. Taken April 2024"
       width="1000"
       height="750"
       loading="lazy"></p>
<p>This morning I completed a Boulder classic: solo climbing <a href="https://www.mountainproject.com/route/105752023/freeway" target="_blank" rel="noopener noreferrer">Freeway</a>

on the Second Flatiron. Special thanks to my friend Brooke for talking me into this excellent climbing experience and
capturing my epic leap from the &ldquo;diving board&rdquo;. Aside from a few sketchy &ldquo;scrambles&rdquo; to set anchors in the past, this
was my first intentional solo climb.</p>
<p>At 600 feet high, Freeway seems intimidating from the base. But the route is an extremely easy climb. It&rsquo;s graded at 5.0
on the Yosemite Decimal System (this is the lowest grade that still counts as climbing that warrants protection). In
truth, it&rsquo;s a moderate scramble up a slabby face that has a few true climbing moves and enough exposure to get the heart
pumping when you remember that you don&rsquo;t have any protection. I was able to complete this climb in my approach shoes.</p>
<p><img src="/posts/2024/my-first-freeway/slabby_hu_8bb1ae0858e7035.webp"
       alt="Blake working his way up the slab. Taken April 2024" title="Blake working his way up the slab. Taken April 2024"
       width="1000"
       height="1333"
       loading="lazy"></p>
<p>The weather was absolutely fantastic! It was a moderately busy morning: we were two of seven people on the route. At the
beginning, we crossed paths with a guy who was RUNNING DOWN the route. Brooke also ran into a friend on the route right
after I jumped off the diving board. This felt like a very Boulder moment and I found it very humerous.</p>
<p>Round trip, it took us 1 hour 45 minutes to go 2.36 miles, 1242 feet of elevation gain. I take the blame for being slow
on this one. I was a a little nervous about the climb and took my time on the way up.</p>
<p><img src="/posts/2024/my-first-freeway/boulder_hu_c69a7d751e2ae37.webp"
       alt="Overlooking Boulder midway up the Second Flatiron. Taken April 2024" title="Overlooking Boulder midway up the Second Flatiron. Taken April 2024"
       width="1000"
       height="750"
       loading="lazy"></p>]]></content:encoded>
    </item>
    <item>
      <title>📚 Demon in White</title>
      <link>https://blakemerryman.com/posts/2024/demon-in-white/</link>
      <pubDate>Sat, 30 Mar 2024 10:25:55 -0600</pubDate>
      <guid>https://blakemerryman.com/posts/2024/demon-in-white/</guid>
      <description>My highlights from Demon in White by Christopher Ruocchio — book three of The Sun Eater series.</description>
      <content:encoded><![CDATA[<p>My Sun Eater journey continues with <a href="https://www.goodreads.com/book/show/50156751-demon-in-white" target="_blank" rel="noopener noreferrer"><em>Demon in White</em></a>
.
Despite taking place over many decades (thanks to the intricacies of space travel), this book kept things interesting:
court intrigue, assassinations, an ancient mystery, a little archeology, and a desparate battle for the fate of the
galaxy (or of our heros at least). At times, I felt the story (and this series as a whole) leaned a little to heavily
into hand waving the story along. But it is an enjoyable journey.</p>
<h2 id="my-highlights">My Highlights</h2>
<blockquote>
<p>For all its faults—and they are numberless—I felt a sudden affection for the Empire of my home,</p>
</blockquote>
<blockquote>
<p>Rome of old was not loved for its greatness, so the poet wrote. Rome was great because men loved her, as I loved my
Empire in that moment.</p>
</blockquote>
<blockquote>
<p>A fear born of the fact that though we may come back to a place at the end of our journeys, we never really return,
for we are not the same person who departed.</p>
</blockquote>
<blockquote>
<p>Alexander needed desperately to become something. To become someone. To matter. Thus it is for all men. We are nothing
until we have accomplished something.</p>
</blockquote>
<blockquote>
<p>that the privilege of one’s birth is no privilege at all, only another kind of cage.</p>
</blockquote>
<blockquote>
<p>“Well then,” she said, “’tis well that whether we fail or not is up to us.”</p>
</blockquote>
<blockquote>
<p>But it was better this way. To appear ostentatious was to exaggerate my importance. Understating my arrival like this
sent a different message: that I did not need to exaggerate.</p>
</blockquote>
<blockquote>
<p>“Because I have earned their respect. Rank only formalizes relationships between people, Alexander. It does not create
them. One has rank because one deserves it, and if one does not deserve it, he will lose his rank. Or his life. A man
would do well to become worthy of his honors, else he will be deposed as a tyrant.”</p>
</blockquote>
<blockquote>
<p>“From little towns in a far land we came, to save our honour and a world aflame,”</p>
</blockquote>
<blockquote>
<p>That is why the best commanders, the best captains and kings, make themselves known to their people—that their people
may be known to them. That we might not betray their trust and obedience when the critical time came.</p>
</blockquote>
<blockquote>
<p>Sir Gawain. Turning my head, I stopped and looked to the statue nearest me on the other side. SIR LANCELOT. I guessed
then I could name the others. Percival, Bedivere, Gareth, and Kay. Gaheris and Galahad. Tristan and Palamedes. The
Knights of the Round Table.</p>
</blockquote>
<blockquote>
<p>I had believed that I alone had the wisdom to set the world to rights, not knowing then that true wisdom lies in
knowing that I did not possess that wisdom, and never would.</p>
</blockquote>
<blockquote>
<p>Men are slower to act from principle than self-interest, and far slower to act on principle than jealousy or revenge.</p>
</blockquote>
<blockquote>
<p>I had to choose. The only way out was through. Always forward, I thought to myself.</p>
</blockquote>
<blockquote>
<p>Reader, have I already said that there is a difference between knowing a fact and owning it?</p>
</blockquote>
<blockquote>
<p>“Because we are not good.” It took me a moment to realize that it had been I who’d answered. Both my master and
student looked at me. “If we were good men, we’d not need all this reflection.”</p>
</blockquote>
<blockquote>
<p>The stone giants, the city, the mountain on which I stood existed in another present. One that had not happened—that
could not happen—because the past that informed its reality had not. I had come to a time unreal and unrealized.</p>
</blockquote>
<blockquote>
<p>As darkness brings forth the creatures of the night, so silence brings forth the things within our hearts&hellip;
if we will but listen to it.</p>
</blockquote>
<blockquote>
<p>“Hadrian,” she said, “you were gone for forty days.”</p>
</blockquote>
<p>The allusion here is interesting.</p>
<blockquote>
<p>Consciousness, I think, is a mechanism we humans have evolved for sorting the threads of time. We do it blindly, and
that is enough for most of us, most of the time. I am no different, save that I have learned to listen. To see.</p>
</blockquote>
<blockquote>
<p>Nothing is without meaning, because nothing is without consequence.</p>
</blockquote>
<blockquote>
<p>“We are all chosen for something,”</p>
</blockquote>
<blockquote>
<p>I am not certain if a hell awaits the unjust hereafter, but I know there are hells in this life.</p>
</blockquote>
<blockquote>
<p>We had expanded too far, brushed against the borders of infinity. Infinity had pushed back.</p>
</blockquote>
<blockquote>
<p>“We are going to lose people now.” It had struck me as a funny thing to say at the time. We had already lost people
fighting in the streets, had lost an entire fleet and orbital defense platform. We had been losing people for days.
He’d meant civilians, but the word choice stuck with me. What were soldiers then, if not people?</p>
</blockquote>
<blockquote>
<p>Pallino had told me long ago that proper Sollan officers don’t duck. In the open, a shot will find you crouching as
easily as standing, he’d said. Plus the men don’t like it. That had always stuck with me. The men don’t like it.</p>
</blockquote>
<blockquote>
<p>He was braver than I ever was. Braver&hellip; or more foolish. Or perhaps they are the same thing.</p>
</blockquote>
<blockquote>
<p>Darkness greeted us, darkness and the sense that we were running out of time.</p>
</blockquote>]]></content:encoded>
    </item>
    <item>
      <title>⛄️ Ceran Saint Vrain Trail Snow Shoeing (2024.03.17)</title>
      <link>https://blakemerryman.com/posts/2024/2024-03-17-ceran-saint-vrain-trail/</link>
      <pubDate>Mon, 18 Mar 2024 22:21:00 -0600</pubDate>
      <guid>https://blakemerryman.com/posts/2024/2024-03-17-ceran-saint-vrain-trail/</guid>
      <description>First time snow shoeing on the Ceran Saint Vrain Trail — easy on packed snow, hard when breaking trail.</description>
      <content:encoded><![CDATA[<script src="/shortcode-gallery/jquery-3.7.1.min.js"></script>
	

	
		<script src="/shortcode-gallery/lazy/jquery.lazy.min.js"></script>
	

	<script src="/shortcode-gallery/swipebox/js/jquery.swipebox.min.js"></script>
	<link rel="stylesheet" href="/shortcode-gallery/swipebox/css/swipebox.min.css">

	<script src="/shortcode-gallery/justified_gallery/jquery.justifiedGallery.min.js"></script>
	<link rel="stylesheet" href="/shortcode-gallery/justified_gallery/justifiedGallery.min.css"/>


<style>
	

	
</style>





<div id="gallery-7b9ac14bbe54f3c1547c2721595875a9-0-wrapper" class="gallery-wrapper">
<div id="gallery-7b9ac14bbe54f3c1547c2721595875a9-0" class="justified-gallery">
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			<div>
				
				
					
					
				

				
				
					
					
				

				<a href="/posts/2024/2024-03-17-ceran-saint-vrain-trail/images/image-1.jpeg"
					class="galleryImg"
					
						

						

						
					
					>
					<img
						width="600" height="450"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIABgAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&#43;Tl5ufo6ery8/T19vf4&#43;fr/2gAMAwEAAhEDEQA/AOR8La7Ho18WuGcROp&#43;6cgHBxx65Ar0e&#43;8R&#43;HtTscXU7qqZ8qbyG2/XAyazJPAvh27Qt5Uts4H3o5CR9cHNZer&#43;BrmwWE2Vy95FI23512iP0zyePeoTnG1ugWjLc15fFnhPw/wCWlrH/AGnMx&#43;d9v3RjOQT74rC1b4jXOoxPbW1lDbwucfLxlc5HT6dqrXXg54EilYS7JZhCNq8g55zWHPZLYeYssjpKBgLtweePX0zRJyk7tgoxWiPWbaU&#43;Yvpmpre8KO8WeAeBnoKqW33h9aRP&#43;PyT6VRJfZ1aVZAPmXOCCR161wnim3ubXU31C4hgaNy22RkyvPIBXu31rt0rm/iB/wAgKL/r4X&#43;RoA//2Q=="
							
							class="lazy"
							data-src="/posts/2024/2024-03-17-ceran-saint-vrain-trail/images/image-1_hu_7549dae18c90cbb8.jpeg"
						

						
							
								
							
						
					>
				</a>
			</div>
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			<div>
				
				
					
					
				

				
				
					
					
				

				<a href="/posts/2024/2024-03-17-ceran-saint-vrain-trail/images/image-2.jpeg"
					class="galleryImg"
					
						

						

						
					
					>
					<img
						width="411" height="600"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIACAAFgMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&#43;Tl5ufo6ery8/T19vf4&#43;fr/2gAMAwEAAhEDEQA/AOs8L39xqOn/AGmRIoImk2W6R5GVA9&#43;vf8qZ4m8VWnh&#43;8tIGiaSW4DbnVv8AV4AwSO&#43;c1wieJruKWzWDYosbfZDwceYw2lznqefzqjquoS6xrUuo3AjDhg21vujAwB&#43;QrTn0M&#43;U1tbmsfFVhBd6jcRWepQv5TlRwyY9OvXJ9Kw/&#43;Ee0z/oNR/wDfBqK9DfaZEQZKHHTGBjiq&#43;yb&#43;7&#43;tZ3KNHT4N09vMkXmoFUttXGDkn644/GrlrY6nb3KRT2yRxXMiqGZST74xyOPX1r0qGK3s0228CQr6IoH8qnklOEAGMoD&#43;Na8hPMeK36lbpo5be4dhx0IOQSKrbI/8AnyufzNezXUJlAG9k5zlTg1W&#43;xH/n4m/76H&#43;FLkHzH//Z"
							
							class="lazy"
							data-src="/posts/2024/2024-03-17-ceran-saint-vrain-trail/images/image-2_hu_3fc291e85cb7dee3.jpeg"
						

						
							
								
							
						
					>
				</a>
			</div>
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			<div>
				
				
					
					
				

				
				
					
					
				

				<a href="/posts/2024/2024-03-17-ceran-saint-vrain-trail/images/image-3.jpeg"
					class="galleryImg"
					
						

						

						
					
					>
					<img
						width="600" height="450"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIABgAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&#43;Tl5ufo6ery8/T19vf4&#43;fr/2gAMAwEAAhEDEQA/AMyC5vGhkVopS8bcLIwZHdvvKSR94jnI6ZxnmsdZ1a7mfI3s&#43;5RJnd1zgEdDjufemPLKwYzuHR/nAAGFPIFWbOxvtTv4raND53msxmbORkdSfw4qbhY0RdPNNDJBta5aUMiPgktnjr9Oc1p&#43;GvD0et3n2iZpJ/LfMjyAEO275skeo4x/Out0jwnpmnwPvh82aRdrSN1xnJx6ZrajWK1t1gtoVijXoiDAFUl3Fc8f03Qpr68MEmP3quox1QrgZI/4F7V6doOh2uk2ryKC8hwC78kdBjPpXJeHf&#43;Rhf/tv/wChJXoKf8eL/wC&#43;P6URQMa7bahaY9jUs3U1UbrVCP/Z"
							
							class="lazy"
							data-src="/posts/2024/2024-03-17-ceran-saint-vrain-trail/images/image-3_hu_369e25a7e91d6227.jpeg"
						

						
							
								
							
						
					>
				</a>
			</div>
		
	
</div>
</div>

<script>
	if (!("HSCGjQuery" in window)) {
		if (!window.jQuery) {
			throw new Error("jQuery is not loaded, hugo-shortcode-gallery wont work without it!");
		}
		window.HSCGjQuery = window.jQuery.noConflict(true);
	}

	
	
	
	
	
	;(function($) {

		$( document ).ready(() => {
			const gallery = $("#gallery-7b9ac14bbe54f3c1547c2721595875a9-0");
			

			
			let swipeboxInstance = null;

			
			
			gallery.on('jg.complete', () => {
				
					
					
					$(() => {
						$('.lazy').Lazy({
							visibleOnly: true,
							afterLoad: element => element.css({filter: "none", transition: "filter 1.0s ease-in-out"})
						});
					});
				

				swipeboxInstance = $('.galleryImg').swipebox(
					$.extend({},
						{  }
					)
				);
			});

			
			gallery.justifiedGallery($.extend(
				{
					rowHeight : "150",
					margins : "5",
					border : 0,
					randomize :  false ,
					waitThumbnailsLoad : false,
					lastRow : "justify",
					captions : false,
					
					
				},
				{  }
			));

			
			
		});

	
	
	
	})(window.HSCGjQuery)
</script>

<p>Today, we tried an activity that I&rsquo;m never experienced before: snow shoeing!</p>
<p>Notes:</p>
<ul>
<li>Snow shoeing is easy going when the trail is well trod. Not so much when you are the one breaking the trail.</li>
</ul>
<p>Trail Details:</p>
<ul>
<li>Trail: <a href="https://www.alltrails.com/trail/us/colorado/ceran-saint-vrain-trail" target="_blank" rel="noopener noreferrer">AllTrails</a>
</li>
<li>Distance: 3.3 miles</li>
<li>Elevation Gain: 334 feet</li>
</ul>
<p>Workout Details:</p>
<ul>
<li>Start Time: 12:18 PM</li>
<li>Workout Time: 2 hr 50 min</li>
<li>Avg. Heartrate: 105 bpm</li>
</ul>
<p>Weather:</p>
<ul>
<li>Temperature: 29ºF</li>
<li>Humidity: —%</li>
<li>Air Quality: —</li>
<li>Conditions: Clear</li>
</ul>]]></content:encoded>
    </item>
    <item>
      <title>🏃🏻‍♂️ Neighborhood Run (2024.03.17)</title>
      <link>https://blakemerryman.com/posts/2024/2024-03-16-neighborhood-run/</link>
      <pubDate>Mon, 18 Mar 2024 22:20:00 -0600</pubDate>
      <guid>https://blakemerryman.com/posts/2024/2024-03-16-neighborhood-run/</guid>
      <description>A simple 3.6-mile neighborhood run to get more miles under my feet.</description>
      <content:encoded><![CDATA[<p>A simple run around the neighborhood to get more miles under my feet. I just walked outside and started running towards the mountains.</p>
<p>Trail Details:</p>
<ul>
<li>Trail: n/a</li>
<li>Distance: 3.6 miles</li>
<li>Elevation Gain: 129 feet</li>
</ul>
<p>Workout Details:</p>
<ul>
<li>Start Time: 5:21 PM</li>
<li>Workout Time: 44 min</li>
<li>Avg. Heartrate: 140 bpm</li>
</ul>
<p>Weather:</p>
<ul>
<li>Temperature: 44ºF</li>
<li>Humidity: 56%</li>
<li>Air Quality: 41</li>
<li>Conditions: Cloudy</li>
</ul>]]></content:encoded>
    </item>
    <item>
      <title>Pour Over Coffee</title>
      <link>https://blakemerryman.com/posts/2024/pour-over-coffee/</link>
      <pubDate>Thu, 14 Mar 2024 00:00:00 +0000</pubDate>
      <guid>https://blakemerryman.com/posts/2024/pour-over-coffee/</guid>
      <description>My recipe for a clean, bright cup of pour over coffee using the three pour method.</description>
      <content:encoded><![CDATA[<p>My recipe for a delicious cup of pour over coffee. When done well and with fresh coffee, this will be the cleanest and brightest cup of Joe you’ll ever have.</p>
<p>Prep Time: 5 min  | Cook Time: 5 min  | Difficulty: Easy  | Servings: 1</p>
<h2 id="ingredients">Ingredients</h2>
<ul>
<li>30 grams fresh<sup id="fnref:1"><a href="#fn:1" class="footnote-ref" role="doc-noteref">1</a></sup>, coarse ground coffee</li>
<li>350 grams hot (not boiling) water</li>
</ul>
<p>Adjust ratios to taste.</p>
<h2 id="equipment">Equipment</h2>
<ul>
<li>Pour over carafe (e.g. Chemex or equivalent)</li>
<li>Paper pour over filters (I prefer white paper filters)</li>
<li>Burr grinder (strongly recommended)</li>
<li>Goose neck kettle (recommended for easier pouring)</li>
</ul>
<h2 id="directions">Directions</h2>
<h4 id="preparation">Preparation</h4>
<ol>
<li>Grind beans. If possible, grind beans just before brewing. Consistency should be medium-coarse, similar to coarse salt or sand.</li>
<li>Heat water. Water should be just shy of boiling, 195°-205°F.</li>
<li>Pre-wet filter. Put filter in place on carafe and pre-wet with enough water to soak most of the filter. It doesn’t take much water and this will hold it in place. Dump filtered water out of carafe.</li>
<li>Assemble on scale. Put coffee in wetted filter and place entire carafe on gram scale.</li>
<li>Zero out your scale now.</li>
</ol>
<h4 id="brewing">Brewing</h4>
<p>This recipe uses the three pour method. Each pour should be slow but steady and in a circular motion, working from the center out and back in.</p>
<ol>
<li>Pour just enough water to saturate the grounds (~30g). Give it a gentle stir with a chop stick. Allow to “bloom” for 30 sec.<sup id="fnref:2"><a href="#fn:2" class="footnote-ref" role="doc-noteref">2</a></sup></li>
<li>Pour until the scale reads 200g. Allow to filter down.</li>
<li>The final pour should take you all the way to 350g.</li>
</ol>
<p>Once the brew is complete, you should end up with a beautiful, smooth bed of wet grounds. If you have a rough crater, you probably poured too quickly.</p>
<p>Enjoy!</p>
<div class="footnotes" role="doc-endnotes">
<hr>
<ol>
<li id="fn:1">
<p>For best results, check the packaging to ensure that your coffee is as freshly roasted as possible. Preferably within the last month. Coffee at most grocery stores was roasted a long time ago and is not great for pour over. Whole Foods has a decent selection. A local coffee shop or roaster will have the best selection.&#160;<a href="#fnref:1" class="footnote-backref" role="doc-backlink">&#x21a9;&#xfe0e;</a></p>
</li>
<li id="fn:2">
<p>Stale coffee will not bloom. 😔&#160;<a href="#fnref:2" class="footnote-backref" role="doc-backlink">&#x21a9;&#xfe0e;</a></p>
</li>
</ol>
</div>]]></content:encoded>
    </item>
    <item>
      <title>🏃🏻‍♂️ Mount Sanitas via Lion&#39;s Lair Trail Run (2024.03.13)</title>
      <link>https://blakemerryman.com/posts/2024/2024-03-13-mount-sanitas-via-lions-lair-trail-run/</link>
      <pubDate>Wed, 13 Mar 2024 09:00:00 -0600</pubDate>
      <guid>https://blakemerryman.com/posts/2024/2024-03-13-mount-sanitas-via-lions-lair-trail-run/</guid>
      <description>A morning trail run up Mount Sanitas via Lion&amp;#39;s Lair — great mountain views, deer sightings, tough pacing.</description>
      <content:encoded><![CDATA[<p><img src="/posts/2024/2024-03-13-mount-sanitas-via-lions-lair-trail-run/mountains_hu_7a985754dc779427.webp"
       alt="Looking west into the mountains from the Lion&rsquo;s Lair Trail. Taken March 2024" title="Looking west into the mountains from the Lion&#39;s Lair Trail (March 2024)"
       width="1000"
       height="524"
       loading="lazy"></p>
<p>I wasn&rsquo;t sure where I wanted to run this morning so I picked a route that I was excited to run! I&rsquo;d been hiking on this
trail before so I knew to what to expect. The views of the mountains looking west were phenominal.</p>
<p>The weather was threatening to rain but it held off long enough to complete my run. The trail conditions were pristine.</p>
<p><img src="/posts/2024/2024-03-13-mount-sanitas-via-lions-lair-trail-run/trail_hu_c16e84d45a1aaace.webp"
       alt="A pristine dirt trail. Taken March 2024" title="A pristine dirt trail (March 2024)"
       width="1000"
       height="750"
       loading="lazy"></p>
<p>I even found a few friends on the way back down.</p>
<p><img src="/posts/2024/2024-03-13-mount-sanitas-via-lions-lair-trail-run/deer_hu_cc4c09f6fb0eb730.webp"
       alt="A small family of deer grazing near the trail. Taken March 2024" title="A small family of deer grazing near the trail (March 2024)"
       width="1000"
       height="750"
       loading="lazy"></p>
<p>Notes:</p>
<ul>
<li>I ditched as much weight as possible this time. I only took my running vest, 0.5 liter of water, a headlamp, and my rain jacket (weather was threatening).</li>
<li>This run was honestly too difficult for me right now. I spent most of my time in Heart Rate Zones 3 and 4. I continue to struggle with my pacing.</li>
</ul>
<p>Trail Details:</p>
<ul>
<li>Trail: <a href="https://www.alltrails.com/trail/us/colorado/lions-lair-trail" target="_blank" rel="noopener noreferrer">Mount Sanitas via Lion&rsquo;s Lair Trail Run</a>
</li>
<li>Distance: 4.47 miles</li>
<li>Elevation Gain: 750 feet</li>
</ul>
<p>Workout Details:</p>
<ul>
<li>Start Time: 6:46 AM</li>
<li>Workout Time: 1 hr 8 min</li>
<li>Avg. Heartrate: 155 bpm</li>
</ul>
<p>Weather:</p>
<ul>
<li>Temperature: 39ºF</li>
<li>Humidity: 67%</li>
<li>Air Quality: —</li>
<li>Conditions: Overcast / Chance of Rain</li>
</ul>]]></content:encoded>
    </item>
    <item>
      <title>🏃🏻‍♂️ Sanitas Valley and Dakota Ridge Trail Run (2024.03.11)</title>
      <link>https://blakemerryman.com/posts/2024/2024-03-11-sanitas-valley-and-dakota-ridge-trail/</link>
      <pubDate>Mon, 11 Mar 2024 09:16:08 -0600</pubDate>
      <guid>https://blakemerryman.com/posts/2024/2024-03-11-sanitas-valley-and-dakota-ridge-trail/</guid>
      <description>A sunrise trail run up Dakota Ridge with great views of Boulder and the Front Range.</description>
      <content:encoded><![CDATA[<p><img src="/posts/2024/2024-03-11-sanitas-valley-and-dakota-ridge-trail/valley_hu_de83e9bd203802ef.webp"
       alt="Facing south down Sanitas Valley from Dakota Ridge. Taken March 2024" title="Facing south down Sanitas Valley from Dakota Ridge (March 2024)"
       width="1000"
       height="750"
       loading="lazy"></p>
<p>This morning, I made it up to the top of the Dakota Ridge just in time for sunrise for a fantastic view of Boulder and the Front Range.</p>
<p>Notes:</p>
<ul>
<li><strong>Take less!</strong> I over-estimated how long the run would take me and packed too much stuff in my running vest: Phone, 1 Liter water, snack, trekking poles, head lamp, pocket knife, headphones, chapstick, etc. For less technical runs, I can ditch the poles. For shorter runs, I can bring less water. For all runs, I need to shave as much weight as possible (Do I actually need a pocket knife on a run?!). It might be interesting to weight my full running kit under various configurations.</li>
<li><strong>Be bold! Start cold!</strong> Long socks + shorts kept my legs warm enough but I was over dressed up top and got hot really fast. I need to work on my laying system so that I can be bolder and start colder.</li>
<li><strong>Pacing needs work.</strong> I spent most of the run in Heart Rate Zone 3. I need to work on my pace (especially uphill) so that I can spend more time in Heart Rate Zone 2. Uphill was difficult! I hiked as much if not more than I ran. The view was worth it at the top though and the downhill was fun! The return was a wide, smooth track all the way back to the trailhead. I ran hard the entire way down.</li>
</ul>
<p>Trail Details:</p>
<ul>
<li>Trail: <a href="https://www.alltrails.com/trail/us/colorado/sanitas-valley-and-dakota-ridge-trail" target="_blank" rel="noopener noreferrer">Sanitas Valley and Dakota Ridge Trail</a>
</li>
<li>Distance: 2.47 miles</li>
<li>Elevation Gain: 453 feet</li>
</ul>
<p>Workout Details:</p>
<ul>
<li>Start Time: 6:48 AM</li>
<li>Workout Duration: 39 min 46 sec</li>
<li>Average Heartrate: 143 bpm</li>
<li>Average Pace: 16'02&quot;/mi</li>
</ul>
<p>Weather:</p>
<ul>
<li>Temperature: 38ºF</li>
<li>Humidity: 36%</li>
<li>Air Quality: 39</li>
<li>Conditions: Partly Cloudy</li>
</ul>
<p><img src="/posts/2024/2024-03-11-sanitas-valley-and-dakota-ridge-trail/sunrise_hu_aca44ade4fa0aa69.webp"
       alt="Sunrise over Boulder from Dakota Ridge. Taken March 2024" title="Sunrise over Boulder from Dakota Ridge (March 2024)"
       width="1000"
       height="750"
       loading="lazy"></p>]]></content:encoded>
    </item>
    <item>
      <title>📚 Howling Dark</title>
      <link>https://blakemerryman.com/posts/2024/howling-dark/</link>
      <pubDate>Thu, 07 Mar 2024 23:30:00 -0700</pubDate>
      <guid>https://blakemerryman.com/posts/2024/howling-dark/</guid>
      <description>My highlights from Howling Dark by Christopher Ruocchio — book two of The Sun Eater series.</description>
      <content:encoded><![CDATA[<p>This one was a wild ride: <a href="https://www.goodreads.com/book/show/41564599-howling-dark" target="_blank" rel="noopener noreferrer"><em>Howling Dark</em> by Christopher Ruocchio</a>
.</p>
<h2 id="highlights">Highlights</h2>
<blockquote>
<p>Fear is death to reason.<br>
“And reason death to fear.”</p>
</blockquote>
<p><a href="https://www.goodreads.com/quotes/2-i-must-not-fear-fear-is-the-mind-killer-fear-is" target="_blank" rel="noopener noreferrer">“[&hellip;] Fear is the mind-killer. Fear is the little-death that brings total obliteration. [&hellip;]”</a>
</p>
<blockquote>
<p>We believe our fear destroyed by new bravery. It is not. Fear is never destroyed. It is only made smaller by the courage we find after. It is always there.</p>
</blockquote>
<p>I find this to be true even in my own life. My fears never truly go away; I just get better at managing them.</p>
<blockquote>
<p>We are not always the authors of our own stories.</p>
</blockquote>
<blockquote>
<p>We have little control over our ends, and none over what passes beyond them. But if we live well and truly, those who follow on may remember us for our lives and not our deaths.</p>
</blockquote>
<blockquote>
<p>A man is the sum of his memories—and more—he is the sum of all those others he has met, and what he learned from them. And that is an encouraging thought, for that knowledge and those memories survive and are part of us through every storm, and every little death.</p>
</blockquote>
<blockquote>
<p>Each of us contains multitudes, but it is not that we are cells in the body of humankind. Rather we are clay, shaped as the mountain is shaped: by the wind, the tramping foot, and the rain. By the world. The mark of other hands is on us, but we are ourselves alone.</p>
</blockquote>
<blockquote>
<p>There are two sorts of men. One hears an order from his better and obeys. The other sees order in himself and obeys that. All men obey something, even if it is only themselves.</p>
</blockquote>
<p>These feel very <a href="https://en.wikipedia.org/wiki/Stoicism" target="_blank" rel="noopener noreferrer">Stoic</a>
 to me for some reason.</p>
<blockquote>
<p>Lucifer and Prometheus are the same.</p>
</blockquote>
<p>This is an interesting comparison to make. In the Bible, Lucifer (Satan) is a fallen angel who &ldquo;gives&rdquo; mankind knowledge of good an evil. In Greek mythology, Prometheus is a Titan who steals fire from the gods and gives it mankind in the form of knowledge.</p>
<blockquote>
<p>Evil is older than we, other than we—or is greater than, extending back and forward across all of conscious Time. Reader, there are other devils than Man. And by our evolved reason we may be sure of understanding human devils only.</p>
</blockquote>
<p>We live in a world where only man has evolved to sentience. Trying to imagine worse evils than those we have perpetrated is a dark and interesting thought experiment.</p>
<blockquote>
<p>And know this: every thought had by every philosopher and scholiast, every scientist and priest, is framed by the human mind.</p>
</blockquote>
<p>Sometimes two groups can be shaped in ways that make communication fundamentally difficult, if not impossible.</p>
<blockquote>
<p>Thus often do we return to those childish things when the weight of responsibility and of trial becomes too much to bear alone.</p>
</blockquote>
<p>Escapism as a coping mechanism can be a powerful tool.</p>
<blockquote>
<p>Obedience out of fear of pain.<br>
Obedience out of fear of the other.<br>
Obedience out of love for the person of the hierarch.<br>
Obedience out of loyalty to the office of the hierarch.<br>
Obedience out of respect for the laws of men and of heaven.<br>
Obedience out of piety.<br>
Obedience out of compassion.<br>
Obedience out of devotion.</p>
</blockquote>
<p>Obedience is a theme that keeps coming up in these books.</p>
<blockquote>
<p>Have I said that what we perceive as darkness is only the chaos that came—without light’s order—before Creation itself? That is why we imagine anything might be lurking in the darkness.</p>
</blockquote>]]></content:encoded>
    </item>
    <item>
      <title>Training for Adventure</title>
      <link>https://blakemerryman.com/posts/2024/training-for-adventure/</link>
      <pubDate>Tue, 20 Feb 2024 00:00:00 +0000</pubDate>
      <guid>https://blakemerryman.com/posts/2024/training-for-adventure/</guid>
      <description>Kellie and I start a 6-week fitness program to prepare for climbing, hiking, and backpacking.</description>
      <content:encoded><![CDATA[<blockquote>
<p><strong>Update 03/14/2024</strong>: We made it through 4½ weeks before we got bored with the routine. It was too repetitive. We decided to go a different direction with our fitness routine: a combination of running, climbing, Apple Fitness+, and hiking on the weekends. We&rsquo;re still going strong!</p>
</blockquote>
<p>Last week, Kellie and I started a new training program geared towards getting us in better shape for climbing, hiking, and an upcoming back packing trip. I thought I&rsquo;d summarize what we&rsquo;re doing.</p>
<p>I adapted the <a href="https://learn.outsideonline.com/6-weeks-to-trail-fit" target="_blank" rel="noopener noreferrer">6 Weeks to Trail Fit program (Outside Online)</a>
 to work in some climbing and an extra rest day.</p>
<p>The program is 6 weeks. The excercises are essentially the same each week but they get progressively more difficult due to added weight, duration, or elevation.</p>
<ul>
<li>Monday: Strength and Conditioning</li>
<li>Tuesday: Climbing and Core</li>
<li>Wednesday: Active Rest Day</li>
<li>Thursday: Strength and Conditioning</li>
<li>Friday: Climbing and Core</li>
<li>Saturday: Adventure Day! Hiking</li>
<li>Sunday: Passive Rest Day and Meal Prep</li>
</ul>
<p>I&rsquo;ll report back at the end of the program to summarize how things went (and provide a PDF). We&rsquo;re off to a good start though. Week one ended with us hiking the <a href="https://www.alltrails.com/explore/recording/afternoon-hike-at-enchanted-mesa-trail-97ffcbd?u=i&amp;sh=9mqkug" target="_blank" rel="noopener noreferrer">Enchanted Mesa Trail</a>
.</p>
<p><img src="/posts/2024/training-for-adventure/hiking-in-the-snow_hu_cdba99528302b691.webp"
       alt="A picture hiking the Enchanted Mesa Trail in the snow. Taken February 2024" title="Hiking the Enchanted Mesa Trail in the snow (February 2024)"
       width="1000"
       height="1031"
       loading="lazy"></p>]]></content:encoded>
    </item>
    <item>
      <title>📚 Empire of Silence</title>
      <link>https://blakemerryman.com/posts/2024/empire-of-silence/</link>
      <pubDate>Sat, 17 Feb 2024 00:00:00 +0000</pubDate>
      <guid>https://blakemerryman.com/posts/2024/empire-of-silence/</guid>
      <description>My highlights from Empire of Silence by Christopher Ruocchio — the first book in The Sun Eater series.</description>
      <content:encoded><![CDATA[<p>I just finished <a href="https://www.goodreads.com/book/show/36454667-empire-of-silence" target="_blank" rel="noopener noreferrer"><em>Empire of Silence</em> by Christopher Ruocchio</a>
. This is the first book in The Sun Eater, a space opera fantasy series. I don&rsquo;t have a lot to say about it right now other than that I enjoyed it. This is the first fiction book that I&rsquo;ve read in a long time so it felt good to get out of my &ldquo;reading rut&rdquo;. I&rsquo;m looking forward to the next book in the series.</p>
<h2 id="highlights">Highlights</h2>
<blockquote>
<p>The fool believes the iniquities of the world are the fault of other men. [&hellip;] The truly wise try to change themselves, which is the more difficult and less grand task.</p>
</blockquote>
<blockquote>
<p>The man who hopes for the future delays its arrival, and the man who dreads it summons it to his door.</p>
</blockquote>
<blockquote>
<p>Olorin took a step back before answering. “I will tell him I met a man, a lord of the strange Empire. I will tell him of your quality.” His smile capered on his face. “And your quality will be known in Jadd and on the battlefields of our war before ever you find yourself there. You will have friends.”</p>
</blockquote>
<p>This reminds me of the <a href="https://www.youtube.com/watch?v=Ib1hYoEvrVw" target="_blank" rel="noopener noreferrer">scene between Balian and Imad ad-Din</a>
 from <a href="https://en.wikipedia.org/wiki/Kingdom_of_Heaven_%28film%29" target="_blank" rel="noopener noreferrer">Kingdom of Heaven</a>
 (one of my favorite movies).</p>]]></content:encoded>
    </item>
    <item>
      <title>🏔️ A New Year, A New Beginning 🥽</title>
      <link>https://blakemerryman.com/posts/2024/a-new-year-a-new-beginning/</link>
      <pubDate>Mon, 01 Jan 2024 00:00:00 +0000</pubDate>
      <guid>https://blakemerryman.com/posts/2024/a-new-year-a-new-beginning/</guid>
      <description>Starting 2024 with a new role on Apple&amp;#39;s visionOS team in Colorado after 5½ years on Health in California.</description>
      <content:encoded><![CDATA[<p><img src="/posts/2024/a-new-year-a-new-beginning/flat-irons_hu_e52a330de7db0716.webp"
       alt="A picture of the Flat Irons. Taken February 2024" title="The Flat Irons (February 2024)"
       width="1000"
       height="352"
       loading="lazy"></p>
<p>After 5½ years working on ❤️ <a href="https://www.apple.com/ios/health/" target="_blank" rel="noopener noreferrer">healthy things at Apple</a>
 in California, I&rsquo;m starting 2024 with
a new gig: working on 🥽 <a href="https://developer.apple.com/visionos/" target="_blank" rel="noopener noreferrer">spatial things at Apple</a>
 in Colorado. It&rsquo;s hard to put into
words how difficult this transition was. So many things had to go right along the way and it took a lot of patience. Not
to mention how difficult it was to say goodbye to all of the wonderful friends and colleagues that I&rsquo;ve met along the
way.</p>
<p>But this move feels right for so many reasons. A fresh start in a new product space in a new location. I&rsquo;m excited about
what the future holds!</p>
<p>At some point, I plan to reflect about my time in California but I&rsquo;ll save that for another post.</p>
<p>Until then, the mountains are calling me.</p>]]></content:encoded>
    </item>
    <item>
      <title>Chess Pie</title>
      <link>https://blakemerryman.com/posts/2023/chess-pie/</link>
      <pubDate>Sat, 11 Nov 2023 00:00:00 +0000</pubDate>
      <guid>https://blakemerryman.com/posts/2023/chess-pie/</guid>
      <description>Chess pie. A delicious and very southern pie with a weird name.</description>
      <content:encoded><![CDATA[<h2 id="a-brief-history">A Brief History</h2>
<p>The origin of the name “chess pie” is steeped in history and folklore. No one really agrees on the exact origins but the most likely explanation is that it is a corruption of the word “cheese”. Chess pie was likely brought to the American colonies from England as early as the 17th century and is similar to many cheesecakes and cheese curd pies found in cookbooks from that era. It’s basically a cheese-less cheese pie. Today, you’ll find variations of this pie everywhere from New England to the deep South but it’s most prevalent further south.</p>
<p>Regardless of the origin, I have many fond memories of eating chess pie and chess bars over the years… but I won’t bore you with any more history. There are many variations of this recipe but they follow the same basic direction (mostly tweaking ingredients and proportions). I received this recipe from a dear friend who taught me a little about cooking and a lot about life.</p>
<p>It’s time for pie!</p>
<p><img src="/posts/2023/chess-pie/chess-pie_hu_bdeb765a2e5bcd93.webp"
       alt="Chess Pie"
       width="1000"
       height="634"
       loading="lazy"></p>
<h2 id="recipe">Recipe</h2>
<p>Chess pie. A delicious and very southern pie.</p>
<p>Equipment:</p>
<ul>
<li>9 inch pie dish</li>
<li>OPTIONAL: Aluminum foil</li>
<li>OPTIONAL: Pie weights (or dried beans)</li>
</ul>
<p>Ingredients:</p>
<ul>
<li>1 pie crust (store bought or homemade)</li>
<li>½ cup unsalted butter, melted</li>
<li>1½ cup sugar</li>
<li>1 tablespoon all purpose flour</li>
<li>1 tablespoon cornmeal</li>
<li>1 teaspoon vanilla</li>
<li>4 large eggs, room temp, lightly beaten</li>
<li>½ teaspoon salt</li>
<li>1 tablespoon white vinegar</li>
</ul>
<p>Directions:</p>
<ol>
<li>Preheat oven to 425°F. Fit the pie crust to a 9 inch pie dish and use a fork to prick the bottom and sides. Optionally: Line the pastry with aluminum foil and add pie weights. Pre-bake pie crust for 8 to 10 minutes. Remove foil and pie weights. Allow to cool completely.</li>
<li>Lower oven temperature to 350°F.</li>
<li>Whisk together all pie filling ingredients. Pour into cooled crust. Place on rack in lower third of oven.</li>
<li>Bake until set. It should take 50-55 minutes. TIP: After 10-15 minutes, you can cover the edges of the pie crust with aluminum foil to prevent excess browning.</li>
<li>Allow to cool completely.</li>
<li>Serve cold or at room temperature. Fork optional!</li>
</ol>
<h2 id="variations">Variations</h2>
<p>Chess pie can also serve as the starting point for some tasty deviations:</p>
<ul>
<li>🥛 <a href="https://food52.com/recipes/24742-buttermilk-chess-pie" target="_blank" rel="noopener noreferrer">Buttermilk Chess Pie</a>
</li>
<li>🍫 <a href="https://www.allrecipes.com/recipe/12581/chocolate-chess-pie-ii/" target="_blank" rel="noopener noreferrer">Chocolate Chess Pie</a>
</li>
<li>🎃 <a href="https://www.southernliving.com/recipes/pumpkin-chess-pie" target="_blank" rel="noopener noreferrer">Pumpkin Chess Pie</a>
</li>
<li>🍊 <a href="https://anothertablespoon.com/orange-chess-pie/" target="_blank" rel="noopener noreferrer">Orange Chess Pie</a>
</li>
<li>🍋 <a href="https://www.southernliving.com/recipes/lemon-chess-pie" target="_blank" rel="noopener noreferrer">Lemon Chess Pie</a>
</li>
</ul>
<p>Baking one of these variants is a simple exercise of adjusting proportions and adding one or more key ingredients to reach your desired flavor. Enjoy!</p>
]]></content:encoded>
    </item>
    <item>
      <title>May Your Trails Be Crooked</title>
      <link>https://blakemerryman.com/posts/2023/may-your-trails-be-crooked/</link>
      <pubDate>Sat, 26 Aug 2023 00:00:00 +0000</pubDate>
      <guid>https://blakemerryman.com/posts/2023/may-your-trails-be-crooked/</guid>
      <description>Edward Abbey&amp;#39;s beautiful benedicto from the preface of Desert Solitaire.</description>
      <content:encoded><![CDATA[<p>I happened upon this benedicto by Edward Abbey while perusing my copy of <a href="https://www.campfirestoriesbook.com" target="_blank" rel="noopener noreferrer">Campfire Stories: Tales from America&rsquo;s National Parks</a>
.</p>
<blockquote>
<p>May your trails be crooked, winding, lonesome, dangerous, leading to the most amazing view. May your mountains rise into
and above the clouds. May your rivers flow without end, meandering through pastoral valleys tinkling with bells, past
temples and castles and poets&rsquo; towers into a dark primeval forest where tigers belch and monkeys howl, through miasmal
and mysterious swamps and down into a desert of red rock, blue mesas, domes and pinnacles and grottoes of endless stone,
and down again into a deep vast ancient unknown chasm where bars of sunlight blaze on profiled cliffs, where deer walk
across the white sand beaches, where storms come and go as lightning clangs upon the high crags, where something strange
and more beautiful and more full of wonder than your deepest dreams waits for you—beyond that next turning of the canyon
walls.</p>
<p>So long.</p>
</blockquote>
<p>The original source appears to be the preface (dated June 1987) for the 1988 reprint of <a href="https://en.wikipedia.org/wiki/Desert_Solitaire" target="_blank" rel="noopener noreferrer">Desert Solitaire</a>
 (p.12).</p>]]></content:encoded>
    </item>
    <item>
      <title>A Week In Chattanooga</title>
      <link>https://blakemerryman.com/posts/2023/a-week-in-chattanooga/</link>
      <pubDate>Wed, 05 Jul 2023 00:00:00 +0000</pubDate>
      <guid>https://blakemerryman.com/posts/2023/a-week-in-chattanooga/</guid>
      <description>A week in Chattanooga with Kellie — rain kept us from hiking, so we explored the city instead.</description>
      <content:encoded><![CDATA[<p>In June, Kellie and I flew back to Tennessee to celebrate our fathers, visit friends, and spend some time in Chattanooga. The original plan was to spend most of the week hiking and rock climbing. Unfortunately, it rained almost the entire trip so we spent the week exploring the city. Here are my highlights from the trip.</p>
<h2 id="sunday">Sunday</h2>
<p>We left San Diego early and landed in Nashville around midday. The afternoon was spent celebrating Father&rsquo;s Day with my family. My brother and his wife hosted a wonderful cookout at their house. I learned that Sam&rsquo;s Club all beef hotdogs are delicious.</p>
<p>My sister couldn&rsquo;t make it to the cookout due to being hospitalized so we went to visit her in the hospital. Luckily, she was on the up-swing and we spent about an hour catching up before heading back to the cookout.</p>
<p>That night, Kellie and I made the long drive to Chattanooga and checked into the <a href="https://www.kinleychattanooga.com" target="_blank" rel="noopener noreferrer">Kinley Hotel</a>
 around midnight.</p>
<h2 id="monday">Monday</h2>
<p>After the long, coast-to-coast travel day, we slept in until midday and had a nice brunch at the hotel bar. We spent early afternoon walking around Southside and happened across a few really interesting places: a woodworking academy, a climbing + Ninja gym, Niedlov&rsquo;s Bakery, and Velo Coffee.</p>
<p>Back at the hotel, I spent the afternoon working to get this blog up and running. It was a struggle to contain my emotions as I authored <a href="/posts/2023/in-memory-of-george/">George&rsquo;s memorial</a>
.</p>
<p>That evening, we ventured to downtown. We enjoyed a quick meal at Tazikis before heading to <a href="https://www.highpointclimbing.com/chattanooga/downtown" target="_blank" rel="noopener noreferrer">High Point Climbing Gym</a>
 for an indoor climbing session. The gym was really nice and far less crowded than we&rsquo;re used to out west. The routes were well set and there was enough variety to keep things interesting.</p>
<p>We enjoyed a well-earned trip to Ben &amp; Jerry&rsquo;s before heading back to the hotel to relax and binge the first half of <a href="https://www.netflix.com/title/81450827" target="_blank" rel="noopener noreferrer">The Night Agent</a>
.</p>
<h2 id="tuesday">Tuesday</h2>
<p>On day three, we awoke at a <em>slightly</em> more reasonable hour and had brunch across the street at <a href="https://frothymonkey.com/locations/southside-chattanooga-tn/" target="_blank" rel="noopener noreferrer">Frothy Monkey</a>
, an old favorite from my days living in Nashville.</p>
<p>Then we headed east. We enjoyed a serene drive through Booker T. Washington State Park before meandering down to the local REI.</p>
<p>On our way back to Chattanooga proper, we stopped by the Riverside location of High Point. It was somewhat spartan but felt like a gym for more serious climbers compared to the novelty of the downtown location.</p>
<p>For dinner, we went to Toto where we enjoyed some sushi and poke! Rather fortuitously, we ran into my old college friend Sydney and her family.</p>
<h2 id="wednesday">Wednesday</h2>
<p>We made it to First Watch on time for breakfast on Wednesday. Ironically, this chain started in Pacific Grove but after an eastward surge of expansion, it no longer has any locations in California. I&rsquo;m not keen on the farmhouse style but the food was excellent!</p>
<p>We went for another nature drive, this time up to Signal Mountain. The drive was fun and once we made it to the top, it was so calm and quiet amongst the trees. The view of the river from Signal Point was beautiful. I often forget how lush Tennessee is compared to California.</p>
<p>We drove back down to Chattanooga to enjoy an afternoon snack at Cadence Coffee while waiting for our friends Clay and Loren to arrive. Once they arrived, we checked into our joint accommodations at <a href="https://www.hotelclemons.com" target="_blank" rel="noopener noreferrer">Hotel Clemons</a>
.</p>
<p>We enjoyed a wonderful dinner at <a href="https://www.woodencitychattanooga.com" target="_blank" rel="noopener noreferrer">Wooden City</a>
. I&rsquo;m currently <a href="/posts/2023/experimenting-with-sobriety/">taking a break from alcohol</a>
 and I particularly enjoyed their mocktail menu.</p>
<h2 id="thursday">Thursday</h2>
<p>We decided to start the day climbing as a group on Thursday so we walked to Puckett&rsquo;s (in the rain) for breakfast before heading to High Point Downtown for several hours of climbing. We enjoyed a post-climb coffee at this adorable little coffee shop called <a href="https://www.sleepyhead.coffee" target="_blank" rel="noopener noreferrer">Sleepyhead</a>
 before heading to lunch at Niedlov&rsquo;s Bakery in Southside.</p>
<p>That afternoon, we drove south to Lookout Mountain. We caught a break in the weather so we made the short hike down to Sunset Point. I was glad we did because I got my first glimpse of what Chattanooga has to offer outdoor climbers: a seamingly endless series of stainless steel climbing anchors lined the cliff.</p>
<p>We made the short drive down to St. Elmos for some coffee then finished the day with good food and fun trivia at Five Wits Brewing. I enjoyed a very nice non-alcoholic beer from Untitled Art.</p>
<h2 id="friday">Friday</h2>
<p>Unfortunately, Kellie wasn&rsquo;t feeling well on Friday so the rest of us ventured to Bluff View Art District without her. We went to Rembrandt&rsquo;s Coffee House for breakfast. Then we made our way Hunter Museum of American Art. The art was very nice but I was particular enthralled by the exquisite wooden benches throughout the exhibits.</p>
<p>Kellie recovered enough to join us for lunch at Cashew, a surprisingly tasty vegan spot. That afternooon, we crossed the pedestrian bridge to explore North Shore.</p>
<p>For our final meal in Chattanooga, we walked to a Levantine restaurant called <a href="https://www.callioperestaurant.com" target="_blank" rel="noopener noreferrer">Calliope</a>
 (pronounced &ldquo;cah-LYE-eh-pee&rdquo;) where we enjoyed easily the best meal of the week. I&rsquo;m still thinking about the braised lamb shoulder.</p>
<h2 id="saturday">Saturday</h2>
<p>We ended our time in Chattanooga with one final trip to Sleephead. This was easily the best coffee that we had on the trip.</p>
<p>Then we made the drive to Knoxville to spend our last day in Tennessee with Kellie&rsquo;s folks for a belated Father&rsquo;s Day celebration. We enjoyed homemade taco salad and a very tasty cake that (rather ingeniously) used ice cream sandwiches as the base.</p>
<p>After a nice visit, we made the long drive back to Nashville and began our even longer journey back to San Diego.</p>
<h2 id="pics">Pics</h2>







	






































	
	

	
		<script src="/shortcode-gallery/jquery-3.7.1.min.js"></script>
	

	
		<script src="/shortcode-gallery/lazy/jquery.lazy.min.js"></script>
	

	<script src="/shortcode-gallery/swipebox/js/jquery.swipebox.min.js"></script>
	<link rel="stylesheet" href="/shortcode-gallery/swipebox/css/swipebox.min.css">

	<script src="/shortcode-gallery/justified_gallery/jquery.justifiedGallery.min.js"></script>
	<link rel="stylesheet" href="/shortcode-gallery/justified_gallery/justifiedGallery.min.css"/>


<style>
	

	
</style>





<div id="gallery-4d41af113cffa6084b8e5b8db714019a-0-wrapper" class="gallery-wrapper">
<div id="gallery-4d41af113cffa6084b8e5b8db714019a-0" class="justified-gallery">
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			<div>
				
				
					
					
				

				
				
					
					
				

				<a href="/posts/2023/a-week-in-chattanooga/images/image-1.jpeg"
					class="galleryImg"
					
						

						
							data-description="iPhone 14 + iPhone 14 back dual wide camera 5.7mm f/1.5<br/>57/10mm f/1.5 1/1171sec  ISO 50"
						

						
					
					>
					<img
						width="600" height="450"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIABgAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&#43;Tl5ufo6ery8/T19vf4&#43;fr/2gAMAwEAAhEDEQA/ALPhmQXVveL5wJNw0mQhxhuQR&#43;INdHbWbo3&#43;tz74zXnGn6peWks7WSLul&#43;bYe/oB71at/HGpM2xIZQw6jZzmulzVznSdtTvXkukmKCF29xVy3haZMziRAO1cVZ&#43;MdTk3KbNI3wMNJGeevPX2q3H4h1&#43;Oa3DpYy/aXCxI6gbvx3e4/OlzjscBZ3arfRF2JVn2tn0PB/nXbJD56eZEB9rQfMMcy4/9m/n9a88i/wCPiP8A3x/OvS9L/wCQlH/10b&#43;S1ijWRkrqQMh3cdjmpTLHLJbyA4aFty47VkN/x8P/ALx/nV2HoKog/9k="
							
							class="lazy"
							data-src="/posts/2023/a-week-in-chattanooga/images/image-1_hu_4ce0a8940ebaca1.jpeg"
						

						
							
								
							
						
					>
				</a>
			</div>
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			<div>
				
				
					
					
				

				
				
					
					
				

				<a href="/posts/2023/a-week-in-chattanooga/images/image-2.jpeg"
					class="galleryImg"
					
						

						
							data-description="iPhone 14 + iPhone 14 back dual wide camera 5.7mm f/1.5<br/>57/10mm f/1.5 1/3968sec  ISO 50"
						

						
					
					>
					<img
						width="600" height="450"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIABgAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&#43;Tl5ufo6ery8/T19vf4&#43;fr/2gAMAwEAAhEDEQA/AO2j8wEBZElB/umrDx7V3YD468155JcQxffb8MU6HUIC237SU9jn8sVs6ke5z3Z3wvHSMeUgUn8SK5jxhqGWif7TtaNCuxQC5JPYDp&#43;NYl5qiI4VWcqv3iTWaltd3cxkEEjnORtU4z71jOtHoUk2Ur29hKGBEO8DGQ2Ofaq8D3NsjSSWoDHGwE5P481Vn/4/j9a177ov4fyrjlJqyGUTqLLKTKTx6AV0/ha6uryFn3hYA5KsMgk9wPYf1rirnr/wE12ngj/kCw/7z/zFO1lc1prU/9k="
							
							class="lazy"
							data-src="/posts/2023/a-week-in-chattanooga/images/image-2_hu_419acbe6f78ca13c.jpeg"
						

						
							
								
							
						
					>
				</a>
			</div>
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			<div>
				
				
					
					
				

				
				
					
					
				

				<a href="/posts/2023/a-week-in-chattanooga/images/image-3.jpeg"
					class="galleryImg"
					
						

						
							data-description="iPhone 14 Pro + iPhone 14 Pro back triple camera 6.86mm f/1.78<br/>343/50mm f/1.8 1/1131sec  ISO 80"
						

						
					
					>
					<img
						width="600" height="450"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIABgAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&#43;Tl5ufo6ery8/T19vf4&#43;fr/2gAMAwEAAhEDEQA/ANbwn9miswbbUR97NxbyRgkH1BHPbvmuo&#43;32X2doTcbQ425HUV5jHc3xuk&#43;yPhDHu&#43;Uc5z0/nWraavLsZL1Cjg9cYpqqkrMxnGSdzpLqyguciKVAQvyOGIZenT8hTbaCG1lR9skayJmUHA2yZHIx9PpWKuoJIQY5QrD8/wA6sC7ZhknPrtY80KpAnmZzGg3KDTbeWUEknkgc4rekNrcWm3KuGHG45I&#43;lcvo3/IJt/wDdFbFr/wAe6fQ1zW1O3pYjXTnRSYGXGScEnBpjyzJJhz5b46NwM1pw/wDHuP8Ad/xrN1b/AI&#43;1/wB3&#43;tRJdTKcEldH/9k="
							
							class="lazy"
							data-src="/posts/2023/a-week-in-chattanooga/images/image-3_hu_adc0531e4b08e7db.jpeg"
						

						
							
								
							
						
					>
				</a>
			</div>
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			<div>
				
				
					
					
				

				
				
					
					
				

				<a href="/posts/2023/a-week-in-chattanooga/images/image-4.jpeg"
					class="galleryImg"
					
						

						
							data-description="iPhone 14 + iPhone 14 back dual wide camera 1.54mm f/2.4<br/>77/50mm f/2.4 1/60sec  ISO 200"
						

						
					
					>
					<img
						width="450" height="600"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIACAAGAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&#43;Tl5ufo6ery8/T19vf4&#43;fr/2gAMAwEAAhEDEQA/AOj1u&#43;ubKza4tYYnxvyJFbqqucce64/GueXWbq6MoaGBSjMOEfnDsv8A7KPzrbtZftek3ZYDaWmdfTne3/s9c7bahDYJPDcw7AVJWQyEbiZCen41nZF6kjXrAosix5ZgDtR8j59vcezH8Kt7Yf8Ano//AIDtXPPqFvKT5b5YnIAYe5/mf88U37bL/cP/AH1UuSRqoNo7F3SDSzaWqqgYEcLjqmOoJ9PSuAup1uvEp019xKjDFmBGQM&#43;n9K9LGhNcL5kWoROPUr/9f3rNbwG7an9tjlhDlfmZI&#43;c/nTdzKJwzaYkVyir3IGPXke1aH9nL/wA8/wCVdPJ4JuvNjd7lMI4bG09iD6&#43;1XP8AhH3/AOei/kP8KylFnRGWmp//2Q=="
							
							class="lazy"
							data-src="/posts/2023/a-week-in-chattanooga/images/image-4_hu_e01e59b1ad72a7c5.jpeg"
						

						
							
								
							
						
					>
				</a>
			</div>
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			<div>
				
				
					
					
				

				
				
					
					
				

				<a href="/posts/2023/a-week-in-chattanooga/images/image-5.jpeg"
					class="galleryImg"
					
						

						
							data-description="iPhone 14 + iPhone 14 front camera 2.69mm f/1.9<br/>269/100mm f/1.9 1/122sec  ISO 40"
						

						
					
					>
					<img
						width="600" height="450"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIABgAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&#43;Tl5ufo6ery8/T19vf4&#43;fr/2gAMAwEAAhEDEQA/AOrtrOVox5jmMg8A8g1o2dvMGx5BlHqg6VgWF/q/21rTdYzyogdvMTbtyePu1Qk8V6tcXV5NHdG2&#43;zu0EKwkCMlTgsVOc5Pr2pOVkOEHJ2R3txrukaeVtZLuKOc8eXnJBPrjp&#43;NVxa3tzN/q9oU8M2RXlMOjxJeh9S33MkgWd3YA/KwDYJPsR09K7ODx3LHDBZQJExChELsQWwOOSOTQpIc4OKTZn3t2umSu4ZEuJFHOQ2B&#43;BrkLmW5tYZ9smI7hi7HAy2Rz9Pwrb8S/8fy/9cxWJqv/AB4x/wC4f5VnUktrHbh6Ktz3LNrAmpu097NI7QwhGUOQQFzge4q3bXd/a2sil1eE/wDLMjA6YJHcH3zVXSeuof8AXI/1q3N/x4N9TWMpPlTO&#43;lRg6k4tdvyP/9k="
							
							class="lazy"
							data-src="/posts/2023/a-week-in-chattanooga/images/image-5_hu_ab3e3930a7112782.jpeg"
						

						
							
								
							
						
					>
				</a>
			</div>
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			<div>
				
				
					
					
				

				
				
					
					
				

				<a href="/posts/2023/a-week-in-chattanooga/images/image-6.jpeg"
					class="galleryImg"
					
						

						
							data-description="iPhone 14 + iPhone 14 back dual wide camera 5.7mm f/1.5<br/>57/10mm f/1.5 1/450sec  ISO 80"
						

						
					
					>
					<img
						width="600" height="450"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIABgAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&#43;Tl5ufo6ery8/T19vf4&#43;fr/2gAMAwEAAhEDEQA/AOjl0Jgfu1AdDb&#43;7TH8UXbf8tR&#43;QqF/E93j/AFqj8BVqpU7EunHuW10Rh/DTv7GI/hrMl8QXVzE0JudofgkAdKszavqG0sjh1HUBeR9RVOpU7C9nDucb4iuJdEtkx80zMA27oOOa5qPxRdrIDKiSL3UcfrXRfEb7w/66n&#43;tcD3rswkYzpJyW5VZcs2kddF4ktZAN0Tqf8&#43;9a&#43;la&#43;uo3ZhifZJEmSTnJH51wcPatrwj/yHp/&#43;uJ/mKmrTUdjNan//2Q=="
							
							class="lazy"
							data-src="/posts/2023/a-week-in-chattanooga/images/image-6_hu_d61d4223254d0ca9.jpeg"
						

						
							
								
							
						
					>
				</a>
			</div>
		
	
</div>
</div>

<script>
	if (!("HSCGjQuery" in window)) {
		if (!window.jQuery) {
			throw new Error("jQuery is not loaded, hugo-shortcode-gallery wont work without it!");
		}
		window.HSCGjQuery = window.jQuery.noConflict(true);
	}

	
	
	
	
	
	;(function($) {

		$( document ).ready(() => {
			const gallery = $("#gallery-4d41af113cffa6084b8e5b8db714019a-0");
			

			
			let swipeboxInstance = null;

			
			
			gallery.on('jg.complete', () => {
				
					
					
					$(() => {
						$('.lazy').Lazy({
							visibleOnly: true,
							afterLoad: element => element.css({filter: "none", transition: "filter 1.0s ease-in-out"})
						});
					});
				

				swipeboxInstance = $('.galleryImg').swipebox(
					$.extend({},
						{  }
					)
				);
			});

			
			gallery.justifiedGallery($.extend(
				{
					rowHeight : "150",
					margins : "5",
					border : 0,
					randomize :  false ,
					waitThumbnailsLoad : false,
					lastRow : "justify",
					captions : false,
					
					
				},
				{  }
			));

			
			
		});

	
	
	
	})(window.HSCGjQuery)
</script>]]></content:encoded>
    </item>
    <item>
      <title>In Memory Of George</title>
      <link>https://blakemerryman.com/posts/2023/in-memory-of-george/</link>
      <pubDate>Mon, 19 Jun 2023 00:00:00 +0000</pubDate>
      <guid>https://blakemerryman.com/posts/2023/in-memory-of-george/</guid>
      <description>In memory of George. June 1, 2015 — April 15, 2023. The sweetest cat to ever nibble your elbow.</description>
      <content:encoded><![CDATA[<p>A not so merry post.</p>
<p><strong>In memory of George. June 1, 2015 — April 15, 2023.</strong></p>
<p>I lost my cat George in April. Over the years, he&rsquo;d been dealing with a heart murmor and then late last year he was diagnosed with congestive heart failure. It was very rough at first but the treatment was going really well. In April, I noticed his breathing became labored so I took him in for a check up. I assumed we&rsquo;d adjust his meds and get things back on track. We weren&rsquo;t even at the vet&rsquo;s office a full hour before he was gone. It all happened so fast. Even now, looking back, it seems a little unreal.</p>
<p>I thought I&rsquo;d share a few of my favorite memories.</p>
<hr>
<p>One night several years ago, a group of friends were gathered at my house for dinner. I was in the back of the house on a phone call when I heard a loud commotion coming from the dining room. I rushed to see what was going on and found my two cats, Fred and George, cornering a mouse. My guests were egging them on! Fred was keeping the mouse&rsquo;s attention while George flanked it, velociraptor style. Clever boy.</p>
<p>Much to the cats&rsquo; chagrin, I saved the mouse and put it outside. That was the only mouse that made it out of that house alive. The boys would go on to leave me three little &ldquo;gifts&rdquo; at the foot of my bed over the years in that house.</p>
<hr>
<p>One day I came home from picking up groceries and made my way in carrying every single bag (as you do). I managed to get the front door open but in my struggle I unknowingly failed to close the door behind me. I made my way to the kitchen to put the groceries away and eventually realized the front door was wide open. I went to close it and found George just sitting on the threshold looking out at the big wide world. He was so taken by the view that he never even tried to leave.</p>
<hr>
<p>George loved to play fetch but only on his terms. He would often drop the toy about halfway back to you, forcing you to play a little fetch as well.</p>
<p>I wish that I had played fetch with him more often in his final months. Oh how he loved to chase after those little mice!</p>
<hr>
<p>I am greatful for the almost eight years that you brought joy to my life. I hope I gave you as much love and joy. You were the sweetest cat. I&rsquo;m going to miss you dearly.</p>
<h2 id="photos">Photos</h2>







	






































	
	

	
		<script src="/shortcode-gallery/jquery-3.7.1.min.js"></script>
	

	
		<script src="/shortcode-gallery/lazy/jquery.lazy.min.js"></script>
	

	<script src="/shortcode-gallery/swipebox/js/jquery.swipebox.min.js"></script>
	<link rel="stylesheet" href="/shortcode-gallery/swipebox/css/swipebox.min.css">

	<script src="/shortcode-gallery/justified_gallery/jquery.justifiedGallery.min.js"></script>
	<link rel="stylesheet" href="/shortcode-gallery/justified_gallery/justifiedGallery.min.css"/>


<style>
	

	
</style>





<div id="gallery-4feb7c7c1eeb4caa444c15359fd2fc34-0-wrapper" class="gallery-wrapper">
<div id="gallery-4feb7c7c1eeb4caa444c15359fd2fc34-0" class="justified-gallery">
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			<div>
				
				
					
					
				

				
				
					
					
				

				<a href="/posts/2023/in-memory-of-george/images/image-001.jpeg"
					class="galleryImg"
					
						

						
							data-description="iPhone 14 + iPhone 14 back dual wide camera 5.7mm f/1.5<br/>57/10mm f/1.5 1/60sec  ISO 320"
						

						
					
					>
					<img
						width="529" height="600"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIACAAHAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&#43;Tl5ufo6ery8/T19vf4&#43;fr/2gAMAwEAAhEDEQA/AIFLTSRuItjRHKtgdO4&#43;mP5CtG9ucaXcRPJJGqxlnCfLnHPPr6c1NH5azA7VTKnHr0PSuZnuLmZ7iJoFETKFc4yxA759&#43;lckppOx1RhdX6iaTrs9jELedmm&#43;UBoLg8EA7gFbsM9jwa3m8c2scccaXc1qVQb0kiOS3UnjI6msC/sP7QtVuIQAcfdC9PaufN3fWhMLB1K9mXOKadSG2qE&#43;SW&#43;jPSnhbH3ApJ646VyeqXiWdxLEm5VGdzEZ5z1/wrqGnuJ4cs4Ax71i3em2s0pdkSRiefl/&#43;vUTjdlwlylHQZh9jzJepGGOQrOVq5JEJG3HUEb3L5qyiQECExkKOhxx&#43;gqJrKDP&#43;pH/AHxVXZGh/9k="
							
							class="lazy"
							data-src="/posts/2023/in-memory-of-george/images/image-001_hu_5e6afc881dea478.jpeg"
						

						
							
								
							
						
					>
				</a>
			</div>
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			<div>
				
				
					
					
				

				
				
					
					
				

				<a href="/posts/2023/in-memory-of-george/images/image-002.jpeg"
					class="galleryImg"
					
						

						
							data-description="iPhone 13 Pro + iPhone 13 Pro back triple camera 5.7mm f/1.5<br/>57/10mm f/1.5 1/60sec  ISO 500"
						

						
					
					>
					<img
						width="450" height="600"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIACAAGAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&#43;Tl5ufo6ery8/T19vf4&#43;fr/2gAMAwEAAhEDEQA/AM3wBqqx6fqdqzYJ8uSMZ6sCc/yFehXeu2hVWZ2Q4JZSpyPY4715Z4eurG60&#43;IBWhKLsZcFk3Z&#43;9wM5PHb/CugR4J7tryDUSyLlBjcyoQOQOOPxrlrTad0jppU01ZsoeK42v5ft1vE5YvtMZHzn5QAQPwP51zn2W/wD&#43;fG5/78t/hXa3VpayxMJpd3AyE2jdj1J5HT0qj9i0z/n3f/v&#43;P/iKlVlbQp0Xc4/QLa7jspZoQwZcOMDqORWtZ6yIlIby/NPZuFB6dAM5966PSdOgvfD9osPyv5ahS38XGefxNTL4LmkO&#43;8W3YDvt3cfjVzs3qTC9jmJNXlvmFvE55xvYMWA9efQU77JJ/wA/P&#43;fyrq4/CttGysZ3CD&#43;GNMD/AAqx/wAI/Yf89bn9P8ahNLYtps//2Q=="
							
							class="lazy"
							data-src="/posts/2023/in-memory-of-george/images/image-002_hu_b524d35967de16d.jpeg"
						

						
							
								
							
						
					>
				</a>
			</div>
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			<div>
				
				
					
					
				

				
				
					
					
				

				<a href="/posts/2023/in-memory-of-george/images/image-003.jpeg"
					class="galleryImg"
					
						

						
							data-description="iPhone 14 + iPhone 14 back dual wide camera 5.7mm f/1.5<br/>57/10mm f/1.5 1/60sec  ISO 125"
						

						
					
					>
					<img
						width="450" height="600"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIACAAGAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&#43;Tl5ufo6ery8/T19vf4&#43;fr/2gAMAwEAAhEDEQA/AN7QPEMGqasZbeaVTNCTJDJJldw242ev8Wfw6VuTyFmya861LR9OjtnvoZPs6R4dgh4Y54GDwCT3qSPw9pN4d1nD9mVvlBMiv83/AAINxj/Irza1CK0bsvQ7YuLd4o5fx1fQ3/ie6miCbLVRCpUAZI&#43;8T64JxXM/aD/fFd9pPh63iGraXMweS6ieONzzwMMCD6g8n8Kz/wDhWw/5&#43;z&#43;Vd9NR5VYylUnB2Rn3t9c30KwnIhDbtgP3j2zXQ6JfC1tbaO5BSNc9RwufWsO3tyWBIPHtWvFM0a4wD9a9f&#43;z6dXfQ8n65Ontqbd5JZ2ktneReU6iZSZEOTtPB4&#43;ma0v8AhI9I/wCekv8A36NYnh19OGvQG7t1CnIXn5Q56Ejof/r13&#43;NL9bf9K86rh5YaXJudsK8a0ebY/9k="
							
							class="lazy"
							data-src="/posts/2023/in-memory-of-george/images/image-003_hu_313e2c2600ee2bf5.jpeg"
						

						
							
								
							
						
					>
				</a>
			</div>
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			<div>
				
				
					
					
				

				
				
					
					
				

				<a href="/posts/2023/in-memory-of-george/images/image-004.jpeg"
					class="galleryImg"
					
						

						
							data-description="iPad Pro (11-inch) (2nd generation) + iPad Pro (11-inch) (2nd generation) back dual wide camera 3mm f/1.8<br/>3mm f/1.8 1/83sec  ISO 64"
						

						
					
					>
					<img
						width="600" height="600"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIACAAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&#43;Tl5ufo6ery8/T19vf4&#43;fr/2gAMAwEAAhEDEQA/AJNYlK6rIB/GeOPeptW1y5NuUi0eZ5vK8sObc5AIxjdWDe64q6tDtkMixzBiT65H8q6CXUSVYk429QetaqN46mFmpNoqeH4r&#43;ztb27lhaDfbFI2kB5bI4qtpsi319EhVDht7cfNksOTmt&#43;YR3sC2nmsjQJlvm65zyB&#43;f5Vx/2g6JqOYj5qo/XH45/CvKnT56ko9UdSpcsYzvoJ4Ga3ufEbecsW6OJniaTnaw7gev/wBetnU7q4u9b&#43;zunntIx3DAG1cdc4/H/wDXXI&#43;Hb2DTJ55px&#43;9ztU8cCu3ikR7OOcAo867gyAAgHkZznrXq06HNNSvsYyq2jy2MuL7ZBq7LEHkldiRubjbgdT6ZqpqugXlss2oyXAYZyyAY25OOPWrmnSS/29IHcF448o7YyRnpVbxB4okUy2E9uIcjBMjZ3j1HQVU6MU3NbhGq7cnQ/9k="
							
							class="lazy"
							data-src="/posts/2023/in-memory-of-george/images/image-004_hu_82ac6b59f761e5e4.jpeg"
						

						
							
								
							
						
					>
				</a>
			</div>
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			<div>
				
				
					
					
				

				
				
					
					
				

				<a href="/posts/2023/in-memory-of-george/images/image-005.jpeg"
					class="galleryImg"
					
						

						
							data-description="iPhone X + iPhone X back dual camera 4mm f/1.8<br/>4mm f/1.8 1/4sec  ISO 250"
						

						
					
					>
					<img
						width="600" height="450"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIABgAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&#43;Tl5ufo6ery8/T19vf4&#43;fr/2gAMAwEAAhEDEQA/AOi8Vz3Ufhi&#43;ltpJIpFi3LIhwQMgnB&#43;leLyXeparITK815JGufn&#43;cqv416RDf3GpaS1xczlY5sjyugA9Md81kWh/4nstuYk2Iu4LjAH4Vye3cbqx0&#43;yUtbnN&#43;fr&#43;mab58k9xaw5VUjbK7h7D0qxpHiLXVczrqU8SDjg43e1XvENwlzbPCxk27P3jM3cc8Dp6du1ZUMkQgUKmFUcCt6b5tWYzXK7Iswa&#43;USOC6t3lRcfNG3OBS3XiKMXnmwWj7SAHMknzH6EDjr3zWUn3v&#43;AmoJqbpRvcXtJWNUzQa3NLZWyzIWiZ085wSzjnHHtmmLEiIATxUXhj/kYrb6P/AOgNU8vSnFcraQpO6TP/2Q=="
							
							class="lazy"
							data-src="/posts/2023/in-memory-of-george/images/image-005_hu_ae21ade30470069e.jpeg"
						

						
							
								
							
						
					>
				</a>
			</div>
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			<div>
				
				
					
					
				

				
				
					
					
				

				<a href="/posts/2023/in-memory-of-george/images/image-006.jpeg"
					class="galleryImg"
					
						

						
							data-description="iPhone XR + iPhone XR back camera 4.25mm f/1.8<br/>17/4mm f/1.8 1/24sec  ISO 640"
						

						
					
					>
					<img
						width="450" height="600"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIACAAGAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&#43;Tl5ufo6ery8/T19vf4&#43;fr/2gAMAwEAAhEDEQA/AMzTdBi0qWWWfUbch4HiZYlLZDLjrVP&#43;wNFgQPNqzyg8Yhjxj8TUPheKLUb13vmkmjgC4jznJPTj0GOldvJaW8qqIbS3lHRVMSj9K4K1X2c&#43;U7qFGM4czOctNL0qST7RCssrB&#43;S78Z69hWj9kt/&#43;fSP86dZ24s3mjuFS2FwxeC3bAddoyTweAR/IVN5lv/fH/fVUm5K4qkYRlZHmmlatLpd0JkRZFPDI3Qiusk8dwtAI4IikjDOWPT8q4LdgUCSOMiRuoNdNahCb5mtTLD1XFqLehvL4knfWFvJSZZUYMC3Qgdselbf/AAn1x/0D7b/v1/8AWriHn2OGjUCl&#43;2y&#43;i/kajk7HbKdNO03t5H//2Q=="
							
							class="lazy"
							data-src="/posts/2023/in-memory-of-george/images/image-006_hu_c539d21de71815af.jpeg"
						

						
							
								
							
						
					>
				</a>
			</div>
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			<div>
				
				
					
					
				

				
				
					
					
				

				<a href="/posts/2023/in-memory-of-george/images/image-007.jpeg"
					class="galleryImg"
					
						

						
							data-description="iPhone 14 + iPhone 14 back dual wide camera 5.7mm f/1.5<br/>57/10mm f/1.5 1/40sec  ISO 400"
						

						
					
					>
					<img
						width="600" height="450"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIABgAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&#43;Tl5ufo6ery8/T19vf4&#43;fr/2gAMAwEAAhEDEQA/AOttdJgiQC1hSM99q4/Wq86WunTIl3Oi&#43;ZuxGT/nirMusQWcDSSb0jAzIxUgKfXNcF4g1WfVplMUilWwAA/AX1rjqVIpWjq3&#43;B1U6bbvLRI2tc8N6ZcxGS1GzKbVCkBV5J&#43;70OSe/pXm2p6LNZmZ1&#43;ZY5/J&#43;UHax/wBknqfbkiuu0&#43;5uJb2cXp82dVKxgAqcAZzz3Jx&#43;VYmqXVzcxxWkSq62zfvHOAN5J3HPvn/Oa0pyko6u5nOKctFY9Vvkjk/dMPMAGGDDIP4VjXuh2DKpitI4X2lQ8agYBx2xjtW1N/rpfwqGbov41xTk1PRnVFJwOQdZZ7i9e8usyKuFmACkYPOfwyPxrmNVvobgpFbRCO3iGEAHX3rpLz7uofST&#43;VcW/wB0fSvQoRW5xVH0P//Z"
							
							class="lazy"
							data-src="/posts/2023/in-memory-of-george/images/image-007_hu_4252910fcb64660c.jpeg"
						

						
							
								
							
						
					>
				</a>
			</div>
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			<div>
				
				
					
					
				

				
				
					
					
				

				<a href="/posts/2023/in-memory-of-george/images/image-008.jpeg"
					class="galleryImg"
					
						

						
							data-description="iPhone SE + iPhone SE back camera 4.15mm f/2.2<br/>83/20mm f/2.2 1/15sec  ISO 320"
						

						
					
					>
					<img
						width="600" height="450"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIABgAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&#43;Tl5ufo6ery8/T19vf4&#43;fr/2gAMAwEAAhEDEQA/ALVvdeRLFL/cdW/I5rWvfGlrb6vDpc8SoXIDTOwCqCM5yfyrgtZ1O4sZRGsijIzgenvWbqmsNrFwlzMFzGu0DHB965ZJs6kkj1Ga5MkrQou/aituU5zkH/CuWvr6U3DKWHHHArjY4tiiRXJ459DV2zu5H3KxLbe/pRFLYUrrU6PXNOUC5gkjHmocg45yOP61xcqsoIB4r0XxN/yGbv8A3mrz6fofwrRC6FRVnd/LiLEucBV71vaUv2e6urSTBYYaszTP&#43;QpB/v1qwf8AIw3P&#43;4P6Uyeh/9k="
							
							class="lazy"
							data-src="/posts/2023/in-memory-of-george/images/image-008_hu_753f8c88a459b153.jpeg"
						

						
							
								
							
						
					>
				</a>
			</div>
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			<div>
				
				
					
					
				

				
				
					
					
				

				<a href="/posts/2023/in-memory-of-george/images/image-009.jpeg"
					class="galleryImg"
					
						

						
							data-description="iPhone 12 Pro Max + iPhone 12 Pro Max back triple camera 7.5mm f/2.2<br/>15/2mm f/2.2 1/178sec  ISO 20"
						

						
					
					>
					<img
						width="600" height="600"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIACAAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&#43;Tl5ufo6ery8/T19vf4&#43;fr/2gAMAwEAAhEDEQA/ANm/TwvPfbZrl4GlPzozhTu69Ap496pNceELC4kgFvd3RwUkZAxUA9ecqK0n063hM0gghkuO8jRjJxjp3/CuD8SXbyxFlR42DHbHn36kVj9Yu&#43;VDjhlbmZ24vrC3sFuU0KwtIgf3T30m7IPX5V3Hoema8p190OvXj7YQHdgBACEB9ge1dhptzL4m8MfZnjdLqzUEJEwbzVUEE7e3v6n8q4m/unl0&#43;3spEAktZHAwuDhscH15p0q0pOzHOlGKuj2k2TrFtluFd9w5J2knueP88Vxvi6ELeGJsEhcu46Enn9P6Vs3c8onKFnbMpyxHLDPesLxLMLh/MiBJlOM4/OvOi7zuz0Iw5Uc3HdvbMZrK4aFwkSMUbBZSTkfy/KrPji6WXW1jeFRPGQHbbtLKNuA3uBxnvVOKxSGcSzj92gyB6nt/SofFGqDWdaN6EMbOgDLnPQAA/wCfSu6CTmmjjqJ8tmf/2Q=="
							
							class="lazy"
							data-src="/posts/2023/in-memory-of-george/images/image-009_hu_18aa43adacb5331.jpeg"
						

						
							
								
							
						
					>
				</a>
			</div>
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			<div>
				
				
					
					
				

				
				
					
					
				

				<a href="/posts/2023/in-memory-of-george/images/image-010.jpeg"
					class="galleryImg"
					
						

						
							data-description="iPhone 6s + iPhone 6s back camera 4.15mm f/2.2<br/>83/20mm f/2.2 1/129sec  ISO 25"
						

						
					
					>
					<img
						width="600" height="600"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIACAAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&#43;Tl5ufo6ery8/T19vf4&#43;fr/2gAMAwEAAhEDEQA/AJvDmsQQ&#43;DYEvowJ&#43;VkVkwwweD&#43;Iwc1MmsWcsqsiREKuAGT/AOvXnuh&#43;LF0uV57iyiv5X6fafnUe&#43;O9d5oPiK58RKw/4Q&#43;1u0UYVorcIif8AAjwPzrik5xbO6MISRdvPEvl2bxFrcKyFTiLnBH&#43;9Xm&#43;rXkK3fmooK4OMjrgYr0PxcItN0CKS8s7SDzGw0NquTnByGYcH9e1eTatdQSkGBdvGMegqYSlUepqlGmrotjRoI0EUhJlU4Yg9DW5N8RtZ062t9LtxDFb2iCNVQYPAxmuRsdTaKZpJiXAViFIHLY4z&#43;PP4VRaTzGLM2STk5rocOb4jijPlV0a&#43;seJtR1plN1KSFJIA96x5HLcmjg96RsbTVxjGKskKU5S1bP/Z"
							
							class="lazy"
							data-src="/posts/2023/in-memory-of-george/images/image-010_hu_f0b351b3b5e132d1.jpeg"
						

						
							
								
							
						
					>
				</a>
			</div>
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			<div>
				
				
					
					
				

				
				
					
					
				

				<a href="/posts/2023/in-memory-of-george/images/image-011.jpeg"
					class="galleryImg"
					
						

						
							data-description="iPhone 5s + iPhone 5s back camera 4.15mm f/2.2<br/>83/20mm f/2.2 1/20sec  ISO 320"
						

						
					
					>
					<img
						width="600" height="450"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIABgAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&#43;Tl5ufo6ery8/T19vf4&#43;fr/2gAMAwEAAhEDEQA/AJtNQ3UqM2BGDkcZzWlPokEhLzravJI2BLKAOvGM/pWfY63bpCscKLyMZx3rek0uZtMa7iQm7jUvErsdhOPulT/OsVJtmvKkjOm8LaNDdwbJZwZPm8rzDggf59a6C1WzgjCR2yKgPQxgYH16muCS&#43;uGeI6rci1XdlFM2WXnPA61qy3eqTTm/hic26SrFGhG1pgcDIB9/5VLUpMtOMVoZmlW1tpIhvpZ4YCy5USSfd&#43;mehrah1SJhbSW11LJg7JWkflwR14GOvGK5LxJ/yB7P6Cruj/8AHjF/vj&#43;dbSM0PNxatljAJSOp2AA0/QvBmoi4t9btNQis45R50CBfMZEcdMHjODVGH/Uv/n1r0DQP&#43;RY0r/ryh/8AQBXfZWOJtrY//9k="
							
							class="lazy"
							data-src="/posts/2023/in-memory-of-george/images/image-011_hu_a114ad0b58c5d821.jpeg"
						

						
							
								
							
						
					>
				</a>
			</div>
		
	
</div>
</div>

<script>
	if (!("HSCGjQuery" in window)) {
		if (!window.jQuery) {
			throw new Error("jQuery is not loaded, hugo-shortcode-gallery wont work without it!");
		}
		window.HSCGjQuery = window.jQuery.noConflict(true);
	}

	
	
	
	
	
	;(function($) {

		$( document ).ready(() => {
			const gallery = $("#gallery-4feb7c7c1eeb4caa444c15359fd2fc34-0");
			

			
			let swipeboxInstance = null;

			
			
			gallery.on('jg.complete', () => {
				
					
					
					$(() => {
						$('.lazy').Lazy({
							visibleOnly: true,
							afterLoad: element => element.css({filter: "none", transition: "filter 1.0s ease-in-out"})
						});
					});
				

				swipeboxInstance = $('.galleryImg').swipebox(
					$.extend({},
						{  }
					)
				);
			});

			
			gallery.justifiedGallery($.extend(
				{
					rowHeight : "150",
					margins : "5",
					border : 0,
					randomize :  false ,
					waitThumbnailsLoad : false,
					lastRow : "justify",
					captions : false,
					
					
				},
				{  }
			));

			
			
		});

	
	
	
	})(window.HSCGjQuery)
</script>

]]></content:encoded>
    </item>
    <item>
      <title>Experimenting with Sobriety</title>
      <link>https://blakemerryman.com/posts/2023/experimenting-with-sobriety/</link>
      <pubDate>Sat, 29 Apr 2023 00:00:00 +0000</pubDate>
      <guid>https://blakemerryman.com/posts/2023/experimenting-with-sobriety/</guid>
      <description>Marking the day I stopped drinking alcohol as a health experiment.</description>
      <content:encoded><![CDATA[<p>On this day, I stopped drinking alcohol. This is an experiment to see how it impacts my health. I will likely partake again at some point but I want to mark this day so that I don&rsquo;t forget it.</p>
]]></content:encoded>
    </item>
    <item>
      <title>A Mother&#39;s Day Tray</title>
      <link>https://blakemerryman.com/posts/2020/a-mothers-day-tray/</link>
      <pubDate>Mon, 10 May 2021 21:00:00 +0000</pubDate>
      <guid>https://blakemerryman.com/posts/2020/a-mothers-day-tray/</guid>
      <description>A handmade wooden tray built from reclaimed wood as a Mother&amp;#39;s Day gift — my first woodworking project of the pandemic.</description>
      <content:encoded><![CDATA[<p>Over the pandemic, I picked up wood working as a fun hobby. This is something that I&rsquo;ve wanted to do for a long time; the act of creating a physical thing is very compelling to someone who works with intangible bits every day. The social distancing and isolation offered an opportunity to finally dive in head first. I&rsquo;ve had a steady stream of projects over the past several months but today I want to share what I made my mother for Mother&rsquo;s Day.</p>
<p>Awhile back, I asked my mom what she&rsquo;d like for her special holiday. She requested a nice large tray. Apparently trays are all the rage in decorative world these days (she&rsquo;s a bit of an interior decorator). She didn&rsquo;t give me much to work with but it was clear she didn&rsquo;t want anything loud or overly trendy. My mom enjoys simple designs and clean lines.</p>
<p>I decided to keep things simple and focus on the fit and finish of the tray. The design I came up with was straightforward: a miter box frame with a dado groove for the bottom panel. I spent several Saturdays in my garage milling, cutting, and recutting the parts. It took some work to get the miters just right. Then I sanded through the following grits: 80, 120, 220. I applied two coats of wipe on polyurethane to finish, sanding between and buffing afterwards.</p>
<p>The wood was reclaimed from a couple of nice ladies on Craigslist. I believe it&rsquo;s cherry or something similar.</p>
<p>I didn&rsquo;t take any pictures during the construction process so here is the final result:</p>







	






































	
	

	
		<script src="/shortcode-gallery/jquery-3.7.1.min.js"></script>
	

	
		<script src="/shortcode-gallery/lazy/jquery.lazy.min.js"></script>
	

	<script src="/shortcode-gallery/swipebox/js/jquery.swipebox.min.js"></script>
	<link rel="stylesheet" href="/shortcode-gallery/swipebox/css/swipebox.min.css">

	<script src="/shortcode-gallery/justified_gallery/jquery.justifiedGallery.min.js"></script>
	<link rel="stylesheet" href="/shortcode-gallery/justified_gallery/justifiedGallery.min.css"/>


<style>
	

	
</style>





<div id="gallery-e36a9c3eca093e47dd48385c325a9f73-0-wrapper" class="gallery-wrapper">
<div id="gallery-e36a9c3eca093e47dd48385c325a9f73-0" class="justified-gallery">
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			<div>
				
				
					
					
				

				
				
					
					
				

				<a href="/posts/2020/a-mothers-day-tray/images/tray_angle.jpeg"
					class="galleryImg"
					
						

						
							data-description="iPhone 12 Pro Max + iPhone 12 Pro Max back triple camera 5.1mm f/1.6<br/>51/10mm f/1.6 1/60sec  ISO 80"
						

						
					
					>
					<img
						width="600" height="246"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIAA0AIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&#43;Tl5ufo6ery8/T19vf4&#43;fr/2gAMAwEAAhEDEQA/AOTi0rxJbJsn1K6txIMMkhY8fia24oJo3yLy32kDIWPkn15/Wu&#43;VUv2KTxqwCHHFY954ZtLpW8pmgfHVeR&#43;VZVL2NqajfU5/Vtctr&#43;&#43;3XemJLCkJjWN5VbndnOQfQnisOOW9&#43;1zf2Pp0J8z7kAOWHHOPyNdbZ&#43;DLGMhrmWS4I7fdH6c/rW/ZafaWq7LeBIh/srjNcaryukjd042P/9k="
							
							class="lazy"
							data-src="/posts/2020/a-mothers-day-tray/images/tray_angle_hu_9d492c8031504f95.jpeg"
						

						
							
								
							
						
					>
				</a>
			</div>
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			<div>
				
				
					
					
				

				
				
					
					
				

				<a href="/posts/2020/a-mothers-day-tray/images/tray_empty.jpeg"
					class="galleryImg"
					
						

						
							data-description="iPhone 12 Pro Max + iPhone 12 Pro Max back triple camera 5.1mm f/1.6<br/>51/10mm f/1.6 1/60sec  ISO 125"
						

						
					
					>
					<img
						width="600" height="450"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIABgAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&#43;Tl5ufo6ery8/T19vf4&#43;fr/2gAMAwEAAhEDEQA/AOP0fwbdXEH2zU5fslrENxBHO3Pfso/zivQ9Jn8O2VqkK6zZxKowAMnP1JxUPjGaGxistBg58xvOuD6gdM/j/KsbzrcOBsUVzznKDOunSjONzpdTutDubCeO31&#43;x85o2EZlYAK2ODnnv7V45qVnqmkOJblVlglYhLmJg8UhHXDDv7da7d5IC3CL&#43;VbHhlrG9kutAv4kltLxdwRum7vj0PfPtRDENuzQqlC0bpnY3/h2w1K4NxPFmQjBYMRn8jVN/BWkE8wn/AL&#43;N/jXRdqa/Q10Spxk7tGCnJKyZzh8D6Sf&#43;WTD/ALaN/jUlr4Q02zuo7mJX8yM5XLsQD&#43;ddB2pKzdKHYftJdz//2Q=="
							
							class="lazy"
							data-src="/posts/2020/a-mothers-day-tray/images/tray_empty_hu_4da5b9adf049c79a.jpeg"
						

						
							
								
							
						
					>
				</a>
			</div>
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			<div>
				
				
					
					
				

				
				
					
					
				

				<a href="/posts/2020/a-mothers-day-tray/images/tray_hero.jpeg"
					class="galleryImg"
					
						

						
							data-description="iPhone 12 Pro Max + iPhone 12 Pro Max back triple camera 5.1mm f/1.6<br/>51/10mm f/1.6 1/60sec  ISO 125"
						

						
					
					>
					<img
						width="600" height="450"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIABgAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&#43;Tl5ufo6ery8/T19vf4&#43;fr/2gAMAwEAAhEDEQA/AOZv7OaVZTHPfSMocLEVJCnHHOOelZwv7q1ntWlnup5LRyYkKbtrdDxj2rvPFepRzXX9k2q7bdGxdTLgM5B5VfasGGy0uCVXSOcOpyJDOFI/IVj7WKvzHQ6UnblRh3/ijXNRv18m71CGUrgQ2wdM477Qeta1p4oEfh5rCMTfaljYb5CCxY56/ia2ftKQWnn22s3H2xSQI3lZl2468nGap2uhadr8jW1/KbbUJOYr2M7g5P8AC69z7jBNVTxEFurEToT6HqM2mWZffLaQszcksgJNQNpemkgGxt/&#43;/Y/wrTuui/Sqp61VibsrnSNL3HbYW&#43;PeJf8ACpItL06ORZI7G3R1OVZY1BH6VMOtSL1pWQ7s/9k="
							
							class="lazy"
							data-src="/posts/2020/a-mothers-day-tray/images/tray_hero_hu_46bbfa64db3a9d89.jpeg"
						

						
							
								
							
						
					>
				</a>
			</div>
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			<div>
				
				
					
					
				

				
				
					
					
				

				<a href="/posts/2020/a-mothers-day-tray/images/tray_top.jpeg"
					class="galleryImg"
					
						

						
							data-description="iPhone 12 Pro Max + iPhone 12 Pro Max back triple camera 5.1mm f/1.6<br/>51/10mm f/1.6 1/60sec  ISO 100"
						

						
					
					>
					<img
						width="600" height="450"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIABgAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&#43;Tl5ufo6ery8/T19vf4&#43;fr/2gAMAwEAAhEDEQA/ANSOZ7hwkQyzdBRfeAtH1jy31S7LNHnCwOFHPYk5J/Sqt6PsngrU7wgeZKBbpn0YjP8AOuKGlsJg0k8ar2iV95x9Rx&#43;tZRm1G7ZryXdrHW3vwn8Luim1vbiB8d5VZfyIz&#43;tcF4p8Lz&#43;Grldy5hf7sinKsOxBrrEtYNIgs76ARTXMyvuQnIQcY6cg1sXdjFr/AMOXj2BXiRpIx127WPH5f0qaddqSHOlZGhaaSmv6G&#43;mXTyRBZhN8hAJ49&#43;2alX4dWhj/AOP25GOOq/4Vd8N/8fEn/XP&#43;tdOv&#43;qq4xjKOqE5yi9GcKfh7bbsDUJx&#43;A/wq5PpkHhzw9JaR3LTBgyqzgA/N2/nXRv8Afrn/ABd/yDo/&#43;ug/kaXs4p6IPaSlo2f/2Q=="
							
							class="lazy"
							data-src="/posts/2020/a-mothers-day-tray/images/tray_top_hu_37f9700b725b877b.jpeg"
						

						
							
								
							
						
					>
				</a>
			</div>
		
	
		

			
			

			
			
				
			

			
				
			

			
			
				
					
				
			


			
			

			<div>
				
				
					
					
				

				
				
					
					
				

				<a href="/posts/2020/a-mothers-day-tray/images/tray_wrapped.jpeg"
					class="galleryImg"
					
						

						
							data-description="iPhone 12 Pro Max + iPhone 12 Pro Max back triple camera 5.1mm f/1.6<br/>51/10mm f/1.6 1/60sec  ISO 80"
						

						
					
					>
					<img
						width="600" height="450"

						
							
							style="filter: blur(25px);"
							
								src="data:image/jpeg;base64,/9j/2wCEAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4&#43;JS5ESUM8SDc9PjsBCgsLDg0OHBAQHDsoIig7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O//AABEIABgAIAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5&#43;gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2dri4&#43;Tl5ufo6ery8/T19vf4&#43;fr/2gAMAwEAAhEDEQA/ANS1sre8ykNsjBBliyjCj1J7VTv/AA34e16FI5NXS1Ktk&#43;XFt/DJxVvV7v8AsyxTRrZSh2hrmTGN7EdPpWXpklgs7nUFLJt&#43;UDPXPtWHNZpJI6uS8W3cq3Hwd0&#43;4jJ0zxKGfsJFVwfxU8fka4fXvCGs&#43;FrgDUbcGFjhLiI7o2PpnsfY4r0TUpbGWZDYxtGgXDAjv69as6GsV/LPpt4vnW1zCVaNuQeR09D70e35Zaol0Lx5kdraG11awiuHiSQSKNwYA4PcVVuvCmk3Az9n8snvGxX/61L4W/wCQJH/vt/Othulb7rUxu1scjc&#43;BFwTa3rr6CRQ36jFV9N8L6pp&#43;qxTu0LxqTuKsemD2rt&#43;1Rv3&#43;hrKVOL6Giqz2uf/Z"
							
							class="lazy"
							data-src="/posts/2020/a-mothers-day-tray/images/tray_wrapped_hu_bef663bf4d7d3cad.jpeg"
						

						
							
								
							
						
					>
				</a>
			</div>
		
	
</div>
</div>

<script>
	if (!("HSCGjQuery" in window)) {
		if (!window.jQuery) {
			throw new Error("jQuery is not loaded, hugo-shortcode-gallery wont work without it!");
		}
		window.HSCGjQuery = window.jQuery.noConflict(true);
	}

	
	
	
	
	
	;(function($) {

		$( document ).ready(() => {
			const gallery = $("#gallery-e36a9c3eca093e47dd48385c325a9f73-0");
			

			
			let swipeboxInstance = null;

			
			
			gallery.on('jg.complete', () => {
				
					
					
					$(() => {
						$('.lazy').Lazy({
							visibleOnly: true,
							afterLoad: element => element.css({filter: "none", transition: "filter 1.0s ease-in-out"})
						});
					});
				

				swipeboxInstance = $('.galleryImg').swipebox(
					$.extend({},
						{  }
					)
				);
			});

			
			gallery.justifiedGallery($.extend(
				{
					rowHeight : "150",
					margins : "5",
					border : 0,
					randomize :  false ,
					waitThumbnailsLoad : false,
					lastRow : "justify",
					captions : false,
					
					
				},
				{  }
			));

			
			
		});

	
	
	
	})(window.HSCGjQuery)
</script>

]]></content:encoded>
    </item>
    <item>
      <title>Nashville Favorites</title>
      <link>https://blakemerryman.com/posts/2021/nashville-favorites/</link>
      <pubDate>Thu, 22 Apr 2021 00:08:00 +0000</pubDate>
      <guid>https://blakemerryman.com/posts/2021/nashville-favorites/</guid>
      <description>Living in California during the pandemic definitely has me missing home. I thought it would be helpful to put together a list of my favorite spots back in Music City.</description>
      <content:encoded><![CDATA[<p>Living in California during the pandemic definitely has me missing home. I thought it would be helpful to put together
a list of my favorite spots back in Music City.</p>
<h2 id="food--drinks">Food &amp; Drinks</h2>
<ul>
<li>Hattie B&rsquo;s Hot Chicken</li>
<li>Martin&rsquo;s Bar-B-Cue Joint</li>
<li>Five Points Pizza</li>
<li>DeSano Pizza</li>
<li>The Patterson House</li>
<li>M.L. Rose</li>
<li>Kayne Prime Steakhouse</li>
<li>Virago Sushi</li>
<li>Pinewood Social</li>
<li>Pucket&rsquo;s Grocery &amp; Restaurant</li>
<li>Otaku Ramen</li>
<li>Tacqueria Del Sol</li>
<li>Burger Up</li>
<li>Las Paletas</li>
<li>Taquería La Juquilita</li>
</ul>
<h2 id="coffee--breakfast">Coffee &amp; Breakfast</h2>
<ul>
<li>8th &amp; Roast</li>
<li>Frothy Monkey</li>
<li>Barista Parlor</li>
<li>Proper Bagel</li>
<li>Steadfast</li>
<li>Fido</li>
</ul>
<h2 id="breweries">Breweries</h2>
<ul>
<li>Jackolope Brewing Company</li>
<li>Yazoo Brewing Company</li>
<li>Tennessee Brew Works</li>
<li>Fat Bottom Brewing</li>
<li>Tailgate Brewery</li>
</ul>
<h2 id="entertainment">Entertainment</h2>
<ul>
<li>Robert&rsquo;s Western World</li>
<li>Rudy&rsquo;s Jazzroom</li>
<li>House of Cards</li>
<li>Headquarters Beercade</li>
<li>Schermerhorn Symphony Center</li>
<li>Ascend Amphitheatre</li>
<li>See a game for any of our sports teams</li>
<li>Pick almost any bar or restaurant and you&rsquo;ll find live music</li>
</ul>
<h2 id="outdoors">Outdoors</h2>
<ul>
<li>Centennial Park</li>
<li>Percy Warner Park</li>
<li>Long Hunter State Park</li>
<li>Sevier Park</li>
</ul>
]]></content:encoded>
    </item>
    <item>
      <title>Swift Tips Series</title>
      <link>https://blakemerryman.com/posts/2017/2017-11-09-swift-tips-series/</link>
      <pubDate>Thu, 09 Nov 2017 10:05:00 +0000</pubDate>
      <guid>https://blakemerryman.com/posts/2017/2017-11-09-swift-tips-series/</guid>
      <description>My full Swift Tips series.</description>
      <content:encoded><![CDATA[<p>Recently, I wrote a series of Swift tips over at my <a href="https://medium.com/bpxl-craft" target="_blank" rel="noopener noreferrer">company’s blog</a>
. This started out as a simple CocoaHeads talk where I was sharing my own personal best practices with the group.</p>
<ol>
<li><a href="https://medium.com/bpxl-craft/swift-tips-striving-for-smallness-9f3554508324" target="_blank" rel="noopener noreferrer">Striving for Smallness</a>
</li>
<li><a href="https://medium.com/bpxl-craft/swift-tips-documentation-abbd1e31553a" target="_blank" rel="noopener noreferrer">Documentation</a>
</li>
<li><a href="https://medium.com/bpxl-craft/swift-tips-organization-47f2422afe23" target="_blank" rel="noopener noreferrer">Organization</a>
</li>
<li><a href="https://medium.com/bpxl-craft/swift-tips-access-control-e2579e03f969" target="_blank" rel="noopener noreferrer">Access Control</a>
</li>
<li><a href="https://medium.com/bpxl-craft/swift-tips-early-exits-8ccd93403808" target="_blank" rel="noopener noreferrer">Early Exits</a>
</li>
<li><a href="https://medium.com/bpxl-craft/swift-tips-closure-based-collectiontype-apis-20ff8e1428e2" target="_blank" rel="noopener noreferrer">Closure-Based CollectionType APIs</a>
</li>
<li><a href="https://medium.com/bpxl-craft/swift-tips-property-configuration-cae9d6c9f84c" target="_blank" rel="noopener noreferrer">Property Configuration</a>
</li>
<li><a href="https://medium.com/bpxl-craft/swift-tips-lazy-sequences-59058ac1454f" target="_blank" rel="noopener noreferrer">Lazy Sequences</a>
</li>
<li><a href="https://medium.com/bpxl-craft/swift-tips-debugging-slow-build-times-bf333aae6874" target="_blank" rel="noopener noreferrer">Debugging Slow Build Times</a>
</li>
</ol>
<p>I’d love to hear your thoughts and feedback. Feel free to reach out to me on Twitter <a href="https://twitter.com/blakemerryman" target="_blank" rel="noopener noreferrer">@blakemerryman</a>
.</p>
]]></content:encoded>
    </item>
    <item>
      <title>Bear Writer</title>
      <link>https://blakemerryman.com/posts/2017/2017-10-19-bear-notes/</link>
      <pubDate>Thu, 19 Oct 2017 15:18:23 +0000</pubDate>
      <guid>https://blakemerryman.com/posts/2017/2017-10-19-bear-notes/</guid>
      <description>My current note taking solution.</description>
      <content:encoded><![CDATA[<p>I&rsquo;ve <a href="http://blakemerryman.com/2015/09/24/evernote-alternative/" target="_blank" rel="noopener noreferrer">lamented</a>
 about my love/hate relationship with Evernote but I never followed up about my solution to this problem. For now, I&rsquo;ve given up on my dream of a custom built solution in favor of <a href="http://www.bear-writer.com" target="_blank" rel="noopener noreferrer">Bear</a>
, a simple yet beautiful note taking solution. It even checks off many of the boxes from my wish list:</p>
<ul>
<li><input checked="" disabled="" type="checkbox"> Powered by plain text.</li>
<li><input checked="" disabled="" type="checkbox"> Preview/rendering options.</li>
<li><input checked="" disabled="" type="checkbox"> Multi-media support.</li>
<li><input checked="" disabled="" type="checkbox"> Hand writing / drawing support.</li>
<li><input checked="" disabled="" type="checkbox"> Customizable organization (via tags).</li>
<li><input checked="" disabled="" type="checkbox"> Search.</li>
<li><input checked="" disabled="" type="checkbox"> Mobile friendly. There is apps for iPhone, iPad, &amp; Mac.</li>
<li><input checked="" disabled="" type="checkbox"> Affordable and viable. Subscription pricing: $1.49/monthly or $14.99/annually.</li>
</ul>
<p>Still missing from my wishlist:</p>
<ul>
<li><input disabled="" type="checkbox"> Varied storage options. For now, iCloud is the only supported storage option. This is fine for now as I live in an Apple dominated world.</li>
<li><input disabled="" type="checkbox"> Text transcription. I can sketch and write on notes but can&rsquo;t easily search this hand-crafted content.</li>
<li><input disabled="" type="checkbox"> Web service. There is no way to access this content from the web.</li>
<li><input disabled="" type="checkbox"> Customizable templates. There is not any template support.</li>
<li><input disabled="" type="checkbox"> Extensible. There is no way to extend bear with your own functionality.</li>
</ul>
<p>The silver lining in all of this is that I ostensibly control the content and it is being stored in an easily transferable format. This app is also well maintained and will hopefully add many of the features that I&rsquo;m looking for.</p>
]]></content:encoded>
    </item>
    <item>
      <title>Evernote Alternative?</title>
      <link>https://blakemerryman.com/posts/2015/2015-09-24-evernote-alternative/</link>
      <pubDate>Thu, 24 Sep 2015 16:27:00 +0000</pubDate>
      <guid>https://blakemerryman.com/posts/2015/2015-09-24-evernote-alternative/</guid>
      <description>A peak into my thoughts on a custom Evernote alternative.</description>
      <content:encoded><![CDATA[<p>I&rsquo;ve been a long time <a href="https://evernote.com/" target="_blank" rel="noopener noreferrer">Evernote</a>
 user. With few exceptions, I dump everything that I think or discover into my Evernote database. I&rsquo;ve even been a premium member until recently.</p>
<p>And yet, I&rsquo;ve never <em>loved</em> Evernote. I feel like we have always been at odds. Things never work quite how I want them to and a lot of minor details leave me frustrated. I&rsquo;ll save that rant for another post but the bottom line is this: I&rsquo;ve been looking for a new note taking system for a long time and I&rsquo;ve always been forced come back to Evernote because it is the lesser of many evils.</p>
<p>With all of the discussion about the &ldquo;open web&rdquo; lately, I&rsquo;ve been toying with the idea of building my own system, using existing technologies and supplementing with my own open-sourced utilities. This post won&rsquo;t go into the nitty-gritty details and is more of an outline of what features I think this system should have in order to meet my needs. So let&rsquo;s begin.</p>
<h2 id="wish-list">Wish List</h2>
<p>This list is not all encompassing, nor are all items required. These are just things I want (and use in my current system).</p>
<ol>
<li>Powered by plain text files. Whether you prefer to take notes in <a href="http://daringfireball.net/projects/markdown/" target="_blank" rel="noopener noreferrer">Markdown</a>
, HTML, plain text, or <a href="https://en.wikipedia.org/wiki/LaTeX" target="_blank" rel="noopener noreferrer">LaTex</a>
, this system should take any and all text files without regard for the contents.</li>
<li>Preview/rendering options. This system should easily allow the user to preview their marked-up plain-text content. Preferably with a live preview option. Also, presentation mode!</li>
<li>Varied storage options. A user should not have their thoughts and ideas locked into a third party&rsquo;s cloud. They should be able to pick and choose and easily relocate their data at anytime. Ideally, the user can even host their own data.</li>
<li>Supports multi-media. As much as the developer in me wishes that everything existed in text, even I have to add images &amp; videos to my notes every now and again. This should be easy &amp; intuitive.</li>
<li>Hand writing support. Some people just prefer to take notes the old fashioned way or have sketches interspersed throughout.</li>
<li>Customizable organization. If the user wants to file things away in folders by month or year, great. If the user wants to file everything away in one large, hot-mess of a folder, also great.</li>
<li>Search. It should be easy to find what you&rsquo;re looking for.</li>
<li>Text transcription. This is one feature that Evernote really nailed and probably the hardest to replicate. Ideally, this would tie in with search as well.</li>
<li>Mobile friendly (first?). We live in a progressively mobile first world whether we like it or not. This system should function equally well on phones, tablets, computers, and the web.</li>
<li>Web Service. This system should be able to live on the web, including self-hosted.</li>
<li>Affordable but viable. Fairly priced for consumers and the developer(s).</li>
<li>Customizable templates. Whether you&rsquo;re bookmarking sites or journalling, a good template can save you time.</li>
<li>Extensible. Feature missing? Easily add it in yourself.</li>
</ol>
<hr>
<p>Basically what I want is a fast, simple, powerful note taking platform that is also useful for bookmarking, planning, todo-list managing, and cross-platforming utility. Not much&hellip; just everything.</p>
<p>This will probably (read: definitely) be on long, drawn out process as I piecemeal this all together (or give up and move on to something else, as I’m want to do on projects like these).</p>
<p>If you have suggestions or thoughts, feel free to <a href="https://twitter.com/blakemerryman" target="_blank" rel="noopener noreferrer">contact me on Twitter</a>
.</p>
]]></content:encoded>
    </item>
    <item>
      <title>Initial Thoughts - Apple Special Event, Sept. 9, 2015</title>
      <link>https://blakemerryman.com/posts/2015/2015-09-09-apple-special-event-sept-9-2015/</link>
      <pubDate>Wed, 09 Sep 2015 23:12:00 +0000</pubDate>
      <guid>https://blakemerryman.com/posts/2015/2015-09-09-apple-special-event-sept-9-2015/</guid>
      <description>My initial thoughts &amp;amp; observation about Apple&amp;#39;s latest keynote.</description>
      <content:encoded><![CDATA[<p>We all knew what was coming and it was still a doozy. The rumor mill basically got everything correct and this was still one of the best keynotes in a long time. I plan on writing more in depth about each major topic but for now, here are my first impressions.</p>
<ul>
<li>
<p>Lack of “Status Updates”</p>
<p>In the past, Apple has kicked off every event with a stacatto of numbers about how great Apple has been doing. The past few events, however, Tim Cook has basically said “we’ve already crammed so much into this time slot that we don’t have time for updates; things are great; let’s do this”… which, in my opinion, is a welcome change that shows Cook’s leadership style comfortably in place at Apple.</p>
</li>
<li>
<p><a href="http://www.apple.com/watch/" target="_blank" rel="noopener noreferrer">Apple Watch &amp; watchOS 2</a>
</p>
<p>I’m not über thrilled about the Watch-related announcements but there were a few gems. The updated watchOS will bring some much needed stability &amp; performance improves to the fledgling platform (including a few nice new features like third party complications). Additionally, I think it’s great that not only is Apple continuing to produce new finishes and bands, but they are beginning to partner with serious companies to branch out with new collections of bands.</p>
</li>
<li>
<p><a href="http://www.apple.com/ipad-pro/" target="_blank" rel="noopener noreferrer">iPad Pro, Keyboard, &amp; Pencil</a>
</p>
<p>A huge (and yet light) screen powered by iOS 9. Multi-tasking. Touch ID. Retina Display. Stereo speakers. All day battery life. Coupled with a ridiculously engineered Pencil (I didn’t say stylus!) and an interesting keyboard case, this could be the general purpose computing device that I’ve been waiting for. Slim, beautiful, powerful, versatile. I’m am stoked about this product combo.</p>
</li>
<li>
<p><a href="http://www.apple.com/tv/" target="_blank" rel="noopener noreferrer">AppleTV &amp; tvOS</a>
</p>
<p>This will be in my living room as soon as it comes out. The AppleTV finally has an app platform. Apps are universal. Unified, refine-able search across content sources. A multi-touch remote that also acts as a microphone for voice commands. Powerful Siri voice search. A powerful, 64-bit system on a chip capable of Apple’s new Metal technology (high performance graphics). Support for bluetooth controllers.</p>
</li>
<li>
<p><a href="http://www.apple.com/iphone-6s/" target="_blank" rel="noopener noreferrer">iPhone 6S &amp; 6S Plus</a>
</p>
<p>The new iPhones are pretty amazing. Tougher materials. 3D Touch technology (the “peak” and “pop” paradigm is pretty ingenious). 12MP camera capable of 4K video. Moving photos from the Wizarding world. Rose gold isn’t for me but it is beautiful.</p>
<p>If only Apple would stop shipping 16GB phones. An uncompressed 4K video a few minutes in length can be close to 10GB in size (depending on format). Seriously Apple, come on. The fact that Apple continues to ship 16GB iPhones seriously rained on my parade.</p>
</li>
<li>
<p><a href="http://www.apple.com/shop/iphone/iphone-upgrade-program" target="_blank" rel="noopener noreferrer">iPhone Upgrade Program</a>
</p>
<p>This may be the announcement that I’m most excited about. Apple’s new upgrade program will finally allow one to affordably decouple our iPhone purchases from our service carrier bills.  Here are the key points:</p>
<ul>
<li>New iPhone every year</li>
<li>Unlocked</li>
<li>Low monthly payments (2 year commitment required through the Apple Store)</li>
<li>AppleCare+ (protection plan)</li>
</ul>
<p>I think decoupling hardware purchases from cellular service carriers is a good thing that will benefit the consumer and further drive carriers to focus on their service reliability and affordability rather than the handsets.</p>
</li>
<li>
<p>Naming Conventions</p>
<p>With iOS, watchOS, &amp; now tvOS, I don’t think it will be long before we see Mac OS X become macOS. And I <em>really</em> like this naming convention.</p>
</li>
<li>
<p>Power Connectors</p>
<p>I had thought that with Apple’s adoption of USB Type C on the new MacBook that we might see the iPhones transition to the new connector in a year or so. However, with several new products (the TV Remote &amp; Pencil) adopting the Lightning Connector for charging, I’m not so sure.</p>
</li>
</ul>
]]></content:encoded>
    </item>
    <item>
      <title>Swift Scripts at CocoaHeads</title>
      <link>https://blakemerryman.com/posts/2015/2015-02-16-cocoaheads-swift-scripts/</link>
      <pubDate>Mon, 16 Feb 2015 10:00:00 +0000</pubDate>
      <guid>https://blakemerryman.com/posts/2015/2015-02-16-cocoaheads-swift-scripts/</guid>
      <description>Links to my Swift Scripting presentation and repository.</description>
      <content:encoded><![CDATA[<p>Speaking of Swift, I delivered a presentation on scripting with Swift at <a href="http://cocoaheads.org:8106/us/NashvilleTennessee/index.html" target="_blank" rel="noopener noreferrer">Nashville CocoaHeads</a>
 at the end of January, earlier this year. Check out the <a href="https://www.youtube.com/watch?v=7dkyTOC6Ie8" target="_blank" rel="noopener noreferrer">video</a>
 and head over to the <a href="https://github.com/blakemerryman/Swift-Scripts" target="_blank" rel="noopener noreferrer">Github repository</a>
 for the source code and more information.</p>
]]></content:encoded>
    </item>
    <item>
      <title>Swift 1.2</title>
      <link>https://blakemerryman.com/posts/2015/2015-02-13-swift-1.2/</link>
      <pubDate>Fri, 13 Feb 2015 12:31:59 +0000</pubDate>
      <guid>https://blakemerryman.com/posts/2015/2015-02-13-swift-1.2/</guid>
      <description>I&amp;#39;m really excited about the changes to Swift in the current Xcode 6.3 beta. Apple has answered several of my biggest gripes with Swift. Here are some of the highlights.</description>
      <content:encoded><![CDATA[<p>I&rsquo;m really excited about the changes to Swift in the current Xcode 6.3 beta. Apple has answered several of my biggest gripes with Swift. Here are some of the highlights:</p>
<ul>
<li>Incremental builds for increased build performance</li>
<li>Native <code>Set</code> collection class that bridges to <code>NSSet</code>, joining <code>Array</code>/<code>NSArray</code> and <code>Dictionary</code>/<code>NSDictionary</code></li>
<li><code>static</code> methods and properties support for classes</li>
<li>Improved type inference for single-expression closures</li>
<li>Swift enums can now be exported to Objective-C</li>
<li><code>let</code> constants no longer need immediate initialization</li>
<li>General performance enhancements</li>
<li>General improvements to Swift-Objective-C interoperability</li>
</ul>
<p>And my personal favorite:</p>
<ul>
<li>Nested &amp; enhanced optional binding</li>
</ul>
<p>Now, this:</p>
<pre><code>if let x = self.x {
    if let y = self.y {
        if let z = self.z {
            if z == true {
                // Do something at the top of the Pyramid of Doom!
            }
        }
    }
}
</code></pre>
<p>becomes this:</p>
<pre><code>if let x = self.x, y = self.y, z = self.z where z == true {
    // Do Something without climbing the Pyramid!
} 
</code></pre>
<p>Beautiful!</p>
<hr>
<p>Apple has even included a handy Migration Tool to get your code from Swift version 1.1 to version 1.2.</p>
<p>There are a lot of other great changes as well (including enhancements to Objective-C) so head over to the Apple Developer Center to download the beta and read the full release notes.</p>
]]></content:encoded>
    </item>
    <item>
      <title>Youtube View Counter</title>
      <link>https://blakemerryman.com/posts/2014/2014-12-23-youtube-view-counter/</link>
      <pubDate>Tue, 23 Dec 2014 16:52:31 +0000</pubDate>
      <guid>https://blakemerryman.com/posts/2014/2014-12-23-youtube-view-counter/</guid>
      <description>Explanation behind the Youtube View Counter Breaking</description>
      <content:encoded><![CDATA[<p>Youtube recently ran into issues with it&rsquo;s view counter for the <a href="https://www.youtube.com/watch?gl=GB&amp;hl=en-GB&amp;v=9bZkp7q19f0" target="_blank" rel="noopener noreferrer">Gangnum Style video</a>
. Basically, Google was using 32-bit integers to store the view counter value for its videos. This means that it had a maximum possible value of 2,147,483,647. This essentially &ldquo;broke the internet&rdquo; (at least for this one video) when the number of views passed that limit. My friend Allen asked me why Google didn&rsquo;t already use the 64-bit version (which has a maximum value of 9,223,372,036,854,775,807&hellip; that&rsquo;s nine <em>quintillion</em> with a Q) rather than 32-bit version. The answer: bandwidth.</p>
<h2 id="first-some-stats--facts">First, Some Stats &amp; Facts:</h2>
<ul>
<li>In <a href="http://youtube-global.blogspot.com/2012/01/holy-nyans-60-hours-per-minute-and-4.html" target="_blank" rel="noopener noreferrer">January 2012</a>
, Google had over 4 billion views per day. It&rsquo;s definitely more now, but this is the most up-to-date stat I could find.</li>
<li>Every time you load a Youtube video, you are downloading that view counter (along with the video and everything else on the page).</li>
<li>32-bit integers take up 4 Bytes; 64-bit integers take up 8 Bytes.</li>
</ul>
<h2 id="now-for-some-math">Now For Some Math:</h2>
<pre><code>oldCounterBandwidth = ( 4 Bytes / view ) * ( 4 billion views / day ) = 16 GB / day
newCounterBandwidth = ( 8 Bytes / view ) * ( 4 billion views / day ) = 32 GB / day
</code></pre>
<p><em>Note: Final values were converted from Bytes to GigaBytes for clarity.</em></p>
<p>By converting to 64-bit integers to store the view counters, they are doubling their bandwidth from 16 GB per day to 32 GB per day&hellip;. <strong>just to load view counters</strong>. Keep in mind that the daily view stat I found is from January 2012.</p>
]]></content:encoded>
    </item>
  </channel>
</rss>
