diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-12-02 01:23:35 -0800 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-12-02 01:29:53 -0800 |
| commit | 747e44b5462e8cbedbabfd287e4d41318ada31a8 (patch) | |
| tree | 4bd200aa069a8301df7b6cd2d678ae7c4fbdc74e | |
| parent | 58f8caeca47fed501720bcaa61c12b032bc5953d (diff) | |
02: ctf
25 files changed, 780 insertions, 20 deletions
diff --git a/indieweb-micro/content/posts/china-town-fair/gloves.webp b/indieweb-micro/content/posts/china-town-fair/gloves.webp Binary files differnew file mode 100644 index 0000000..fd42b6c --- /dev/null +++ b/indieweb-micro/content/posts/china-town-fair/gloves.webp diff --git a/indieweb-micro/content/posts/china-town-fair/index.md b/indieweb-micro/content/posts/china-town-fair/index.md new file mode 100644 index 0000000..1773450 --- /dev/null +++ b/indieweb-micro/content/posts/china-town-fair/index.md @@ -0,0 +1,30 @@ +--- +title: "China Town Fair" +date: 2025-12-02T00:22:32-08:00 +slug: 2025-12-02-china-town-fair +type: posts +draft: false +categories: + - life +tags: + - arcade +--- +Visited New York during the Thanksgiving break and had a chance to stopped by one of the most legendary landmarks North American arcade gaming history. + +{{< figure src="outside-ctf.webp" alt="China Town Fair Outside" >}} + +Also yep you're reading that right, it indeed once home to a [dancing chicken as well as one that played tic tac toe](https://davidpotorti.substack.com/p/the-dancing-chicken). + +But apart from just being an old arcade, it was also home to one of the largest competitive arcade game fighting scene (Marven vs Capcom, Street Fighter, etc.). Many of NAs top players frequented this arcade. However, as we all already know video arcades began to die down during the early 2000s and China Town Fair was no exeception having closed in 2011. + +Then it re-opened under new management and became a complete shell of its former self. These days its pretty much all redemption slop in there. Very few actual "games" in there; there's a DDR A3 cab, PIU, a singular jubeat with a broken audio mod, a fully broken down SDVX Nemsys, and 3 Wangan 5DX+ (not sure what happened to the 4th one). + +{{< figure src="inside-ctf.webp" alt="China Town Fair Inside" >}} + +Anyways, its pretty tiny in there and feels like its not doing amazing. A single credit for jubeat was like 3-4 USD I think, and one of the machines to reload cards was fully broken down (tbh just go to Round1 and play). + +If you want some actual rhythm games though, walk like 6 minutes and the newly opened "Akiba House" store has private networked maimai DX, WACCA (modded), and CHUNITHM. + +{{< figure src="gloves.webp" alt="Chinese maimai gloves" width="300" >}} + +Also I was absolutely not ready for the New York winter temps. Thankfully I always keep my rhythm game gloves on me which saved my hands from freezing. diff --git a/indieweb-micro/content/posts/china-town-fair/inside-ctf.webp b/indieweb-micro/content/posts/china-town-fair/inside-ctf.webp Binary files differnew file mode 100644 index 0000000..d08d15f --- /dev/null +++ b/indieweb-micro/content/posts/china-town-fair/inside-ctf.webp diff --git a/indieweb-micro/content/posts/china-town-fair/outside-ctf.webp b/indieweb-micro/content/posts/china-town-fair/outside-ctf.webp Binary files differnew file mode 100644 index 0000000..aacc4e2 --- /dev/null +++ b/indieweb-micro/content/posts/china-town-fair/outside-ctf.webp diff --git a/indieweb-micro/prep-images.sh b/indieweb-micro/prep-images.sh new file mode 100755 index 0000000..e478348 --- /dev/null +++ b/indieweb-micro/prep-images.sh @@ -0,0 +1,38 @@ +#!/usr/bin/env bash + +# Usage: +# ./overwrite-to-webp.sh /path/to/folder jpg +# +# Arguments: +# 1 = folder containing images +# 2 = file extension to convert (jpg, jpeg, png, etc.) + +SRC_DIR="$1" +EXT="$2" + +if [ -z "$SRC_DIR" ] || [ -z "$EXT" ]; then + echo "Usage: $0 <folder> <extension>" + echo "Example: ./overwrite-to-webp.sh ./photos jpg" + exit 1 +fi + +for file in "$SRC_DIR"/*."$EXT"; do + [ -e "$file" ] || continue + + filename=$(basename "$file") + name="${filename%.*}" + newfile="$SRC_DIR/$name.webp" + + echo "Converting: $filename → $name.webp" + + # Convert to WebP (lossy quality ~80) + ffmpeg -i "$file" \ + -compression_level 6 \ + -quality 80 \ + "$newfile" -y + + # Delete original file + rm -f "$file" +done + +echo "Done! All .$EXT files have been replaced with .webp" diff --git a/indieweb-micro/themes/MinIndie/layouts/partials/webmentions.html b/indieweb-micro/themes/MinIndie/layouts/partials/webmentions.html index 56a12d7..ff572c7 100644 --- a/indieweb-micro/themes/MinIndie/layouts/partials/webmentions.html +++ b/indieweb-micro/themes/MinIndie/layouts/partials/webmentions.html @@ -92,6 +92,7 @@ </style> <script> +const PAGE_URL = "{{ .Permalink }}"; async function loadMentions() { const url = "https://webmention.io/api/mentions.jf2?domain=micro.pinapelz.moe&token=hdjQAqlZwgJmSuPSiU8h8w"; @@ -102,12 +103,28 @@ async function loadMentions() { const container = document.getElementById("mentions"); container.innerHTML = ""; - if (!data.children || data.children.length === 0) { + const mentions = data.children.filter(m => { + const t = m["wm-target"]; + const inReply = m["in-reply-to"]; + const likeOf = m["like-of"]; + const repostOf = m["repost-of"]; + const mentionOf = m["mention-of"]; + + return ( + t === PAGE_URL || + inReply === PAGE_URL || + likeOf === PAGE_URL || + repostOf === PAGE_URL || + mentionOf === PAGE_URL + ); + }); + + if (!mentions.length) { container.innerHTML = "<p>No webmentions yet.</p>"; return; } - data.children.forEach(m => { + mentions.forEach(m => { const div = document.createElement("div"); div.className = "wm"; diff --git a/micro.pinapelz.moe/_redirects b/micro.pinapelz.moe/_redirects deleted file mode 100644 index 570f054..0000000 --- a/micro.pinapelz.moe/_redirects +++ /dev/null @@ -1,2 +0,0 @@ -/.well-known/host-meta* https://fed.brid.gy/.well-known/host-meta 302 -/.well-known/webfinger* https://fed.brid.gy/.well-known/webfinger 302 diff --git a/micro.pinapelz.moe/categories/index.html b/micro.pinapelz.moe/categories/index.html index 0638547..19790fd 100644 --- a/micro.pinapelz.moe/categories/index.html +++ b/micro.pinapelz.moe/categories/index.html @@ -72,6 +72,8 @@ <li><a href="/categories/default/">Default</a></li> + <li><a href="/categories/life/">Life</a></li> + </ul> </div> </main> diff --git a/micro.pinapelz.moe/categories/index.xml b/micro.pinapelz.moe/categories/index.xml index 05fb505..3edc3ef 100644 --- a/micro.pinapelz.moe/categories/index.xml +++ b/micro.pinapelz.moe/categories/index.xml @@ -8,9 +8,16 @@ <language>en-us</language> <managingEditor>yukais@pinapelz.com (Pinapelz)</managingEditor> <webMaster>yukais@pinapelz.com (Pinapelz)</webMaster> - <lastBuildDate>Mon, 01 Dec 2025 20:11:57 -0800</lastBuildDate> + <lastBuildDate>Tue, 02 Dec 2025 00:22:32 -0800</lastBuildDate> <atom:link href="https://micro.pinapelz.moe/categories/index.xml" rel="self" type="application/rss+xml" /> <item> + <title>Life</title> + <link>https://micro.pinapelz.moe/categories/life/</link> + <pubDate>Tue, 02 Dec 2025 00:22:32 -0800</pubDate><author>yukais@pinapelz.com (Pinapelz)</author> + <guid>https://micro.pinapelz.moe/categories/life/</guid> + <description></description> + </item> + <item> <title>Default</title> <link>https://micro.pinapelz.moe/categories/default/</link> <pubDate>Mon, 01 Dec 2025 20:11:57 -0800</pubDate><author>yukais@pinapelz.com (Pinapelz)</author> diff --git a/micro.pinapelz.moe/categories/life/index.html b/micro.pinapelz.moe/categories/life/index.html new file mode 100644 index 0000000..a96e1f6 --- /dev/null +++ b/micro.pinapelz.moe/categories/life/index.html @@ -0,0 +1,105 @@ +<!DOCTYPE html> +<html lang="en-us"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <meta http-equiv="X-UA-Compatible" content="IE=edge"> + <style type=text/css>body{font-family:monospace;}</style> + <title>Life | micro.pinapelz.moe</title> + + <meta name="author" content="map[avatar:https://pinapelz.moe/assets/pfp.webp bio:yo! and he's more than a cover he's a quilt<br/> + General arcade rhythm game enjoyer (SDVX, IIDX, CHUNITHM)<br/> + Mostly play MMOs (FFXIV, OSRS), JRPGs, and VNs (anything with a good story)<br/> + I Watch only slice of life (and Bandori)<br/> + Arch Linux + Hyprland user (btw) email:yukais@pinapelz.com name:Pinapelz]"> + <link rel="stylesheet" href="/css/style.css"> + <link rel="alternate" type="application/rss+xml" href="/categories/life/index.xml" title="micro.pinapelz.moe"> + + + <link rel="me" href="https://github.com/pinapelz" /> + <link rel="me" href="mailto:yukais@pinapelz.com" /> + <link rel="me" href="https://sakurajima.social/@pinapelz" /> + <link rel="me" href="https://bsky.app/profile/pinapelz.moe" /><link rel="pgpkey" href="/path/to//public/key.asc"> + <link + rel="authorization_endpoint" + href="https://indieauth.com/auth" + /> + <link + rel="token_endpoint" + href="https://tokens.indieauth.com/token" + /> + <link rel="webmention" href="https://webmention.io/micro.pinapelz.moe/webmention" /> + + + +</head> +<body> + <header> + <div style="display:flex;flex-flow:row wrap;justify-content:space-between"> + <div style="align-self:flex-start;"> + ==============<br> + == <a href="https://micro.pinapelz.moe/">Pinapelz</a> ==<br> + ============== + </div> + <div style="align-self:center;">check it out. I'm in the house like carpet</div> + </div> + <nav style="margin: 1rem auto;"> + + + <a href="/posts/"><b>Posts</b></a>. + + <a href="/categories/"><b>Categories</b></a>. + + <a href="/tags/"><b>Tags</b></a>. + + + </nav> +</header> + + + +<main> + <div> + <h1> + Life + <a href="https://micro.pinapelz.moe/categories/life/index.xml"> + <img style="height:1.5rem; display: inline;" src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-label='RSS' role='img' viewBox='0 0 512 512'%3E%3Cpath d='M0 0h512v512H0' fill='%23f80'/%3E%3Cpath d='M109 271A132 133 0 0 1 241 403h60A192 193 0 0 0 109 211v-54A246 247 0 0 1 355 403h60A306 307 0 0 0 109 97m35 235a35 35 0 1 0 2 0' fill='%23fff'/%3E%3C/svg%3E" alt="RSS icon" /> + </a> + </h1> + <div> + + </div><p>Content linked to the taxonomy term « LIFE »:</p> + + + + + <div> + <h3>Posts</h3> + <ul> + + <li> + <time class="date dt-published" datetime="2025-12-02">2025-12-02</time> + <a href="/posts/2025-12-02-china-town-fair/">China Town Fair</a> + </li> + + + </ul> + </div></div> +</main> + + <hr /> +<footer> + <p> + <a href="https://github.com/pinapelz"><b>Github</b></a>. + <a href="https://pinapelz.moe"><b>pinapelz.moe</b></a>. + </p> + + + + <p style="text-align: center" class="copyright"> + © <a href="https://micro.pinapelz.moe/"><b>micro.pinapelz.moe</b></a>. + </p> +</footer> + +</body> +</html> diff --git a/micro.pinapelz.moe/categories/life/index.xml b/micro.pinapelz.moe/categories/life/index.xml new file mode 100644 index 0000000..ff30eca --- /dev/null +++ b/micro.pinapelz.moe/categories/life/index.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>Life on micro.pinapelz.moe</title> + <link>https://micro.pinapelz.moe/categories/life/</link> + <description>Recent content in Life on micro.pinapelz.moe</description> + <generator>Hugo</generator> + <language>en-us</language> + <managingEditor>yukais@pinapelz.com (Pinapelz)</managingEditor> + <webMaster>yukais@pinapelz.com (Pinapelz)</webMaster> + <lastBuildDate>Tue, 02 Dec 2025 00:22:32 -0800</lastBuildDate> + <atom:link href="https://micro.pinapelz.moe/categories/life/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>China Town Fair</title> + <link>https://micro.pinapelz.moe/posts/2025-12-02-china-town-fair/</link> + <pubDate>Tue, 02 Dec 2025 00:22:32 -0800</pubDate><author>yukais@pinapelz.com (Pinapelz)</author> + <guid>https://micro.pinapelz.moe/posts/2025-12-02-china-town-fair/</guid> + <description><p>Visited New York during the Thanksgiving break and had a chance to stopped by one of the most legendary landmarks North American arcade gaming history.</p>
<figure><img src="https://micro.pinapelz.moe/posts/2025-12-02-china-town-fair/outside-ctf.webp"
 alt="China Town Fair Outside">
