I'm still experimenting with LLMs. I made a self-improving agent from scratch and wrote about what I learned: chris.eidhof.nl/post/self-fo...
Self-Forking Agents — Chris Eidhof
chris.eidhof.nl
I'm still experimenting with LLMs. I made a self-improving agent from scratch and wrote about what I learned: chris.eidhof.nl/post/self-fo...
Self-Forking Agents — Chris Eidhof
chris.eidhof.nl
When you work with LLMs, you can also take a different approach towards dependencies. Instead of seeing them as fixed, you can actually just completely integrate them and take ownership. chris.eidhof.nl/post/integra...
Integrating Dependencies into LLM-Assisted Projects — Chris Eidhof
chris.eidhof.nl
I'm focusing on learning more about LLMs this month (not just using them, actually understanding how to work with them more intently). Today, I built my own little assistant: chris.eidhof.nl/post/llm-mon...
Food Assistant — Chris Eidhof
chris.eidhof.nl
I recorded my Attribute Graph talk from a few weeks ago. I hope this is helpful! chris.eidhof.nl/presentation...
Attribute graph — Chris Eidhof
chris.eidhof.nl
I had such a fun day at WWDC, was really great talking to everyone! Hope to see many more people tomorrow at 3pm at the One More Thing conference, I'll be talking about the Attribute graph.
The Art of Fauna just *WON* an Apple Design Award in the Inclusivity category. 🤯 But it is also a finalist for Social Impact. 💚 Two nominations, one win. I still can't believe this. What a year 🥹 #indiedev #WWDC #WWDC25 #TheArtOfFauna
I've been playing around with this tool to record and play back my typing. I took inspiration from Retcon and made the history draggable. Things like automatically doing the indentation / syntax highlighting quite don't work yet, but those are the "easy" polishing bits.
I am beyond thrilled to finally share this! 🥹 Today is Global Accessibility Awareness Day - and Apple sat down with me to talk about how I build accessible apps. 🦾 The interview is now live on the *front page* of the App Store: apps.apple.com/at/story/id1... #GAAD #A11Y #accessibility #indiedev
Discover the art of accessibility : App Store Story
Learn about collection Discover the art of accessibility featuring Art of Fauna: Cozy Puzzles, Study Snacks: Language & More, Letter Rooms: Fun Anagrams and many more on Mac App Store. Enjoy these ap...
apps.apple.com
What's new in Swift 6.2? A whole ton of stuff – raw identifiers, Collection conformances for enumerated(), method key paths, backtracing, weak let, Observations, InlineArray, and of course a big batch of concurrency changes too. Want to see it all in action? www.hackingwithswift.com/articles/277...
What's new in Swift 6.2?
Raw identifiers, backtraces, task naming, and more.
hackingwithswift.com
How to correctly initialize a view model in SwiftUI: chris.eidhof.nl/post/swiftui... (for when the view needs ownership of the view model).
SwiftUI View Model Ownership — Chris Eidhof
chris.eidhof.nl
Another "linkable explanation": why I avoid `Binding(get:set:)` in SwiftUI. chris.eidhof.nl/post/binding...
Bindings — Chris Eidhof
chris.eidhof.nl
In our workshops, people often use `Group` and somehow it always makes me feel uneasy — it can behave in unexpected ways. I finally figured out the actual problem, and it's not really `Group` that's the issue. chris.eidhof.nl/post/why-i-a...
Why I Avoid Group — Chris Eidhof
chris.eidhof.nl
I thought I'd found a bug in SwiftUI, but it turned out to just be an unlucky combination of implementation details: chris.eidhof.nl/post/swiftui...
SwiftUI Phase Animation "Bug" — Chris Eidhof
chris.eidhof.nl
Swift Talk 443 Staggered Animations Revisited After a two year hiatus, we build a staggered modifier in SwiftUI that works with any view in the view tree. This episode is free to watch! 😊 talk.objc.io/episodes/S01...
The store didn’t have my usual shampoo. Got a different brand with a different fragrance and now I keep thinking there’s a person standing right next to me because I’m not yet used to the new smell. 🙃
Went to a miso-making workshop today, where we made miso paste and onigiri, so much fun (and so delicious). The only difficult bit left is waiting for half a year until the miso paste is ready with fermentation...
Coming Feb. 5–6 to Apple Developer Center Cupertino and on livestream, Bring SwiftUI to your app! We’ll focus on how your expertise in imperative user interface frameworks like UIKit and AppKit can help you get comfortable with SwiftUI’s declarative approach.
No video today because I’ve got to watch the kids all day. Will be back at it on Monday!
The `Animatable` protocol lets you hook into the animation subsystem of SwiftUI. You can expose any property using `AnimatableData` and have it interpolated for you (but the property does need to conform to `VectorArithmetic`)
Keyframe animations are a very powerful tool to have in your toolbox. They're more complicated than regular SwiftUI animations but allow you to animate almost anything you can think of.
Phase animators can help to work around the limitations of the regular SwiftUI animation system. They let you do animations that end up in the same state as the starting point.
In many cases, adding a `.animation` or `withAnimation` might be all you need to have beautiful interruptible animations in SwiftUI.
I've spent the 6 months working on a new approach to shared data in Swift: Forked. Main features: - Git-like branching and merging for Swift structs - Advanced merge algorithms (CRDTs) - Macros to make structs mergeable - Sync structs via CloudKit with <10 LOCs appdecentral.com/2024/12/13/n...
Now we’re all Forked!
Forked is a new Swift framework for working with shared data, on device, and across networks.
appdecentral.com
Today we recap a bunch of things we looked at in the last two weeks of short videos. It was a bit of a struggle to get this in at under one minute but I managed 😅
Often it doesn't really matter whether you use an overlay or a ZStack, but if the views have different sizes and positions, it definitely does!
Explicit alignment guides are very helpful when aligning using two different alignment guides. In this example, we align the center of a badge to the top trailing edge of a button.
First text baseline alignment is a great way to align views horizontally that contain different font sizes. SF Symbols even have builtin support for this.
In our workshops we often notice that view alignment is underused. This week's short videos will mostly look at working with alignment. This video shows aligning stacks, frames and overlays. Here's the corresponding SwiftUI Field Guide page: www.swiftuifieldguide.com/layout/align...