Advertisement · 728 × 90
#
Hashtag
#swiftlang
Advertisement · 728 × 90
Preview
Schedule a countdown timer with AlarmKit Step through the essential setup for AlarmKit timers in iOS 26, from requesting authorization and scheduling a countdown to presenting the Live Activity and an in-app list of active timers.

Step through the essential setup for AlarmKit timers in iOS 26, from requesting authorization and scheduling a countdown to presenting the Live Activity and an in-app list of active timers: nilcoalescing.com/blog/Countdo...
#iOSDev #SwiftLang

4 2 0 0
GitHub - ATProtoKit/ATIdentityTools at 0.1.4 A set of Swift utilities for resolving and validating DIDs and handles in the AT Protocol. - ATProtoKit/ATIdentityTools

Also, ATIdentityTools has been updated. There was a bug where HandleResolver.resolveDNS() didn't pass along the options to the appropriate initializer. This has been fixed. Thank you @thisismissem.social for finding and fixing this bug!

#ATProto #Swiftlang #atdev

2 0 2 0
GitHub - ATProtoKit/ATCryptography at 0.2.1 A Swift library providing cryptographic utilities for the AT Protocol. - ATProtoKit/ATCryptography

ATCryptography has been updated to 0.2.0. This should resolve an issue with respect to JWT validations.

#ATProto #Swiftlang #atdev

1 0 1 0
GitHub - ATProtoKit/ATLexiconTools: A Swift package for parsing, modelling, registering, and validating Lexicon schemas and runtime data across the AT Protocol. A Swift package for parsing, modelling, registering, and validating Lexicon schemas and runtime data across the AT Protocol. - ATProtoKit/ATLexiconTools

The next member of the ATProtoKit family, ATLexiconTools, is now live! 🥳

github.com/ATProtoKit/A...

