iOS 26 is ugly but as far as I experienced pretty stable. And recent changes made is readable too. But I just canβt w/ macOS 26β¦ this sidebar design alone is an insult to whoever invented the sidebarβ¦
12.11.2025 15:00 β π 0 π 0 π¬ 0 π 0
Yep, thatβs the way π
19.10.2025 12:41 β π 1 π 0 π¬ 0 π 0
Et ils en auraient installΓ© presque 800 alors ?!
11.10.2025 11:28 β π 0 π 0 π¬ 0 π 0
Does someone also sees SwiftUI lists not working properly (unable to select item) on MacOS 14 for apps compiled under Xcode 26 ?
10.10.2025 17:06 β π 0 π 0 π¬ 0 π 0
I wonβt argue on the AI part. But yeah I donβt see Apple gatekeeping everything too. Thank you for sharing your view π
08.10.2025 19:50 β π 0 π 0 π¬ 1 π 0
Thank you for the explanation! If we put aside app stores Iβm worried about access to the platform as a whole. I write code that runs 24/7 on Mac and nobody will ever install it through any store, I do iOS tooling too. I wonder if at some point Iβll be barred from the tools / signing system, β¦
08.10.2025 18:04 β π 0 π 0 π¬ 1 π 0
Theyβre US* tech, sorry.
08.10.2025 11:55 β π 0 π 0 π¬ 0 π 0
Interested to know more. Also since we both dev on Apple platforms should we be worried as theyβre IS tech also ?
08.10.2025 11:54 β π 0 π 0 π¬ 2 π 0
"anti-AI people should just learn more about it" motherfucker I know so much about it, that's why I'm anti-AI
06.10.2025 12:28 β π 825 π 215 π¬ 12 π 16
Jβen suis arrivΓ© Γ la mΓͺme conclusion.
05.10.2025 08:10 β π 0 π 0 π¬ 0 π 0
Sounds like fun !
27.09.2025 20:33 β π 1 π 0 π¬ 0 π 0
Never thought about using AnyCancellable for tasks. Great idea thank you for sharing!
I think you made a mistake in the first code example featuring setup, you use the store method on the task before introducing it when should have used it on the publisher.
18.09.2025 18:24 β π 1 π 0 π¬ 1 π 0
π₯³ (thank you !)
09.09.2025 09:38 β π 2 π 0 π¬ 0 π 0
I have trouble reading the comments and method/func names. Not enough contrast I think. But overall I like it π.
08.09.2025 17:46 β π 1 π 0 π¬ 0 π 0
I never update until the x.2, earlier if stability and app availability are a consensus. But here I know Iβll wait for a backlash and a potential redesign and I know they wonβtβ¦ π
07.09.2025 16:55 β π 1 π 0 π¬ 1 π 0
Not a fan of iPadOS and iOS 26 but I feel that something I could acclimate to. But macOS ? An insultβ¦
07.09.2025 16:49 β π 1 π 0 π¬ 1 π 0
Would be great if you hadnβt to backstick them at call site. Like you do w/ keyword used as variable names (var `for` = 4)
21.08.2025 12:49 β π 0 π 0 π¬ 1 π 0
@ FocusState and the focus modifier. But itβs way more limited than messing w/ the first responder directly.
12.08.2025 12:14 β π 1 π 0 π¬ 1 π 0
Exactly ! This nuance is important and shows how rare the need of global actors really is.
20.07.2025 07:19 β π 2 π 0 π¬ 0 π 0
Itβs really about coordinating concurrent accesses to a unique ressource. Say a database client, writing to a single log file, etcβ¦ Global actors allow you to make this a simple decoration in your code while doing all the heavy lifting. And itβs clearly and solely about isolation.
20.07.2025 06:09 β π 1 π 0 π¬ 1 π 0
In the early days of SwiftUI I remember asking myself βis that buggy or do I still dont get the thingβ a lot ! Now itβs better, on both sides.
10.07.2025 18:15 β π 4 π 0 π¬ 0 π 0
PayMe
Professional invoicing software with just a 1% fee. Send clients professional invoices, choose who pays fees, accept payments, and get free payouts.
Hello! Iβm excited to introduce an idea thatβs been floating in my head for a while: PayMe
PayMe is invoicing software for creators and professionals, with just a 1% fee.
Photographer invoicing for a shoot? You could save >2% of your income using PayMe over QuickBooks!
Check it out!
usepayme.app
10.07.2025 13:34 β π 1 π 1 π¬ 2 π 0
Those are indeed pretty nice !
07.07.2025 05:10 β π 2 π 0 π¬ 0 π 0
Congrats ! I'd be interested to know what technique you use to generate the beat. Simple timer or something else ? I'm about to start working on a tool where I need a precise beat and I'm not sure how to do it the right way. So far I used AsyncStream + Task.sleep when needed...
02.07.2025 08:46 β π 0 π 0 π¬ 0 π 0
Attribute graph β Chris Eidhof
I recorded my Attribute Graph talk from a few weeks ago. I hope this is helpful! chris.eidhof.nl/presentation...
01.07.2025 09:39 β π 11 π 2 π¬ 0 π 0
App + framework both swift 6.0 at the time. Might have been a compiler bug. Iβll try removing the isolation w/ the last stable version and see if it catches it.
27.06.2025 17:19 β π 1 π 0 π¬ 0 π 0
Didnβt had time to test 6.2 yet I thought I read it being an opt-out π
27.06.2025 17:15 β π 0 π 0 π¬ 1 π 0
Itβs pretty hard to explain without showing code + analysis but it was marked as data race by the runtime. A WebSocket server w/ clients stored in an array + client factories (for connections). It was iterating through the array while appending to it. Had to isolate it w/ a global actor.
27.06.2025 17:13 β π 1 π 0 π¬ 1 π 0
Yes I get the nuance. I meant compilation errors. But you can still have data races at runtime in 6 lang mode. The ones I got were due to actor rentrancy.
27.06.2025 17:02 β π 0 π 0 π¬ 1 π 0
I guess that being Swift 6.2 everything is isolated on the MainActor by default. Since your class is nonisolated youβre prone to introduce data races as name is mutable.
27.06.2025 16:55 β π 0 π 0 π¬ 2 π 0
SWE/MLE by day, iOS dev in my free time. Trying to journal my progress on my side projects!
Meuf trans qui vidΓ©ote
You knew me before I was Kewl
(She/her PolyA)
Gauchiste Cassandriste
On me dit trop perspicace.
Mon Youtube : https://www.youtube.com/@Meeea
Mon Tipeee : https://fr.tipeee.com/meeea
Mon Ulule : https://fr.ulule.com/meeea/
I make computer go beep boop π»
The dev behind @beavernotes.com
Possibly the only poly trans lesbian compiler engineer whoβs never worked on Rust.
Fan writer (current obsession: works of Alyson Greaves). Basic Balmung miqoβte. Works on Swift at the fruit company.
Cartoons and comics by Steve Nelson.
Manager: mkrell@3arts.com
https://linktr.ee/twonkscomics
De-Evangelist, writer and speaker. Communist. Feminist. Antifascist. Luddite. He/him. Email: tante@tante.cc | Masto: @tante@tldr.nettime.org
(Don't always see DMs cause my client can't show them since they are proprietary extensions of the protocol)
#macOS dev.
Somehow it seems Iβm post-social media: Most of the time I canβt think of anything to share or publish. And frankly, it nowadays sucks to lack a personal identity.
Computer Engineer, UMN24. ο£ΏWWDC2020 Scholar. Building @codeedit.app on GitHub. Blog at https://khanwinter.com.
Cherche du travail. https://chroniquesjudiciaires.substack.com/
I teach 150K developers how to write better apps faster through my developer tool, blog, and newsletter. Join my newsletter to get started: https://www.avanderlee.com/swiftlee-weekly-subscribe/
cΓ©cile, lΓ©gumes et π
Le site qui fait des critiques lΓ
Aide-nous Γ dominer le monde ! https://ecranlarge.com/abonnement
Previously: Sr. Design Technologist @Playstation
UI/UX, React, Rust, Graphics, Game Dev, 420 | he / they π³οΈβπ
https://linktr.ee/whoisryosuke
#b3d #gamedev
Eng. lead at https://typo.inc β’ Prev: visionOS at Apple
Essais vidΓ©o sur la culture pop :
www.youtube.com/bolchegeek
Γmission "POPulaire" pour l'HumanitΓ©
Auteur "Le Syndrome Magneto" (Γd. Au Diable Vauvert)
I write Swift and write about Swift, but most people prefer my dogs.
Creating bugs in Swift since 2014. Senior iOS Developer, board game enthusiast, HomeAssistant heavy user and proud pet dad to Sheldon and Hera. Turning RedBull into code and ideas into apps π§π·
Creator of @collino.app and #openToWork