Just finished adding webmentions to my blog and now I'm already neck deep into building a comments system using Akismet and CloudFlare Turnstile to fight spam. Can't beat a cozy coding Sunday!
Crosing all my fingers and toes that this works! I'm really wanting to be able to participate in these communities while keeping my blog as the source of truth for my content.
(if you're wondering what I'm doing, I'm using Brid.gy to take this from my blog and share here)
Hike
Hike 3/40: Paradise rim to Turtle Wall
Elevation profile
Gain -- Loss --
Elevation data unavailable.
- Distance
- --
- Moving time
- --
- Stopped time
- --
- Total time
- --
- Avg moving speed
- --
- Max speed
- --
- Elevation gain
- --
- Elevation loss
- --
Todayโs hike was more business than pleasure lol. I only had a few minutes of stopped time because some days you just need to get the miles in and grid it out.
POV: it's 2016 and I don't have a beard yet.
Ice cream date night in the car with my love Azure
Walk
Saturday Afternoon Walk
Elevation profile
Gain -- Loss --
Elevation data unavailable.
- 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.
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.
And just like that, one bug fixed, one test case created, and we have the 100th unit test for the software powering this blog ๐
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.
Azure and I bought this bookshelf wayyyyy back in December, but couldn't put it up until the Yule tree went away. We did that last weekend but finally had the energy to assemble the BILLY tonight.
It went together much easier than I expected, even for IKEA furniture. And I love how it came together!