(I don't know why Bluesky isn't picking up the link's image; it should be able to do it...)

#ATProto #Swiftlang #atdev

6 0 1 0
Post image

And we're up and running with a simple TCA 2.0 bluesky client. Just hitting some of the public endpoints to load a feed!

No auth yet, but I just did an auth0 integration a few months ago, so it should be straightforward 🤞

#atProto #swiftlang #swiftUI @pointfree.co

10 2 0 0
Preview
GitHub - kishikawakatsumi/pico-bare-swift: Bare-metal Raspberry Pi Pico examples in Embedded Swift — no Pico SDK required Bare-metal Raspberry Pi Pico examples in Embedded Swift — no Pico SDK required - kishikawakatsumi/pico-bare-swift

Bare-metal Raspberry Pi Pico examples in Embedded Swift — no Pico SDK required https://github.com/kishikawakatsumi/pico-bare-swift

#swiftlang #raspberrypi

2 2 0 0

If you installed Swiftly, your system `swift` is not the active Xcode #swiftlang anymore. Something to remember, I was confused, being stuck at the ooooold Swift 6.2.3.

1 0 1 0
Preview
Swift Can Now Build Android Apps — Here's How Swift, Apple's acclaimed programming language, now supports Android development. The official Swift SDK for Android enables cross-compilation from macOS or Linux — a seismic shift for mobile developer...

📍Apple's Swift Just Crossed Enemy Lines — It Now Runs on Android.

Swift, Apple's acclaimed programming language, now supports Android development. The official Swift SDK for Android enables cross-compilation from...

#SwiftLang #AndroidDev #iOSDev #MobileDev #OpenSource

factide.com/apples-swift...

2 0 0 0

#macOS + #swiftlang & #FreeBSD + #gleam is such a nice combination 💕

1 0 0 0
Issue 746 – iOS Dev Weekly

iOS Dev Weekly – Issue 746 is out! Happy Friday, everyone! 😬

iosdevweekly.com/issues/746/#...

#swiftlang #iosdev

2 1 0 0
Beyond C: Wrapping Dear ImGui in Swift with Zero FFI Here we go again

Second blog post, integrating "Dear ImGui" in my #swiftlang project.
No wasm build this time, only native (but I keep the wasm one in my mind for later 👀).

carette.xyz/posts/swift_...

0 0 0 0
Post image Post image Post image

I received some criticisms on my Swift + C blog post, how "it is easy to integrate C in #Swift, but not #C++, even a small code base!".

So, I integrated #ImGui (not cimgui, but the C++ project) in my Swift project. It took me 10 minutes.

I guess I should start a new blog post 😎

#swiftlang

3 1 1 0
Post image

#zettelkasten for #swiftlang programmers -- this is a note from 2016 about copy-on-write in Swift, and it has an incomplete Swift 3 example. Swift 3→4 was a painful migration, but we're at Swift 6 now! So time to select that code and press 'delete' and replace it with something better.

2 0 1 0
Post image

Trying @skip.dev toolchain for cross platform iOS and Android development using #swiftlang.

One codebase, two native apps.

👉 skip.dev/docs/getting...

2 0 1 0
Post image

Creator of Sourcery & Inject.
20+ tools. Used in 80,000+ apps.

Krzysztof Zabłocki is mentoring at Swift Island 2026 🔥

If the engineering craft matters to you, don’t miss this.

Workshops. Pair programming. Sea breeze.
swiftisland.nl/mentors

#SwiftLang #Swift #iOS #iOSDev #WWDC #SwiftIsland

1 0 0 0
Original post on sfba.social

#SwiftLang #concurrency program stall question:

Given an array of urls to files the code does this:

// some prep code
await withTaskGroup { group in
var limit = min(urls.count, maxConcurrentTasks)
for ix in 0..<limit {
group.addTask { TypeInit(url: urls[ix]) }
}
for await type in group {
await […]

0 0 1 0
Post image

Monika Mateska is mentoring at Swift Island 2026. Senior iOS Engineer with deep experience in scalable architecture, subscriptions and growing sustainable codebases. Plus she is a strong community builder. We’re proud to have her on the island. 🏝️
swiftisland.nl/mentors

#SwiftLang #Swift #iOS #WWDC

2 1 0 0
Preview
Release v0.36.1 · nnabeyang/swift-atproto What's Changed feature: add support for Query type code generation

I've just released swift-atproto v0.36.1! 🚀

This update introduces code generation support for AT Protocol Queries on the server side.

Check out the release notes:
github.com/nnabeyang/sw...

#swiftlang #atproto

5 0 0 0
Testing the Swift C compatibility with Raylib Since Ladybird team abandoned their Swift adoption for the browser I heard a lot of criticism about the Swift ecosystem and the interaction between Swift and C/C++ projects. My usage of Swift is mainl...

New blog post, integrating #raylib in a #swiftlang project :)
Bonus point: #wasm build at the end!

I hope you will enjoy it :)

carette.xyz/posts/swift_...

8 2 0 1
Original post on sfba.social

#SwiftLang #SwiftUI #concurrency task priority inversion question.

A SwiftUI view has a .task(id: ) modifier.
The task, among other things, calls an async func

.task(id: item) {
// ...
if let item {
value = await item.someFunction()
}
// ...
}

someFunction() calls someOtherFunction() [not […]

0 0 0 0
Original post on mastodon.social

It's not my first time using a #Vapor backend with this new project, but it's the first time I'm using it for more than the basics

An older version of my personal site was built using #Leaf

Now we're building a full-on backend with it

First full Swift project that isn't an iOS app

Exciting […]

1 1 0 0
Post image

Starting Act 1...

Want to see behind the “modules”? 👀

#indiedev #gamedev #swiftlang #SpriteKit

5 3 0 0

more #kubecon stuff (my fight is delayed but thats not it lol):
Monday I'll be at 2 workshops now near capacity (good food&&peeps)
- Building Cloud Services w/ #swiftlang (hands on) s.apple.com/dr2F8e2FI7 &
- Apple Containers Install Fest s.apple.com/dN4e7D6zV3

1 0 0 0
Post image

Started as an iOS intern at 15. Now fractional CTO in the startup world.

Jari Koopman joins Swift Island 2026 to share lessons from mobile, backend & data engineering.

Level up your technical thinking. On Texel. 🏝️
swiftisland.nl/mentors

#SwiftLang #Swift #iOS #iOSDev #WWDC #SwiftIsland

1 0 0 0
Preview
GitHub - shyguy-studio/SwiftDataTestSupport: Eliminates SwiftData in-memory container boilerplate in test targets Eliminates SwiftData in-memory container boilerplate in test targets - shyguy-studio/SwiftDataTestSupport

or subclass ModelTestCase and you get a fresh container + context for every test with zero setup
also ships fetchAll, fetchFirst(where:), count(where:), insertAndSave, deleteAll on ModelContext

no deps · MIT · iOS 17+
github.com/shyguy-studio/SwiftDataTestSupport

#SwiftLang #SwiftData #iOS #XCTest

1 0 0 0
Post image Post image

Demonstrating the power of #swiftlang on AWS Lambda at CocoaHeads Paris tonight alongside great speakers Claire Sivadier and Florent Morin and talented Swift developers

Thank you Greg Lhotellier for the invitation.

7 0 0 0

On Linux #SwiftLang MainActor isolated code does not actually run on Thread.isMain? 🤔

0 0 0 0
an AsyncStream API with a suggested onPauseChanged and isPaused API

an AsyncStream API with a suggested onPauseChanged and isPaused API

I wish AsyncStream supported pausing #swiftlang

3 1 0 0
Event Flyer for the 8th April Macc Tech event.

Event Flyer for the 8th April Macc Tech event.

Our next event is on 8th April #Macclesfield

2 talks on #SwiftLang and #AI from @0xtim.bsky.social & Zahed Heidari

+ networking and free refreshments courtesy of our hosts Blue Beck

Please share for reach, and RSVP at luma.com/0onoej7z

3 3 0 1