Improve build times by extracting 3rd party tooling to processing script.
Jan 17, 2021, 7:00 PM
A lot has been written about improving Swift compile times, but the compiler and linker are just part of the equation that slows down our development cycle.
Most projects leverage great 3rd party tools like SwiftLint, Sourcery, SwiftGen,...
Improve build times by extracting 3rd party tooling to processing script.
Jan 17, 2021, 7:00 PM
A lot has been written about improving Swift compile times, but the compiler and linker are just part of the equation that slows down our development cycle.
Most projects leverage great 3rd party tools like SwiftLint, Sourcery, SwiftGen,...
Adding support for versioning and migration to your Codable models.
Jun 9, 2020, 8:00 PM
Codable is a great protocol for automating simple model persistence, but it lacks support for any kind of versioning or migrating the data from older versions.
You can, of course, implement custom Codable adherence and throw in a bunch of...
Straighforward Data Snapshots
Jul 14, 2019, 8:00 PM
If your app has a lot of content, chances are that by the time you get a chance to work on a bug report, the data that the bug appeared on will be long gone.
Here are some tidbits on how I created a simple solution for that problem at The...
Straighforward Data Snapshots
Jul 14, 2019, 8:00 PM
If your app has a lot of content, chances are that by the time you get a chance to work on a bug report, the data that the bug appeared on will be long gone.
Here are some tidbits on how I created a simple solution for that problem at The...