From @jarrod:

You’re likely familiar with the Navy SEAL mantra of β€œSlow is smooth, and smooth is fast.” I propose one more line: β€œAnd fast is fun.”

We’re going through a crunch at the moment, taking out a fair bit of tech debt in what we’re building. And it occurred to me that going slow might be slow now, but it’ll allow you to go fast later. On the other hand, you can go fast now, but it’ll slow you down in the long run. That tech debt will come due eventually.

So I guess the choice is, when do you want to go slow? Now or later?

I should stop trying to multitask. What happens is that I kick off something that takes some time, and instead of just wait for it, I start work on something else only to forget the original task I started first. I should just wait the few minutes it takes for that task to finish.

πŸ“Ί Andor: Series 1 (2022)

Quick review of Andor: Series 1 (2022), created by Tony Gilroy. Thoroughly enjoyed it. I'm generally a fan of Star Wars but the level of story telling that went into this made it so much better. It's not perfect β€” Andor's arc felt a little fragmented (he was sent to prison for… reasons? That had nothing to do with the garrison?) β€” but it didn't detract from the whole. Other than the plot, the acting, casting, scoring, etc. were all excellent. Definitely recommend. Rated: great

Release version 1.1.1 of Sidebar for Tiny Theme. You’ll need to upgrade Tiny Theme to version 2.7.4 or later to use it, but the good news is that it’s no longer replacing any templates of Tiny Theme itself. It’s all now working with hooks, which is a much nicer way of doing things (thanks, @mtt).

Day 3: card #mbapr

A Thank You card with coloured balloons printed on the front, on a wooden table.

Day 2: flowers #mbapr

Flowers in a vase on a table in an old fashioned dining car.

There’s a lot of low-hanging fruit still to be picked in Numbers in MacOS. The basic stuff, like opening two worksheets of the same file side-by-side, or in different windows. Might be that code editors with tabs spoiled me with capability, but I can see this generally being helpful for others.

Enjoying the latest ShopTalk about home cooked apps. What an amazing term for it: perfect. Also good to know that I’m not alone in doing this. πŸŽ™οΈ

Day 1: toy #mbapr

A model train set.

Canberra Railway Museum

Went to the Canberra Railway Museum this morning. Quite a wide variety of locomotives and carriages being restored, with many of them quite accessible to guests, including the cabin. Here’s a selection of the more interesting sites.

πŸ”— Insanity in the Air: The crash of Pakistan International Airlines flight 8303

A facinating post. One of those posts where you know the writer knows what they’re talking about, and has clearly done a lot of research for the piece. Will definitely take a look at their other posts.

Picnic train, now boarding. πŸš‚

A few shots around South-East Canberra with the deciduous trees starting to turn.

Popula trees starting to turn yellow Path shaded by oak trees

Caught up with these two today.

Two cockatiels perched on a shoulder.

Currently in Ron Finemore territory (namely the Hume Fwy near Gundagai). πŸš›

On Post Headers

My answer to @mandaris question:

How many of you are using headers in your blogging? Are you using anything that denotes different sections?

I generally don’t use headers, unless the post is so long it needs them to break it up a little. When I do, I tend to start with H2, then step down to H3, H4, etc.

I’d love to start with H1, but most themes I encounter, including those from software like Confluence, style H1 to be almost the same size as the page title. This kills me as the page title should be separate from any H1s in the body, and styled differently enough that there’s no mistaking what level the header’s on.

But, c’est la vie.

Was running into issues trying to buy a hamper from an online store in the UK. Turns out it was because one of the hamper items was alcoholic. I guess they’re not interested in dealing with the customs, and the associated headaches, in getting that over here.

Sorting And Go Slices

Word of caution for anyone passing Go slices to a function which will sort them. Doing so as is will modify the original slice. If you were to write this, for example:

package main

import (
	"fmt"
	"sort"
)

func printSorted(ys []int) {
	sort.Slice(ys, func(i, j int) bool { return ys[i] < ys[j] })
	fmt.Println(ys)
}

func main() {
	xs := []int{3, 1, 2}
	printSorted(xs)
	fmt.Println(xs)
}

You will find, when you run it, that both xs and ys will be sorted:

[1,2,3]
[1,2,3]

If this is not desired, the remedy would be make a copy of the slice prior to sorting it:

func printSorted(ys []int) {
	ysDup := make([]int, len(ys))
	copy(ysDup, ys)
	sort.Slice(ysDup, func(i, j int) bool { return ys[i] < ys[j] })
	fmt.Println(ysDup)
}

This make sense when you consider that the elements of a slice are more or less stored in a normal array. Slices add things like start and end items, which are stored as values within the slice struct, but the array itself is just a normal reference and it is this that sort.Slice will modify.

On the face of it, this is a pretty trivial thing to find out. But it’s worth noting here just so that I don’t have to remember it again.

Ok, I may have gone slightly overboard tonight, but so annoyed was I with Google TV’s recommendation that I decided to install a 3rd-party launcher. And wow! I should’ve done this way sooner. It’s like a breath of fresh air. 😌

Television showing the home screen of Projectivity Launcher

This Reddit thread has all the details. I’m using Projectivity Launcher.

Wish there was a way on Google TV to mark a recommendation as “I never want to see something like this recommended to me again.” Yes, I felt that strongly about it (strong enough to type out a recommendation using the remote). And no, it wasn’t about news or politics.