A few months ago I decided to try a different approach with working on personal projects. Instead of having many projects running in parallel β where I duck in and work on each at a time β I decided to cut back and focus on only one. I thought I’d struggle with this: that I would get bored with it and would want to move to something different. But I think I ended up getting more satisfaction out of seeing something finished and usable, something that I can actually share with others. It’s a little embarrassing sharing something that is half-baked.
So I think I’ll stick to this mode of working. The question now is when to put the current project aside and try something different. I figured I’d work on something new while I was in Canberra, but I found this harder to do than I thought. The current project has just got a lot more inertia at the moment.
Maybe I’ll try again in the summer.
State election coming up in a couple of weeks. My parents, who have recently signed up as paid members of the Labor party, has put up a yard sign for the Labor candidate, who is the current minster for their district. Best of luck to her re-election. #mbnov

One thing is certain: humans are fallible. They forget, or do not follow through sometimes. So if you find yourself at a crossing with someone else, don’t feel bad about pushing the button yourself. #mbnov

Half-implemented micro-services are the worst. It can really slow down your development velocity to the point where you feel like you’re walking through syrup. You’ve got several teams making changes to systems they’re responsible for. In theory these services are independent of each other, and the work is organised in such a way that they do not require any work on behalf of those using them. But unless you go all Amazon, and enforce impenetrable boundaries between the various systems, this never works out in practice.
Eventually you find yourself needing to do some manual thing just to get your development environment stable again so you can get your stuff done. An hour or two goes by and when it comes time to start work on the thing you actually wanted to do, you’ve forgotten what it was or got distracted by Slack or something.
Then you complain about it on your blog. π
The consensus seems to be that it’s preening time. #mbnov

For today’s Microblogvember post, I would like to make a shout-out to the blog of Jodie Cook. I find pretty much every one of her posts’ insightful in some way, even if the subject matter does not directly apply to me. Worth a follow. #mbnov
Since finding out that echo was todayβs Microblogvember word, Pink Floyd Echoes has been playing in my head all afternoon. Itβs one of my favourite tracks from them. #mbnov
Oof, I would have though that after writing here for a couple of years, Iβd find the Microblogvember challange easier. I guess experience is no excemption here. #mbnov
Hackathon today. Taking a little break and looking at admiration on how much we managed to achieve in a few hours, especially considering that I’m working remotely from the other two team members. #mbnov
On my way to the airport to catch a flight, while wondering that if I just went for a Nav rating when I had my recreational pilot license, and kept the hours up, I wouldn’t be too worried about keeping to a strict schedule. #mbnov
They’re running electric busses on the route I take for work. I’m traveling on one now. Not the same as travelling on a tram; rails are smoother than the bumpy roads. But acceleration feels smoother than diesel, and it’s so much quieter. Can recommend. π

Cape Shank, Vic. Taken today. A feast for the eyes and ears (and maybe a tasting for the other senses as well). #mbnov