</figure>

<p>Also yep you&rsquo;re reading that right, it indeed once home to a <a href="https://davidpotorti.substack.com/p/the-dancing-chicken">dancing chicken as well as one that played tic tac toe</a>.</p>
<p>But apart from just being an old arcade, it was also home to one of the largest competitive arcade game fighting scene (Marven vs Capcom, Street Fighter, etc.). Many of NAs top players frequented this arcade. However, as we all already know video arcades began to die down during the early 2000s and China Town Fair was no exeception having closed in 2011.</p></description> + </item> + </channel> +</rss> diff --git a/micro.pinapelz.moe/index.html b/micro.pinapelz.moe/index.html index 371555b..39b5478 100644 --- a/micro.pinapelz.moe/index.html +++ b/micro.pinapelz.moe/index.html @@ -75,6 +75,27 @@ <article> + <h1><a href="https://micro.pinapelz.moe/posts/2025-12-02-china-town-fair/">China Town Fair</a></h1> + <b><time>Tuesday, December 2, 2025</time></b> + + <a href="/tags/arcade">arcade</a> + + <div> + <p>Visited New York during the Thanksgiving break and had a chance to stopped by one of the most legendary landmarks North American arcade gaming history.</p> +<figure><img src="/posts/2025-12-02-china-town-fair/outside-ctf.webp" + alt="China Town Fair Outside"> +</figure> + +<p>Also yep you’re reading that right, it indeed once home to a <a href="https://davidpotorti.substack.com/p/the-dancing-chicken">dancing chicken as well as one that played tic tac toe</a>.</p> +<p>But apart from just being an old arcade, it was also home to one of the largest competitive arcade game fighting scene (Marven vs Capcom, Street Fighter, etc.). Many of NAs top players frequented this arcade. However, as we all already know video arcades began to die down during the early 2000s and China Town Fair was no exeception having closed in 2011.</p> + + <a href="https://micro.pinapelz.moe/posts/2025-12-02-china-town-fair/">Read more...</a> + + </div> +</article> + + + <article> <h1><a href="https://micro.pinapelz.moe/posts/2025-12-01-hello-world/">Hello World - Why This</a></h1> <b><time>Monday, December 1, 2025</time></b> diff --git a/micro.pinapelz.moe/index.xml b/micro.pinapelz.moe/index.xml index 2d38a95..9d957ad 100644 --- a/micro.pinapelz.moe/index.xml +++ b/micro.pinapelz.moe/index.xml @@ -8,9 +8,16 @@ <language>en-us</language> <managingEditor>yukais@pinapelz.com (Pinapelz)</managingEditor> <webMaster>yukais@pinapelz.com (Pinapelz)</webMaster> - <lastBuildDate>Mon, 01 Dec 2025 20:11:57 -0800</lastBuildDate> + <lastBuildDate>Tue, 02 Dec 2025 00:22:32 -0800</lastBuildDate> <atom:link href="https://micro.pinapelz.moe/index.xml" rel="self" type="application/rss+xml" /> <item> + <title>China Town Fair</title> + <link>https://micro.pinapelz.moe/posts/2025-12-02-china-town-fair/</link> + <pubDate>Tue, 02 Dec 2025 00:22:32 -0800</pubDate><author>yukais@pinapelz.com (Pinapelz)</author> + <guid>https://micro.pinapelz.moe/posts/2025-12-02-china-town-fair/</guid> + <description><p>Visited New York during the Thanksgiving break and had a chance to stopped by one of the most legendary landmarks North American arcade gaming history.</p>
<figure><img src="https://micro.pinapelz.moe/posts/2025-12-02-china-town-fair/outside-ctf.webp"
 alt="China Town Fair Outside">
