∞ Migrating from Substack to self-hosted Ghost: the details
Molly White wrote in great detail on how she migrated her [Citation Needed] newsletter from Substack to Ghost, including a number of hiccups along the way.
After a brief moment of panic, my soul returned to my body and I remembered how widely Substack had advertised that all writers retain control over their subscriber lists and can take them with them if they leave.
I responded:
No, I intend to migrate my paid subscribers from Substack (as is a selling point of the platform: "A Substack is the writer’s property: the email list, content, and payment relationships (should you choose to monetize) is the writer’s and the writer can take all of it with them if they ever decided to leave the platform.") I don't wish to cancel their paid subscriptions, I just wish to remove the Substack fee as I will no longer be using the platform. See: https://ghost.org/docs/migration/substack/#removing-substack-fees I then proceeded to spend five days in terrifying limbo as I awaited a reply (which was, in fairness, over the holidays).
I then proceeded to spend five days in terrifying limbo as I awaited a reply (which was, in fairness, over the holidays).
Ouch. That's actually a terrifying experience. Glad it worked out in the end.
TSA Finds Recording Breaking-Firearms, Every Single Year Since 2010
From a TSA press release on January 10, 2024:
During 2023, the Transportation Security Administration (TSA) intercepted a total of 6,737 firearms at airport security checkpoints, preventing them from getting into the secure areas of the airport and onboard aircraft. Approximately 93% of these firearms were loaded. This total surpasses the previous year’s record of 6,542 firearms stopped at checkpoints and represents the highest one-year total in TSA’s history.
In my mind, 6,737 is mind-boggling. I mean, we are talking about airport security checkpoints here. Whenever I saw the signs of firearms at security checkpoints, I've always thought, who would be so dumb to carry firearms?
This got me interested in the historical numbers. Luckily, last year's press release is very handy and includes a chart for number of found firearms since 2010:
Except for 2020, due to the pandemic, it's been record-breaking every fucking year. Last year was six times that of 2010.
It's just mind-boggling. I hate this part of America.
∞ Chino Yang - San Francisco Our Home [ OFFICIAL MV ]
Beautiful music.
∞ How California’s New Pedestrian Signal Law Makes Biking Safer
Alvin Holbrook writes at VELO,
Implementing an LPI at an intersection is an easy way to make streets safer for people walking. There’s no major infrastructure building that needs to happen, just a comparatively inexpensive adjustment to signal timing to prioritize the safety of people walking. And now in California, an LPI also prioritizes people biking.
How low cost is it? The U.S. Federal Highway Administration (FHWA) says that reprogramming traffic signals to accommodate an LPI can cost between $200 and $1200 per intersection, a drop in the bucket compared to how much pedestrian or bicyclist injuries cost a city.
When I'm driving, I actually also appreciate LPI as that makes me more confident that I would drive safer. So this seems like a no brainer to me.
∞ Drink Free Beer in Silence at This New San Francisco Barbershop
David Sjostedt writes,
Catering to the overworked, the introverted and the way-too-baked, a new barbershop in San Francisco offers silent haircuts so that you no longer have to talk to your barber as they line you up.
At Beyond the Pale barbershop in the Mission District, there’s no need to say a word with the shop’s “silent mode” service, which was designed especially for shy techies and stoners, according to shop owner Anthony Larrasquitu.
“Ultimately, it’s about the freedom here. You get to pick the experience you want,” Larrasquitu said.
I love this. Ever since I can remember, I have always hated going to barbershops. I don't like the idea of having to talk to people while they are cutting something off my head. Then 7 years ago, I found the perfect solution: long hair.
This San Francisco Barbershop can be another great alternative!
iOS: Fixing a Crash on Launch Issue on Apple Silicon Macs
My iOS app Mango Baby is made available for Apple Silicon Macs. Ever since macOS Sonoma, it would crash on launch.
A similar crash on launch issue happened for the release of macOS Ventura. It was because the ActivityKit is not available on macOS. I fixed it by protecting calls to the ActivityKit
APIs against isiOSAppOnMac
at runtime. But apparently a new issue has appeared for macOS Sonoma.
Attempt 1
First I asked on Mastodon, and Matt Massicotte very kindly provided tips and walked me through the debugging process.
TIP: For crashes on launch, Apple-captured crash logs are much more helpful than Crashlytics. They can be accessed in Xcode following these instructions.
Through the crash logs, I discovered the following stacktrace:
Termination Reason: Namespace DYLD, Code 1 Library missing
Library not loaded: /System/Library/Frameworks/ActivityKit.framework/ActivityKit
Referenced from: <9B5A3687-FF24-3E38-9007-1DE6A69EFEEB> /Volumes/VOLUME/*/Baby.app/PlugIns/BabyWidget.appex/BabyWidget
Reason: tried: '/System/105Support/System/Library/Frameworks/ActivityKit.framework/ActivityKit'
(terminated at launch; ignore backtrace)
Thread Crashed:
0 dyld 0x0000000189391b48 __abort_with_payload + 8
1 dyld 0x000000018939e108 abort_with_payload_wrapper_internal + 104 (terminate_with_reason.c:102)
2 dyld 0x000000018939e13c abort_with_payload + 16 (terminate_with_reason.c:124)
3 dyld 0x0000000189325518 dyld4::halt(char const, dyld4::StructuredError const*) + 304 (DyldProcessConfig.cpp: 2890)
4 dyld 0x00000001893221e8 dyld4::prepare(dyld4::APIs&, dyld3::Mach0Analyzer const) + 3884 (dyldMain.cpp:0)
5 dyld 0x0000000189320f44 start + 1948 (dyldMain.cpp:1238)
Then I remembered that I had to weak link the ActivityKit
framework in order to make Mango Baby continue available on Macs. This is done by adding -weak_framework ActivityKit
to Other Linker Flags. But this stacktrace is from my BabyWidget
app extension for widgets, and I didn't have the flag for my Widget target. I submitted an update along with other features.
Since I didn't know any way of testing iOS apps running on Macs, I didn't verify the fix. And it turns out Mango Baby is still crashing.
Attempt 2
Later I learned from Franklin on Threads that you can enable the Test iPhone and iPad Apps on Apple Silicon Macs
option on App Store Connect. Then, you can at least use TestFlight to test your iOS app running on Mac. This still isn't ideal, but it's already 100 times better than nothing.
I checked new crash logs again, and they look like:
Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Subtype: KERN_INVALID_ADDRESS at 0x0000000000000000
Exception Codes: 0x0000000000000001, 0x0000000000000000
Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0 ??? 0x0 ???
1 Baby 0x102c75b1c closure #1 in closure #1 in closure #1 in closure #2 in AppModel.init(storage:) + 32 (AppModel.swift:488) [inlined]
2 Baby 0x102c75b1c partial apply for closure #1 in closure #1 in closure #1 in closure #2 in AppModel.init(storage:) + 60
3 SwiftUI 0x1c96f4c38 0x1c7d86000 + 26668088
4 SwiftUI 0x1c96f4f28 0x1c7d86000 + 26668840
5 libswiftCore.dylib 0x190f6025c withExtendedLifetime<A, B>(_:_:) + 28
6 SwiftUI 0x1c96f3420 0x1c7d86000 + 26661920
7 SwiftUI 0x1c96f2f74 0x1c7d86000 + 26660724
Thread 0 crashed with ARM Thread State (64-bit):
x0: 0x0000000000000000 x1: 0x0000000000000000 x2: 0x0000000000000103 x3: 0x0000600000296400
x4: 0x0000000000000000 x5: 0x0000000000002760 x6: 0x00000001d94074e8 x7: 0x00000000ffffffff
x8: 0x000000016d4658f0 x9: 0x000000016d465910 x10: 0x0000000000002760 x11: 0x00000000982478cd
x12: 0x00000000000007fb x13: 0x00000000000007fd x14: 0x00000000984480d3 x15: 0x00000000000000d3
x16: 0x0000000000000000 x17: 0x00000001d98d6c30 x18: 0x0000000000000000 x19: 0x000000016d4659d0
x20: 0x000000016d465950 x21: 0x0000600002336710 x22: 0x00006000039a3020 x23: 0x0000000000000000
x24: 0x000000016d465930 x25: 0x000000010372ebe8 x26: 0x00000001d98d3ec8 x27: 0x000000000000000f
x28: 0x0000000000000000 fp: 0x000000016d465d90 lr: 0x0000000102c4ca70
sp: 0x000000016d4658f0 pc: 0x0000000000000000 cpsr: 0x20001000
far: 0x0000000000000000 esr: 0x82000006 (Instruction Abort) Translation fault
Binary Images:
0x102998000 - 0x1035b3fff com.mangoumbrella.Baby (2023.12) <ca277200-885e-3b08-8ee2-93648cc69108> /private/var/folders/*/Baby.app/Baby
Following this helpful Investigating memory access crashes article from Apple, I ran the following command to discover the exact line it's crahsing:
$ atos -arch arm64 -o atos -arch arm64 -o /Applications/Mango\ Baby.app/Wrapper/Baby.app/Baby -l 0x102998000 0x0000000102c4ca70
closure #2 in AppModel.processRemoteRecordEvents(events:) (in Baby) (AppModel.swift:1009)
And the line is:
if !ProcessInfo.processInfo.isiOSAppOnMac {
LiveActivitiesManager.shared.syncAll() // Crash here.
}
This doesn't make sense to me since this line shouldn't execute at all. It's protected by the isiOSAppOnMac
check, and all the ActivityKit
API calls are isolated in my LiveActivitiesManager
class.
My only guess right now is that this might have something to do with branch predictions and the runtime will load the instructions even if they aren't executed at runtime in the end. With this guess, I have one solution in my mind: introduce a Protocol
and two concrete classes for all my ActivityKit
related functions. Something like:
protocol LiveActivitiesManagerProtocol {
func syncAll()
}
class LiveActivitiesManager {
static let shared: LiveActivitiesManagerProtocol = {
if ProcessInfo.processInfo.isiOSAppOnMac {
return NoopLiveActivitiesManager()
} else {
return RealLiveActivitiesManager()
}
}()
}
fileprivate class NoopLiveActivitiesManager: LiveActivitiesManagerProtocol {
func syncAll() {}
}
fileprivate class RealLiveActivitiesManager: LiveActivitiesManagerProtocol {
func syncAll() {
// Use ActivityKit APIs.
}
}
This code is now released in Mango Baby v2023.14 and it no longer crashes on Sonoma.
∞ Devon Dundee’s Apps of 2023
Devon has a great list of apps:
But one of Devon's Apps of 2023 is not like the other:
Mango Baby
The app that’s had the most impact on my life over the past year has to be Mango Baby, a newborn tracker by Yilei Yang. It’s not a new release, but since my son Noah was born, Mango Baby has been an indispensable tool for keeping track of his care.
The app is so well-designed and makes it simple for me to log feedings, diapers, and more. The information I need most is always right at hand, often not even requiring that I open the app thanks to Mango Baby’s extensive set of widgets. Shortcuts actions allow me to log diaper changes hands-free, and the iCloud-based collaboration is rock-solid, keeping everything in sync between my devices and my wife’s.
I’m a fan of anything that helps my kid and makes my life a bit easier. Mango Baby does both of those things every day.
I'm always inspired to hear how Mango Baby is helping parents. It has motivated me to keep improving the app for years.
Leaving Substack
After reading the note, I decided to leave Substack. This is an easy decision.
However, I'm also pausing Mango Newsletter for now. Even though I could move it somewhere else, I couldn't make it a priority. I need to spend more time on the actual development of Mango Baby and my next app.
If you are still interested in a relatively low volume of the updates on my indie dev work, you can find Mango Umbrella at @MangoUmbrella@indieapps.space or @mango.umbrella@threads.net.
Default Apps 2023
I saw this from Jay Wilson and took it as a template.
This is what I’m using at the point and time of publishing.
📨 Mail Client: Gmail app on iOS and gmail.com on macOS
📮 Mail Server: Google
📝 Notes: Apple Notes
✅ To-Do: Apple Notes
📷 Photo Shooting: iPhone 14 Pro, Sony A7R III, Sony FE 70-200 F4 G
🎨 Photo Editing: Lightroom on macOS, Photomator on iOS
📆 Calendar: Google Calendar
📁 Cloud File Storage: Google Drive, iCloud Drive
🙍🏻♂️ Contacts: Apple Contacts
🌐 Browser: Safari on iOS, Chrome on macOS
💬 Chat: WeChat, iMessages, Discord, Google Talk or whatever it is called today
🔖 Bookmarks: Chrome
📑 Read It Later: Apple Notes
📜 Word Processing: Google Docs
📈 Spreadsheets: Google Sheets
📊 Presentations: Google Slides
🛒 Shopping Lists: Apple Notes
🍴 Meal Planning: Google Docs, physical paper on the fridge
💰 Budgeting and Personal Finance: Google Sheets
📰 News: Mastodon
🎵 Music: YouTube Music
🎤 Podcasts: Overcast
🔐 Password Management: Chrome, Apple Keychain, KeePassXC
🧑💻 Code Editor: VS Code, Xcode
🌲 Git Client: git
, GitHub Desktop
🖥️ Terminal: iTerm2
📐 Design: Figma
📝 Blog: In-house Engine and Client
✈️ VPN: Google Fi
∞ BREAKING NEWS: Myke Hurley Posted a Thread Again
Myke Hurley, the British professional podcaster, co-founder of the podcast network Relay FM, Chief Product Designer and co-founder at Cortex Brand, logged in to Threads today and is asking how to get his threads on news:
Post by @imykeView on Threads
Does this count?