π github.com/charmbracelet/vhs
This little tool is awesome. It allows you to easily make GIFs of a command line session from a text-based DSL. I tried it on the full screen TUI app I’m working on and it worked flawlessly.
Now wondering if I could use it for automated testing. π€
Pro-tip: add challenges.micro.blog to your feed reader to get the daily challenge word for Microblogvember delivered to you through the magic of RSS (I keep forgetting that you can do that).
Urge to buy a Nintendo Switch: 4/10
Itβs holding steady at the moment but itβs been rising slowly over the last couple of months. I figure it wonβt be too long before it starts rising again. #mbnov
Day Trip: Macedon And Trentham
I had the pleasure of taking the day off today and going for a few walks around Macedon and Trentham. Being someone that’s really into keeping with a routine, I try to do these walks at least once a year. It’s been somewhat delayed this year, due to work commitments, but with the public holiday tomorrow, I thought I was a perfect time to get outside and do them before summer rolls around.
Below are some photos of each of the walk.
Macedon
The first walk was along the borders of the Macedon Regional Park, following a self-plotted course, more-or-less, along the Bendigo railway line. It’s a little difficult at times, maybe bordering on dangerous (and possibly not super legal either), so I’d probably wouldn’t recommend this. But since it follows the rail line pretty much the entire time, it’s a good opportunity to catch up on some train spotting.
I realised today that it’s been 10 years since I first walk this particular trail. I’m wondering if it might be time to retire it. As nice as it is, there are certain aspects of it that are getting a little tiresome. Plus it’s always boggy, even during the height of summer, meaning that you’ll usually get your socks wet and your pants dirty when you walk it. Even so, walking it is always a pleasure.
Trentham
Following a brief lunch in Kynteon, it was time for the second walk: The Domino Trail in Trentham. This is a rail trail that travels through some really nice forest. Last time I did this, more than a year ago, the path was closed as a severe storm brought down a number of trees and I was unable to do the entire path. Fortunately the trees were cleared and the path reopened.
I caught the rain a few times and much of the track was quite boggy given the decent amount of rain we’ve received, but overall, it was a nice day out.
Trying to build an old Android app that has fallen out of date. Doing this always brings up some weird errors.
The version of Gradle being used was woefully out of date, so I starting upgrading it to the latest minor version used by the project (it was 3.1.0 to 3.2.x). This required changes to the distributionUrl
in gradle-wrapper.properties. After making these changes, I was getting 502 errors when Android Studio was trying to get the binaries from jcenter.bintray.com. I feared that the version of Gradle I was hoping to use was so out of date the binaries may no longer be available: it wouldn’t be the first time Java binaries disappeared as various sites changed URLs or shutdown. Fortunately the problem was transitory, and I managed to get a 3.2.x version of Gradle downloaded.
The various squiggly lines in the .gradle files disappeared, but I was still unable to build the app. Attempting to do so brought up the following error:
Unsupported class file major version 55
This was weird. The only version of Java I had installed was Java 11, and I confirmed that Gradle was using the specific install by checking it in Preferences β Build, Execution, Deployment β Build Tools β Gradle. So I couldn’t see why there would be a major version conflict. Was Gradle using a bundled version of Java 8 somewhere to build the app?
What I think resolved this, along with upgrading Gradle, the SDK and the build tools, was explicitly setting the source and target capability of the app to the same version of Java I was using. From within “build.gradle”, I added the following:
compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
Might be that the version of Gradle I was using was so old it defaulted to building Java 1.8 byte code if these weren’t specified.
This error disappeared and the app was stating to build. But the next weird thing I was then getting was that the compiler was not seeing any of the Android SDK classes, like android.app.ListActivity
.
What seemed to work here was to upgrade Gradle all the way to the latest version (7.3.3), clearing the cache used by Android Studio, and making sure this line was added to the app module dependencies:
implementation fileTree(dir: 'libs', include: ['*.jar'])
This finally got the build working again, and I was able to run the app on my phone.
I don’t know which of these actions solved the actual problem. It’s working now so I rather not investigate further. The good news is I didn’t need to change anything about the app itself. All the changes were around the manifest and Gradle build files. Those Android devs really do a great job maintaining backwards compatibility.
Opinionated Tips for New Micro Bloggers Coming From Twitter
or, How I Use Micro.blog
To all new-comers from Twitter, welcome to Micro.blog!
No doubt you’ve received the welcome message from Jean with links on how Micro.blog is different from Twitter, but you’re probably still wondering how to get the most out of Micro.blog. And while I’m not claiming to have all the answers, I’ve put together a few tips for how I get value from writing here.
First, the thing that took me a while to appreciate is that Micro.blog’s not so much a social media platform, at least not in the traditional sense. I mean, it certainly can be described as one, and if your goal is to connect with others online, it works just as well as any other. But in essence, it’s closer to a blogging platform, albeit one with social aspects tied to it. When you write a post, not only would it appear in the timeline of those that follow you, it will also appear on your own blog. So an option before you is to lean into this. Treat your blog as your own space on the web. Get a domain name and share it with others. Style your blog as much or as little as you want. Take a look at the plugins to see what you can add to your site. You don’t have to do this right away, but it’s well worth considering if you hope to get the most out of writing here.
Second, write naturally. You’re not feeding an algorithm here. There’s nothing like trending topics or recommendations that takes what you write and throws it around the network. Instead, youβll get something better: real humans reading and replying to your post. So write for humans. If a post needs to be longer than 280 characters, then it can be: no need for threads here. Also, adding hashes in front of words does nothing other than make what you write harder for others to read.
Finally, write for yourself. The cheap endorphin rush you use to get from likes and retweets will never come, so youβll need another way to get pleasure from writing here. What works for me is to write for myself. If I write something, I do so with the expectation that no-one else will see it. Of course, you’re writing on the open web so others can certainly see it: try not to be too much of a jerk. But even if no-one else does, as long as I get something out of what I write, that’s all I ever need.
Of course, how and why you use Micro.blog is ultimately up to you. After all, you are the one paying $5.00 to use the service (and yes, in this case, you are the customer here, not the product). So make sure you use it in a way that works for you. And it may take a while before you find the utility you’re looking for. I’d advise patience here. You will not find the short-term rush you’ll get from Twitter. Before you is a slower path. But it’s one that can lead you towards a much better and fulfilling experience of writing online.
Happy blogging.
Rail work beginning in earnest. A large work train carrying ballast and track sections has pulled in:

They had to close the road and pedestrian level crossing. I thought it was because they were doing work on them, but it’s probably because they’re blocked by this train:

Setting up a GitLab instance in Linode. Got to this point in the instructions:

Oh, the command to get the password is missing. Well, I guess I’ll need to find it myself. π
EDIT: Turns out I didn’t need to. I just reset the root password to something else.