Blog
September 23, 2021
Moving a Dot with MetalKit
The key part of this project for me was figuring out how to set up a game loop that gets along with MetalKit.
ReadSeptember 18, 2021
Swift First Swing at Generic Array Extension
When you need to create a generic for `Array` you may either need `Sequence` or `Collection` or just `Array`. I might lack some understanding here because it seems trickier to understand which to use then I expect it to be.
ReadSeptember 15, 2021
JaCoCo Doesn't Like New Version of Kotlin
I recently ran into a spot of trouble with JaCoCo after upgrading to a new version of Kotlin.
ReadSeptember 15, 2021
Determining Generic Type
Generics need a way to know the generic type it's working. This seems obvious when you say but building an API that reasonably makes this happen can be tricky.
Read