<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="/atom.xsl" type="text/xsl"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <title>Posts tagged: minecraft</title>
  <id>https://waylonwalker.com/tags/minecraft/atom.xml</id>
  <updated>2025-12-10T08:46:36Z</updated>
  <subtitle>All posts with the tag &#34;minecraft&#34;</subtitle>
  <link href="https://waylonwalker.com/tags/minecraft/" rel="alternate" type="text/html"></link>
  <link href="https://waylonwalker.com/tags/minecraft/atom.xml" rel="self" type="application/atom+xml"></link>
  <author>
    <name>Waylon Walker</name>
  </author>
  <generator uri="https://github.com/WaylonWalker/markata-go">markata-go</generator>
  <entry>
    <title>minecraft server memory</title>
    <id>https://waylonwalker.com/minecraft-server-memory/</id>
    <updated>2025-12-10T08:46:36Z</updated>
    <published>2025-12-10T08:46:36Z</published>
    <link href="https://waylonwalker.com/minecraft-server-memory/" rel="alternate" type="text/html"></link>
    <summary type="text">I learned to today that setting on your minecraft server causes the JVM to egregiously allocate all of that memory. Not setting it causes slow downs and...</summary>
    <content type="html">&lt;p&gt;I learned to today that setting &lt;code&gt;MEMORY&lt;/code&gt; on your minecraft server causes the&#xA;JVM to egregiously allocate all of that memory.  Not setting it causes slow&#xA;downs and potential crashes, but setting &lt;code&gt;INIT_MEMORY&lt;/code&gt; and &lt;code&gt;MAX_MEMORY&lt;/code&gt; gives&#xA;us the best of both worlds.  It is allowed to use more, but does not gobble it&#xA;all up on startup.&lt;/p&gt;&#xA;&lt;p&gt;In this economy we need to save all the memory we can!&lt;/p&gt;&#xA;&lt;p&gt;Here is a non-working snippet for a minecraft server deployment in kubernetes.&lt;/p&gt;&#xA;&lt;pre class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;      &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;containers&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;        &lt;/span&gt;- &lt;span class=&#34;nt&#34;&gt;name&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;l&#34;&gt;dungeon&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;          &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;image&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;l&#34;&gt;itzg/minecraft-server&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;          &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;env&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;            &lt;/span&gt;- &lt;span class=&#34;nt&#34;&gt;name&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;l&#34;&gt;EULA&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;              &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;value&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;s2&#34;&gt;&amp;#34;true&amp;#34;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;            &lt;/span&gt;- &lt;span class=&#34;nt&#34;&gt;name&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;l&#34;&gt;INIT_MEMORY&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;              &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;value&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;s2&#34;&gt;&amp;#34;512M&amp;#34;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;            &lt;/span&gt;- &lt;span class=&#34;nt&#34;&gt;name&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;l&#34;&gt;MAX_MEMORY&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;              &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;value&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;s2&#34;&gt;&amp;#34;3G&amp;#34;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;and in docker compose&lt;/p&gt;&#xA;&lt;pre class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;  &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;dungeon&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;image&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;l&#34;&gt;itzg/minecraft-server&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;environment&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;      &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;EULA&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;s2&#34;&gt;&amp;#34;true&amp;#34;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;      &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;INIT_MEMORY&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;s2&#34;&gt;&amp;#34;512M&amp;#34;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;      &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;MAX_MEMORY&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;s2&#34;&gt;&amp;#34;3G&amp;#34;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>💭 I refuse to change the way I play… 😂🔥 #comedy #videogames #min...</title>
    <id>https://waylonwalker.com/thought-865/</id>
    <updated>2025-11-02T16:12:02Z</updated>
    <published>2025-11-02T16:12:02Z</published>
    <link href="https://waylonwalker.com/thought-865/" rel="alternate" type="text/html"></link>
    <summary type="text">!https://www.youtube.com/watch?v=2TUER4JftGA</summary>
    <content type="html">&lt;div class=&#34;embed-card embed-card-external embed-card-provider-youtube&#34;&gt;&#xA;  &lt;div class=&#34;embed-card-rich&#34;&gt;&#xA;&lt;lite-youtube videoid=&#34;2TUER4JftGA&#34; title=&#34;I refuse to change the way I play… 😂🔥 #comedy #videogames &amp;lt;a href=&#34; tags=&#34;&#34; minecraft=&#34;&#34; &#34;=&#34;&#34; class=&#34;hashtag-tag&#34; data-tag=&#34;minecraft&#34; data-count=&#34;28&#34; data-reading-time=&#34;32&#34; data-reading-time-text=&#34;32 minutes&#34;&gt;#minecraft&amp;#34; playlabel=&amp;#34;Play: I refuse to change the way I play… 😂🔥 #comedy #videogames &lt;a href=&#34;/tags/minecraft/&#34; class=&#34;hashtag-tag&#34; data-tag=&#34;minecraft&#34; data-count=&#34;28&#34; data-reading-time=&#34;32&#34; data-reading-time-text=&#34;32 minutes&#34;&gt;#minecraft&lt;/a&gt;&amp;#34;&amp;gt;&lt;/lite-youtube&gt;&#xA;  &lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&lt;p&gt;Microsoft has been addding features to Minecraft for over 10 years now.  Idk if there was momentum from the mojang theme, but we’ve barely paid attention to any updates in the last five years.  The ocean update was huge, caves and cliffs were huge then it trailed off to we play each release on release day, use commands to try out new features, then never touch them again either to play minecraft as we always have or to play a modded pack with crazy new features that really make an impact on gameplay.&lt;/p&gt;&#xA;&lt;div class=&#34;admonition note&#34;&gt;&#xA;&lt;p class=&#34;admonition-title&#34;&gt;Note&lt;/p&gt;&#xA;&lt;p&gt;This post is a &lt;a href=&#34;/thoughts/&#34; class=&#34;wikilink&#34; data-title=&#34;Thoughts&#34; data-description=&#34;These are generally my thoughts on a web page or some sort of url, except a rare few don&amp;#39;t have a link. These are dual published off of my...&#34; data-date=&#34;2024-04-01&#34; data-preview=&#34;These are generally my thoughts on a web page or some sort of url, except a rare few don&amp;#39;t have a link. These are dual published off of my...&#34;&gt;thought&lt;/a&gt;. It’s a short note that I make&#xA;about someone else’s content online &lt;a href=&#34;/tags/thoughts/&#34; class=&#34;hashtag-tag&#34; data-tag=&#34;thoughts&#34; data-count=&#34;2&#34; data-reading-time=&#34;3&#34; data-reading-time-text=&#34;3 minutes&#34;&gt;#thoughts&lt;/a&gt;&lt;/p&gt;&#xA;&lt;/div&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>Funk Track 1</title>
    <id>https://waylonwalker.com/shots/funk-track-1/</id>
    <updated>2025-09-21T15:52:07Z</updated>
    <published>2025-09-21T15:52:07Z</published>
    <link href="https://waylonwalker.com/shots/funk-track-1/" rel="alternate" type="text/html"></link>
    <summary type="text">Progress so far on the Funk server elytra track. It goes through two sea lanturn lit caves so far.</summary>
    <content type="html">&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/ab41d5f8-92a5-4fde-966b-f791ff84f776.mp4&#34; class=&#34;glightbox-link&#34;&gt;&lt;video autoplay loop muted playsinline controls preload=&#34;metadata&#34; class=&#34;md-video&#34; poster=&#34;https://dropper.waylonwalker.com/api/file/ab41d5f8-92a5-4fde-966b-f791ff84f776.webp?h=675&amp;w=1200&#34;&gt;&lt;source src=&#34;https://dropper.waylonwalker.com/api/file/ab41d5f8-92a5-4fde-966b-f791ff84f776.mp4&#34; type=&#34;video/mp4&#34;&gt;funk-track-1-1080p.mp4&lt;/video&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Progress so far on the Funk server elytra track.  It goes through two sea lanturn lit caves so far.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>💭 FROGS ep1 The home - YouTube</title>
    <id>https://waylonwalker.com/thought-702/</id>
    <updated>2025-06-17T13:08:54Z</updated>
    <published>2025-06-17T13:08:54Z</published>
    <link href="https://waylonwalker.com/thought-702/" rel="alternate" type="text/html"></link>
    <summary type="text">!https://www.youtube.com/watch?v=bPlPkDEcZBA&amp;list=TLPQMTcwNjIwMjVHHHsm3llljQ&amp;index=3</summary>
    <content type="html">&lt;div class=&#34;embed-card embed-card-external embed-card-provider-youtube&#34;&gt;&#xA;  &lt;div class=&#34;embed-card-rich&#34;&gt;&#xA;&lt;lite-youtube videoid=&#34;bPlPkDEcZBA&#34; title=&#34;FROGS ep1 The home&#34; playlabel=&#34;Play: FROGS ep1 The home&#34;&gt;&lt;/lite-youtube&gt;&#xA;  &lt;/div&gt;&#xA;&lt;/div&gt;&#xA;&lt;p&gt;Wyatt built out this full world to start making a film series about FROGS.  The entire set it built on a flat world, but yet feels so immersive.&lt;/p&gt;&#xA;&lt;div class=&#34;admonition note&#34;&gt;&#xA;&lt;p class=&#34;admonition-title&#34;&gt;Note&lt;/p&gt;&#xA;&lt;p&gt;This post is a &lt;a href=&#34;/thoughts/&#34; class=&#34;wikilink&#34; data-title=&#34;Thoughts&#34; data-description=&#34;These are generally my thoughts on a web page or some sort of url, except a rare few don&amp;#39;t have a link. These are dual published off of my...&#34; data-date=&#34;2024-04-01&#34; data-preview=&#34;These are generally my thoughts on a web page or some sort of url, except a rare few don&amp;#39;t have a link. These are dual published off of my...&#34;&gt;thought&lt;/a&gt;. It’s a short note that I make&#xA;about someone else’s content online &lt;a href=&#34;/tags/thoughts/&#34; class=&#34;hashtag-tag&#34; data-tag=&#34;thoughts&#34; data-count=&#34;2&#34; data-reading-time=&#34;3&#34; data-reading-time-text=&#34;3 minutes&#34;&gt;#thoughts&lt;/a&gt;&lt;/p&gt;&#xA;&lt;/div&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>wondercraft session one</title>
    <id>https://waylonwalker.com/wondercraft-session-one/</id>
    <updated>2025-01-13T15:06:46Z</updated>
    <published>2025-01-13T15:06:46Z</published>
    <link href="https://waylonwalker.com/wondercraft-session-one/" rel="alternate" type="text/html"></link>
    <summary type="text">My son and I are starting a new Minecraft server today called wondercraft.</summary>
    <content type="html">&lt;p&gt;My son and I are starting a new Minecraft server today called wondercraft.&lt;/p&gt;&#xA;&lt;h2 id=&#34;setup&#34;&gt;setup &lt;a href=&#34;#setup&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;We are running a few mods on this server notably FTB Ultimine for less grindy&#xA;resource gathering, Sodium for shaders, and Universal Shops.&lt;/p&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/730b4480-6356-4ad6-aecc-4b4661603ee6.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/730b4480-6356-4ad6-aecc-4b4661603ee6.webp&#34; alt=&#34;image&#34;/ data-glightbox=&#34;description: image&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;We are runninng on Minecraft 1.20.1, I &lt;em&gt;think&lt;/em&gt; this is because it was the&#xA;latest supported by Universal Shops, its at least one major release old at this&#xA;point.&lt;/p&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/66550abc-060c-47b2-830f-be7355ad7120.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/66550abc-060c-47b2-830f-be7355ad7120.webp&#34; alt=&#34;image&#34;/ data-glightbox=&#34;description: image&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;I grabbed a few shaders, the ones that you see in this post are rethinking&#xA;voxels.&lt;/p&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/3d6ab456-64dd-4760-a27e-02c2326ea36b.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/3d6ab456-64dd-4760-a27e-02c2326ea36b.webp&#34; alt=&#34;image&#34;/ data-glightbox=&#34;description: image&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;h2 id=&#34;spawn&#34;&gt;spawn &lt;a href=&#34;#spawn&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;We initially spawned in a plains biome near an acacia and forest biome.  We&#xA;ended up going straight for the forest, only coming back for some sheep and&#xA;wheat seeds.&lt;/p&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/2cb49488-0e5f-44f4-b89e-dc5eaa8bf077.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/2cb49488-0e5f-44f4-b89e-dc5eaa8bf077.webp&#34; alt=&#34;image&#34;/ data-glightbox=&#34;description: image&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;h2 id=&#34;night-one-zombie-fight&#34;&gt;Night one Zombie fight &lt;a href=&#34;#night-one-zombie-fight&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;On the first night we had the obligitory zombie fight before getting beds and bases set.&lt;/p&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/28b09b9c-6dd9-4437-9330-bf0e52401b6d.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/28b09b9c-6dd9-4437-9330-bf0e52401b6d.webp&#34; alt=&#34;image&#34;/ data-glightbox=&#34;description: image&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;h2 id=&#34;salmon-wrangler&#34;&gt;Salmon Wrangler &lt;a href=&#34;#salmon-wrangler&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;I was the designated food provider.  I setup a small wheat farm with about 64&#xA;seeds, then went out to hunt down some salmon for the immediate food need.  I&#xA;ended up with about a stack of salmon at the end of the session.&lt;/p&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/387ae50c-3048-4ee6-be93-beaf9369efaa.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/387ae50c-3048-4ee6-be93-beaf9369efaa.webp&#34; alt=&#34;387ae50c-3048-4ee6-be93-beaf9369efaa.webp&#34;/ data-glightbox=&#34;description: 387ae50c-3048-4ee6-be93-beaf9369efaa.webp&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;h2 id=&#34;setting-up-shop&#34;&gt;Setting up Shop &lt;a href=&#34;#setting-up-shop&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;So as mentioned above we are running a mod for shops called universal shops.&#xA;This mod is new to me and my son wanted to run it inspired by watching&#xA;hermitcraft.  We both decided that diamonds were the goal currency, but we&#xA;wanted to set up some shops early so we settled on Oak logs as the currency.&#xA;My job was to setup food based shops while he set up ore based shops.&lt;/p&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/7e585608-db41-436f-8daa-77399cb78e20.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/7e585608-db41-436f-8daa-77399cb78e20.webp&#34; alt=&#34;7e585608-db41-436f-8daa-77399cb78e20.webp&#34;/ data-glightbox=&#34;description: 7e585608-db41-436f-8daa-77399cb78e20.webp&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;My earnings after the first day.&lt;/p&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/3e930e2f-d2c5-4308-9c3c-5308e7ae6f54.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/3e930e2f-d2c5-4308-9c3c-5308e7ae6f54.webp&#34; alt=&#34;3e930e2f-d2c5-4308-9c3c-5308e7ae6f54.webp&#34;/ data-glightbox=&#34;description: 3e930e2f-d2c5-4308-9c3c-5308e7ae6f54.webp&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;h2 id=&#34;first-death&#34;&gt;First Death &lt;a href=&#34;#first-death&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;I forgot that I turned my sound off for a call, got lost on the chase of the&#xA;salmon and did not leave myself enough time to get to the top.&lt;/p&gt;&#xA;&lt;video autoplay=&#34;&#34; controls=&#34;&#34; loop=&#34;true&#34; muted=&#34;&#34; playsinline=&#34;&#34; width=&#34;100%&#34; class=&#34;rounded-xl border-pink-900 border-2&#34;&gt;&#xA;     &lt;source src=&#34;https://dropper.waylonwalker.com/api/file/f112d27a-3a77-4e8f-8bf7-8ff981b6355b.mp4&#34; type=&#34;video/mp4&#34;/&gt;&#xA;     Sorry, your browser doesn&amp;#39;t support embedded videos.&#xA;&lt;/video&gt;&#xA;&lt;h2 id=&#34;second-death&#34;&gt;Second Death &lt;a href=&#34;#second-death&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;Playing sloppy again I was walking around at night with only three hearts left.&#xA;My son wanted me to check out his shop that he just built out and I got hit by&#xA;a skelly on the way up, after the first hit I was sitting at 1 heart with no&#xA;where to go.&lt;/p&gt;&#xA;&lt;video autoplay=&#34;&#34; controls=&#34;&#34; loop=&#34;true&#34; muted=&#34;&#34; playsinline=&#34;&#34; width=&#34;100%&#34; class=&#34;rounded-xl border-pink-900 border-2&#34;&gt;&#xA;     &lt;source src=&#34;https://dropper.waylonwalker.com/api/file/ab088aa3-2661-4551-9040-1fad928ec450.mp4&#34; type=&#34;video/mp4&#34;/&gt;&#xA;     Sorry, your browser doesn&amp;#39;t support embedded videos.&#xA;&lt;/video&gt;&#xA;&lt;h2 id=&#34;third-death&#34;&gt;Third Death &lt;a href=&#34;#third-death&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;This one is just plain embarrasing, I was lost in the flow of hunting salmon&#xA;again, not paying any attention.  I came up for air, but didn’t even gie time&#xA;for more than a couple bubbles to come back before diving back in and died&#xA;almost instantly.&lt;/p&gt;&#xA;&lt;video autoplay=&#34;&#34; controls=&#34;&#34; loop=&#34;true&#34; muted=&#34;&#34; playsinline=&#34;&#34; width=&#34;100%&#34; class=&#34;rounded-xl border-pink-900 border-2&#34;&gt;&#xA;     &lt;source src=&#34;https://dropper.waylonwalker.com/api/file/f36b068d-0094-4d24-8b19-314ee23d71b1.mp4&#34; type=&#34;video/mp4&#34;/&gt;&#xA;     Sorry, your browser doesn&amp;#39;t support embedded videos.&#xA;&lt;/video&gt;&#xA;&lt;h2 id=&#34;note-to-self&#34;&gt;Note to self &lt;a href=&#34;#note-to-self&#34; class=&#34;heading-anchor&#34;&gt;#&lt;/a&gt;&lt;/h2&gt;&#xA;&lt;p&gt;Next time run Minecraft in full screen so you don’t dox your start menu.&lt;/p&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>💭 Teleport to coop partner | Hypixel Forums</title>
    <id>https://waylonwalker.com/thought-485/</id>
    <updated>2024-12-30T17:19:10Z</updated>
    <published>2024-12-30T17:19:10Z</published>
    <link href="https://waylonwalker.com/thought-485/" rel="alternate" type="text/html"></link>
    <summary type="text">!https://hypixel.net/threads/teleport-to-coop-partner.2250505/</summary>
    <content type="html">&lt;div class=&#34;embed-card embed-card-external&#34;&gt;&#xA;  &lt;a href=&#34;https://hypixel.net/threads/teleport-to-coop-partner.2250505/&#34; class=&#34;embed-card-link&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;&#xA;    &lt;div class=&#34;embed-card-image&#34;&gt;&#xA;      &lt;img class=&#34;glightbox&#34; src=&#34;https://hypixel.net/styles/hypixel-v2/images/hypixel-512px.png&#34; alt=&#34;Teleport to coop partner — Hello,&#xA;Is there a command where you can teleport to your coop partner? Or is it just this Follow button in chat?  :)&#34; loading=&#34;lazy&#34;/ data-glightbox=&#34;description: Teleport to coop partner — Hello,&#xA;Is there a command where you can teleport to your coop partner? Or is it just this Follow button in chat?  :)&#34;&gt;&#xA;    &lt;/div&gt;&#xA;    &lt;div class=&#34;embed-card-content&#34;&gt;&#xA;      &lt;div class=&#34;embed-card-title&#34;&gt;Teleport to coop partner&lt;/div&gt;&#xA;      &lt;div class=&#34;embed-card-description&#34;&gt;Hello,&#xA;Is there a command where you can teleport to your coop partner? Or is it just this Follow button in chat?  :)&lt;/div&gt;&#xA;      &lt;div class=&#34;embed-card-meta&#34;&gt;Hypixel Forums · hypixel.net&lt;/div&gt;&#xA;    &lt;/div&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/div&gt;&#xA;&lt;p&gt;/p warp will warp your party to your current server in hypixel skyblock&lt;/p&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.wayl.one/api/file/a4f5be07-5f79-450c-a40d-1f48ac086e05.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.wayl.one/api/file/a4f5be07-5f79-450c-a40d-1f48ac086e05.webp&#34; alt=&#34;image&#34;/ data-glightbox=&#34;description: image&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;div class=&#34;admonition note&#34;&gt;&#xA;&lt;p class=&#34;admonition-title&#34;&gt;Note&lt;/p&gt;&#xA;&lt;p&gt;This post is a &lt;a href=&#34;/thoughts/&#34; class=&#34;wikilink&#34; data-title=&#34;Thoughts&#34; data-description=&#34;These are generally my thoughts on a web page or some sort of url, except a rare few don&amp;#39;t have a link. These are dual published off of my...&#34; data-date=&#34;2024-04-01&#34; data-preview=&#34;These are generally my thoughts on a web page or some sort of url, except a rare few don&amp;#39;t have a link. These are dual published off of my...&#34;&gt;thought&lt;/a&gt;. It’s a short note that I make&#xA;about someone else’s content online &lt;a href=&#34;/tags/thoughts/&#34; class=&#34;hashtag-tag&#34; data-tag=&#34;thoughts&#34; data-count=&#34;2&#34; data-reading-time=&#34;3&#34; data-reading-time-text=&#34;3 minutes&#34;&gt;#thoughts&lt;/a&gt;&lt;/p&gt;&#xA;&lt;/div&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>💭 lonecraft</title>
    <id>https://waylonwalker.com/thought-210/</id>
    <updated>2024-03-07T14:20:48Z</updated>
    <published>2024-03-07T14:20:48Z</published>
    <link href="https://waylonwalker.com/thought-210/" rel="alternate" type="text/html"></link>
    <summary type="text">!https://screenshots.waylonwalker.com/lonecraft.png</summary>
    <content type="html">&lt;figure&gt;&#xA;&lt;a href=&#34;/static/https://screenshots.waylonwalker.com/lonecraft.png&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;/static/https://screenshots.waylonwalker.com/lonecraft.png&#34; alt=&#34;https://screenshots.waylonwalker.com/lonecraft.png&#34;/ data-glightbox=&#34;description: https://screenshots.waylonwalker.com/lonecraft.png&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;This is the best tree I have ever built in minecraft.  It took at least 4 stacks of logs and leaves despite what it looks like.&lt;/p&gt;&#xA;&lt;p&gt;It is placed where Welscraft’s island in the hermitcraft season 10 seed, but on our own server we call lonecraft.&lt;/p&gt;&#xA;&lt;p&gt;We started this server a few weeks after hermitcraft season 10 started, and play on it a few times per week.  It has a pretty successful day one iron farm that took us way more than one day to complete, and the farm behind this is our first ever villager driven farm.  Somehow potatoes got cross contaminated and now its pumping out potatoes and some bread, but no carrots or beat roots.&lt;/p&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;World Seed: 5103687417315433447&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;div class=&#34;admonition note&#34;&gt;&#xA;&lt;p class=&#34;admonition-title&#34;&gt;Note&lt;/p&gt;&#xA;&lt;p&gt;This post is a &lt;a href=&#34;/thoughts/&#34; class=&#34;wikilink&#34; data-title=&#34;Thoughts&#34; data-description=&#34;These are generally my thoughts on a web page or some sort of url, except a rare few don&amp;#39;t have a link. These are dual published off of my...&#34; data-date=&#34;2024-04-01&#34; data-preview=&#34;These are generally my thoughts on a web page or some sort of url, except a rare few don&amp;#39;t have a link. These are dual published off of my...&#34;&gt;thought&lt;/a&gt;. It’s a short note that I make&#xA;about someone else’s content online &lt;a href=&#34;/tags/thoughts/&#34; class=&#34;hashtag-tag&#34; data-tag=&#34;thoughts&#34; data-count=&#34;2&#34; data-reading-time=&#34;3&#34; data-reading-time-text=&#34;3 minutes&#34;&gt;#thoughts&lt;/a&gt;&lt;/p&gt;&#xA;&lt;/div&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>💭 Formatting codes – Minecraft Wiki</title>
    <id>https://waylonwalker.com/thought-209/</id>
    <updated>2024-03-07T14:16:23Z</updated>
    <published>2024-03-07T14:16:23Z</published>
    <link href="https://waylonwalker.com/thought-209/" rel="alternate" type="text/html"></link>
    <summary type="text">!https://minecraft.wiki/w/Formatting_codes</summary>
    <content type="html">&lt;div class=&#34;embed-card embed-card-external&#34;&gt;&#xA;  &lt;a href=&#34;https://minecraft.wiki/w/Formatting_codes&#34; class=&#34;embed-card-link&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34;&gt;&#xA;    &lt;div class=&#34;embed-card-image&#34;&gt;&#xA;      &lt;img class=&#34;glightbox&#34; src=&#34;https://minecraft.wiki/images/Minecraft_Formatting.gif?117f6&#34; alt=&#34;Formatting codes – Minecraft Wiki — Formatting codes (also known as color codes) add color and modifications to text in-game.&#34; loading=&#34;lazy&#34;/ data-glightbox=&#34;description: Formatting codes – Minecraft Wiki — Formatting codes (also known as color codes) add color and modifications to text in-game.&#34;&gt;&#xA;    &lt;/div&gt;&#xA;    &lt;div class=&#34;embed-card-content&#34;&gt;&#xA;      &lt;div class=&#34;embed-card-title&#34;&gt;Formatting codes – Minecraft Wiki&lt;/div&gt;&#xA;      &lt;div class=&#34;embed-card-description&#34;&gt;Formatting codes (also known as color codes) add color and modifications to text in-game.&lt;/div&gt;&#xA;      &lt;div class=&#34;embed-card-meta&#34;&gt;Minecraft Wiki · minecraft.wiki&lt;/div&gt;&#xA;    &lt;/div&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/div&gt;&#xA;&lt;p&gt;Minecraft MOTD and server names have formatting codes so that you can get colors, bold, underlined, italics, in your message of the day or server name.  See the article for all the cods.&lt;/p&gt;&#xA;&lt;div class=&#34;admonition note&#34;&gt;&#xA;&lt;p class=&#34;admonition-title&#34;&gt;Note&lt;/p&gt;&#xA;&lt;p&gt;This post is a &lt;a href=&#34;/thoughts/&#34; class=&#34;wikilink&#34; data-title=&#34;Thoughts&#34; data-description=&#34;These are generally my thoughts on a web page or some sort of url, except a rare few don&amp;#39;t have a link. These are dual published off of my...&#34; data-date=&#34;2024-04-01&#34; data-preview=&#34;These are generally my thoughts on a web page or some sort of url, except a rare few don&amp;#39;t have a link. These are dual published off of my...&#34;&gt;thought&lt;/a&gt;. It’s a short note that I make&#xA;about someone else’s content online &lt;a href=&#34;/tags/thoughts/&#34; class=&#34;hashtag-tag&#34; data-tag=&#34;thoughts&#34; data-count=&#34;2&#34; data-reading-time=&#34;3&#34; data-reading-time-text=&#34;3 minutes&#34;&gt;#thoughts&lt;/a&gt;&lt;/p&gt;&#xA;&lt;/div&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>💭 Minecraft Server on Docker (Java Edition)</title>
    <id>https://waylonwalker.com/thought-193/</id>
    <updated>2023-12-25T16:45:59Z</updated>
    <published>2023-12-25T16:45:59Z</published>
    <link href="https://waylonwalker.com/thought-193/" rel="alternate" type="text/html"></link>
    <summary type="text">!https://docker-minecraft-server.readthedocs.io/en/latest/</summary>
    <content type="html">&lt;div class=&#34;embed-card embed-card-external&#34;&gt;&#xA;  &lt;a href=&#34;https://docker-minecraft-server.readthedocs.io/en/latest/&#34; class=&#34;embed-card-link  has-avatar has-avatar-before&#34; target=&#34;_blank&#34; rel=&#34;noopener noreferrer&#34; style=&#34;--favicon-url: url(&amp;#39;/assets/markata/link-avatars/docker-minecraft-server.readthedocs.io.png&amp;#39;);&#34; data-favicon=&#34;/assets/markata/link-avatars/docker-minecraft-server.readthedocs.io.png&#34;&gt;&#xA;    &lt;div class=&#34;embed-card-content&#34;&gt;&#xA;      &lt;div class=&#34;embed-card-title&#34;&gt;Intro - Minecraft Server on Docker (Java Edition)&lt;/div&gt;&#xA;      &lt;div class=&#34;embed-card-description&#34;&gt;Documentation for Minecraft Server on Docker&lt;/div&gt;&#xA;      &lt;div class=&#34;embed-card-meta&#34;&gt;docker-minecraft-server.readthedocs.io&lt;/div&gt;&#xA;    &lt;/div&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/div&gt;&#xA;&lt;p&gt;I just learned that if you can exec into the container running minecraft with the itzg/minecraft container you can run &lt;code&gt;rcon-cli&lt;/code&gt; to get command access to the server.  You need to set the &lt;code&gt;RCON_PASSWORD&lt;/code&gt; if you want to access rcon remotely, but if you have not already done this and have access to the server you can just run &lt;code&gt;rcon-cli&lt;/code&gt; when you are in.&lt;/p&gt;&#xA;&lt;div class=&#34;admonition note&#34;&gt;&#xA;&lt;p class=&#34;admonition-title&#34;&gt;Note&lt;/p&gt;&#xA;&lt;p&gt;This post is a &lt;a href=&#34;/thoughts/&#34; class=&#34;wikilink&#34; data-title=&#34;Thoughts&#34; data-description=&#34;These are generally my thoughts on a web page or some sort of url, except a rare few don&amp;#39;t have a link. These are dual published off of my...&#34; data-date=&#34;2024-04-01&#34; data-preview=&#34;These are generally my thoughts on a web page or some sort of url, except a rare few don&amp;#39;t have a link. These are dual published off of my...&#34;&gt;thought&lt;/a&gt;. It’s a short note that I make&#xA;about someone else’s content online &lt;a href=&#34;/tags/thoughts/&#34; class=&#34;hashtag-tag&#34; data-tag=&#34;thoughts&#34; data-count=&#34;2&#34; data-reading-time=&#34;3&#34; data-reading-time-text=&#34;3 minutes&#34;&gt;#thoughts&lt;/a&gt;&lt;/p&gt;&#xA;&lt;/div&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>Underground Bases with Wyatt</title>
    <id>https://waylonwalker.com/underground-bases-with-wyatt/</id>
    <updated>2023-07-09T10:41:29Z</updated>
    <published>2023-07-09T10:41:29Z</published>
    <link href="https://waylonwalker.com/underground-bases-with-wyatt/" rel="alternate" type="text/html"></link>
    <summary type="text">Playing minecraft with Wyatt today he started a server all on his own and had me join. All vanilla, only one rule, underground bases.</summary>
    <content type="html">&lt;p&gt;Playing minecraft with Wyatt today he started a server all on his own and had&#xA;me join. All vanilla, only one rule, underground bases.&lt;/p&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/eb43e707-ae55-48f8-9916-86321b3b8754.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/eb43e707-ae55-48f8-9916-86321b3b8754.webp&#34; alt=&#34;underground-bases-1.webp&#34;/ data-glightbox=&#34;description: underground-bases-1.webp&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;I spawned into the server and it was already night time. I gathered up some&#xA;wood on my way down a tree, and was attacked by zombies before I could get any&#xA;tools, so I ran up another tree and crafted a crafting table.&lt;/p&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/25a3493a-f08b-4ea8-8535-b03cc7bcbf00.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/25a3493a-f08b-4ea8-8535-b03cc7bcbf00.webp&#34; alt=&#34;underground-bases-2.webp&#34;/ data-glightbox=&#34;description: underground-bases-2.webp&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;Now to follow the rules, it’s time to head underground to build my base.&lt;/p&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/74fc59aa-f0da-4643-a67a-36dc65480760.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/74fc59aa-f0da-4643-a67a-36dc65480760.webp&#34; alt=&#34;underground-bases-3.webp&#34;/ data-glightbox=&#34;description: underground-bases-3.webp&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;p&gt;I made a mistake and died, but look at this view from my respawn point.&lt;/p&gt;&#xA;&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/7e852358-a680-460b-88c0-ed31b2a18501.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/7e852358-a680-460b-88c0-ed31b2a18501.webp&#34; alt=&#34;underground-bases-4.webp&#34;/ data-glightbox=&#34;description: underground-bases-4.webp&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>Minecraft Doc Day 18</title>
    <id>https://waylonwalker.com/shots/mcdoc-day-18/</id>
    <updated>2022-12-22T13:38:54Z</updated>
    <published>2022-12-22T13:38:54Z</published>
    <link href="https://waylonwalker.com/shots/mcdoc-day-18/" rel="alternate" type="text/html"></link>
    <summary type="text">A crows nest added atop the storage silo offers a high lookout.</summary>
    <content type="html">&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/2435ba65-066b-468e-aaed-05a1bc3fbaf8.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/2435ba65-066b-468e-aaed-05a1bc3fbaf8.webp&#34; alt=&#34;Minecraft Doc Day 18&#34;/ data-glightbox=&#34;description: Minecraft Doc Day 18&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;A crows nest added atop the storage silo offers a high lookout.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>Minecraft Doc Day 17</title>
    <id>https://waylonwalker.com/shots/mcdoc-day-17/</id>
    <updated>2022-12-21T13:38:54Z</updated>
    <published>2022-12-21T13:38:54Z</published>
    <link href="https://waylonwalker.com/shots/mcdoc-day-17/" rel="alternate" type="text/html"></link>
    <summary type="text">Construction of a floating base begins on Day 16.</summary>
    <content type="html">&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/bb760cbf-dac4-43bd-a76a-e8043ee9808d.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/bb760cbf-dac4-43bd-a76a-e8043ee9808d.webp&#34; alt=&#34;Minecraft Doc Day 17&#34;/ data-glightbox=&#34;description: Minecraft Doc Day 17&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Construction of a floating base begins on Day 16.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>Minecraft Doc Day 12</title>
    <id>https://waylonwalker.com/shots/mcdoc-day-12b/</id>
    <updated>2022-12-20T13:38:54Z</updated>
    <published>2022-12-20T13:38:54Z</published>
    <link href="https://waylonwalker.com/shots/mcdoc-day-12b/" rel="alternate" type="text/html"></link>
    <summary type="text">Farm animals gathered and penned on Day 12.</summary>
    <content type="html">&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/418b606d-0062-469f-9382-ef301c3f3c38.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/418b606d-0062-469f-9382-ef301c3f3c38.webp&#34; alt=&#34;Minecraft Doc Day 12&#34;/ data-glightbox=&#34;description: Minecraft Doc Day 12&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Farm animals gathered and penned on Day 12.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>Minecraft Doc Day 12</title>
    <id>https://waylonwalker.com/shots/mcdoc-day-12/</id>
    <updated>2022-12-19T13:38:54Z</updated>
    <published>2022-12-19T13:38:54Z</published>
    <link href="https://waylonwalker.com/shots/mcdoc-day-12/" rel="alternate" type="text/html"></link>
    <summary type="text">Beet and pumpkin farm plots prepared near the main base.</summary>
    <content type="html">&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/e3bb0427-4665-4888-88d0-34e7953ec5c1.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/e3bb0427-4665-4888-88d0-34e7953ec5c1.webp&#34; alt=&#34;Minecraft Doc Day 12&#34;/ data-glightbox=&#34;description: Minecraft Doc Day 12&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Beet and pumpkin farm plots prepared near the main base.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>Minecraft Doc Day 11</title>
    <id>https://waylonwalker.com/shots/mcdoc-day-11b/</id>
    <updated>2022-12-18T13:38:54Z</updated>
    <published>2022-12-18T13:38:54Z</published>
    <link href="https://waylonwalker.com/shots/mcdoc-day-11b/" rel="alternate" type="text/html"></link>
    <summary type="text">Standing on Wyatt’s freshly built dock overlooking the water.</summary>
    <content type="html">&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/2f420e32-8951-4d52-a758-f7a7ed1d0d07.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/2f420e32-8951-4d52-a758-f7a7ed1d0d07.webp&#34; alt=&#34;Minecraft Doc Day 11&#34;/ data-glightbox=&#34;description: Minecraft Doc Day 11&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Standing on Wyatt’s freshly built dock overlooking the water.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>Minecraft Doc Day 11</title>
    <id>https://waylonwalker.com/shots/mcdoc-day-11/</id>
    <updated>2022-12-17T13:38:54Z</updated>
    <published>2022-12-17T13:38:54Z</published>
    <link href="https://waylonwalker.com/shots/mcdoc-day-11/" rel="alternate" type="text/html"></link>
    <summary type="text">Wyatt joins to conquer a zombie spawner and build a dock together.</summary>
    <content type="html">&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/f78cf44b-3446-40b0-9f4c-01cae8d6fb2d.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/f78cf44b-3446-40b0-9f4c-01cae8d6fb2d.webp&#34; alt=&#34;Minecraft Doc Day 11&#34;/ data-glightbox=&#34;description: Minecraft Doc Day 11&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Wyatt joins to conquer a zombie spawner and build a dock together.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>Minecraft Doc Day 10</title>
    <id>https://waylonwalker.com/shots/mcdoc-day-10/</id>
    <updated>2022-12-16T13:38:54Z</updated>
    <published>2022-12-16T13:38:54Z</published>
    <link href="https://waylonwalker.com/shots/mcdoc-day-10/" rel="alternate" type="text/html"></link>
    <summary type="text">Secret storage area built as part of a tiny base challenge on Day 9.</summary>
    <content type="html">&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/5fe458fa-1f6c-4445-95a0-a61e2302e2b8.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/5fe458fa-1f6c-4445-95a0-a61e2302e2b8.webp&#34; alt=&#34;Minecraft Doc Day 10&#34;/ data-glightbox=&#34;description: Minecraft Doc Day 10&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Secret storage area built as part of a tiny base challenge on Day 9.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>Minecraft Doc Day 9</title>
    <id>https://waylonwalker.com/shots/mcdoc-day-9/</id>
    <updated>2022-12-15T13:38:54Z</updated>
    <published>2022-12-15T13:38:54Z</published>
    <link href="https://waylonwalker.com/shots/mcdoc-day-9/" rel="alternate" type="text/html"></link>
    <summary type="text">Early storage silo construction begins with terraforming and chest placement.</summary>
    <content type="html">&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/869dfbcf-85e6-4e17-aa2c-f031af6cac55.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/869dfbcf-85e6-4e17-aa2c-f031af6cac55.webp&#34; alt=&#34;Minecraft Doc Day 9&#34;/ data-glightbox=&#34;description: Minecraft Doc Day 9&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Early storage silo construction begins with terraforming and chest placement.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>Minecraft Doc Day 8</title>
    <id>https://waylonwalker.com/shots/mcdoc-day-8/</id>
    <updated>2022-12-14T13:38:54Z</updated>
    <published>2022-12-14T13:38:54Z</published>
    <link href="https://waylonwalker.com/shots/mcdoc-day-8/" rel="alternate" type="text/html"></link>
    <summary type="text">After leaving the world paused, a surprise death screen leads to a survival reset.</summary>
    <content type="html">&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/51b9ef6c-f921-4b5d-984d-92f4ab7982d2.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/51b9ef6c-f921-4b5d-984d-92f4ab7982d2.webp&#34; alt=&#34;Minecraft Doc Day 8&#34;/ data-glightbox=&#34;description: Minecraft Doc Day 8&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;After leaving the world paused, a surprise death screen leads to a survival reset.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
  <entry>
    <title>Minecraft Doc Day 7</title>
    <id>https://waylonwalker.com/shots/mcdoc-day-7/</id>
    <updated>2022-12-13T13:38:54Z</updated>
    <published>2022-12-13T13:38:54Z</published>
    <link href="https://waylonwalker.com/shots/mcdoc-day-7/" rel="alternate" type="text/html"></link>
    <summary type="text">A newly constructed animal pen expands the farm.</summary>
    <content type="html">&lt;figure&gt;&#xA;&lt;a href=&#34;https://dropper.waylonwalker.com/api/file/0ca36932-2233-423c-8081-7abfa369f0ff.webp&#34; class=&#34;glightbox-link&#34;&gt;&lt;img class=&#34;glightbox&#34; src=&#34;https://dropper.waylonwalker.com/api/file/0ca36932-2233-423c-8081-7abfa369f0ff.webp&#34; alt=&#34;Minecraft Doc Day 7&#34;/ data-glightbox=&#34;description: Minecraft Doc Day 7&#34;&gt;&lt;/a&gt;&#xA;&lt;/figure&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;A newly constructed animal pen expands the farm.&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;</content>
    <author>
      <name>Waylon Walker</name>
      <email>hello@waylonwalker.com</email>
      <uri>https://waylonwalker.com</uri>
    </author>
  </entry>
</feed>