</figure>

<p>Also yep you&rsquo;re reading that right, it indeed once home to a <a href="https://davidpotorti.substack.com/p/the-dancing-chicken">dancing chicken as well as one that played tic tac toe</a>.</p>
<p>But apart from just being an old arcade, it was also home to one of the largest competitive arcade game fighting scene (Marven vs Capcom, Street Fighter, etc.). Many of NAs top players frequented this arcade. However, as we all already know video arcades began to die down during the early 2000s and China Town Fair was no exeception having closed in 2011.</p></description> + </item> + <item> <title>Hello World - Why This</title> <link>https://micro.pinapelz.moe/posts/2025-12-01-hello-world/</link> <pubDate>Mon, 01 Dec 2025 20:11:57 -0800</pubDate><author>yukais@pinapelz.com (Pinapelz)</author> diff --git a/micro.pinapelz.moe/posts/2025-12-01-hello-world/index.html b/micro.pinapelz.moe/posts/2025-12-01-hello-world/index.html index 3fc9e8b..8613577 100644 --- a/micro.pinapelz.moe/posts/2025-12-01-hello-world/index.html +++ b/micro.pinapelz.moe/posts/2025-12-01-hello-world/index.html @@ -210,6 +210,7 @@ AtProto allows you to host a <code>PDS (Personal Data Server)</code> which store </style> <script> +const PAGE_URL = "https:\/\/micro.pinapelz.moe\/posts\/2025-12-01-hello-world\/"; async function loadMentions() { const url = "https://webmention.io/api/mentions.jf2?domain=micro.pinapelz.moe&token=hdjQAqlZwgJmSuPSiU8h8w"; @@ -220,12 +221,28 @@ async function loadMentions() { const container = document.getElementById("mentions"); container.innerHTML = ""; - if (!data.children || data.children.length === 0) { + const mentions = data.children.filter(m => { + const t = m["wm-target"]; + const inReply = m["in-reply-to"]; + const likeOf = m["like-of"]; + const repostOf = m["repost-of"]; + const mentionOf = m["mention-of"]; + + return ( + t === PAGE_URL || + inReply === PAGE_URL || + likeOf === PAGE_URL || + repostOf === PAGE_URL || + mentionOf === PAGE_URL + ); + }); + + if (!mentions.length) { container.innerHTML = "<p>No webmentions yet.</p>"; return; } - data.children.forEach(m => { + mentions.forEach(m => { const div = document.createElement("div"); div.className = "wm"; diff --git a/micro.pinapelz.moe/posts/2025-12-02-china-town-fair/gloves.webp b/micro.pinapelz.moe/posts/2025-12-02-china-town-fair/gloves.webp Binary files differnew file mode 100644 index 0000000..fd42b6c --- /dev/null +++ b/micro.pinapelz.moe/posts/2025-12-02-china-town-fair/gloves.webp diff --git a/micro.pinapelz.moe/posts/2025-12-02-china-town-fair/index.html b/micro.pinapelz.moe/posts/2025-12-02-china-town-fair/index.html new file mode 100644 index 0000000..0c45ad9 --- /dev/null +++ b/micro.pinapelz.moe/posts/2025-12-02-china-town-fair/index.html @@ -0,0 +1,313 @@ +<!DOCTYPE html> +<html lang="en-us"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <meta http-equiv="X-UA-Compatible" content="IE=edge"> + <style type=text/css>body{font-family:monospace;}</style> + <title>China Town Fair | micro.pinapelz.moe</title> + + <meta name="author" content="map[avatar:https://pinapelz.moe/assets/pfp.webp bio:yo! and he's more than a cover he's a quilt<br/> + General arcade rhythm game enjoyer (SDVX, IIDX, CHUNITHM)<br/> + Mostly play MMOs (FFXIV, OSRS), JRPGs, and VNs (anything with a good story)<br/> + I Watch only slice of life (and Bandori)<br/> + Arch Linux + Hyprland user (btw) email:yukais@pinapelz.com name:Pinapelz]"> + <link rel="stylesheet" href="/css/style.css"> + + + + <link rel="me" href="https://github.com/pinapelz" /> + <link rel="me" href="mailto:yukais@pinapelz.com" /> + <link rel="me" href="https://sakurajima.social/@pinapelz" /> + <link rel="me" href="https://bsky.app/profile/pinapelz.moe" /><link rel="pgpkey" href="/path/to//public/key.asc"> + <link + rel="authorization_endpoint" + href="https://indieauth.com/auth" + /> + <link + rel="token_endpoint" + href="https://tokens.indieauth.com/token" + /> + <link rel="webmention" href="https://webmention.io/micro.pinapelz.moe/webmention" /> + + + +</head> +<body> + <header> + <div style="display:flex;flex-flow:row wrap;justify-content:space-between"> + <div style="align-self:flex-start;"> + ==============<br> + == <a href="https://micro.pinapelz.moe/">Pinapelz</a> ==<br> + ============== + </div> + <div style="align-self:center;">check it out. I'm in the house like carpet</div> + </div> + <nav style="margin: 1rem auto;"> + + + <a href="/posts/"><b>Posts</b></a>. + + <a href="/categories/"><b>Categories</b></a>. + + <a href="/tags/"><b>Tags</b></a>. + + + </nav> +</header> + + + + <main> + <article class="h-entry"> + <h1 class="p-name">China Town Fair</h1> + + <div hidden><div class="h-card p-author bio-card" style="text-align:center;"> + <div class="bio"> + <img class="u-photo avatar" src="https://pinapelz.moe/assets/pfp.webp" alt="Pinapelz's avatar"> + <p class="p-note">yo! and he's more than a cover he's a quilt<br/> + General arcade rhythm game enjoyer (SDVX, IIDX, CHUNITHM)<br/> + Mostly play MMOs (FFXIV, OSRS), JRPGs, and VNs (anything with a good story)<br/> + I Watch only slice of life (and Bandori)<br/> + Arch Linux + Hyprland user (btw)</p> + </div> + <p class="bio-name"><a href="https://micro.pinapelz.moe/" rel="me" class="p-nickname p-name u-url">Pinapelz</a></p> +</div> +<hr/> +</div> + + + <div><b> + <time class="dt-published" datetime="2025-12-02"> + Tuesday, December 2, 2025 + </time> + - <a href="https://micro.pinapelz.moe/posts/2025-12-02-china-town-fair/" class="u-url u-uid" >Permalink</a> + </b></div> + <div class="article-meta"><span class="categories"> + Categories: + + <a href="/categories/life">life</a> + + </span>--<span class="tags"> + Tags: + + #<a href="/tags/arcade" class="p-category">arcade</a> + + </span></div><div class="e-content"> + <p>Visited New York during the Thanksgiving break and had a chance to stopped by one of the most legendary landmarks North American arcade gaming history.</p> +<figure><img src="/posts/2025-12-02-china-town-fair/outside-ctf.webp" + alt="China Town Fair Outside"> +</figure> + +<p>Also yep you’re reading that right, it indeed once home to a <a href="https://davidpotorti.substack.com/p/the-dancing-chicken">dancing chicken as well as one that played tic tac toe</a>.</p> +<p>But apart from just being an old arcade, it was also home to one of the largest competitive arcade game fighting scene (Marven vs Capcom, Street Fighter, etc.). Many of NAs top players frequented this arcade. However, as we all already know video arcades began to die down during the early 2000s and China Town Fair was no exeception having closed in 2011.</p> +<p>Then it re-opened under new management and became a complete shell of its former self. These days its pretty much all redemption slop in there. Very few actual “games” in there; there’s a DDR A3 cab, PIU, a singular jubeat with a broken audio mod, a fully broken down SDVX Nemsys, and 3 Wangan 5DX+ (not sure what happened to the 4th one).</p> +<figure><img src="/posts/2025-12-02-china-town-fair/inside-ctf.webp" + alt="China Town Fair Inside"> +</figure> + +<p>Anyways, its pretty tiny in there and feels like its not doing amazing. A single credit for jubeat was like 3-4 USD I think, and one of the machines to reload cards was fully broken down (tbh just go to Round1 and play).</p> +<p>If you want some actual rhythm games though, walk like 6 minutes and the newly opened “Akiba House” store has private networked maimai DX, WACCA (modded), and CHUNITHM.</p> +<figure><img src="/posts/2025-12-02-china-town-fair/gloves.webp" + alt="Chinese maimai gloves" width="300"> +</figure> + +<p>Also I was absolutely not ready for the New York winter temps. Thankfully I always keep my rhythm game gloves on me which saved my hands from freezing.</p> + + </div> + + + + + + + <section id="comments" class="webmentions"> + <h2 class="wm-title">Webmentions</h2> + <div id="mentions" class="wm-list">Loading…</div> +</section> + +<style> +.webmentions { + margin-top: 2.5rem; + padding-top: 1rem; + border-top: 2px dashed var(--hrcolor); +} + +.webmentions .wm-title { + color: var(--titlecolor); + margin-bottom: 1rem; +} + + +.wm-list { + display: flex; + flex-direction: column; + gap: 0.75rem; +} + + +.wm { + display: flex; + gap: 0.6rem; + padding: 0.6rem 0.75rem; + border-radius: 10px; + + background: var(--alertbgcolor); + border: 1px solid var(--hrcolor); + + box-shadow: 0 0 6px rgba(255, 180, 220, 0.22); +} + + +.wm-author img { + width: 32px; + height: 32px; + border-radius: 50%; + box-shadow: 0 0 4px rgba(255, 140, 200, 0.35); +} + + +.wm-body { + flex: 1; + font-size: 0.9rem; +} + + +.wm-author-name a { + font-weight: 600; + color: var(--linkcolor); +} + +.wm-type { + font-size: 0.8rem; + margin-top: 2px; + color: var(--titlecolor); +} + + +.wm-content { + margin-top: 4px; + padding: 6px 8px; + font-size: 0.9rem; + + background: var(--blockquotecolor); + border-left: 3px solid var(--hrcolor); + border-radius: 6px; +} + + +.wm-meta { + margin-top: 3px; + font-size: 0.75rem; + opacity: 0.7; +} + + +@media (max-width: 800px) { + .wm { + flex-direction: column; + text-align: left; + } + .wm-author img { + margin-bottom: 4px; + } +} +</style> + +<script> +const PAGE_URL = "https:\/\/micro.pinapelz.moe\/posts\/2025-12-02-china-town-fair\/"; +async function loadMentions() { + const url = + "https://webmention.io/api/mentions.jf2?domain=micro.pinapelz.moe&token=hdjQAqlZwgJmSuPSiU8h8w"; + + const res = await fetch(url); + const data = await res.json(); + + const container = document.getElementById("mentions"); + container.innerHTML = ""; + + const mentions = data.children.filter(m => { + const t = m["wm-target"]; + const inReply = m["in-reply-to"]; + const likeOf = m["like-of"]; + const repostOf = m["repost-of"]; + const mentionOf = m["mention-of"]; + + return ( + t === PAGE_URL || + inReply === PAGE_URL || + likeOf === PAGE_URL || + repostOf === PAGE_URL || + mentionOf === PAGE_URL + ); + }); + + if (!mentions.length) { + container.innerHTML = "<p>No webmentions yet.</p>"; + return; + } + + mentions.forEach(m => { + const div = document.createElement("div"); + div.className = "wm"; + + const author = m.author || {}; + const content = m.content || {}; + const type = + m["wm-property"] === "like-of" ? "liked this ❤️" : + m["wm-property"] === "repost-of" ? "reposted 🔁" : + m["wm-property"] === "in-reply-to" ? "replied 💬" : + "mentioned this"; + + const isLikeOrRepost = m["wm-property"] === "like-of" || m["wm-property"] === "repost-of"; + + div.innerHTML = ` + <div class="wm-author"> + <img src="${author.photo || ""}" alt=""> + </div> + + <div class="wm-body"> + <div class="wm-author-name"> + <a href="${author.url || "#"}" target="_blank"> + ${author.name || "Unknown"} + </a> + </div> + + <div class="wm-type">${type}</div> + + ${!isLikeOrRepost && content.text ? `<div class="wm-content">${content.text}</div>` : ""} + + <div class="wm-meta"> + <a href="${m.url}" target="_blank">source</a> • + ${m["wm-received"] + ? new Date(m["wm-received"]).toLocaleString() + : ""} + </div> + </div> + `; + container.appendChild(div); + }); +} + +loadMentions(); +</script> + + </article> + </main> + + <hr /> +<footer> + <p> + <a href="https://github.com/pinapelz"><b>Github</b></a>. + <a href="https://pinapelz.moe"><b>pinapelz.moe</b></a>. + </p> + + + + <p style="text-align: center" class="copyright"> + © <a href="https://micro.pinapelz.moe/"><b>micro.pinapelz.moe</b></a>. + </p> +</footer> + +</body> +</html> diff --git a/micro.pinapelz.moe/posts/2025-12-02-china-town-fair/inside-ctf.webp b/micro.pinapelz.moe/posts/2025-12-02-china-town-fair/inside-ctf.webp Binary files differnew file mode 100644 index 0000000..d08d15f --- /dev/null +++ b/micro.pinapelz.moe/posts/2025-12-02-china-town-fair/inside-ctf.webp diff --git a/micro.pinapelz.moe/posts/2025-12-02-china-town-fair/outside-ctf.webp b/micro.pinapelz.moe/posts/2025-12-02-china-town-fair/outside-ctf.webp Binary files differnew file mode 100644 index 0000000..aacc4e2 --- /dev/null +++ b/micro.pinapelz.moe/posts/2025-12-02-china-town-fair/outside-ctf.webp diff --git a/micro.pinapelz.moe/posts/index.html b/micro.pinapelz.moe/posts/index.html index c1e24be..fb1b8ed 100644 --- a/micro.pinapelz.moe/posts/index.html +++ b/micro.pinapelz.moe/posts/index.html @@ -110,6 +110,39 @@ </div> <div class="post-title"> + <time class="date dt-published" datetime="2025-12-02">02</time>: + + <a href="https://micro.pinapelz.moe/posts/2025-12-02-china-town-fair/" class="u-url p-name title"> + China Town Fair + </a> + </div> + </li> + + + + + + + + + + <li class="h-entry"> + <div hidden> + <div class="h-card p-author bio-card" style="text-align:center;"> + <div class="bio"> + <img class="u-photo avatar" src="https://pinapelz.moe/assets/pfp.webp" alt="Pinapelz's avatar"> + <p class="p-note">yo! and he's more than a cover he's a quilt<br/> + General arcade rhythm game enjoyer (SDVX, IIDX, CHUNITHM)<br/> + Mostly play MMOs (FFXIV, OSRS), JRPGs, and VNs (anything with a good story)<br/> + I Watch only slice of life (and Bandori)<br/> + Arch Linux + Hyprland user (btw)</p> + </div> + <p class="bio-name"><a href="https://micro.pinapelz.moe/" rel="me" class="p-nickname p-name u-url">Pinapelz</a></p> +</div> +<hr/> + + </div> + <div class="post-title"> <time class="date dt-published" datetime="2025-12-01">01</time>: <a href="https://micro.pinapelz.moe/posts/2025-12-01-hello-world/" class="u-url p-name title"> diff --git a/micro.pinapelz.moe/posts/index.xml b/micro.pinapelz.moe/posts/index.xml index d78ff57..f464200 100644 --- a/micro.pinapelz.moe/posts/index.xml +++ b/micro.pinapelz.moe/posts/index.xml @@ -8,9 +8,16 @@ <language>en-us</language> <managingEditor>yukais@pinapelz.com (Pinapelz)</managingEditor> <webMaster>yukais@pinapelz.com (Pinapelz)</webMaster> - <lastBuildDate>Mon, 01 Dec 2025 20:11:57 -0800</lastBuildDate> + <lastBuildDate>Tue, 02 Dec 2025 00:22:32 -0800</lastBuildDate> <atom:link href="https://micro.pinapelz.moe/posts/index.xml" rel="self" type="application/rss+xml" /> <item> + <title>China Town Fair</title> + <link>https://micro.pinapelz.moe/posts/2025-12-02-china-town-fair/</link> + <pubDate>Tue, 02 Dec 2025 00:22:32 -0800</pubDate><author>yukais@pinapelz.com (Pinapelz)</author> + <guid>https://micro.pinapelz.moe/posts/2025-12-02-china-town-fair/</guid> + <description><p>Visited New York during the Thanksgiving break and had a chance to stopped by one of the most legendary landmarks North American arcade gaming history.</p>
<figure><img src="https://micro.pinapelz.moe/posts/2025-12-02-china-town-fair/outside-ctf.webp"
 alt="China Town Fair Outside">
