<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>liquidx</title>
    <link>https://liquidx.net</link>
    <description>Alastair Tse</description>
    <atom:link href="https://liquidx.net/feed" rel="self" type="application/rss+xml" />
    
      <item>
        <title>Google</title>
        <link>https://liquidx.net/posts/2026/google</link>
        <guid isPermaLink="true">https://liquidx.net/posts/2026/google</guid>
        <pubDate>Wed, 08 Apr 2026 00:00:00 GMT</pubDate>
        <description><![CDATA[<p><img src="https://content.liquidx.net/media/posts/google_badge.jpg" alt="google_badge.jpg"></p>
<p>After 6863 days, yesterday was my final day at Google. Two months shy of 19 years.</p>
<p>Grateful for all the opportunities. The opportunity to travel the world, to work on the first iPhone app, to bring people together, to work with wonderful people, to redesign Google, to work on my favourite products and to eat all the free food.</p>
<p>There's no next thing, I'm retiring to spend time completing my side quests.</p>]]></description>
      </item>
      <item>
        <title>Ode to Maintenance</title>
        <link>https://liquidx.net/posts/2026/ode-to-maintenance</link>
        <guid isPermaLink="true">https://liquidx.net/posts/2026/ode-to-maintenance</guid>
        <pubDate>Sat, 04 Apr 2026 00:00:00 GMT</pubDate>
        <description><![CDATA[<p>At Google, "Maintenance Mode" is euphemism for "Abandoned".</p>
<p>When I think about how western and japanese culture differs, I think about this contrast. In Tokyo, you rarely see a pothole. Contrast this with NYC, where nearly every street corner there's a pothole, some big enough to be ankle high.</p>
<p>Why?</p>]]></description>
      </item>
      <item>
        <title>My Anti-Pattern</title>
        <link>https://liquidx.net/posts/2026/antipattern</link>
        <guid isPermaLink="true">https://liquidx.net/posts/2026/antipattern</guid>
        <pubDate>Mon, 09 Mar 2026 00:00:00 GMT</pubDate>
        <description><![CDATA[<p>I have a confession to make as a software engineer for 19 years.</p>
<p>I am unable to do test driven development. I am unable to write a complete and perfect design doc and implement to spec.</p>
<p>I can only write code incrementally, breakdown the problem. Work on the next thing, test it, then do the next thing. Nearly none of my successful projects involve a careful plan.</p>
<p>Hence, whenever I read things about using Claude code to do planning and produce a spec. I cringe. That's not how my mind works and that's not how I use coding agents.</p>
<p>I simply have a paragraph of thoughts of what I want the thing to be, and then go back and forth with Claude code or Antigravity about what the output is. I can't specify the full spec, just things that have to do with the detailed implementation. So maybe this is depth first thinking rather than breadth first thinking.</p>]]></description>
      </item>
      <item>
        <title>LLM Navigator</title>
        <link>https://liquidx.net/posts/2026/llm-navigator</link>
        <guid isPermaLink="true">https://liquidx.net/posts/2026/llm-navigator</guid>
        <pubDate>Wed, 04 Mar 2026 00:00:00 GMT</pubDate>
        <description><![CDATA[<p>Last weekend, I participated in the Mistral AI Worldwide Hackathon. It was one of the best organized hackathons I've been to, but it still ran over time. Nearly no hackathon I've been to so far has ended on time and on schedule.</p>
<p>There were some really fun hacks, but as the host in the Tokyo session noted, the hacks that have the highest chance of winning are usually games or game-like. Two out of the top three hacks were games.</p>]]></description>
      </item>
      <item>
        <title>Snowline and AI</title>
        <link>https://liquidx.net/posts/2026/snowline-ai</link>
        <guid isPermaLink="true">https://liquidx.net/posts/2026/snowline-ai</guid>
        <pubDate>Mon, 02 Mar 2026 00:00:00 GMT</pubDate>
        <description><![CDATA[<p>A few people have asked me whether I use AI to build Snowline.</p>
<p>The answer is YES. But not in the way you think.</p>
<p>For vibe-coding (agentic coding, code completion), I use surpisingly little compared to my other projects. But there are a few things that has sped up things by 10x.</p>
<p>I vibe-coded some image editing and extraction tools (both Imager &#x26; Image Extractor) that lives on aversion.one. This is the kind of thing I hope less-technical and even non-technical people will start to see as a new way of doing work. It's like you could buy a shovel, but what if you could design and make your own shovel that only shovelled exactly how you wanted. I needed to background remove, cope and scale 600+ images, so I made an image editor that did just that. The UI is terrible (an area that is improving rapidly), but to be able to make vibe-code your own macros to make a 5 min job into a 5 sec job, that's a win.</p>
<p>All the real time data that is coming from ski resort websites is all crawled using a two-year old crawling system with Gemini 3.0 Flash (previously 1.5 flash) and taking screenshots of websites. Last year, it took me 30 minutes every day to go through a handful of websites that I couldn't automate to update the snow fall metrics, but this year, it is nearly 98% automated with me double checking the work. It still requires a lot of custom tuning, for instance, I store optional custom prompts for each website because sometimes the AI really doesn't realize that a snowman icon means snow fall.</p>
<p>Another AI usage is with translations -- the site is bilingual, in both Japanese and English, so I've created a specific translation endpoint in the admin interface that I can pipe any text into it and it will return it in the other language. It's helped cover a lot of holes, but I also do know that sometimes it does a terrible job.</p>]]></description>
      </item>
      <item>
        <title>Exploring Terminal Nav on Web</title>
        <link>https://liquidx.net/posts/2026/terminal-nav-web</link>
        <guid isPermaLink="true">https://liquidx.net/posts/2026/terminal-nav-web</guid>
        <pubDate>Thu, 12 Feb 2026 00:00:00 GMT</pubDate>
        <description><![CDATA[<p>I thought it would be fun experiment to build a terminal inside my own website and use it as a navigation UI. And this site is now the result of this after a few hours of trial and error.</p>
<p><img src="https://content.liquidx.net/media/posts/liquidx-net-2026.gif" alt="liquidx-net-2026.gif"></p>
<p>The main principle here is that it should be functional as a website and also (quasi-)functional as a command line but primarily for operating this website. This is based on an earlier <a href="https://aversion.one/of/terminal">Terminal prototype</a> I vibe-coded a few months ago, but then subsequently extracted, and more or less rewrote by hand to fix a bunch of layout behaviors which was really hard to get Claude Code or Gemini/Antigravity or Codex to get right.</p>
<p>The code knows the structure of the website, and converts that into a virtual filesystem that exists in JS. The main commands that were necessary was <code>cd</code> and <code>ls</code>. Each page is a directory (no files), and if a <code>cd</code> command was detected, is does a proper page navigation using SvelteKit's <code>goto()</code>. As a bonus, the output of <code>ls</code> is slightly marked up and instrumented so clicking on the links will emulate typing the command in and navigating.</p>]]></description>
      </item>
      <item>
        <title>Snowline 2026</title>
        <link>https://liquidx.net/posts/2026/snowline-2026</link>
        <guid isPermaLink="true">https://liquidx.net/posts/2026/snowline-2026</guid>
        <pubDate>Sun, 08 Feb 2026 00:00:00 GMT</pubDate>
        <description><![CDATA[<p><a href="https://snowline.jp/">Snowline</a> is a passion project of mine that has been going on for the past three years. The idea was to create a well-designed, data-driven site about every ski resort in Japan.</p>
<p><img src="https://content.liquidx.net/media/posts/snowline-2026-screenshot.png" alt="snowline-2026-screenshot.png"></p>
<p>After moving to Japan and discovering there were resorts apart from <a href="https://snowline.jp/en/location/niseko-united">Niseko</a> and <a href="https://snowline.jp/en/group/hakuba">Hakuba</a>,  I wanted to know more about these slopes. I wanted to go to check them out. Not long later, I stumbled across a magazine that claimed to list all 430 resorts in Japan. I bought that magazine and proceeded to manually write down in a spreadsheet every ski resort there was.</p>
<p><img src="https://content.liquidx.net/media/posts/snowline-sheet.png" alt="snowline-sheet.png"></p>
<p>I wanted to know more. I wanted to know how big it was, how popular it was, how much snow it was getting. So I began to collect this all in the spreadsheet, it grew and grew. Soon it outgrew the spreadsheet and migrated into a database.</p>
<p>The more data was in there, the more data I wanted. It expanded to course maps, it expanded to GPS traces, it expanded to even webcam images. Today, it is a 4GB database with 1.2TB of images/data and code base of 800+ files.</p>
<p>What about that magazine? Every year a new edition of this magazine was released and every year the number of total resorts would go down. This year, the magazine reported that there are now 391 ski resorts remaining in Japan. Snowline does count a few more because of the way we classify what constitutes a resort.</p>
<p><img src="https://content.liquidx.net/media/posts/nippon-gelande-2020-2026.jpg" alt="nippon-gelande-2020-2026.jpg"></p>
<p>I'm building this because I want to use it. If only one person, myself, found it useful, it would of been worth it. The act of building it helped me understand these ski resorts more, find these small ones only a few people know about and plan these weeks long road trips to hit these resorts to fulfil <strong>my goal of riding all the resorts in Japan.</strong></p>]]></description>
      </item>
      <item>
        <title>Coding Agents in 2025</title>
        <link>https://liquidx.net/posts/2025/coding-agents-in-2025</link>
        <guid isPermaLink="true">https://liquidx.net/posts/2025/coding-agents-in-2025</guid>
        <pubDate>Tue, 30 Dec 2025 00:00:00 GMT</pubDate>
        <description><![CDATA[<p>For me, this year is the year of vibe-coding -- or coding agents. I don't really care too much about the precise definition of these things. People I work with are really hung up on the terminology, but basically vibe-coding for me is shorthand for AI assisted coding. The human is involved somewhere between 0-99% of the coding.</p>
<p>I've vibe coded (100%) two Android apps, and I don't really know Kotlin and the Android SDK. I know enough about high level frameworks like Jetpack Compose, but I barely know my way around Gradle, AndroidX and whatever.</p>
<p>I have one app that has a weird DNS resolution bug, but only when it's on mobile networks, not on Wifi. Asking Claude Code to first build me a system to queue the requests I make and do retries on them, then expose them in the UI on the app after a few retries so I can debug what is going on, or at least retry them when I get back on Wifi. It did it in two-shots. One was jme under-specifying what I wanted and second was to fill in the gaps and give it UX advice.</p>
<p>Switching over to a NodeJS app, this one I had wrote most of it but needed it to rewrite a bit of text parsing code, so just chucked it over to Antigravity and it wrote a comprehensive test suite, allowed me to give it certain failure cases and within 2 minutes it had updated the code, improved the tests and created the PR. Amazing.</p>]]></description>
      </item>
      <item>
        <title>Gemini Flash vs Flash Lite</title>
        <link>https://liquidx.net/posts/2025/flash-vs-flash-lite</link>
        <guid isPermaLink="true">https://liquidx.net/posts/2025/flash-vs-flash-lite</guid>
        <pubDate>Tue, 30 Dec 2025 00:00:00 GMT</pubDate>
        <description><![CDATA[<p>I've been using Gemini 1.5, 2 and 2.5 Flash and Flash Lite variants for Snowline, my Japan ski resort crawling project. One part of the project involves going off an doing a fairly constrained webcrawl of hundreds of sites per day and to extract some key information off those sites.</p>
<p>In the first phase, the task was to extract the current recorded snow depth and the new snow fall. Essentially parsing the page for two numbers. gemini-1.5-flash, gemini-2-flash-lite and gemini-2.5-flash-lite all performed pretty admirably with this task. The different versions improved and got fewer and fewer mistakes (going from many 70% to 90%). Over the year, without me doing anything, I had to correct fewer mistakes.</p>
<p>In the second phase, the task became looking at the page and looking for indication to know whether the lifts are opened or closed. This really stumped gemini-2.5-flash-lite. It could not figure it out as easily as the snow depths. As soon as I switched to gemini-2.5-flash, with a few prompt improvements, it consistently was able to extract it.</p>
<p>It is quite obvious the capability jump when a larger model is used. It is also obvious in cost between <code>flash</code> and <code>flash-lite</code>, nearly a 20x cost increase, with my inference cost per day going from ¥22 to ¥600.</p>]]></description>
      </item>
      <item>
        <title>Ricoh GR App and VPN</title>
        <link>https://liquidx.net/posts/2025/ricoh-gr-app-and-vpn</link>
        <guid isPermaLink="true">https://liquidx.net/posts/2025/ricoh-gr-app-and-vpn</guid>
        <pubDate>Tue, 16 Dec 2025 00:00:00 GMT</pubDate>
        <description><![CDATA[<p><a href="https://www.johnmaguire.me/blog/camera-connection-issues-with-android-vpns/">Camera App Connection Issues and VPNs on Android Phones - John Maguire</a></p>
<p>I've been using the Ricoh GRIII for the last month and having a lot of pleasure shooting with it. The GR World app and the Image Sync app have a 1-2 star review average on both Play Store and App Store. Sure enough, the connection is flakey and constantly fails. HOWEVER, after some searching, it turns out Tailscale on my phone was messing with it. Once I turn off Tailscale (VPN), it had no problems connecting to my Ricoh.</p>]]></description>
      </item>
      <item>
        <title>Github Packages 403</title>
        <link>https://liquidx.net/posts/2025/github-packages-403</link>
        <guid isPermaLink="true">https://liquidx.net/posts/2025/github-packages-403</guid>
        <pubDate>Mon, 15 Dec 2025 00:00:00 GMT</pubDate>
        <description><![CDATA[<p>Today I learned that Github Packages is not free for private packages. And I learnt it by getting a cryptic <em>npm</em> 403 error when accessing <code>https://npm.pkg.github.com</code> from <em>npm</em>.</p>
<p>After about 1GB of transfers for Github Packages, it will "run out of quota" and you'll get a 403. I thought it was an authentication issue, so I racked my brains on why the Github Access Token was not working. But an authentication error will give you a 401.</p>]]></description>
      </item>
      <item>
        <title>Getting the work you love</title>
        <link>https://liquidx.net/posts/2024/getting-the-work-you-love</link>
        <guid isPermaLink="true">https://liquidx.net/posts/2024/getting-the-work-you-love</guid>
        <pubDate>Wed, 18 Sep 2024 00:00:00 GMT</pubDate>
        <description><![CDATA[<p>This week, multiple people told me, "you have the best job."  I agree, sort of.</p>
<p>In my career, I can only truly say that I was doing what I loved in two periods. The first was being Google's first iOS app developer, back in 2008. The second is now, building and leading a prototyping team specializing in LLM and ML.</p>
<p>Both projects where things that I was secretly doing before, but I had known that those were the things I wanted to do. I'd spend off-time working on it, sometimes sneaking these into my work.  Both things I had been doing without knowing what would happen.</p>
<p>That's pretty much it. Figure out what are love, get good at doing it, form an opinion on how to do it as good as you can, as fast as you can and if you're lucky, it'll become a thing people want.</p>
<p>There are many things I've tried doing on the side that have lead to nowhere, but consistently, the things that break out for me are the ones that I believed I would do even if I wasn't getting paid to do.</p>]]></description>
      </item>
      <item>
        <title>Kyoto Places</title>
        <link>https://liquidx.net/posts/2024/kyoto-places</link>
        <guid isPermaLink="true">https://liquidx.net/posts/2024/kyoto-places</guid>
        <pubDate>Wed, 28 Aug 2024 00:00:00 GMT</pubDate>
        <description><![CDATA[<p>We saw [[Leslie Yau]] and [[Joyce Liu]]. Travelled to Kyoto primarily to observe their [[Shinto Wedding]]</p>
<hr>
<p>[[Warabi Mochi]] at [[茶寮翠泉 高辻本店]]. Warabi Mochi is my all-time favorite Japanese snack. It's a transparent slimy version of mochi that is slimy, works best when dipped in roasted soy bean powder. [[Patricia Poon]] took me to this place where they serve it fresh and hot. The Japanese name for this is 出来立てわらび餅. It comes out steaming hot. You get a paddle and chopsticks and have fun eating it. This is super good, I'd go back there again in a heartbeat.</p>
<hr>
<p>[[Ace Hotel Kyoto]] is lovely. A nice twist from the grungy dark [[Ace Hotel New York]] -- ths lobby looks inviting, more like a WeWork than a dance club. Signature [[Stumptown Coffee]] is also in the lobby with a decidedly Japanese feel. They hung an oversized noren at the top of the entrance way of a coffee pot.</p>
<hr>
<p>[[Beams Japan Kyoto]] is a delightful shop. I love orange and design, this had both. They had fun works from designers but also their own quirky design goods.</p>
<hr>
<p>[[Kawai Shrine 河合神社]] is a small shrine that's out of the way in Shimogamo, that triangular tip area in Kyoto. The fun thing is it's a shrine dedicated to beauty, so the wooden prayer blocks you can buy are a face you can decorate. In fact, it makes me think there should be a shrine dedicated to Emojis. Right next to it is a shrine dedicate to Rugby, so this isn't that far off.</p>
<hr>
<p>[[Coffee House Maki]] is a coffee place we went for breakfast because we were too early for the shrine to open! Surprise is that their Breakfast set is REALLY worth getting.</p>
<hr>
<p>[[Ogawa Coffee Nishiki]] was the last cafe we went to. They had an amazing Cafe Mojito which was Mint Sorbet, with lime soda and espresso. The cafe also does a really good sandwich which you can enjoy staring at one of the best bonsai like inner-garden ([[中庭 Inner Garden]])</p>
<hr>
<p>[[Kennin-ji 建仁寺]] hosted a night time art show in the shrine. It was an interesting combination of light-based art with [[Rock Garden]] and procedural art with paintings in the room. We went with [[Leslie Yau]] and [[Joyce Liu]] there.</p>
<p>[[雑太社]] is a shrine in [[Shimogamo]] which oddly is a shrine dedicated to [[Rugby]].</p>
<hr>
<p>Stayed at the [[Hotel Hokke Club]] in Kyoto. It wasn't anything special, but very convenient.</p>]]></description>
      </item>
      <item>
        <title>Cloud Providers</title>
        <link>https://liquidx.net/posts/2023/cloud-providers</link>
        <guid isPermaLink="true">https://liquidx.net/posts/2023/cloud-providers</guid>
        <pubDate>Fri, 03 Nov 2023 00:00:00 GMT</pubDate>
        <description><![CDATA[<p>For many many years, I've mostly stuck with Google Cloud and Firebase as the host for most of my web projects, using AppEngine from the early days to now mostly Firebase Hosting and Cloud Functions.</p>
<p>I have a few personal projects that are quite data intensive and I use Google Cloud Platform for thoes.</p>
<p>However, I've got to the point there things are getting pretty expensive and I'm exploring better DevEx and most cost effective places. After a few days of exploring, I'm still as confused as ever.</p>
<p>I have a few things I want:</p>
<ul>
<li>Ability to host and serve about 2GB worth of images on an HTTPS domain.</li>
<li>Ability to store large amounts of raw data I collect from APIs.</li>
<li>Ability to host web apps relatively cheaply (to nearly free)</li>
<li>Ability to run serverless compute functions with good DevEx</li>
<li>Ability to spin up datastores at a relatively low cost.</li>
<li>Ability to run a suspendible linux machine in the cloud for certain things you need a full machine for.</li>
</ul>
<p>Today, my stack is this:</p>
<ul>
<li>Storage: Google Cloud Storage. It is relatively cheap to store data on hot servers that I can access daily. The tools are fine to use and I'm generally used to them. Though the one thing I cannot do with them is to host buckets on an HTTPS custom domain without paying for a load balancer. (HTTP only is free)</li>
<li>Web App Hosting: Firebase Hosting is my go to webapp hosting. It works great, very affordable, paying for usage rather than subscription per site. I do with they had slightly better cloud function support.</li>
<li>Serverless Compute: Firebase Cloud Functions is what I'm using now. It is a wrapped version of the Google Cloud Functions, except it is much better DevEx. However, because it is Google Cloud Functions underneath, I end up inheriting a lot of issues/limitations that I didn't realize. For instance, I spent a lot of time debugging why one of my projects was consuming $15/month of compute costs only to eventually find out that their cloud functions weren't cleaning up old versions that were pushed, so I was paying for storage of function images that were outdated.</li>
<li>Datastores: Firestore and MongoDB Atlas. Firestore is fine for small projects, but once you get to a certain size, it starts to bog down. I have a Firestore which has too much data in it that it now hangs the Web UI and I can't programmatically remove the data inside because the API calls also hang. So recently I've switched to using MongoDB Atlas that is a hosted version of MongoDB for $9/month. And it's worked flawlessly so far.</li>
<li>VM: Cloud Compute VM. I use this when I first develop a prototype that needs long running processes, like a web crawler or long processing times. I need it to be suspendible so I can shut it down and only turn it on when I need to run that task. I might be better off using Docker instead for this.</li>
</ul>
<p>I'm racking up around $60/month in costs for GCP and then another $9/month for MongoDB. Ideally, I'd want to cost to be around $30/month for everything, which has spurred me to look for alternatives. I'm not even sure this is achievable.</p>
<p>I've started to explore some of the other alternatives like</p>
<ul>
<li>Amazon AWS. So far I only use Amazon DNS for hosting one particular domain that the registry does not provide a DNS server for. It costs me a funny $0.53 for that service (only because DNS is run out of port 53.) I tried setting up an S3 bucket to be served over HTTPS, but that turned out into hours long following of complex instructions to setup the bucket, the load balancer, SSL certificate, Let's Encrypt DNS verification, etc. So in the end, I still don't know whether things are working yet. Their interface is so confusing, it's pretty hostile to a casual developer.</li>
<li>Digital Ocean. I really like their Web UI, it's extremely user friendly. They claim to allow me to use HTTPS for hosting from the cloud bucket, but the pricing structure is $5/month for using their storage service. Their VM options are more expensive and also not suspendable, though the nice thing is that they include a static IP address that you can map to your VMs for free.</li>
<li>Vercel: I'm exploring using their web hosting and cloud functions because they have such good web UI and also DevEx tooling. The ability to do nearly no setup and have deploy triggered from a Github push is so delightful. Firebase Hosting sort of allows you to do this but it requires like 20 steps of setup. I have found Vercel to be quite slow though, often I'll have to wait double the amount of time for something to happen once I click on stuff in their Web UI. I am not in love with their pricing structure, it wants to charge per developer, and at $20/month, it seems a bit steep for not that much value of the free plan.</li>
<li>Netlify: Same as Vercel, the pricing structure is nearly the same, different design but also very developer friendly. It's hard to tell the difference between the two. I think I slightly prefer Netlify because of their speed.</li>
</ul>]]></description>
      </item>
      <item>
        <title>Yamaha Design Lab</title>
        <link>https://liquidx.net/posts/2023/yamaha-design-lab</link>
        <guid isPermaLink="true">https://liquidx.net/posts/2023/yamaha-design-lab</guid>
        <pubDate>Sun, 22 Oct 2023 00:00:00 GMT</pubDate>
        <description><![CDATA[<p>I had never thought about designing musical instruments. But turns out Yamaha has.</p>
<p>As part of the Tokyo Design Art festival, Yamaha put on an exhibit in that very cool AXIS building in Roppongi. It featured a range of music adjacent design pieces.</p>
<ul>
<li>Dining table piano</li>
<li>Smartphone record player</li>
<li>A MIDI keyboard hooked into a set of physical instruments</li>
<li>Violin Speaker</li>
</ul>]]></description>
      </item>
      <item>
        <title>Day 6 Akakura Onsen</title>
        <link>https://liquidx.net/posts/2023/day-6-akakura-onsen</link>
        <guid isPermaLink="true">https://liquidx.net/posts/2023/day-6-akakura-onsen</guid>
        <pubDate>Fri, 10 Mar 2023 00:00:00 GMT</pubDate>
        <description><![CDATA[<p>This was a day of highs and lows.</p>
<p>Staying in Akakura, we had to at least try a day in Akakura, even though it’s not such an interesting mountain. Moreover, there must be a discount our hotel can offer us.</p>
<p>It was complicated.</p>
<p><img src="https://content.liquidx.net/media/posts/cbd8db27-622f-47e5-845a-678ce4a2f1c2_1020x920.webp" alt="cbd8db27-622f-47e5-845a-678ce4a2f1c2_1020x920.webp"></p>
<p>Akakura has two resorts, the Kanko, and the Onsen. If you only do the onsen side, you can get a ticket just for that. And that’s what most of the hotels sell you, discounted tickets for JUST the Onsen side. The Akakura Kanko, Akakan if you will, is owned by the luxurious hotel up at mid mountain. Legend has it that the previous Japanese Emperor stays there for vacations. So no one has a discount except for guest at their fancy hotel. You can get a combined ticket for ¥6000, which isn’t too much, but why pay 100% more for just a few more lifts?</p>
<p>This particular day wasn’t spectacular, and our main event was to see my friend’s kids learn how to snowboard, so really we needed just to stay on the part of their resort they were in. Akakura Onsen it is then.</p>
<hr>
<p>That’s where it started to go down hill. First, on paper, this place has 12 lifts! Twelve is a lot for a Japanese resort. Even Akakan only has 5. However, on the day we were on the mountain, only half the lifts were operating! Times are tough, so let’s give them a pass.</p>
<p><img src="https://content.liquidx.net/media/posts/9d6fbdbb-70eb-47ed-83bb-65cd5ba21c5c_1631x1405.webp" alt="9d6fbdbb-70eb-47ed-83bb-65cd5ba21c5c_1631x1405.webp"></p>
<p>We started on the left side and slowly made our way across to the right. Once we got to the right, we got another punch to the gut. The high speed quad on the right hand side broke down. Our only way to get back to the other side of the mountain. So no way back, apart from the bus.</p>
<hr>
<p>It was a packed powder day, there were some untouched patches here and there where we duly ruined. If you look at the map, it’s mostly green runs. And definitely can confirm, it’s a beginner’s mountain.</p>
<p><img src="https://content.liquidx.net/media/posts/1e2c8069-57b2-4950-93a3-dfd6271293d3_2994x2851.webp" alt="1e2c8069-57b2-4950-93a3-dfd6271293d3_2994x2851.webp"></p>]]></description>
      </item>
      <item>
        <title>Day 5 Suginohara</title>
        <link>https://liquidx.net/posts/2023/day-5-suginohara</link>
        <guid isPermaLink="true">https://liquidx.net/posts/2023/day-5-suginohara</guid>
        <pubDate>Thu, 09 Mar 2023 00:00:00 GMT</pubDate>
        <description><![CDATA[<p>We got more snow in the afternoon after we left, so we though that Sugi would have another powder day. We were still high on the previous day. The weather cleared and we thought, finally some visibility with powder.</p>
<p>The top lifts were open unlike the previous day we were there. We thought the strategy would be to go where others hadn't gone yet. Every year I go to Sugi, every year I regret going to the top runs. They're much steeper, more bumpy than the runs below. Sure enough, every time I go, every time I get disappointed. </p>
<p>In the end we went back down to the Panorama runs and did the trees and the wide open mellow fields of powder. Still lots of powder lines to be had on a blue bird day.</p>
<p><img src="https://content.liquidx.net/media/posts/847e3635-d03f-49b2-9d90-feeb1c160fe8_4080x3072.webp" alt="847e3635-d03f-49b2-9d90-feeb1c160fe8_4080x3072.webp"></p>
<hr>
<p>The other reason I like Suginohara is because not all the restaurants on piste are operated by the resort itself. At the bottom of the high speed lifts is a set of three four restaurants that are independent, my favorite being the <a href="https://goo.gl/maps/NTarAU78bZjup5CS8">St Anton</a>. Along with delicious Japanese pork cutlet and the usual, it features a caramel popcorn machine!</p>
<p><img src="https://content.liquidx.net/media/posts/96f5a12e-7857-465b-a203-7d9d6bddb9a3_4080x3072.webp" alt="96f5a12e-7857-465b-a203-7d9d6bddb9a3_4080x3072.webp"></p>]]></description>
      </item>
      <item>
        <title>Day 4 Suginohara</title>
        <link>https://liquidx.net/posts/2023/day-4-suginohara</link>
        <guid isPermaLink="true">https://liquidx.net/posts/2023/day-4-suginohara</guid>
        <pubDate>Wed, 08 Mar 2023 00:00:00 GMT</pubDate>
        <description><![CDATA[<p>It was January, and a proper Japow day. We're hitting 30cm of fresh powder. Sugi is my go to resort if it's a big powder day. My rule about powder days is longest, fastest, widest. The best place to go is where there are the (1) longest runs, (2) fastest lift and (3) widest area. Longest runs is that you want the runs to be long so you ride the powder as long as possible, fastest lifts so you can fit more runs in and widest area so it doesn't get tracked out so quickly.</p>
<p><img src="https://content.liquidx.net/media/posts/56d993fb-e0d0-4a68-b219-19b65b1cacaf_1242x1616.webp" alt="56d993fb-e0d0-4a68-b219-19b65b1cacaf_1242x1616.webp"></p>
<p>Sugi hits all three in my book. The Panorama and Dynamic courses both end up on the High Speed Quad. Panorama is a super wide run, you can see the run from miles away. It's so wide that it's what I used to recognize as Sugi when I'm spotting ski resorts around Nagano.</p>
<p><img src="https://content.liquidx.net/media/posts/50b8a1b3-e28b-418c-9d4c-931481a6dc54_2890x1469.jpg" alt="50b8a1b3-e28b-418c-9d4c-931481a6dc54_2890x1469.jpg"></p>
<p>It was snowing all day, and every run there were fresh lines to be had, the groomed run was being buried under the snow. So much snow was coming down during the day that we broke for lunch and came back out to nearly fresh lines, even better conditions then at the start of the day. Even though the top lifts were not open, it didn't matter at all.</p>
<p><img src="https://content.liquidx.net/media/posts/be0262d4-da8a-4c0b-8953-f1e044f81d85_3502x1914.jpg" alt="be0262d4-da8a-4c0b-8953-f1e044f81d85_3502x1914.jpg"></p>]]></description>
      </item>
      <item>
        <title>Day 3 Kagura</title>
        <link>https://liquidx.net/posts/2023/day-3-kagura</link>
        <guid isPermaLink="true">https://liquidx.net/posts/2023/day-3-kagura</guid>
        <pubDate>Wed, 01 Mar 2023 00:00:00 GMT</pubDate>
        <description><![CDATA[<p>Recounting my third day at Kagura. There wasn't any new snow, but some lifts and runs that were closed the days before were open so we went searching for some untouched powder!</p>
<p><img src="https://content.liquidx.net/media/posts/a7270072-0cf5-44bb-a7a0-5faedafeefb2_3414x1998.jpg" alt="a7270072-0cf5-44bb-a7a0-5faedafeefb2_3414x1998.jpg"></p>
<p>To be honest, it was a pretty ordinary day, we had a pretty relaxed go around the place, left a little early and was treated to a Hong Kong style Egg Waffle at the based of Mitsumata!</p>
<p><img src="https://content.liquidx.net/media/posts/3ada5d80-e329-4a36-b3b0-1c957a8249b9_3072x4080.jpg" alt="3ada5d80-e329-4a36-b3b0-1c957a8249b9_3072x4080.jpg"></p>]]></description>
      </item>
      <item>
        <title>Day 2 Kagura</title>
        <link>https://liquidx.net/posts/2023/day-2-kagura</link>
        <guid isPermaLink="true">https://liquidx.net/posts/2023/day-2-kagura</guid>
        <pubDate>Tue, 28 Feb 2023 00:00:00 GMT</pubDate>
        <description><![CDATA[<p><img src="https://content.liquidx.net/media/posts/716a5e8d-e283-4528-bba5-bd5c75addb70_960x1280.webp" alt="716a5e8d-e283-4528-bba5-bd5c75addb70_960x1280.webp"></p>
<p>It's a sort-of-powder-day! Hey, not bad for December. It was snowing quite a bit on the mountain the day before, so I was getting excited about getting out early to the lifts. </p>
<p>All my training getting up early at 5am for early morning meetings this year is now paying dividends. Getting to first lifts is easy for me. I went out as early as I could, though I didn't manage to get the first ropeway up. A lot of people showed up ahead of me on the way to the ropeway. The mountain ended up not getting too much new snow overnight though.</p>
<p><img src="https://content.liquidx.net/media/posts/c54becda-506c-4dce-9044-766ac0007127_1392x980.jpg" alt="c54becda-506c-4dce-9044-766ac0007127_1392x980.jpg"></p>
<p>A few areas were still closed off, including what I considered the best area in Kagura, the Kagura Lift 5 that only opens for half a day, on a good day. On windy days they don't even bother. Neither for early season like today. This area is where you can drop through the trees into a huge open bowl that lands you back somewhere within the resort. Alas, it is not running.</p>
<hr>
<p>Instead, I used the opportunity to try to ride the whole mountain. Even though I've been to <a href="https://snowline.jp/en/area/kagura">Kagura</a> a few times, I never managed to ride all the way across from end-to-end. After what seemed like a never ending series of lifts, I managed to get all the way to the far end of Tashiro. At this end there is a dramatically named Dragondola, a gondola that connects Kagura to Naeba. I was disappointed the gondolas were not shaped like a dragon.</p>
<hr>
<p>On the Tashiro side, there were a few powder stashes and we rode around as a large group through the trees, destroying any smooth untouched powder we could find. I'd rate that a powder-ish day.</p>
<p>One of these are my lines:</p>
<p><img src="https://content.liquidx.net/media/posts/c500b15d-0fcf-45d6-9694-5ab5aa7c4075_960x1280.webp" alt="c500b15d-0fcf-45d6-9694-5ab5aa7c4075_960x1280.webp"></p>]]></description>
      </item>
  </channel>
</rss>