Post

Replies

Boosts

Views

Activity

Reply to (Code Review) What can I do better here?
I would try this kind of approach which has also the advantage of not forcing an unwrap on value. if let value = try? .int(container.decode(Bool.self)) { self = value } else if let value = try? .string(container.decode(Int.self)) { self = value } else if let value = try? .string(container.decode(String.self)) { .... the rest should be pretty clear ... }
Jun ’21
Reply to Installing MacOS Beta on M1 Macs
This is to do a full offline install. Quite a bit more complicated than simply doing an OTA install. The simple solution is to click on the 'Install Profile' button. That will download a profile that you can double click and install on your Mac to do the OTA installation. It's how I updated my M1.
Dec ’21
Reply to M1 Mac and Xcode is garbage
Nope, 13.3.1 has been smooth sailing so far on the M1. Mind you, when I installed the M1, I installed from scratch, not a migration of my old intel machine. I have seen too many people doing a migration and running into all sorts of weird issues. Just copied my personal files, did not copy the library directory and basically reinstalled programs I use. That actually was a nice cleanup.
Apr ’22