Game migration
@ -1,13 +0,0 @@
|
||||
---
|
||||
title: Minecraft World Maps
|
||||
---
|
||||
|
||||
I generally archive the maps of notable Minecraft servers I play on. The following are snapshots of various (usually private) Minecraft servers I've played on:
|
||||
|
||||
- Nerds With no Direction
|
||||
- <span class="gray">2024: Overworld 2 (not yet backed up)</span>
|
||||
- [2024: Overworld 1](@/games/minecraft/maps/nwnd-2024-world1.md) *(vanilla)*
|
||||
- Super Dimension Fortress
|
||||
- [Overworld](@/games/minecraft/maps/mc-sdf-org.md)
|
||||
- Rsninja MC
|
||||
- [Overworld](@/games/minecraft/maps/rsninja-2020.md) *(2020-2021)*
|
@ -1,8 +0,0 @@
|
||||
---
|
||||
title: "Minecraft Map Archive: mc.sdf.org"
|
||||
template: map.html
|
||||
extra:
|
||||
bg_color: black
|
||||
---
|
||||
|
||||
<script src="/map-data/minecraft/mc-sdf-org/map.js"></script>
|
@ -1,8 +0,0 @@
|
||||
---
|
||||
title: "Minecraft Map Archive: NWnD 2024 World 1"
|
||||
template: map.html
|
||||
extra:
|
||||
bg_color: black
|
||||
---
|
||||
|
||||
<script src="/map-data/minecraft/nwnd-2024-world1/map.js"></script>
|
@ -1,8 +0,0 @@
|
||||
---
|
||||
title: "Minecraft Map Archive: mc.rsninja.dev"
|
||||
template: map.html
|
||||
extra:
|
||||
bg_color: black
|
||||
---
|
||||
|
||||
<script src="/map-data/minecraft/rsninja-2020/map.js"></script>
|
@ -1,12 +0,0 @@
|
||||
---
|
||||
title: gamels
|
||||
description: ls with the power of the Steam API
|
||||
---
|
||||
|
||||
`gamels` will list all files in a directory in the style of `ls -la`, but will also show the name of any Steam game found in the listing. This utility was made to help me explore the filesystem of the Steam Deck.
|
||||
|
||||
This works by querying the Steam API to resolve the appids back in to something useful for us humans.
|
||||
|
||||

