You are using an unsupported browser. Please switch to a different browser to get the best experience.
Aaron Fisher - Profile picture

Aaron Fisher

Developer from the UK.

Now playing: Loading...

Maverick Peaks Merlin 2025


Pitsford Water Trail Races 2025


The dumbest time-line

The company encourages those who have been holding out hope for a larger iMac to consider the Studio Display and Mac Studio or Mac Mini, which pair a 27-inch 5K screen with a separate computer, compared to the all-in-one design of the iMac.

The Verge – https://www.theverge.com/2023/11/6/23947196/apple-no-27-inch-apple-silicon-imac

Apple in 2023 makes some questionable decisions but this is top of the list I think. I know so many people (myself included) who have owned a 27″ iMac, it was such a great “bang for the buck” buy for almost its entire run. The decision not to make another one is absolutely mind blowing.

I’m guessing it somewhat falls down to the fact they’ve backed themselves into a corner on price with how expensive everything else in the range has become.


Making a bootable Window 10 install USB on a Mac

I needed to re-install Windows 10 on my PC after an SSD failure, but after reading many tutorials online, the best I could get was booting to the install screen and it getting stuck at 0% then erroring. After many hours of trying, I eventually found the solution to my problem on Superuser. I’ve gone ahead and put all the steps I took to get it working below.

This is an amalgamation of the guide I initially used from here and the answer to issue from here. The answer to my problem ended up being to switch the USB drive from being formatted with a GPT partition table to a MBR partition table.

I’m starting with the assumption that you have an ISO to hand, if not you can download one from Microsoft here.

Step 1 – Identify your external USB drive

Open up terminal and run:

diskutil list

You should see a list of all drives that your Mac can currently see, this will include your internal boot drive so make sure to be careful and choose the correct drive from here on out. Locate your USB drive in the list and make a note of the name, this will be something along the lines of “/dev/disk3” (the number on the end will change for each attached drive).

Step 2 – Format your USB drive

This step took me a long time to get working, but I eventually found the solution via Superuser here.

Run the following in terminal, making sure to add the correct drive identifier from step 1 at the end:

diskutil eraseDisk MS-DOS "WIN10" MBR /dev/id_from_step_1

Step 3 – Mount the Windows 10 ISO

Run the below in terminal, you may need to change the name and folder location here:

hdiutil mount ~/Downloads/Win10_22H2_EnglishInternational_x64v1.iso

Step 4 – Copy the Windows 10 ISO onto your USB drive

This is split into a few different steps as some files are too large for Fat32 formatted USB drives.

First copy everything that will natively fit:

rsync -vha --exclude=sources/install.wim /Volumes/CCCOMA_X64FRE_EN-GB_DV9/* /Volumes/WIN10

Where I’ve got “CCCOMA_X64FRE_EN-GB_DV9”, you may need to change this to whatever your ISO mounted as from step 3

Next, create a new folder on your USB drive:

mkdir /Volumes/WIN10/sources

Now, we’re going to use something called “wimlib” to split the file that’s too large to copy. If you don’t have wimlib installed, run (you’ll need homebrew):

brew install wimlib

Once installed, run:

wimlib-imagex split /Volumes/CCCOMA_X64FRE_EN-GB_DV9/sources/install.wim /Volumes/WIN10/sources/install.swm 3800

Same as before, where I’ve got “CCCOMA_X64FRE_EN-GB_DV9”, you may need to change this to whatever your ISO mounted as from step 3.

Step 5 – Boot from the USB on your PC

That should be everything, you should now have a working USB install disk that you can boot from.


Handy tool for mass editing Strava activities

Strava provides a way of mass editing some of your previous activities settings (e.g. privacy) but doesn’t provide a way of filtering which ones you want to edit. In my case I wanted to make a privacy change to every walk I’ve ever done, but leave bike rides and runs as they were. I stumbled across this which has done the job perfectly.

On your “My Activities” page, if you filter the sport before running this script in the browsers developer tools, it should only make changes to activities from that specific sport.

function bulkEdit(privacySetting = 'everyone') {
  for (editButton of document.querySelectorAll('.quick-edit')) {
    editButton.click();
  }
  for (privacyControl of document.querySelectorAll(
    '.form-group .visibility-select select'
  )) {
    privacyControl.value = privacySetting;
  }
  for (saveButton of document.querySelectorAll(
    '.edit-actions button[type="submit"]'
  )) {
    saveButton.click();
  }
  const nextButton = document.querySelector('button.next_page');
  if (nextButton != null) {
    nextButton.click();
    setTimeout(bulkEdit, 5000, privacySetting);
  }
}

// Allow everyone to view your activities
bulkEdit();

https://github.com/jm-shi/Strava-Bulk-Editing


90’s/00’s web buttons

Stumbled across this awesome collection of the little buttons you used to find at the bottom of websites back in the 90’s/00’s, a proper blast from the past!

https://anlucas.neocities.org/88x31Buttons.html


Twitter…

It’s as though Musk has taken Facebook’s “Move fast and break things” motto and reduced it to “Break everything fast.”

https://daringfireball.net/2022/11/twitter_tumult


If ‘Edging’ by Blink 182 was released in 2001


2008 MacBook Air

I recently managed to pick up an original MacBook Air from 2008 in fantastic condition, it even came with it’s original charger and the original (optional) USB SuperDrive. This one is original 1,1 version so it has the 80GB 4200rpm hard drive that could be found in iPods at the same time!

I put a clean install of Leopard (10.5) on it as this is what would have originally shipped with it. For a 1.6Ghz Core 2 Duo with 2GB of RAM and the 4200rpm iPod drive, it’s actually pretty quick!

The 1,1 shipped with micro DVI (on the right), they switched this out for mini display port later in the year
The included (optional) USB SuperDrive

Stripping a 2006 MacBook battery

I have a 2006 black MacBook in surprisingly good condition for it’s age and I’m trying to keep it that way, but one of the things that has always concerned me is the battery going full spicy pillow mode and wrecking the plastic around it. I managed to find a super cheap official original battery online and my plan was to strip out the cells from inside and replace them with something of roughly the same weight.

The battery stripped of its…well…batteries:

Some scrap metal stuck down with some double sided 3M tape inside (with electrical tape covering any leftover wires):

The battery pack all screwed back together:

The battery pack back in the MacBook, good as new!