</figure>

<p>Also yep you&rsquo;re reading that right, it indeed once home to a <a href="https://davidpotorti.substack.com/p/the-dancing-chicken">dancing chicken as well as one that played tic tac toe</a>.</p>
<p>But apart from just being an old arcade, it was also home to one of the largest competitive arcade game fighting scene (Marven vs Capcom, Street Fighter, etc.). Many of NAs top players frequented this arcade. However, as we all already know video arcades began to die down during the early 2000s and China Town Fair was no exeception having closed in 2011.</p></description> + </item> + <item> <title>Hello World - Why This</title> <link>https://micro.pinapelz.moe/posts/2025-12-01-hello-world/</link> <pubDate>Mon, 01 Dec 2025 20:11:57 -0800</pubDate><author>yukais@pinapelz.com (Pinapelz)</author> diff --git a/micro.pinapelz.moe/sitemap.xml b/micro.pinapelz.moe/sitemap.xml index b8ebd8e..70b86b1 100644 --- a/micro.pinapelz.moe/sitemap.xml +++ b/micro.pinapelz.moe/sitemap.xml @@ -2,25 +2,34 @@ <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml"> <url> - <loc>https://micro.pinapelz.moe/categories/</loc> - <lastmod>2025-12-01T20:11:57-08:00</lastmod> + <loc>https://micro.pinapelz.moe/tags/arcade/</loc> + <lastmod>2025-12-02T00:22:32-08:00</lastmod> </url><url> - <loc>https://micro.pinapelz.moe/categories/default/</loc> - <lastmod>2025-12-01T20:11:57-08:00</lastmod> + <loc>https://micro.pinapelz.moe/categories/</loc> + <lastmod>2025-12-02T00:22:32-08:00</lastmod> </url><url> - <loc>https://micro.pinapelz.moe/tags/default/</loc> - <lastmod>2025-12-01T20:11:57-08:00</lastmod> + <loc>https://micro.pinapelz.moe/posts/2025-12-02-china-town-fair/</loc> + <lastmod>2025-12-02T00:22:32-08:00</lastmod> </url><url> - <loc>https://micro.pinapelz.moe/posts/2025-12-01-hello-world/</loc> - <lastmod>2025-12-01T20:11:57-08:00</lastmod> + <loc>https://micro.pinapelz.moe/categories/life/</loc> + <lastmod>2025-12-02T00:22:32-08:00</lastmod> </url><url> <loc>https://micro.pinapelz.moe/</loc> - <lastmod>2025-12-01T20:11:57-08:00</lastmod> + <lastmod>2025-12-02T00:22:32-08:00</lastmod> </url><url> <loc>https://micro.pinapelz.moe/posts/</loc> - <lastmod>2025-12-01T20:11:57-08:00</lastmod> + <lastmod>2025-12-02T00:22:32-08:00</lastmod> </url><url> <loc>https://micro.pinapelz.moe/tags/</loc> + <lastmod>2025-12-02T00:22:32-08:00</lastmod> + </url><url> + <loc>https://micro.pinapelz.moe/categories/default/</loc> + <lastmod>2025-12-01T20:11:57-08:00</lastmod> + </url><url> + <loc>https://micro.pinapelz.moe/tags/default/</loc> + <lastmod>2025-12-01T20:11:57-08:00</lastmod> + </url><url> + <loc>https://micro.pinapelz.moe/posts/2025-12-01-hello-world/</loc> <lastmod>2025-12-01T20:11:57-08:00</lastmod> </url> </urlset> diff --git a/micro.pinapelz.moe/tags/arcade/index.html b/micro.pinapelz.moe/tags/arcade/index.html new file mode 100644 index 0000000..c1a7816 --- /dev/null +++ b/micro.pinapelz.moe/tags/arcade/index.html @@ -0,0 +1,105 @@ +<!DOCTYPE html> +<html lang="en-us"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <meta http-equiv="X-UA-Compatible" content="IE=edge"> + <style type=text/css>body{font-family:monospace;}</style> + <title>Arcade | micro.pinapelz.moe</title> + + <meta name="author" content="map[avatar:https://pinapelz.moe/assets/pfp.webp bio:yo! and he's more than a cover he's a quilt<br/> + General arcade rhythm game enjoyer (SDVX, IIDX, CHUNITHM)<br/> + Mostly play MMOs (FFXIV, OSRS), JRPGs, and VNs (anything with a good story)<br/> + I Watch only slice of life (and Bandori)<br/> + Arch Linux + Hyprland user (btw) email:yukais@pinapelz.com name:Pinapelz]"> + <link rel="stylesheet" href="/css/style.css"> + <link rel="alternate" type="application/rss+xml" href="/tags/arcade/index.xml" title="micro.pinapelz.moe"> + + + <link rel="me" href="https://github.com/pinapelz" /> + <link rel="me" href="mailto:yukais@pinapelz.com" /> + <link rel="me" href="https://sakurajima.social/@pinapelz" /> + <link rel="me" href="https://bsky.app/profile/pinapelz.moe" /><link rel="pgpkey" href="/path/to//public/key.asc"> + <link + rel="authorization_endpoint" + href="https://indieauth.com/auth" + /> + <link + rel="token_endpoint" + href="https://tokens.indieauth.com/token" + /> + <link rel="webmention" href="https://webmention.io/micro.pinapelz.moe/webmention" /> + + + +</head> +<body> + <header> + <div style="display:flex;flex-flow:row wrap;justify-content:space-between"> + <div style="align-self:flex-start;"> + ==============<br> + == <a href="https://micro.pinapelz.moe/">Pinapelz</a> ==<br> + ============== + </div> + <div style="align-self:center;">check it out. I'm in the house like carpet</div> + </div> + <nav style="margin: 1rem auto;"> + + + <a href="/posts/"><b>Posts</b></a>. + + <a href="/categories/"><b>Categories</b></a>. + + <a href="/tags/"><b>Tags</b></a>. + + + </nav> +</header> + + + +<main> + <div> + <h1> + Arcade + <a href="https://micro.pinapelz.moe/tags/arcade/index.xml"> + <img style="height:1.5rem; display: inline;" src="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-label='RSS' role='img' viewBox='0 0 512 512'%3E%3Cpath d='M0 0h512v512H0' fill='%23f80'/%3E%3Cpath d='M109 271A132 133 0 0 1 241 403h60A192 193 0 0 0 109 211v-54A246 247 0 0 1 355 403h60A306 307 0 0 0 109 97m35 235a35 35 0 1 0 2 0' fill='%23fff'/%3E%3C/svg%3E" alt="RSS icon" /> + </a> + </h1> + <div> + + </div><p>Content linked to the taxonomy term « ARCADE »:</p> + + + + + <div> + <h3>Posts</h3> + <ul> + + <li> + <time class="date dt-published" datetime="2025-12-02">2025-12-02</time> + <a href="/posts/2025-12-02-china-town-fair/">China Town Fair</a> + </li> + + + </ul> + </div></div> +</main> + + <hr /> +<footer> + <p> + <a href="https://github.com/pinapelz"><b>Github</b></a>. + <a href="https://pinapelz.moe"><b>pinapelz.moe</b></a>. + </p> + + + + <p style="text-align: center" class="copyright"> + © <a href="https://micro.pinapelz.moe/"><b>micro.pinapelz.moe</b></a>. + </p> +</footer> + +</body> +</html> diff --git a/micro.pinapelz.moe/tags/arcade/index.xml b/micro.pinapelz.moe/tags/arcade/index.xml new file mode 100644 index 0000000..37504a4 --- /dev/null +++ b/micro.pinapelz.moe/tags/arcade/index.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> + <channel> + <title>Arcade on micro.pinapelz.moe</title> + <link>https://micro.pinapelz.moe/tags/arcade/</link> + <description>Recent content in Arcade on micro.pinapelz.moe</description> + <generator>Hugo</generator> + <language>en-us</language> + <managingEditor>yukais@pinapelz.com (Pinapelz)</managingEditor> + <webMaster>yukais@pinapelz.com (Pinapelz)</webMaster> + <lastBuildDate>Tue, 02 Dec 2025 00:22:32 -0800</lastBuildDate> + <atom:link href="https://micro.pinapelz.moe/tags/arcade/index.xml" rel="self" type="application/rss+xml" /> + <item> + <title>China Town Fair</title> + <link>https://micro.pinapelz.moe/posts/2025-12-02-china-town-fair/</link> + <pubDate>Tue, 02 Dec 2025 00:22:32 -0800</pubDate><author>yukais@pinapelz.com (Pinapelz)</author> + <guid>https://micro.pinapelz.moe/posts/2025-12-02-china-town-fair/</guid> + <description><p>Visited New York during the Thanksgiving break and had a chance to stopped by one of the most legendary landmarks North American arcade gaming history.</p>
<figure><img src="https://micro.pinapelz.moe/posts/2025-12-02-china-town-fair/outside-ctf.webp"
 alt="China Town Fair Outside">