|
||||
|
||||
Rust users can install this tool with `cargo install gamels`. The source code and builds are available on [GitHub](https://github.com/ewpratten/gamels).
|
@ -1,73 +0,0 @@
|
||||
---
|
||||
title: Protomask
|
||||
description: Fast & reliable user space NAT64
|
||||
---
|
||||
|
||||
The protomask tool suite is a collection of user space tools that translate packets between OSI layer 3 protocol versions.
|
||||
|
||||
`protomask` (the main binary) is a user space NAT64 implementation that acts as the core NAT64 translator inside AS54041 (my autonomous system). It prioritizes efficiency and ease of use from the operator's standpoint.
|
||||
|
||||
I began the protomask project in 2023 as a replacement for `tayga` (the translator I was using at the time). It has since served as a robust & reliable NAT64 translator for my network, and has been a great way for me to learn more about the inner workings of both versions of the Internet Protocol.
|
||||
|
||||
## The tool suite
|
||||
|
||||
Alongside `protomask` itself, the project provides a handful of Rust crates that perform each of the tasks needed to build a NAT64 translator. This way, even if you don't like my implementation specifically, it is easy to build on top of my work. I hope that my protocol translation logic comes to be of use to others in the future.
|
||||
|
||||
The libraries exposed by this project are as follows:
|
||||
|
||||
<table style="margin:auto;">
|
||||
<thead>
|
||||
<tr>
|
||||
<td><strong>Crate</strong></td>
|
||||
<td><strong>Info</strong></td>
|
||||
<td><strong>Latest Version</strong></td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><code>easy-tun</code></td>
|
||||
<td>A pure-rust TUN interface library</td>
|
||||
<td>
|
||||
<a target="_blank" href="https://crates.io/crates/easy-tun"><img src="https://img.shields.io/crates/v/easy-tun" alt="crates.io" style="margin:0;display:unset;"></a>
|
||||
<a target="_blank" href="https://docs.rs/easy-tun"><img src="https://docs.rs/easy-tun/badge.svg" alt="docs.rs" style="margin:0;display:unset;"></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>fast-nat</code></td>
|
||||
<td>An OSI layer 3 Network Address Table built for speed</td>
|
||||
<td>
|
||||
<a target="_blank" href="https://crates.io/crates/fast-nat"><img src="https://img.shields.io/crates/v/fast-nat" alt="crates.io" style="margin:0;display:unset;"></a>
|
||||
<a target="_blank" href="https://docs.rs/fast-nat"><img src="https://docs.rs/fast-nat/badge.svg" alt="docs.rs" style="margin:0;display:unset;"></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>interproto</code></td>
|
||||
<td>Utilities for translating packets between IPv4 and IPv6</td>
|
||||
<td>
|
||||
<a target="_blank" href="https://crates.io/crates/interproto"><img src="https://img.shields.io/crates/v/interproto" alt="crates.io" style="margin:0;display:unset;"></a>
|
||||
<a target="_blank" href="https://docs.rs/interproto"><img src="https://docs.rs/interproto/badge.svg" alt="docs.rs" style="margin:0;display:unset"></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>rfc6052</code></td>
|
||||
<td>A Rust implementation of RFC6052</td>
|
||||
<td>
|
||||
<a target="_blank" href="https://crates.io/crates/rfc6052"><img src="https://img.shields.io/crates/v/rfc6052" alt="crates.io" style="margin:0;display:unset;"></a>
|
||||
<a target="_blank" href="https://docs.rs/rfc6052"><img src="https://docs.rs/rfc6052/badge.svg" alt="docs.rs" style="margin:0;display:unset;"></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>rtnl</code></td>
|
||||
<td>Slightly sane wrapper around rtnetlink</td>
|
||||
<td>
|
||||
<a target="_blank" href="https://crates.io/crates/rtnl"><img src="https://img.shields.io/crates/v/rtnl" alt="crates.io" style="margin:0;display:unset;"></a>
|
||||
<a target="_blank" href="https://docs.rs/rtnl"><img src="https://docs.rs/rtnl/badge.svg" alt="docs.rs" style="margin:0;display:unset;"></a>
|
||||
</td>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
Additionally, a secondary binary (`protomask-clat`) is shipped alongside the project. This binary is a simple CLAT implementation that can be used to deploy IPv4 networks across IPv6-only links.
|
||||
|
||||
## Learn more
|
||||
|
||||
The protomask tool suite is Open Source. Check it out [on GitHub](https://github.com/ewpratten/protomask).
|
22
src/_sass/common/table.scss
Normal file
@ -0,0 +1,22 @@
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
|
||||
thead {
|
||||
font-weight: bold;
|
||||
background-color: #d8d8d8;
|
||||
}
|
||||
|
||||
th,
|
||||
td {
|
||||
padding: 0.5em;
|
||||
border: 1px solid gray;
|
||||
}
|
||||
|
||||
th {
|
||||
background-color: #f0f0f0;
|
||||
}
|
||||
|
||||
tr:nth-child(even) {
|
||||
background-color: #f8f8f8;
|
||||
}
|
||||
}
|
@ -1,4 +1,5 @@
|
||||
@use "common/font.scss" as *;
|
||||
@use "common/table.scss" as *;
|
||||
|
||||
body {
|
||||
// Keep websites thin!
|
||||
|
@ -1,4 +1,5 @@
|
||||
@use "common/font.scss" as *;
|
||||
@use "common/table.scss" as *;
|
||||
|
||||
body {
|
||||
display: flex;
|
||||
@ -28,7 +29,7 @@ body {
|
||||
border-top-right-radius: inherit;
|
||||
}
|
||||
|
||||
&>div {
|
||||
& > div {
|
||||
padding: 1em;
|
||||
padding-top: 0;
|
||||
|
||||
@ -39,25 +40,6 @@ body {
|
||||
|
||||
table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
|
||||
thead {
|
||||
font-weight: bold;
|
||||
background-color: #d8d8d8;
|
||||
}
|
||||
|
||||
th, td {
|
||||
padding: 0.5em;
|
||||
border: 1px solid gray;
|
||||
}
|
||||
|
||||
th {
|
||||
background-color: #f0f0f0;
|
||||
}
|
||||
|
||||
tr:nth-child(even) {
|
||||
background-color: #f8f8f8;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -26,6 +26,7 @@ body {
|
||||
img {
|
||||
max-width: 800px;
|
||||
border: 5px solid black;
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
div.description {
|
||||
|
Before Width: | Height: | Size: 654 KiB After Width: | Height: | Size: 654 KiB |
Before Width: | Height: | Size: 36 KiB After Width: | Height: | Size: 36 KiB |
Before Width: | Height: | Size: 50 KiB After Width: | Height: | Size: 50 KiB |
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 29 KiB |
@ -3,4 +3,10 @@ layout: photo
|
||||
title: "Icy Shore"
|
||||
date: 2022-03-06
|
||||
file: 2022-03-06-icy-shore.jpg
|
||||
---
|
||||
---
|
||||
|
||||
The surface of Lake Ontario had frozen over the winter, and as the weather began to warm, the ice started cracking into fairly large pieces.
|
||||
|
||||
This photo was taken as I was admiring the waves made of ice crashing into the growing icy piles along the shore.
|
||||
|
||||
A rather loud experience.
|
||||
|
@ -1,11 +1,11 @@
|
||||
---
|
||||
layout: default
|
||||
title: "[data::loss]"
|
||||
description: "A Ludum Dare game for the theme: Unstable"
|
||||
extra:
|
||||
og_image: /images/software/games/data-loss/game-banner.png
|
||||
software_category: games
|
||||
---
|
||||
|
||||

|
||||

|
||||
|
||||
**[data::loss]** is a fast-paced side-scroller platforming game where you navigate a world full of graphical inconsistencies that have a habit of causing physical consequences.
|
||||
|
@ -1,11 +1,11 @@
|
||||
---
|
||||
layout: default
|
||||
title: Deep Breath
|
||||
description: "A Ludum Dare game for the theme: Deeper and deeper"
|
||||
extra:
|
||||
og_image: /images/software/games/deep-breath/game-banner.png
|
||||
software_category: games
|
||||
---
|
||||
|
||||

|
||||

|
||||
|
||||
**Deep Breath** is an exploration game where you explore an underwater cave in hopes of finding your lost transponder. Items and upgrades can be acquired along the way to assist your search.
|
||||
|
@ -1,11 +1,11 @@
|
||||
---
|
||||
layout: default
|
||||
title: "Micromanaged Mike"
|
||||
description: "A Ludum Dare game for the theme: Keep it alive"
|
||||
extra:
|
||||
og_image: /images/software/games/micromanaged-mike/game-banner.jpg
|
||||
software_category: games
|
||||
---
|
||||
|
||||

|
||||

|
||||
|
||||
Truly put your multitasking skills to the test as you help Mike do daily tasks, hard parts is, Mike doesn’t have any autonomous body functions. You have to do everything for him, even making him blink.
|
||||
|
@ -34,7 +34,7 @@ software_category: minecraft
|
||||
{% for build in most_recent_release.builds %}
|
||||
<li>
|
||||
<a
|
||||
href="/assets/software/minecraft-modpack/builds/Evan's Pack-{{ most_recent_release.version }}.mrpack">
|
||||
href="/assets/software/minecraft-modpack/builds/Evan's Pack-{{ build.version }}.mrpack">
|
||||
Evan's Pack <strong>{{ build.version }}</strong>
|
||||
</a>
|
||||
{% if forloop.first %}<strong><em>(latest)</em></strong>{% endif %}
|
||||
@ -50,7 +50,7 @@ software_category: minecraft
|
||||
{% if build.version == most_recent_release.version %}{% continue %}{% endif %}
|
||||
{% for release in build.builds %}
|
||||
<li>
|
||||
<a href="https://software-download.ewpratten.com/minecraft-modpack-{{ build.version }}.mrpack" style="color: gray;">
|
||||
<a href="/assets/software/minecraft-modpack/builds/Evan's Pack-{{ release.version }}.mrpack" style="color: gray;">
|
||||
Evan's Pack <strong>{{ release.version }}</strong>
|
||||
</a>
|
||||
</li>
|
||||
|
@ -1,17 +1,12 @@
|
||||
---
|
||||
layout: default
|
||||
title: Slice (WearOS Watchface)
|
||||
description: The WearOS watchface that fuses a 24-hour clock with a digital display
|
||||
extra:
|
||||
og_image: /images/software/apps/slice/slice.png
|
||||
---
|
||||
|
||||
It started from a simple question. *What would it be like to use a 24-hour analog clock?*
|
||||
|
||||
<img
|
||||
src="/images/software/apps/slice/slice.png"
|
||||
style="border-radius: 100%; box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5); width: 100%; max-width: 300px; margin: 0 auto; display: block;"
|
||||
alt="Slice watchface"
|
||||
>
|
||||
<img src="/assets/software/slice/slice.png" style="border-radius: 100%; box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5); width: 100%; max-width: 300px; margin: 2em auto; display: block;" alt="Slice watchface">
|
||||
|
||||
Slice is an analog/digital hybrid watchface that features four main components:
|
||||
|
||||
@ -36,12 +31,8 @@ Additionally, a thick tick and a thin tick slowly make their way around the oute
|
||||
|
||||
## Observations
|
||||
|
||||
Slice has been the one and only watchface on my smartwatch since 2022.
|
||||
Slice has been the one and only watchface on my smartwatch since 2022.
|
||||
|
||||
I quite like the "hour hand" on the outer ring, and use it as a quick visual indicator of my progress through the day. The "second hand" was a later addition, allowing me to use my watchface as an impromptu timer.
|
||||
|
||||
In the future, I plan to add a Google Calendar integration to the watchface. I would like to display important calendar events as arcs across the 24-hour timeline, allowing me to quickly see how my day is structured.
|
||||
|
||||
## Try Slice
|
||||
|
||||
Slice is available for purchase on the [Google Play store](https://play.google.com/store/apps/details?id=com.ewpratten.wearos.slice).
|