In this world of micro-services and Kubernetes, it was nice to be working on a system built as a monolith running in a plain old EC2 instance. But recently, during load testing, the service we’ve been working on as been showing signs of stress β€” timing out, maxing out the CPU β€” and it’s become clear that scaling up has taken us only so far. So now might be time to rearchitect this into micro-services and move it into something like Kubernetes. This was probably always going to happen. I’m just glad that it’s happening now, rather than before it was necessary.

I’ve been spending so much time on this tool to generate a report I’ve been asked to produce, and it’s super overdue. The funny thing is, if I delay one more week, the report would be trivial to produce, and the tool will become unnecessary (the tool’s almost finished too).

Listening to this part of HV got me wondering if the secret to punctual trains is just a whole lot of them. You’re less likely to do something to delay a train β€” like hold the doors open β€” if you know the next one’s only a few minutes away, and will arrive on time. One builds on the other.

Okay, so apparently I held out for exactly 1 hour and 15 minutes, as I’ve just opened a Bluesky account1. The reason is that some old Twitter accounts have moved over there instead of Mastodon. I get a lot of enjoyment from those accounts and it’s good to see them still posting.

I do wonder where they moved their old Twitter archive. A tweet of theirs I linked to as a shortcode broke this blog for a time when they deactivated their Twitter account. I do hope they either POSSE or PESOS with a domain they control so I can fix it (they’re so close: they’re using a domain for their handle, all they need to do is setup a website).


  1. All posts on Bluesky and Mastodon go through here first so you don’t need to follow me there if you follow me anywhere else. ↩︎

Wondering if I should open a Bluesky account. Do I need another service to look at every day? Am I desparate enough for β€œmoar reederz” to set up another POSSE channel? It’s tempting. Will hold off for now, but who knows how long I’ll be able to maintain my willpower.

Someone at work found this blog. Apparently they found a link to it on LinkedIn. Probably should get that fixed. 😜

(Hi, K.K. πŸ‘‹)

Behind the MAS.

Large letters TMAS mounted on a bridge structure appear reversed against a cloudy sky backdrop.

I was not expecting tense to be a stumbling block with writing design proposals that’ll eventually become documentation. I’ve been catching myself writing in the future tense β€” “this service will do this” β€” instead of the present tense β€” “this service does this.” This is probably a habit I formed while writing design proposals to be reviewed, only to leave them be forgotten once they’re approved.

I’m trying to avoid that here, and although the use of present tense instead of future tense might seem like a small thing, I think it’s a very important one. Once the design is approved and realised, what will be will eventually become what is, and I want to make sure the reader gets that, and keeps it up to that when the design changes. Using the wrong tense here would just signal to the reader that the document is just a proposal and is no longer relevant. And when that happens, it’ll never get looked at again.

πŸ”— How to deactivate your X account

Finally got around to deleting my Twitter account. I’ve seen others do likewise, yet many say they’re “deleting” their account and the only option in Twitter’s Settings is “deactivate”. So I was unsure if they were one and the same. Looks like they are.

So, walking from the station to the only cafe that’s open to pick up a coffee before my train arrives is about a 5 minute round trip. This assumes the barista is ready and there are no customers in front. So, let’s say it’s safe to go when the earlier train has just left the station.

It’s such a romantic idea to think that they’ll always be a customer or product manager available to me to answer all my business rules questions. Would love that to actually be the case. πŸ˜•β‰οΈ

I’ll never understand Go developers who insist on using pointers to represent a lack of something, where a zero value would work just as well. Better even, as you wouldn’t need to dereference things or worry about nil-pointer panics. Remember, don’t fear the zero value.

It only just occurred to me that I can turn off “Use ⌘+Scroll to Zoom Page” in Vivaldi to compensate for the Magic Mouse’s incessant need to scroll while I’m trying to Cmd+Click a link.

Auto-generated description: Options for adjusting webpage zoom settings, including a slider and a checkbox for using keyboard shortcuts, are displayed.

I still dislike the mouse, but hopefully with this off, the urge to throw it out the window will be diminished.

Cropping A "Horizontal" PocketCast Clip To An Actual Horizontal Video

Finally fixed the issue I was having with my ffmpeg incantation to crop a PocketCast clip. When I was uploading the clip to Micro.blog, the video wasn’t showing up. The audio was fine, but all I got for the visuals was a blank void1.

For those that are unaware, clips from PocketCast are always generated as vertical videos. You can change how the artwork is presented between vertical, horizontal, or square; but that doesn’t change the dimensions of the video itself. It just centers it in a vertical video geared towards TikTok, or whatever the equivalent clones are.

This, I did not care for. So I wanted to find a way to crop the videos to dimensions I find more reasonable (read: horizontal).

Here’s the ffmpeg command I’m using to do so. This takes a video of the “horizontal” PocketCast clip type and basically does a crop at the centre to produce a video with the 16:9 aspect ratio. This post shows how the cropped video turns out.

ffmpeg -i <in-file> \
  -vf "crop=iw:iw*9/16:(iw-ow)/2:(ih-oh)/2, scale=640:360" \
  -vcodec libx264 -c:a copy <out-file>

Anyway, back to the issue I was having. I suspect the cause was that the crop was producing a video with an uneven width. When I upload the cropped video to Micro.blog, I’ve saw in the logs that Micro.blog was downscaling video to a height of 360. This was using a version of the command that didn’t have the scale filter, and the original clip was 1920 x 1080. If you downscale it while maintaining the original 15:9 aspect ratio, the new dimensions should be 640 x 360. But for some reason, the actual width of the cropped video was 639 instead.

I’m not sure if this was the actual problem. I had no trouble playing the odd-width video in QuickTime. The only hint I had that this might be a problem was when I tried downscaling in ffmpeg myself, and ffmpeg threw up an error complaining that the width was not divisible by two. After forcing the video size to 640 x 360, and uploading it to Micro.blog, the video started coming through again. So there might be something there.

Anyway, it’s working now. And with everything involving ffmpeg, once you get something working, you never touch it again. πŸ˜„


  1. Not that there’s much to see. It’s just the podcast artwork. Not even a rendered scrubber. ↩︎

πŸ”— How I build things

This might be a good one for me to return to from time to time.

Also, hat tip to the β€œpostrolls” which led me to the previously linked item. I’ve been enjoying these two over the last few days:

I’ll post any more that I find. πŸ”—

Love this post by Mike Grindle, especially this line:

To me, it shows what happens when you regularly write, publish, share and hyperlink into the void that is the web: the void speaks back.

Similar things happen to me from time to time, and when I find it, it’s always a bit of a thrill. I don’t expect the ripples that are the posts on this site to reflect back, but it’s wonderful when they do.

Removing personal identifying information from logs is a laudable goal, but it does make troubleshooting issues in prod rather difficult.

Auto-generated description: A medieval-style drawing of a cat with humorous text in an old-fashioned font. Meme text: Thee shall nev'r knoweth who is't didst the thing! In modern day English: you will never know who did that thing.
Source of meme image

A recurring element of my dreams is an unmaintained railway line. The infrastructure is falling apart, yet it’s still an important connection and trains occasionally do use it. I usually approach it at level crossings and in past dreams I’ve not once saw a train. Last night, I almost got hit by one.

If anyone’s interested in the history of Melbourne transport, I can recommend this YouTube channel. He has a few videos on the “forgotten freeways” β€” freeways planned in the 1960’s that never got built β€” that I found quite interesting. πŸ“Ί