Although it’s still in beta, I think it’s a good time to reintroduce my web app side project called Technicolor. Technicolor beta app icon Technicolor is a chat app tailored for watching TV shows with friends asynchronously. I’ve found it to be a great way to stay in touch with friends in other cities/states/countries. The current version of Technicolor is a native SwiftUI app available on iOS 17.4+ devices and macOS. Technicolor app overview showing dashboard, room interface (redacted)...| twocentstudios
This post is a guide for getting a Swift Vapor server-side app up and running on Fly.io with SQLite as the database provider. The target audience is Swift developers who are inexperienced with servers and deployment. I’m assuming you’ve already chosen Vapor, SQL, and Fly.io as your tools of choice and therefore will not discuss any of their tradeoffs. The below setup using SQLite avoids the operational complexity of maintaining a full Postgres server. Especially as a beginner that does no...| twocentstudios
Xcode automatically creates schemes for your app and other targets included in your project, which allow you to build and run those targets. I recently ran i...| Jesse Squires