</figure>

<p>Also yep you&rsquo;re reading that right, it indeed once home to a <a href="https://davidpotorti.substack.com/p/the-dancing-chicken">dancing chicken as well as one that played tic tac toe</a>.</p>
<p>But apart from just being an old arcade, it was also home to one of the largest competitive arcade game fighting scene (Marven vs Capcom, Street Fighter, etc.). Many of NAs top players frequented this arcade. However, as we all already know video arcades began to die down during the early 2000s and China Town Fair was no exeception having closed in 2011.</p></description> + </item> + </channel> +</rss> diff --git a/micro.pinapelz.moe/tags/index.html b/micro.pinapelz.moe/tags/index.html index f932838..afcbfa3 100644 --- a/micro.pinapelz.moe/tags/index.html +++ b/micro.pinapelz.moe/tags/index.html @@ -70,6 +70,8 @@ </div><ul> + <li><a href="/tags/arcade/">Arcade</a></li> + <li><a href="/tags/default/">Default</a></li> </ul> diff --git a/micro.pinapelz.moe/tags/index.xml b/micro.pinapelz.moe/tags/index.xml index 99f8878..af348b9 100644 --- a/micro.pinapelz.moe/tags/index.xml +++ b/micro.pinapelz.moe/tags/index.xml @@ -8,9 +8,16 @@ <language>en-us</language> <managingEditor>yukais@pinapelz.com (Pinapelz)</managingEditor> <webMaster>yukais@pinapelz.com (Pinapelz)</webMaster> - <lastBuildDate>Mon, 01 Dec 2025 20:11:57 -0800</lastBuildDate> + <lastBuildDate>Tue, 02 Dec 2025 00:22:32 -0800</lastBuildDate> <atom:link href="https://micro.pinapelz.moe/tags/index.xml" rel="self" type="application/rss+xml" /> <item> + <title>Arcade</title> + <link>https://micro.pinapelz.moe/tags/arcade/</link> + <pubDate>Tue, 02 Dec 2025 00:22:32 -0800</pubDate><author>yukais@pinapelz.com (Pinapelz)</author> + <guid>https://micro.pinapelz.moe/tags/arcade/</guid> + <description></description> + </item> + <item> <title>Default</title> <link>https://micro.pinapelz.moe/tags/default/</link> <pubDate>Mon, 01 Dec 2025 20:11:57 -0800</pubDate><author>yukais@pinapelz.com (Pinapelz)</author> |
