diff options
author | gennyble <gen@nyble.dev> | 2024-05-03 07:23:23 -0500 |
---|---|---|
committer | gennyble <gen@nyble.dev> | 2024-05-03 07:23:23 -0500 |
commit | 0c2b97a2b88e88f719d2bfb664a61857a331e452 (patch) | |
tree | 4cf7f74962f952390782124cb7ee264ddc6a6d88 /served | |
parent | 8db63d68b0f52bb8b9380bf1423bf6889786ef8a (diff) | |
download | ∞-0c2b97a2b88e88f719d2bfb664a61857a331e452.tar.gz ∞-0c2b97a2b88e88f719d2bfb664a61857a331e452.zip |
weeknote opengraph tags
Diffstat (limited to 'served')
-rw-r--r-- | served/minecraft/diary/leaving-for-somewhere-new.html | 129 | ||||
-rw-r--r-- | served/minecraft/minecraft.css | 30 | ||||
-rw-r--r-- | served/minecraft/minecraft.html | 27 | ||||
-rw-r--r-- | served/words/weeknotes/weeknotes-14.html | 2 | ||||
-rw-r--r-- | served/words/weeknotes/weeknotes-15.html | 2 | ||||
-rw-r--r-- | served/words/weeknotes/weeknotes-18.html | 14 | ||||
-rw-r--r-- | served/words/words.css | 4 | ||||
-rw-r--r-- | served/words/words.html | 3 |
8 files changed, 211 insertions, 0 deletions
diff --git a/served/minecraft/diary/leaving-for-somewhere-new.html b/served/minecraft/diary/leaving-for-somewhere-new.html new file mode 100644 index 0000000..ced9b7c --- /dev/null +++ b/served/minecraft/diary/leaving-for-somewhere-new.html @@ -0,0 +1,129 @@ +--- +template=post +title=Leaving For Somewhere New +style=/styles/post.css +style=writing.css +style=../minecraft.css +--- + +<!-- left day 20757 --> +<!-- arrived day 20766 --> + +<img src="media/leaving-for-somewhere-new/somewhere-new-squash.gif" + alt="a large grassy hill with a river around it. we're standing on a tree across from it." /> + +I've come back to this world after a long inactivity and you know what that +means! Well, no, probably not, but I'm leaving my home of -10,000 / 1800 for the +new lands of -20,000 / 0. + +I took with me my best pickaxe: "everything". It's imbued with the magic of +Unbreaking III, Efficiency V, Fortune III, and Mending. + +Apart from the fortune god-pick was this small list of supplies: + +<ul> + <li>128 blocks of iron</li> + <li>128 cooked potato</li> + <li>1 bed</li> + <li>3 book and quill</li> +</ul> + +as well as a seed for every crop I had: + +<ul> + <li>melon & pumpkin</li> + <li>beetroot</li> + <li>potato</li> + <li>wheat seeds</li> + <li>oak, spruce, birch saplings</li> + <li>bamboo & sugar cane</li> +</ul> + +The picture above if taken from the target coordinates, -20K / 0, where I placed +one of my iron blocks in the ground. I built a small shelter, pictured below, +upon the mountain-hill. + +<img src="media/leaving-for-somewhere-new/shelter-shack-squash.gif" /> + +I'd quite like to build a long, grand bridge connecting Mountain Hill to the +other side. I think that's a far-future project + +update: +a little while after I got to Mountain Hill, I started to think and I determined +that I should've left the iron behind. So I took the 126 blocks that remained +and went and buried it in a barrel somewhere. I put a Polished Diorite X atop +the barrel to indicate treasure. I will make another iron farm. + +<hr /> + +i found an cave seemingly cut in half by the surface and i decided to start +my mine there. i diverted a waterfall and built the entrance under it 'cause +it seemed like the most natural looking area to start digging. + +My mine is a 3x4 staircase going down to diamond level. I'm used to mining at +Y=11 but that's no longer the best level. Looking at the ore distribution graph, +found on the <a href="https://minecraft.wiki/w/Ore">minecraft.wiki ore page</a>, +i can see that mining significantly below that is worth the effort. + +The increase from Y=0 to Y=-59 is substantial. It appears to be a nearly 600% +uptick which makes mining the harder deepslate well worth it in my opinion. + +<img src="media/leaving-for-somewhere-new/OreDistribution_1-18-2-squash.gif" /> + +I didn't go all the way down to -59. I don't want to mine directly against the +bedrock, so I moved up three blocks to -56. + +first mining session: + +Shaft -95 +Direction east +Start -20303 +End -20000 +Mined + Gold 1 block, 3 + Redstone 20 block, 4 + Lapis 8 block, 3 + Diamond 3 + Iron 1 block, 4 +Notes There's a deep_dark at the end of this shaft and it has a skulk sensor + +Shaft -95 +Direction west +Start -20307 +End -20600 +Mined + Gold 1 block, 3 + Redstone 3 block, 8 + Lapis 7 block, 2 + Diamond 1 block, 5 + Iron 2 + +Shaft -99 +Direction east +Start -20303 +End -19800 +Mined + Redstone 19 block, 6 + Iron 10 +Notes I didn't know mining for 500 linear blocks could result in so little. + +Shaft -99 +Direction west +Start -20307 +End -20800 +Mined + Redstone 35 block, 5 + Lapis 32 block, 5 + Diamond 8 + +Shaft -20311 +Direction north +Start -24 +End -500 +Mined + Redstone 5 block, 4 + Gold 6 blocks, 7 + Lapis 33 blocks, 2 + Iron 15 block, 2 + Copper 120 block, 6 + Coal 4 block, 3 diff --git a/served/minecraft/minecraft.css b/served/minecraft/minecraft.css new file mode 100644 index 0000000..9a7f5f4 --- /dev/null +++ b/served/minecraft/minecraft.css @@ -0,0 +1,30 @@ +h2 { + margin-bottom: 4px; +} + +div { + display: grid; + grid-template-columns: max-content 1fr; + column-gap: 1rem; +} + +time { + display: inline-block; + text-align: right; + color: var(--text-dim); +} + +a { + color: var(--text); + text-decoration: underline dashed var(--color-a); +} + +img { + width: 100%; +} + +ul { + list-style-type: square; + list-style-position: inside; + padding-left: 0; +} \ No newline at end of file diff --git a/served/minecraft/minecraft.html b/served/minecraft/minecraft.html new file mode 100644 index 0000000..b63b4c8 --- /dev/null +++ b/served/minecraft/minecraft.html @@ -0,0 +1,27 @@ +--- +template=post +title=Minecraft +style=/styles/post.css +style=minecraft.css +--- + +Playing on a Minecraft world and posting about it here for some reason. I'm not +quite sure why, I just think it'll be kind of fun. Some written in a sort of +character and some written as not-that. + +The world I play on has been around since 2019 which isn't <i>so</i> long, but +it's a significant time still. It started with one friend and then moved through +two different groups. Between those groups, and now, I'm the only one active. + +The server is on Minecraft 1.19.4 running the Spigot server software. + +<!-- + images should be downscaled using nearest neighboor by 25% and have their + color quantized to 64. stored as gif with a `-squash` appended to their + file stem. +--> + +<h2>Play Diary</h2> +<div> + <time>march 15th, 2024</time><a href="diary/leaving-for-somewhere-new.html">leaving for somewhere new</a> +</div> \ No newline at end of file diff --git a/served/words/weeknotes/weeknotes-14.html b/served/words/weeknotes/weeknotes-14.html index 8011cee..83af706 100644 --- a/served/words/weeknotes/weeknotes-14.html +++ b/served/words/weeknotes/weeknotes-14.html @@ -8,6 +8,8 @@ path-offset=1 weeknote=14 published=2024-04-13 03:30 updated=2024-04-13 11:38 + +description=Weeknotes! A beginning --- weeknotes? weeknotes! they're like little status updates. slices of life? a diff --git a/served/words/weeknotes/weeknotes-15.html b/served/words/weeknotes/weeknotes-15.html index 2f5b7d3..cb2a726 100644 --- a/served/words/weeknotes/weeknotes-15.html +++ b/served/words/weeknotes/weeknotes-15.html @@ -7,6 +7,8 @@ path-offset=1 weeknote=15 published=2024-04-18 03:18 + +description=Mainly website workings. --- My birthday was this week! I advance slowly through time :) diff --git a/served/words/weeknotes/weeknotes-18.html b/served/words/weeknotes/weeknotes-18.html new file mode 100644 index 0000000..fc5c30a --- /dev/null +++ b/served/words/weeknotes/weeknotes-18.html @@ -0,0 +1,14 @@ +--- +template=post +title=Weeknotes 18 +style=/styles/post.css +style=../writing.css +path-offset=1 + +weeknote=18 +#published=2024-05-02 03:30 + +#description=In-which not-much happened. +--- + +opengraph stuff in awake \ No newline at end of file diff --git a/served/words/words.css b/served/words/words.css index a49477d..94b4206 100644 --- a/served/words/words.css +++ b/served/words/words.css @@ -30,6 +30,10 @@ h2 { margin: 0; } +.miss { + color: var(--text-dim); +} + @media (max-width: 30rem) { div { display: flex; diff --git a/served/words/words.html b/served/words/words.html index 614fe34..fc606fa 100644 --- a/served/words/words.html +++ b/served/words/words.html @@ -16,6 +16,9 @@ The writing is part of the website <a href="/atom.xml">Atom Feed</a>. <section id="weeknotes-section"> <h2 id="weeknotes">weeknotes</h2> <ul id="weeknotes-list"> + <li>may</li> + <li><a href="weeknotes/weeknotes-17.html">17</a></li> + <li class="miss">16</li> <li><a href="weeknotes/weeknotes-15.html">15</a></li> <li><a href="weeknotes/weeknotes-14.html">14</a></li> <li>apr</li> |