The Wiert Corner – irregular stream of stuff

Jeroen W. Pluimers on .NET, C#, Delphi, databases, and personal interests

  • My badges

  • Twitter Updates

  • Pages

  • All categories

  • Enter your email address to subscribe to this blog and receive notifications of new posts by email.

    Join 1,854 other subscribers

Archive for the ‘Mac’ Category

MacBook Pro 15-inch and 16-inch dimensions (to see if bags and sleeves would still fit)

Posted by jpluimers on 2025/11/03

Written a while ago, but forgot to schedule this in the blog queue.

This is in reverse chronological order and only for the models I have, had, or considered buying.

Table

Model Height Width Depth Weight1 Weight2
[Wayback/Archive] MacBook Pro (16-inch, 2023) 0.66 inch (1.68 cm) 14.01 inches (35.57 cm) 9.77 inches (24.81 cm) (M2 Pro): 4.7 pounds (2.15 kg) (M2 Max): 4.8 pounds (2.16 kg)
[Wayback/Archive] MacBook Pro (16-inch, 2021) 0.66 inch (1.68 cm) 14.01 inches (35.57 cm) 9.77 inches (24.81 cm) (M1 Pro): 4.7 pounds (2.1 kg) (M1 Max): 4.8 pounds (2.2 kg)
[Wayback/Archive] MacBook Pro (Retina, 15-inch, Mid 2015) 0.71 inch (1.8 cm) 14.13 inches (35.89 cm) 9.73 inches (24.71 cm) 4.49 pounds (2.04 kg)
[Wayback/Archive] MacBook Pro (14-inch, 2023) 0.61 inch (1.55 cm) 12.31 inches (31.26 cm) 8.71 inches (22.12 cm) (M2 Pro): 3.5 pounds (1.60 kg) (M2 Max): 3.6 pounds (1.63 kg)
[Wayback/Archive] MacBook Pro (14-inch, 2021) 0.61 inch (1.55 cm) 12.31 inches (31.26 cm) 8.71 inches (22.12 cm) 3.5 pounds (1.6 kg)
[Wayback/Archive] MacBook Pro (Retina, 13-inch, Early 2015) 0.71 inch (1.8 cm) 12.35 inches (31.4 cm) 8.62 inches (21.9 cm) 3.48 pounds (1.58 kg)
[Wayback/Archive] MacBook Air (Mid 2009) 0.16-0.76 inch (0.4-1.94 cm) 12.8 inches (32.5 cm) 8.94 inches (22.7 cm) 3.0 pounds (1.36 kg)

Read the rest of this entry »

Posted in Power User, Apple, MacBook, MacBook-Pro, Mac | Leave a Comment »

30+ years of Apple’s Human Interface Guidelines from 1985 (and earlier Lisa / Apple II equivalents)

Posted by jpluimers on 2025/09/25

I hope someone has also archived all these in the Internet Archive as this is a great collection of historic material: [WaybackSave/Archive] GitHub – gingerbeardman/apple-human-interface-guidelines: Apple Human Interface Guidelines, et al.

If you have more of them: add them via a pull-request.

Related: [Wayback/Archive] Making It Macintosh: The Macintosh Human Interface Guidelines Companion : Apple : Free Download, Borrow, and Streaming : Internet Archive

A client that went belly up in the early 1990s had all these and similar books. In retrospect, I though have found a way to obtain them but back then I didn’t value the uniqueness of them enough and didn’t have the storage space for it (I lived in a 30m² apartment).

Read the rest of this entry »

Posted in //e, 68k, Apple, Apple Lisa, Classic Macintosh, Development, Hardware, History, Mac, NeXT, Power User, Software Development, User Experience (ux) | Leave a Comment »

Turn iPhone, iPad and Android into wireless mobile mouse / trackpad / keyboard with Remote Mouse.

Posted by jpluimers on 2025/08/08

On my list of things to try: [Wayback/Archive] Turn iPhone, iPad and Android into wireless mobile mouse / trackpad / keyboard with Remote Mouse.

Goal is to see if the iPad can function as a larger touchpad to assist drawing on my MacBook.

Links:

Via:

Query: [Wayback/Archive] use ipad as mouse – Google Suche

--jeroen

Read the rest of this entry »

Posted in Apple, Apple Silicon, iOS, iPad, iPhone, LifeHacker, Mac, MacBook, MacBook Retina, MacBook-Pro, Power User | Leave a Comment »

Running Android applications on Apple Silicon: is the Android Emulator from Android Studio the only option?

Posted by jpluimers on 2025/06/13

On my research list: running Anrdoid apps on Apple Silicon.

I wonder if using the Anrdoid Emulator from Android Studio the only straightforward option.

Links:

Read the rest of this entry »

Posted in Apple, Apple Silicon, ARM Mac, M1 Mac, Mac, Mac OS X / OS X / MacOS, MacBook, macOS 14 Sonoma, Power User | Leave a Comment »

GitHub – walles/moar: Moar is a pager. It’s designed to just do the right thing without any configuration.

Posted by jpluimers on 2025/05/08

