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)

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

Day 2: flowers #mbapr

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

π 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.


Caught up with these two today.

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. π

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.