Restructure 2.1.0 Released

Date

Restructure 2.1.0 is a minor feature release. sqliteVersion has been added to inspect the version of SQLite that is being used. JournalMode.off has been removed as it is no longer safe nor supported.

This release also adds Dynamic Member Lookup to the Row class, allowing the use of property-like accessors. For example:

/// Old Method
let value: Int = row["someValue"]

/// New Method
let value: Int = row.someValue

Score Card 2.3 Released

Date

Score Card 2.3 has been released. This version beings trackpad and keyboard support in iPad OS, as well as improvements to Dark Mode.

It also has an improved credits screen, and a new “What’s New” page, telling you exactly what you are reading here!


Advent of Code 2019

Date

Update: I’ve rewritten the visualization and documented the process.

Every year, I attempt to complete the Advent of Code. It’s a series of programming challenges that gives me an opportunity excise my coding ability in new and unique ways.

This year, I used Swift Package Manager and command line apps to solve each day. The solutions can be found on my GitHub page.

As per tradition with Advent of Code, I’ve visualized some of my solutions. I used a combination of CoreGraphics and AVFoundation to render, encode, and mux the results. All of this is contained within my Animator class.

Painting the hull of a space ship
The effects of gravity on Jupiter's moons
Playing Breakout with a custom IntCode language
A repair droid exploring
Traversing a multi-dimensional maze

Score Card 2.2 Released

Date

Score Card 2.2 has been released, bringing support for iOS 13 and Dark Mode. The app has received an overall polish, and the player selection screen has been cleaned up to be intuitive. Rows can be selected to be cleared or deleted.