TIL what does Vibe coding mean: 12 Rules to Vibe Code Without Frustration.

Read How I Stole Your ChatGPT API Keys by Jacob’s Tech Tavern.

The Swift Runtime: Your Silent Partner by Jacob’s Tech Tavern.

Read a very interesting story: My Toddler Loves Planes, So I Built Her A Radar by Jacob’s Tech Tavern. Here are some particularly appealing excerpts:

iOS 17 comes with support for Metal shaders built into colorEffect, so it implementing this effect is easier than ever before.

I might save digging into the C++ for another article. Feel free to steal it — most importantly, I created a view modifier that can apply the CRT effect to any view we like!

I might experiment with shaders to give my Python iOS app a CRT display look—once I find time to revive the project. This post includes a code snippet that looks like a great starting point.

TIL @AppStorage in SwiftUI

TIL AppScreens — a tool that helps streamline the process of creating AppStore screenshots.

Read The Swift Method Dispatch Deep Dive by Jacob’s Tech Tavern. Consider the guidance the Swift team gives us about reducing dynamic dispatch - final, private, and whole-module optimisation.

Noting for future self: a handy CLI for pretty-printing JSON from the clipboard:

pbpaste | python -m json.tool