Having used less for 40+ years now, I wonder how moar measures up to it: [Wayback/Archive] GitHub – walles/moar: Moar is a pager. It’s designed to just do the right thing without any configuration.

Features I at least expect are in [Wayback/Archive] less: display the contents of a file in a terminal | less Commands | Man Pages | ManKier.

Via [Wayback/Archive] Johan Walles recently commenting on [Wayback/Archive] linux – How can I have less automatically decompress xz files like it did with gz files on my old SUSE distro? – Super User.

--jeroen

Posted in *nix, *nix-tools, Apple, BSD, Development, Go (golang), Mac, Mac OS X / OS X / MacOS, Power User, Software Development | Leave a Comment »

How I Setup My Mac – Liam Beeton

Posted by jpluimers on 2025/04/18

Inspiration: [Wayback/Archive] How I Setup My Mac – Liam Beeton

Via

--jeroen

Posted in Apple, Apple Silicon, ARM Mac, M1 Mac, Mac, Mac OS X / OS X / MacOS, macOS 14 Sonoma, Power User | Leave a Comment »

Parallel hashing on MacOS

Posted by jpluimers on 2025/04/14

Now that I have had an Apple silicon for a while, which has enough cores to perform parallel work, this is how I calculated a bunch of hashed from a lot of large files:

  • find . -type f | xargs -P 0 -n 1 md5 -r
  • find . -type f | xargs -P 0 -n 1 shasum --algorithm 1
  • find . -type f | xargs -P 0 -n 1 shasum --algorithm 256

I contemplated about using GNU parallel, but that is not installed by default on MacOS and I was already familiar with xargs.

Argument meanings can be found at these locations:

Related:

Read the rest of this entry »

Posted in *nix, *nix-tools, Apple, Apple Silicon, ARM Mac, M1 Mac, Mac, Mac OS X / OS X / MacOS, Power User, xargs | Leave a Comment »

How to use two or more monitors to M1, M2 or M3 MacBooks | Macworld

Posted by jpluimers on 2025/04/04

[Wayback/Archive] How to use two or more monitors to M1, M2 or M3 MacBooks | Macworld will likely hold for M4 based ones as well:

  • higher-end MacBooks with M1/M2/M3 Pro and Max chips support multiple external displays
  • get around Apple’s annoying M1/M2/M3 Mac single-display limitation via software and adapters

The solutions we explain here will also help M2 Pro and M3 Pro MacBook users extend to three external displays.

Recommended reading, despite the extra hardware and software you will likely need.

--jeroen

Posted in Apple Silicon, ARM Mac, M1 Mac, Mac, MacBook, Power User | Leave a Comment »

oobe\bypassnro removed from Windows 11 24H2 dead/hidden ? – YouTube – or is it? Two alternatives

Posted by jpluimers on 2025/03/07

I needed this for some Windows ARM VMs on VMware Fusion for running on my M1 MacBook Pro: [Wayback/Archive] oobe\bypassnro removed from Windows 11 24H2 dead/hidden ? – YouTube

In the end this combination works:

  • before booting, remove the network adapter (physically, or virtually from VMware Fusion or from Parallels)
  • after boot, as soon as the Shift-F10 combination works, run oobe\bypassnro (or add the registry entry, see below)

After this, Windows detected no network, and offered an install with a local username/password indicating the choice “I don’t have internet”.

If that ever fails in the future, I can use this trick from the comments:

Read the rest of this entry »

Posted in Apple, Apple Silicon, ARM Mac, M1 Mac, Mac, MacBook, Power User, Windows, Windows 11 | Tagged: | Leave a Comment »

Use an iPad as a second display for a Mac – Apple Support

Posted by jpluimers on 2025/03/03

While recovering from cancer treatments and moving, I heavily cut down on spending money for my IT infrastructure as you can only spend money once.

Now that I have recovered quite a bit, and also gaining more income, I got more recent Apple hardware and could start to use this: [Wayback/Archive] Use an iPad as a second display for a Mac – Apple Support

It’s called Sidecar in Apple terminology and actually quite neat, though you need extra software to use the iPad in portrait mode (it is hard coded to landscape though a 10-inch iPad Pro fits very nicely in portrait position next to a 16-inch M1 MacBook Pro).

If I persist, I need to look at solutions like [Wayback/Archive] Rotated Sidecar · waydabber/BetterDisplay Wiki · GitHub ([Wayback/Archive] GitHub – waydabber/BetterDisplay: Unlock your displays on your Mac! Flexible HiDPI scaling, XDR/HDR extra brightness, virtual screens, DDC control, extra dimming, PIP/streaming, EDID override and lots more!)

Sidecar is part of Handoff, so these preconditions apply: [Wayback/Archive] Use Handoff to continue tasks on your other devices – Apple Support.

In the end, I think it is all based on AirDrop, especially because of the first Apple Support link above mentioning these “Additional requirements”:

Via:

Read the rest of this entry »

Posted in Apple, iOS, iPad, Mac, MacBook, MacBook-Pro, Power User | Leave a Comment »