Walk

Saturday Afternoon Walk

Elevation profile

Gain -- Loss --

Distance
--
Moving time
--
Stopped time
--
Total time
--
Avg moving speed
--
Max speed
--
Elevation gain
--
Elevation loss
--

Over the weekened Azure and I went for a walk around the neighborhood and saw some really fun and cute houses. It was nice to get outside despite it being cold! The sun felt increidble juxtaposed against the cold air.

Liked

From another site

4 photos This is the year for tech upgrades, I guess. New tiny computer, new customizable keyboard and new smaller external storage. Keyboard with hand on it Keyboard with some keys removed Mini computer Old and new external storage side...

Read more
  1. desk in seated position
    New desk default mode: seated.
  2. desk top with keyboard and mouse
    I love this new setup so much
  3. Desk in standing position
    Wiggle mode: standing

I start a new job tomorrow at Filevine, and I’m more than a little excited. So excited, in fact, that it felt like the perfect excuse to finally upgrade my desk setup 📸

IKEA came through with the GLADHÖJDEN sit-stand desk, and Amazon handled the rest with a new keyboard, mouse, and monitor arm.

The last piece left is a chair. Something comfortable is next on the list, I just have not landed on the right one yet.

Replying to

I used to use Hugo, and did for a long time. But sending webmentions was always tricky! Eventually I broke down and just built my own blogging platform lol.

Replying to

Heck yeah! Looks like a wonderful time.

  1. screenshot of theme settings and color picker
    The color glow is such a vibe

I'm implementing custom theme settings! This is something I had the idea for late one night last week. You define the settings you want in your theme's theme.json like this:

{
  ...
  "settings": {
    "fields": {
      "accent_color": {
        "type": "color",
        "label": "Accent color",
        "default": "#cc3f2e"
      },
      "background_color": {
        "type": "color",
        "label": "Background color",
        "default": "#f8f4ef"
      },
      "max_width": {
        "type": "string",
        "label": "Layout max width",
        "default": "72rem",
        "help": "Used for the main content column."
      }
    },
    "groups": [
      {
        "label": "Colors",
        "fields": ["accent_color", "background_color"]
      },
      {
        "label": "Layout",
        "fields": ["max_width"]
      }
    ]
  }
}

The result is the UI you see above! Then they can be used your theme like this:

<style>
    :root {
        --accent: {{ theme.settings.accent_color|default:"#cc3f2e" }};
        --bg: {{ theme.settings.background_color|default:"#f8f4ef" }};
    }
</style>

This seems like a small feature but it gives users and theme devs a ton of flexibility! I'm exicted to someday see how people use it.

Replying to

From another site

Lately there’s been a brewing culture war in the software community regarding the usage of LLM-based coding tools (ChatGPT, Claude, Gemini, etc.), and I’m seeing a lot of hardline discourse on both sides, but especially from the anti-AI ...

Read more

I have a hard time finding fault with anyone using AI tools in their jobs. With the economy the way it is, I won't begrudge anyone who feel they need to use them to stay ahead of the curve.