<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>Dillon Shook</title><description>Autodidact &amp; Zero One Infinity Advocate</description><link>https://dillonshook.com/</link><language>en</language><copyright>All content copyright Dillon Shook</copyright><item><title>The AI Workflow That Works For Me</title><link>https://dillonshook.com/ai-workflow/</link><guid isPermaLink="true">https://dillonshook.com/ai-workflow/</guid><pubDate>Fri, 12 Jun 2026 11:49:33 GMT</pubDate><content:encoded>&lt;p&gt;I thought it’d be interesting for my future self to write down how I’m using AI tools now after having settled into a groove after  ~8 months of heavier usage and trying different approaches. It’s fascinating to me how everyone adopts AI in their own ways and on their own timeline.  I’m mainly interested in seeing how much my own approach will change over time as the tools evolve but hopefully this post will be interesting for you to compare your own approach to as well.  Claude Fable dropped as I’m writing this so who knows, this may be out of date before it’s even published.&lt;/p&gt;
&lt;p&gt;For a little &lt;em&gt;context&lt;/em&gt;, I’m working on an internal application written in Next.js with one other very experienced coworker. We mostly work on different parts of the application but sync up regularly to talk about anything that affects both of our work. There’s an extensive documentation folder that our AGENTS.md points to with docs for all the major subsystems, common developer commands, and repo conventions. The application also has a strong type system that checks everything from sql queries with &lt;a href=&quot;https://www.kysely.dev/?ref=dillonshook.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;Kysely&lt;/a&gt;, how the data is mapped into internal and external APIs, the query and path parameters for advanced filtering, to all the external API types that are shared with the frontend so any type mismatch throughout the system can be caught and fixed by an agent.&lt;/p&gt;
&lt;p&gt;We don’t do “normal” human PR reviews since they’d slow both of us down too much but instead just do self &amp;#x26; AI reviews.  We trust each other to commit good code and own the consequences of it. I still review every line, but with varying degrees of scrutiny.  If you’re building an app where you feel comfortable YOLO’ing it, feel free to ignore the rest of this.  I’m currently primarily using Opus 4.8 since it’s been out inside of Cursor and occasionally switching to ChatGPT 5.5 (codex) and Composer 2.5 for quicker straightforward tasks.&lt;/p&gt;
&lt;p&gt;&lt;img alt=&quot;My agents&quot; loading=&quot;lazy&quot; decoding=&quot;async&quot; fetchpriority=&quot;auto&quot; width=&quot;1000&quot; height=&quot;417&quot; src=&quot;/_astro/agent.DMjTx8Dn_Z2dmnjF.webp&quot; &gt;&lt;/p&gt;
&lt;h2 id=&quot;what-ive-tried&quot;&gt;What I’ve Tried&lt;a class=&quot;anchor&quot; href=&quot;#what-ive-tried&quot;&gt;&lt;span class=&quot;anchor-icon&quot; data-pagefind-ignore=&quot;&quot;&gt;#&lt;/span&gt;&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;Instead of giving a whole diatribe of every possible thing I’ve tried, I’ll focus on the popular ones that I’ve seen/heard coworkers and friends use that didn’t work for me.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Using agents to write a giant very detailed multi-step plan all up front, getting specialized agents to review and modify the plan in a loop, then having them go build it all in one go.  I’ve found this approach is too prone to going off the rails for me in a couple of ways.  First, it’s very tedious to review giant plan documents, not miss anything, and make sure they’re staying true to your intent as they’re being rewritten all the time so I fall into the trap of skimming over them and just assuming the agent will know what it’s doing.  Then when it comes to implementation there are inevitably a number of assumptions the agents make that I missed or didn’t think about in the plan that need to be unwound which of course takes time and tokens proportional to how much code is built on top.  Lastly, I like feeling out the problem space and making big decisions during the process of implementation and testing.  Some of my best ideas come from using the feature in app and projecting out the problems.  I find it very difficult to think of all of these up front in the planning process.  Besides, isn’t this approach just waterfall anyways?  I could see this approach working well if you have a very well defined problem to solve and can verify implementation easily (i.e. have lots of tests).&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;There’s another workflow where you generate code through whatever means and then put up a PR before looking at any of the code.  You then treat the PR as if another teammate wrote it and use GitHub to review the PR by leaving comments. After your review you then use a skill hooked up to the GitHub CLI that pulls all your comments and either fixes them or answers your questions.  I don’t think there’s anything wrong with this approach but for me it felt too cumbersome using the github UI (both web and VS Code GitHub PR extension) to manage the review and the sea of back and forth conversation threads. I prefer to review the code in Cursor after it’s been generated but before it’s committed so I can make light touch ups if needed and know everything checked in has been reviewed.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Lastly, I haven’t been able to effectively manage multiple medium to large tasks in parallel for any real length of time. By the time I get a couple prompted and going the first has finished and needs review, which takes enough time that the other workstreams complete.  It’s too much context switching on top of all the other distractions (slack/support requests/meetings) that I end up missing things I should catch in reviews. The models are fast enough now that you can use the bits of generation time to think about the next step in the process or think about what you’re looking for in the code you’re about to review.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;what-works-for-me&quot;&gt;What Works For Me&lt;a class=&quot;anchor&quot; href=&quot;#what-works-for-me&quot;&gt;&lt;span class=&quot;anchor-icon&quot; data-pagefind-ignore=&quot;&quot;&gt;#&lt;/span&gt;&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Small tasks&lt;/strong&gt; —&gt; For anything that’s a simple bug fix or feature where I know exactly what the change looks like I’ll write a detailed description in the Jira ticket and then I’ll have a custom skill I made automate all the rest of the work.  In a nutshell, the skill creates a worktree with the ticket number, fetches the title and description from the Jira ticket, implements the change, open a PR using the GitHub CLI, waits for the automatic AI review comments and test results, then does one iteration of addressing the comments and fixing any tests.  Since I only use this on simple task I don’t want the agent spinning its wheels and going off on tangents so just one round of feedback is ideal.  With this workflow I can parallelize a bunch of tickets  and then just review the PRs when they’re done.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Medium tasks&lt;/strong&gt; —&gt; For anything that is a little more involved or ambiguous I’ll use the built in plan mode with the agent to some research and ideating on the change to make sure it’ll go in the right direction when I let it loose.  I’ll usually use a faster model for the implementation since the plan can keep them on track well and then I’ll do my review/testing/touch-up/reprompting loop.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Large tasks&lt;/strong&gt; —&gt; Anything that’s a multi-day effort requires a bit different tactics.  I’ll start by brain dumping everything I can think of into a planning doc organized by the phases it should be implemented. In each phase I’ll list any and all that apply and I want to enforce: requirements, business logic, API contracts, data models, performance characteristics.  By the nature of learning more as you go, there will be more details in the earlier phases and the later phases will mostly be just user requirements and goals.  Then with an agent I’ll give it the whole doc for context but tell it to create a new section for implementation plan (so it doesn’t overwrite your section) being clear to just focus on the first phase. I ask it to do any research needed to resolve ambiguities or come up with alternative approaches to weigh and then architect how the phase will be built.  After I loop enough times refining this first phase plan and I’m satisfied with it I’ll hand it over to an agent to build just the first phase.&lt;/p&gt;
&lt;p&gt;From there on out I’ll focus on reviewing, steering, testing, and deploying the first phase which inevitably will refine my thinking about how the later phases should go as well as features that might be needed that I couldn’t think of up front.  Going through the phases systematically actually &lt;em&gt;using&lt;/em&gt; the software and imagining how your users will use the software is so much better than just aiming it in a direction and coming back much later to find it thinks it done but actually ended up in a very different place than you intended.&lt;/p&gt;
&lt;h2 id=&quot;a-couple-closing-thoughts&quot;&gt;A Couple Closing Thoughts&lt;a class=&quot;anchor&quot; href=&quot;#a-couple-closing-thoughts&quot;&gt;&lt;span class=&quot;anchor-icon&quot; data-pagefind-ignore=&quot;&quot;&gt;#&lt;/span&gt;&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;It’s an absolutely wild time for the industry right now. We’ve always had to keep up with the technology treadmill but it’s going faster than ever and only speeding up.  Remember that the point isn’t to create as much software as possible, the point is to create as much &lt;strong&gt;good&lt;/strong&gt; software as possible.  And as insanely powerful as the tools have become, I still think creating good software will require an experienced human at the helm for the forseeable future.&lt;/p&gt;
&lt;p&gt;Here’s a bit of further reading on the subject that I connected with:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://www.caimito.net/en/blog/2025/12/07/the-recurring-dream-of-replacing-developers.html?ref=dillonshook.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;https://www.caimito.net/en/blog/2025/12/07/the-recurring-dream-of-replacing-developers.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://newsletter.pragmaticengineer.com/p/ai-impact-on-software-engineers-part-2?ref=dillonshook.com&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;https://newsletter.pragmaticengineer.com/p/ai-impact-on-software-engineers-part-2&lt;/a&gt;&lt;/p&gt;</content:encoded></item><item><title>Sioux Falls to Missoula</title><link>https://dillonshook.com/photos/sioux-falls-missoula/</link><guid isPermaLink="true">https://dillonshook.com/photos/sioux-falls-missoula/</guid><pubDate>Fri, 07 Aug 2026 00:21:40 GMT</pubDate><content:encoded>&lt;p&gt;This was a trip to see family we hadn’t seen in awhile and meet a new baby niece.  I didn’t get too many non-family photos in South Dakota but we did go to an indoor butterfly hatchery and habitat that was a hit with our toddler who got them to land on her finger.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1786061981/sioux-falls-missoula/DSC04709.jpg&quot; alt=&quot;Monarch?&quot; title=&quot;Monarch?&quot; srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786061981/sioux-falls-missoula/DSC04709.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786061981/sioux-falls-missoula/DSC04709.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786061981/sioux-falls-missoula/DSC04709.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786061981/sioux-falls-missoula/DSC04709.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786061981/sioux-falls-missoula/DSC04709.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786061981/sioux-falls-missoula/DSC04709.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1786061981/sioux-falls-missoula/DSC04701.jpg&quot; alt=&quot;Butterfly closeup&quot; title=&quot;Butterfly closeup&quot; srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786061981/sioux-falls-missoula/DSC04701.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786061981/sioux-falls-missoula/DSC04701.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786061981/sioux-falls-missoula/DSC04701.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786061981/sioux-falls-missoula/DSC04701.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786061981/sioux-falls-missoula/DSC04701.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786061981/sioux-falls-missoula/DSC04701.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1786061981/sioux-falls-missoula/DSC04712.jpg&quot; alt=&quot;Butterfly with transparent wings&quot; title=&quot;Butterfly with transparent wings&quot; srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786061981/sioux-falls-missoula/DSC04712.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786061981/sioux-falls-missoula/DSC04712.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786061981/sioux-falls-missoula/DSC04712.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786061981/sioux-falls-missoula/DSC04712.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786061981/sioux-falls-missoula/DSC04712.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786061981/sioux-falls-missoula/DSC04712.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Then we stopped by to see &lt;em&gt;the&lt;/em&gt; Sioux Falls downtown and checked out a nearby fair.&lt;/p&gt;
&lt;div&gt;&lt;ol class=&quot;photo-row&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1786061985/sioux-falls-missoula/DSC04741.jpg&quot; alt=&quot;Upper falls&quot; title=&quot;Upper falls&quot; srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786061985/sioux-falls-missoula/DSC04741.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786061985/sioux-falls-missoula/DSC04741.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786061985/sioux-falls-missoula/DSC04741.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786061985/sioux-falls-missoula/DSC04741.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786061985/sioux-falls-missoula/DSC04741.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786061985/sioux-falls-missoula/DSC04741.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ol class=&quot;photo-row&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1786061982/sioux-falls-missoula/DSC04748.jpg&quot; alt=&quot;Anyone want to kayak it?&quot; title=&quot;Anyone want to kayak it?&quot; srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786061982/sioux-falls-missoula/DSC04748.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786061982/sioux-falls-missoula/DSC04748.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786061982/sioux-falls-missoula/DSC04748.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786061982/sioux-falls-missoula/DSC04748.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786061982/sioux-falls-missoula/DSC04748.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786061982/sioux-falls-missoula/DSC04748.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/div&gt;
&lt;h1 id=&quot;-missoula-mt&quot;&gt;&lt;svg width=&quot;0.75em&quot; height=&quot;1em&quot; class=&quot;inline&quot; data-icon=&quot;fa6-solid:location-dot&quot;&gt;   &lt;symbol id=&quot;ai:fa6-solid:location-dot&quot; viewBox=&quot;0 0 384 512&quot;&gt;&lt;path fill=&quot;currentColor&quot; d=&quot;M215.7 499.2C267 435 384 279.4 384 192C384 86 298 0 192 0S0 86 0 192c0 87.4 117 243 168.3 307.2c12.3 15.3 35.1 15.3 47.4 0M192 128a64 64 0 1 1 0 128a64 64 0 1 1 0-128&quot;/&gt;&lt;/symbol&gt;&lt;use href=&quot;#ai:fa6-solid:location-dot&quot;&gt;&lt;/use&gt;  &lt;/svg&gt; Missoula, MT&lt;a class=&quot;anchor&quot; href=&quot;#-missoula-mt&quot;&gt;&lt;span class=&quot;anchor-icon&quot; data-pagefind-ignore=&quot;true&quot;&gt;#&lt;/span&gt;&lt;/a&gt;&lt;/h1&gt;
&lt;p&gt;Missoula was fairly smoky when we were there due to nearby wildfires. The night we got there we checked out another fair and watched a dirt bike race.&lt;/p&gt;
&lt;div&gt;&lt;ol class=&quot;photo-row&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1786062016/sioux-falls-missoula/DSC04778.jpg&quot; alt=&quot;Smoky sunset&quot; title=&quot;Smoky sunset&quot; srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062016/sioux-falls-missoula/DSC04778.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062016/sioux-falls-missoula/DSC04778.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062016/sioux-falls-missoula/DSC04778.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062016/sioux-falls-missoula/DSC04778.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062016/sioux-falls-missoula/DSC04778.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062016/sioux-falls-missoula/DSC04778.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ol class=&quot;photo-row&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1786062015/sioux-falls-missoula/DSC04783.jpg&quot; alt=&quot;Dirt bike race start&quot; title=&quot;Dirt bike race start&quot; srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062015/sioux-falls-missoula/DSC04783.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062015/sioux-falls-missoula/DSC04783.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062015/sioux-falls-missoula/DSC04783.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062015/sioux-falls-missoula/DSC04783.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062015/sioux-falls-missoula/DSC04783.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062015/sioux-falls-missoula/DSC04783.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ol class=&quot;photo-row&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1786062015/sioux-falls-missoula/DSC04790.jpg&quot; alt=&quot;Lords of Dirt race&quot; title=&quot;Lords of Dirt race&quot; srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062015/sioux-falls-missoula/DSC04790.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062015/sioux-falls-missoula/DSC04790.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062015/sioux-falls-missoula/DSC04790.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062015/sioux-falls-missoula/DSC04790.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062015/sioux-falls-missoula/DSC04790.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062015/sioux-falls-missoula/DSC04790.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ol class=&quot;photo-row&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1786062016/sioux-falls-missoula/DSC04814.jpg&quot; alt=&quot;Pan shot 1&quot; title=&quot;Pan shot 1&quot; srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062016/sioux-falls-missoula/DSC04814.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062016/sioux-falls-missoula/DSC04814.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062016/sioux-falls-missoula/DSC04814.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062016/sioux-falls-missoula/DSC04814.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062016/sioux-falls-missoula/DSC04814.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062016/sioux-falls-missoula/DSC04814.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 50vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1786062022/sioux-falls-missoula/DSC04817.jpg&quot; alt=&quot;Speeeed&quot; title=&quot;Speeeed&quot; srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062022/sioux-falls-missoula/DSC04817.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062022/sioux-falls-missoula/DSC04817.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062022/sioux-falls-missoula/DSC04817.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062022/sioux-falls-missoula/DSC04817.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062022/sioux-falls-missoula/DSC04817.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062022/sioux-falls-missoula/DSC04817.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 50vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ol class=&quot;photo-row&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1786062016/sioux-falls-missoula/DSC04819.jpg&quot; alt=&quot;Drifting and sliding&quot; title=&quot;Drifting and sliding&quot; srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062016/sioux-falls-missoula/DSC04819.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062016/sioux-falls-missoula/DSC04819.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062016/sioux-falls-missoula/DSC04819.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062016/sioux-falls-missoula/DSC04819.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062016/sioux-falls-missoula/DSC04819.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062016/sioux-falls-missoula/DSC04819.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ol class=&quot;photo-row&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1786062016/sioux-falls-missoula/DSC04849.jpg&quot; alt title srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062016/sioux-falls-missoula/DSC04849.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062016/sioux-falls-missoula/DSC04849.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062016/sioux-falls-missoula/DSC04849.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062016/sioux-falls-missoula/DSC04849.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062016/sioux-falls-missoula/DSC04849.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062016/sioux-falls-missoula/DSC04849.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/div&gt;
&lt;p&gt;There was tons of wildlife just hanging around town. We probably saw 40 deer during a 20 minute walk each way and then the next morning we saw this little guy across a driveway which is apparently called a rock chuck.&lt;/p&gt;
&lt;div&gt;&lt;ol class=&quot;photo-row&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1786062022/sioux-falls-missoula/DSC04862.jpg&quot; alt=&quot;Rock Chuck&quot; title=&quot;Rock Chuck&quot; srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062022/sioux-falls-missoula/DSC04862.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062022/sioux-falls-missoula/DSC04862.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062022/sioux-falls-missoula/DSC04862.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062022/sioux-falls-missoula/DSC04862.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062022/sioux-falls-missoula/DSC04862.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062022/sioux-falls-missoula/DSC04862.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ol class=&quot;photo-row&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1786062017/sioux-falls-missoula/DSC04885.jpg&quot; alt=&quot;Racoon getting breakfast&quot; title=&quot;Racoon getting breakfast&quot; srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062017/sioux-falls-missoula/DSC04885.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062017/sioux-falls-missoula/DSC04885.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062017/sioux-falls-missoula/DSC04885.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062017/sioux-falls-missoula/DSC04885.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062017/sioux-falls-missoula/DSC04885.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062017/sioux-falls-missoula/DSC04885.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/div&gt;
&lt;p&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1786062017/sioux-falls-missoula/DSC04888.jpg&quot; alt=&quot;Wanna fight?&quot; title=&quot;Wanna fight?&quot; srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062017/sioux-falls-missoula/DSC04888.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062017/sioux-falls-missoula/DSC04888.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062017/sioux-falls-missoula/DSC04888.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062017/sioux-falls-missoula/DSC04888.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062017/sioux-falls-missoula/DSC04888.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062017/sioux-falls-missoula/DSC04888.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/p&gt;
&lt;div&gt;&lt;ol class=&quot;photo-row&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1786062018/sioux-falls-missoula/DSC04889.jpg&quot; alt=&quot;Rockin Rudys Record store and more&quot; title=&quot;Rockin Rudys Record store and more&quot; srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062018/sioux-falls-missoula/DSC04889.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062018/sioux-falls-missoula/DSC04889.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062018/sioux-falls-missoula/DSC04889.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062018/sioux-falls-missoula/DSC04889.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062018/sioux-falls-missoula/DSC04889.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062018/sioux-falls-missoula/DSC04889.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 33vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1786062018/sioux-falls-missoula/DSC04890.jpg&quot; alt title srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062018/sioux-falls-missoula/DSC04890.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062018/sioux-falls-missoula/DSC04890.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062018/sioux-falls-missoula/DSC04890.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062018/sioux-falls-missoula/DSC04890.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062018/sioux-falls-missoula/DSC04890.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062018/sioux-falls-missoula/DSC04890.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 33vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1786062018/sioux-falls-missoula/DSC04892.jpg&quot; alt title srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062018/sioux-falls-missoula/DSC04892.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062018/sioux-falls-missoula/DSC04892.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062018/sioux-falls-missoula/DSC04892.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062018/sioux-falls-missoula/DSC04892.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062018/sioux-falls-missoula/DSC04892.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062018/sioux-falls-missoula/DSC04892.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 33vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ol class=&quot;photo-row&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1786062019/sioux-falls-missoula/DSC04891.jpg&quot; alt title srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062019/sioux-falls-missoula/DSC04891.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062019/sioux-falls-missoula/DSC04891.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062019/sioux-falls-missoula/DSC04891.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062019/sioux-falls-missoula/DSC04891.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062019/sioux-falls-missoula/DSC04891.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062019/sioux-falls-missoula/DSC04891.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/div&gt;
&lt;p&gt;We then checked out “the only verified Lewis &amp;amp; Clark camp” called Travelers Rest a little south of town. The barn must have come much later hah.&lt;/p&gt;
&lt;div&gt;&lt;ol class=&quot;photo-row&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1786062019/sioux-falls-missoula/DSC04895.jpg&quot; alt title srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062019/sioux-falls-missoula/DSC04895.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062019/sioux-falls-missoula/DSC04895.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062019/sioux-falls-missoula/DSC04895.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062019/sioux-falls-missoula/DSC04895.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062019/sioux-falls-missoula/DSC04895.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062019/sioux-falls-missoula/DSC04895.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ol class=&quot;photo-row&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1786062021/sioux-falls-missoula/DSC04899.jpg&quot; alt title srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062021/sioux-falls-missoula/DSC04899.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062021/sioux-falls-missoula/DSC04899.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062021/sioux-falls-missoula/DSC04899.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062021/sioux-falls-missoula/DSC04899.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062021/sioux-falls-missoula/DSC04899.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062021/sioux-falls-missoula/DSC04899.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/div&gt;
&lt;p&gt;I then went for a solo hike on a trail called “Bear Creek” that thankfully did not live up to its name, but made up for that with the sights.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1786062021/sioux-falls-missoula/DSC04902.jpg&quot; alt=&quot;Bear Creek hike&quot; title=&quot;Bear Creek hike&quot; srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062021/sioux-falls-missoula/DSC04902.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062021/sioux-falls-missoula/DSC04902.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062021/sioux-falls-missoula/DSC04902.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062021/sioux-falls-missoula/DSC04902.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062021/sioux-falls-missoula/DSC04902.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062021/sioux-falls-missoula/DSC04902.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1786062021/sioux-falls-missoula/DSC04905.jpg&quot; alt=&quot;Rocky Crags&quot; title=&quot;Rocky Crags&quot; srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062021/sioux-falls-missoula/DSC04905.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062021/sioux-falls-missoula/DSC04905.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062021/sioux-falls-missoula/DSC04905.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062021/sioux-falls-missoula/DSC04905.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062021/sioux-falls-missoula/DSC04905.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062021/sioux-falls-missoula/DSC04905.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1786062022/sioux-falls-missoula/DSC04922.jpg&quot; alt=&quot;Nestled Waterfalls&quot; title=&quot;Nestled Waterfalls&quot; srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062022/sioux-falls-missoula/DSC04922.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062022/sioux-falls-missoula/DSC04922.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062022/sioux-falls-missoula/DSC04922.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062022/sioux-falls-missoula/DSC04922.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062022/sioux-falls-missoula/DSC04922.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062022/sioux-falls-missoula/DSC04922.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1786062022/sioux-falls-missoula/DSC04926.jpg&quot; alt=&quot;Impressive Cliffs&quot; title=&quot;Impressive Cliffs&quot; srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062022/sioux-falls-missoula/DSC04926.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062022/sioux-falls-missoula/DSC04926.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062022/sioux-falls-missoula/DSC04926.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062022/sioux-falls-missoula/DSC04926.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062022/sioux-falls-missoula/DSC04926.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062022/sioux-falls-missoula/DSC04926.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/p&gt;
&lt;div&gt;&lt;ol class=&quot;photo-row&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1786062023/sioux-falls-missoula/DSC04929.jpg&quot; alt=&quot;Tiny Snakes&quot; title=&quot;Tiny Snakes&quot; srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062023/sioux-falls-missoula/DSC04929.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062023/sioux-falls-missoula/DSC04929.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062023/sioux-falls-missoula/DSC04929.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062023/sioux-falls-missoula/DSC04929.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062023/sioux-falls-missoula/DSC04929.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062023/sioux-falls-missoula/DSC04929.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ol class=&quot;photo-row&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1786062024/sioux-falls-missoula/DSC04931.jpg&quot; alt=&quot;Grand Vistas&quot; title=&quot;Grand Vistas&quot; srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062024/sioux-falls-missoula/DSC04931.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062024/sioux-falls-missoula/DSC04931.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062024/sioux-falls-missoula/DSC04931.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062024/sioux-falls-missoula/DSC04931.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062024/sioux-falls-missoula/DSC04931.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062024/sioux-falls-missoula/DSC04931.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/div&gt;
&lt;ul class=&quot;photo-row-flex&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1786062025/sioux-falls-missoula/DSC04932.jpg&quot; alt title srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062025/sioux-falls-missoula/DSC04932.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062025/sioux-falls-missoula/DSC04932.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062025/sioux-falls-missoula/DSC04932.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062025/sioux-falls-missoula/DSC04932.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062025/sioux-falls-missoula/DSC04932.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062025/sioux-falls-missoula/DSC04932.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1786062025/sioux-falls-missoula/DSC04935.jpg&quot; alt title srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062025/sioux-falls-missoula/DSC04935.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062025/sioux-falls-missoula/DSC04935.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062025/sioux-falls-missoula/DSC04935.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062025/sioux-falls-missoula/DSC04935.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062025/sioux-falls-missoula/DSC04935.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062025/sioux-falls-missoula/DSC04935.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;ol&gt;
&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1786062024/sioux-falls-missoula/DSC04937.jpg&quot; alt title srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062024/sioux-falls-missoula/DSC04937.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062024/sioux-falls-missoula/DSC04937.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062024/sioux-falls-missoula/DSC04937.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062024/sioux-falls-missoula/DSC04937.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062024/sioux-falls-missoula/DSC04937.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062024/sioux-falls-missoula/DSC04937.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Gotta get back home though…&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1786062024/sioux-falls-missoula/DSC04941.jpg&quot; alt title srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062024/sioux-falls-missoula/DSC04941.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062024/sioux-falls-missoula/DSC04941.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062024/sioux-falls-missoula/DSC04941.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1786062024/sioux-falls-missoula/DSC04941.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1786062024/sioux-falls-missoula/DSC04941.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1786062024/sioux-falls-missoula/DSC04941.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;
&lt;/ol&gt;</content:encoded></item><item><title>Baltimore to D.C.</title><link>https://dillonshook.com/photos/bwi-dc-spring/</link><guid isPermaLink="true">https://dillonshook.com/photos/bwi-dc-spring/</guid><description>A Parents Escape</description><pubDate>Sat, 18 Apr 2026 00:45:01 GMT</pubDate><content:encoded>&lt;p&gt;Taking trips and photos has definitely been on the back burner since my daughter was born, so getting the chance to drop her off at the grandparents house and getting a couple days to ourselves was a nice break and chance to pull out the camera again.&lt;/p&gt;
&lt;h1 id=&quot;-national-aquarium&quot;&gt;&lt;svg width=&quot;0.75em&quot; height=&quot;1em&quot; class=&quot;inline&quot; data-icon=&quot;fa6-solid:location-dot&quot;&gt;   &lt;symbol id=&quot;ai:fa6-solid:location-dot&quot; viewBox=&quot;0 0 384 512&quot;&gt;&lt;path fill=&quot;currentColor&quot; d=&quot;M215.7 499.2C267 435 384 279.4 384 192C384 86 298 0 192 0S0 86 0 192c0 87.4 117 243 168.3 307.2c12.3 15.3 35.1 15.3 47.4 0M192 128a64 64 0 1 1 0 128a64 64 0 1 1 0-128&quot;/&gt;&lt;/symbol&gt;&lt;use href=&quot;#ai:fa6-solid:location-dot&quot;&gt;&lt;/use&gt;  &lt;/svg&gt; National Aquarium&lt;a class=&quot;anchor&quot; href=&quot;#-national-aquarium&quot;&gt;&lt;span class=&quot;anchor-icon&quot; data-pagefind-ignore=&quot;true&quot;&gt;#&lt;/span&gt;&lt;/a&gt;&lt;/h1&gt;
&lt;div&gt;&lt;ol class=&quot;photo-row&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1776472718/bwi-dc-spring/DSC04484.jpg&quot; alt title srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472718/bwi-dc-spring/DSC04484.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472718/bwi-dc-spring/DSC04484.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472718/bwi-dc-spring/DSC04484.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472718/bwi-dc-spring/DSC04484.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472718/bwi-dc-spring/DSC04484.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472718/bwi-dc-spring/DSC04484.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ol class=&quot;photo-row&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1776472718/bwi-dc-spring/DSC04490.jpg&quot; alt title srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472718/bwi-dc-spring/DSC04490.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472718/bwi-dc-spring/DSC04490.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472718/bwi-dc-spring/DSC04490.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472718/bwi-dc-spring/DSC04490.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472718/bwi-dc-spring/DSC04490.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472718/bwi-dc-spring/DSC04490.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 50vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1776472721/bwi-dc-spring/DSC04500.jpg&quot; alt title srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472721/bwi-dc-spring/DSC04500.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472721/bwi-dc-spring/DSC04500.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472721/bwi-dc-spring/DSC04500.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472721/bwi-dc-spring/DSC04500.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472721/bwi-dc-spring/DSC04500.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472721/bwi-dc-spring/DSC04500.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 50vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/div&gt;
&lt;p&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1776472718/bwi-dc-spring/DSC04514.jpg&quot; alt title srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472718/bwi-dc-spring/DSC04514.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472718/bwi-dc-spring/DSC04514.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472718/bwi-dc-spring/DSC04514.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472718/bwi-dc-spring/DSC04514.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472718/bwi-dc-spring/DSC04514.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472718/bwi-dc-spring/DSC04514.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/p&gt;
&lt;h1 id=&quot;-union-station-washington-dc&quot;&gt;&lt;svg width=&quot;0.75em&quot; height=&quot;1em&quot; viewBox=&quot;0 0 384 512&quot; class=&quot;inline&quot; data-icon=&quot;fa6-solid:location-dot&quot;&gt;   &lt;use href=&quot;#ai:fa6-solid:location-dot&quot;&gt;&lt;/use&gt;  &lt;/svg&gt; Union Station, Washington D.C.&lt;a class=&quot;anchor&quot; href=&quot;#-union-station-washington-dc&quot;&gt;&lt;span class=&quot;anchor-icon&quot; data-pagefind-ignore=&quot;true&quot;&gt;#&lt;/span&gt;&lt;/a&gt;&lt;/h1&gt;
&lt;p&gt;Coming back into Union Station was a throwback to seeing the &lt;a href=&quot;/photos/cherry-blossoms&quot;&gt;Cherry Blossoms&lt;/a&gt; way back in 2018.&lt;/p&gt;
&lt;div&gt;&lt;ol class=&quot;photo-row&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1776472720/bwi-dc-spring/DSC04521.jpg&quot; alt=&quot;Union Station&quot; title=&quot;Union Station&quot; srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472720/bwi-dc-spring/DSC04521.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472720/bwi-dc-spring/DSC04521.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472720/bwi-dc-spring/DSC04521.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472720/bwi-dc-spring/DSC04521.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472720/bwi-dc-spring/DSC04521.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472720/bwi-dc-spring/DSC04521.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ol class=&quot;photo-row&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1776472720/bwi-dc-spring/DSC04525.jpg&quot; alt title srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472720/bwi-dc-spring/DSC04525.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472720/bwi-dc-spring/DSC04525.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472720/bwi-dc-spring/DSC04525.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472720/bwi-dc-spring/DSC04525.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472720/bwi-dc-spring/DSC04525.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472720/bwi-dc-spring/DSC04525.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ol class=&quot;photo-row&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1776472721/bwi-dc-spring/DSC04529.jpg&quot; alt title srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472721/bwi-dc-spring/DSC04529.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472721/bwi-dc-spring/DSC04529.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472721/bwi-dc-spring/DSC04529.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472721/bwi-dc-spring/DSC04529.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472721/bwi-dc-spring/DSC04529.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472721/bwi-dc-spring/DSC04529.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/div&gt;
&lt;h1 id=&quot;-arlington-national-cemetary&quot;&gt;&lt;svg width=&quot;0.75em&quot; height=&quot;1em&quot; viewBox=&quot;0 0 384 512&quot; class=&quot;inline&quot; data-icon=&quot;fa6-solid:location-dot&quot;&gt;   &lt;use href=&quot;#ai:fa6-solid:location-dot&quot;&gt;&lt;/use&gt;  &lt;/svg&gt; Arlington National Cemetary&lt;a class=&quot;anchor&quot; href=&quot;#-arlington-national-cemetary&quot;&gt;&lt;span class=&quot;anchor-icon&quot; data-pagefind-ignore=&quot;true&quot;&gt;#&lt;/span&gt;&lt;/a&gt;&lt;/h1&gt;
&lt;p&gt;Since I had been around the National Mall a few times before I decided to instead go to Arlington National Cemetary which I’d never been to before.  The sheer scale of it is hard to comprehend, even when only seeing a fraction of it.  Makes you think about how many more service members are buried elsewhere and the insanity of war.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1776472720/bwi-dc-spring/DSC04531.jpg&quot; alt title srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472720/bwi-dc-spring/DSC04531.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472720/bwi-dc-spring/DSC04531.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472720/bwi-dc-spring/DSC04531.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472720/bwi-dc-spring/DSC04531.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472720/bwi-dc-spring/DSC04531.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472720/bwi-dc-spring/DSC04531.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1776472722/bwi-dc-spring/DSC04532.jpg&quot; alt title srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472722/bwi-dc-spring/DSC04532.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472722/bwi-dc-spring/DSC04532.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472722/bwi-dc-spring/DSC04532.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472722/bwi-dc-spring/DSC04532.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472722/bwi-dc-spring/DSC04532.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472722/bwi-dc-spring/DSC04532.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/p&gt;
&lt;ul class=&quot;photo-row-flex&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1776472721/bwi-dc-spring/DSC04537.jpg&quot; alt title srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472721/bwi-dc-spring/DSC04537.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472721/bwi-dc-spring/DSC04537.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472721/bwi-dc-spring/DSC04537.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472721/bwi-dc-spring/DSC04537.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472721/bwi-dc-spring/DSC04537.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472721/bwi-dc-spring/DSC04537.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1776472722/bwi-dc-spring/DSC04540.jpg&quot; alt title srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472722/bwi-dc-spring/DSC04540.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472722/bwi-dc-spring/DSC04540.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472722/bwi-dc-spring/DSC04540.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472722/bwi-dc-spring/DSC04540.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472722/bwi-dc-spring/DSC04540.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472722/bwi-dc-spring/DSC04540.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;div&gt;&lt;ol class=&quot;photo-row&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1776472722/bwi-dc-spring/DSC04542.jpg&quot; alt title srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472722/bwi-dc-spring/DSC04542.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472722/bwi-dc-spring/DSC04542.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472722/bwi-dc-spring/DSC04542.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472722/bwi-dc-spring/DSC04542.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472722/bwi-dc-spring/DSC04542.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472722/bwi-dc-spring/DSC04542.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ol class=&quot;photo-row&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1776472724/bwi-dc-spring/DSC04552.jpg&quot; alt title srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472724/bwi-dc-spring/DSC04552.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472724/bwi-dc-spring/DSC04552.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472724/bwi-dc-spring/DSC04552.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472724/bwi-dc-spring/DSC04552.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472724/bwi-dc-spring/DSC04552.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472724/bwi-dc-spring/DSC04552.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ol class=&quot;photo-row&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1776472724/bwi-dc-spring/DSC04556.jpg&quot; alt title srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472724/bwi-dc-spring/DSC04556.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472724/bwi-dc-spring/DSC04556.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472724/bwi-dc-spring/DSC04556.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472724/bwi-dc-spring/DSC04556.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472724/bwi-dc-spring/DSC04556.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472724/bwi-dc-spring/DSC04556.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ol class=&quot;photo-row&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1776472725/bwi-dc-spring/DSC04557.jpg&quot; alt title srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472725/bwi-dc-spring/DSC04557.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472725/bwi-dc-spring/DSC04557.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472725/bwi-dc-spring/DSC04557.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472725/bwi-dc-spring/DSC04557.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472725/bwi-dc-spring/DSC04557.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472725/bwi-dc-spring/DSC04557.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 50vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1776472724/bwi-dc-spring/DSC04563.jpg&quot; alt title srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472724/bwi-dc-spring/DSC04563.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472724/bwi-dc-spring/DSC04563.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472724/bwi-dc-spring/DSC04563.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472724/bwi-dc-spring/DSC04563.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472724/bwi-dc-spring/DSC04563.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472724/bwi-dc-spring/DSC04563.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 50vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ol class=&quot;photo-row&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1776472725/bwi-dc-spring/DSC04574.jpg&quot; alt title srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472725/bwi-dc-spring/DSC04574.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472725/bwi-dc-spring/DSC04574.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472725/bwi-dc-spring/DSC04574.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472725/bwi-dc-spring/DSC04574.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472725/bwi-dc-spring/DSC04574.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472725/bwi-dc-spring/DSC04574.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ol class=&quot;photo-row&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1776472726/bwi-dc-spring/DSC04576.jpg&quot; alt title srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472726/bwi-dc-spring/DSC04576.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472726/bwi-dc-spring/DSC04576.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472726/bwi-dc-spring/DSC04576.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472726/bwi-dc-spring/DSC04576.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472726/bwi-dc-spring/DSC04576.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472726/bwi-dc-spring/DSC04576.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ol class=&quot;photo-row&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1776472726/bwi-dc-spring/DSC04581.jpg&quot; alt title srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472726/bwi-dc-spring/DSC04581.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472726/bwi-dc-spring/DSC04581.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472726/bwi-dc-spring/DSC04581.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472726/bwi-dc-spring/DSC04581.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472726/bwi-dc-spring/DSC04581.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472726/bwi-dc-spring/DSC04581.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ol class=&quot;photo-row&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1776472728/bwi-dc-spring/DSC04582.jpg&quot; alt title srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472728/bwi-dc-spring/DSC04582.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472728/bwi-dc-spring/DSC04582.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472728/bwi-dc-spring/DSC04582.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472728/bwi-dc-spring/DSC04582.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472728/bwi-dc-spring/DSC04582.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472728/bwi-dc-spring/DSC04582.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ol class=&quot;photo-row&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1776472727/bwi-dc-spring/DSC04584.jpg&quot; alt title srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472727/bwi-dc-spring/DSC04584.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472727/bwi-dc-spring/DSC04584.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472727/bwi-dc-spring/DSC04584.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472727/bwi-dc-spring/DSC04584.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472727/bwi-dc-spring/DSC04584.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472727/bwi-dc-spring/DSC04584.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/div&gt;
&lt;h1 id=&quot;-around-dc&quot;&gt;&lt;svg width=&quot;0.75em&quot; height=&quot;1em&quot; viewBox=&quot;0 0 384 512&quot; class=&quot;inline&quot; data-icon=&quot;fa6-solid:location-dot&quot;&gt;   &lt;use href=&quot;#ai:fa6-solid:location-dot&quot;&gt;&lt;/use&gt;  &lt;/svg&gt; Around DC&lt;a class=&quot;anchor&quot; href=&quot;#-around-dc&quot;&gt;&lt;span class=&quot;anchor-icon&quot; data-pagefind-ignore=&quot;true&quot;&gt;#&lt;/span&gt;&lt;/a&gt;&lt;/h1&gt;
&lt;p&gt;Back in the city after a short pit stop at the hotel I wandered over to the Smithsonian Natural History Museum and caught the beginning of some parade and then headed up to Union Market for lunch.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1776472728/bwi-dc-spring/DSC04587.jpg&quot; alt title srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472728/bwi-dc-spring/DSC04587.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472728/bwi-dc-spring/DSC04587.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472728/bwi-dc-spring/DSC04587.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472728/bwi-dc-spring/DSC04587.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472728/bwi-dc-spring/DSC04587.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472728/bwi-dc-spring/DSC04587.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/p&gt;
&lt;div&gt;&lt;ol class=&quot;photo-row&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1776472728/bwi-dc-spring/DSC04595.jpg&quot; alt title srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472728/bwi-dc-spring/DSC04595.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472728/bwi-dc-spring/DSC04595.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472728/bwi-dc-spring/DSC04595.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472728/bwi-dc-spring/DSC04595.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472728/bwi-dc-spring/DSC04595.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472728/bwi-dc-spring/DSC04595.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ol class=&quot;photo-row&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1776472729/bwi-dc-spring/DSC04600.jpg&quot; alt title srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472729/bwi-dc-spring/DSC04600.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472729/bwi-dc-spring/DSC04600.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472729/bwi-dc-spring/DSC04600.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472729/bwi-dc-spring/DSC04600.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472729/bwi-dc-spring/DSC04600.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472729/bwi-dc-spring/DSC04600.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ol class=&quot;photo-row&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1776472728/bwi-dc-spring/DSC04603.jpg&quot; alt title srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472728/bwi-dc-spring/DSC04603.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472728/bwi-dc-spring/DSC04603.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472728/bwi-dc-spring/DSC04603.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472728/bwi-dc-spring/DSC04603.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472728/bwi-dc-spring/DSC04603.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472728/bwi-dc-spring/DSC04603.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ol class=&quot;photo-row&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1776472728/bwi-dc-spring/DSC04604-Pano.jpg&quot; alt title srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472728/bwi-dc-spring/DSC04604-Pano.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472728/bwi-dc-spring/DSC04604-Pano.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472728/bwi-dc-spring/DSC04604-Pano.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472728/bwi-dc-spring/DSC04604-Pano.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472728/bwi-dc-spring/DSC04604-Pano.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472728/bwi-dc-spring/DSC04604-Pano.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ol class=&quot;photo-row&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1776472730/bwi-dc-spring/DSC04607.jpg&quot; alt title srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472730/bwi-dc-spring/DSC04607.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472730/bwi-dc-spring/DSC04607.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472730/bwi-dc-spring/DSC04607.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472730/bwi-dc-spring/DSC04607.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472730/bwi-dc-spring/DSC04607.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472730/bwi-dc-spring/DSC04607.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/div&gt;
&lt;h1 id=&quot;-renwick-gallery&quot;&gt;&lt;svg width=&quot;0.75em&quot; height=&quot;1em&quot; viewBox=&quot;0 0 384 512&quot; class=&quot;inline&quot; data-icon=&quot;fa6-solid:location-dot&quot;&gt;   &lt;use href=&quot;#ai:fa6-solid:location-dot&quot;&gt;&lt;/use&gt;  &lt;/svg&gt; Renwick Gallery&lt;a class=&quot;anchor&quot; href=&quot;#-renwick-gallery&quot;&gt;&lt;span class=&quot;anchor-icon&quot; data-pagefind-ignore=&quot;true&quot;&gt;#&lt;/span&gt;&lt;/a&gt;&lt;/h1&gt;
&lt;p&gt;I was recommended to go check out the Renwick Gallery by a co-worker which turned out to be a great off the beaten path rec, even though it’s not far from the White House. The museum is focused on craft and decorative art with the current exhibition celebrating county fairs from around the country.&lt;/p&gt;
&lt;ul class=&quot;photo-row-flex&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1776472729/bwi-dc-spring/DSC04608.jpg&quot; alt=&quot;Butter package dress&quot; title=&quot;Butter package dress&quot; srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472729/bwi-dc-spring/DSC04608.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472729/bwi-dc-spring/DSC04608.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472729/bwi-dc-spring/DSC04608.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472729/bwi-dc-spring/DSC04608.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472729/bwi-dc-spring/DSC04608.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472729/bwi-dc-spring/DSC04608.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1776472731/bwi-dc-spring/DSC04610.jpg&quot; alt=&quot;Prize Ribbon Quilt&quot; title=&quot;Prize Ribbon Quilt&quot; srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472731/bwi-dc-spring/DSC04610.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472731/bwi-dc-spring/DSC04610.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472731/bwi-dc-spring/DSC04610.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472731/bwi-dc-spring/DSC04610.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472731/bwi-dc-spring/DSC04610.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472731/bwi-dc-spring/DSC04610.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;They had over a dozen portraits entirely made out of seeds&lt;/p&gt;
&lt;div&gt;&lt;ol class=&quot;photo-row&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1776472732/bwi-dc-spring/DSC04613.jpg&quot; alt=&quot;Betty White&quot; title=&quot;Betty White&quot; srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472732/bwi-dc-spring/DSC04613.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472732/bwi-dc-spring/DSC04613.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472732/bwi-dc-spring/DSC04613.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472732/bwi-dc-spring/DSC04613.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472732/bwi-dc-spring/DSC04613.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472732/bwi-dc-spring/DSC04613.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 33vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1776472733/bwi-dc-spring/DSC04614.jpg&quot; alt=&quot;Lucille Ball&quot; title=&quot;Lucille Ball&quot; srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472733/bwi-dc-spring/DSC04614.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472733/bwi-dc-spring/DSC04614.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472733/bwi-dc-spring/DSC04614.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472733/bwi-dc-spring/DSC04614.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472733/bwi-dc-spring/DSC04614.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472733/bwi-dc-spring/DSC04614.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 33vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1776472734/bwi-dc-spring/DSC04615.jpg&quot; alt=&quot;Elvis in seed&quot; title=&quot;Elvis in seed&quot; srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472734/bwi-dc-spring/DSC04615.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472734/bwi-dc-spring/DSC04615.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472734/bwi-dc-spring/DSC04615.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472734/bwi-dc-spring/DSC04615.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472734/bwi-dc-spring/DSC04615.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472734/bwi-dc-spring/DSC04615.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 33vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ol class=&quot;photo-row&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1776472731/bwi-dc-spring/DSC04619.jpg&quot; alt=&quot;Butter Cow&quot; title=&quot;Butter Cow&quot; srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472731/bwi-dc-spring/DSC04619.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472731/bwi-dc-spring/DSC04619.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472731/bwi-dc-spring/DSC04619.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472731/bwi-dc-spring/DSC04619.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472731/bwi-dc-spring/DSC04619.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472731/bwi-dc-spring/DSC04619.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ol class=&quot;photo-row&quot;&gt;&lt;li&gt;&lt;img src=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_800,dpr_auto/v1776472733/bwi-dc-spring/DSC04622.jpg&quot; alt=&quot;Pickle Pyramid&quot; title=&quot;Pickle Pyramid&quot; srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472733/bwi-dc-spring/DSC04622.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472733/bwi-dc-spring/DSC04622.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472733/bwi-dc-spring/DSC04622.jpg 1200w&quot; data-pswp-srcset=&quot;https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_600,dpr_auto/v1776472733/bwi-dc-spring/DSC04622.jpg 600w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1000,dpr_auto/v1776472733/bwi-dc-spring/DSC04622.jpg 1000w,
          https://res.cloudinary.com/dillonshook/image/upload/f_auto,q_95,c_scale,w_1800,dpr_auto/v1776472733/bwi-dc-spring/DSC04622.jpg 1200w&quot; data-pswp-width=&quot;1800&quot; data-pswp-height=&quot;1800&quot; sizes=&quot;(max-width: 720px) 100vw, 100vw&quot; loading=&quot;lazy&quot; class=&quot;post-image&quot;/&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/div&gt;</content:encoded></item></channel></rss>