#Codable
kabelsalat (= cable salad) is a live codable modular synthesizer for the browser. It lets you write synthesizer patches with an easy to use language based on JavaScript.

https://kabel.salat.dev/learn/
learn kabelsalat
kabel.salat.dev
December 19, 2025 at 12:19 PM
Property WrapperにOptionalな方渡した時に、DecodableでdecodeIfPresentが使われない問題が発生したけどこれで回避できた
https://forums.swift.org/t/using-property-wrappers-with-codable/29804/12
Using Property Wrappers with Codable
Use an extension on KeyedDecodingContainer and add an overload for decode method like this: extension KeyedDecodingContainer { func decode<T>(_ type: StringRepresentation <T?>.Type, forKey key: ...
forums.swift.org
July 15, 2023 at 4:36 PM
⬆️ Mathew Polzin just released OpenAPIKit v4.0.0-beta.3 – Codable Swift OpenAPI implementation.

https://swiftpackageindex.com/mattpolzin/OpenAPIKit#releases
February 16, 2025 at 5:03 PM
Enhance your iOS skills! Dive into using Codable for JSON parsing in Swift. Check out this video tutorial and explore further with the accompanying blog post for deeper insights. Watch now: https://www.youtube.com/watch?v=U5GBl7olOA0
An introduction to JSON Parsing in Swift
In this video we take a look at how we can leverage Codable to do JSON parsing in Swift. This video accompanies this blog post: https://www.donnywals.com/an-introduction-to-working-with-codable-in-swift/ If you're interested in deepening your iOS skills, take a look at my books here: https://donnywals.com/books.
www.youtube.com
April 17, 2025 at 10:45 AM
Episode 193 – Mind Altering Software Development
Property Animators, iPad 2018, corrupt backup, Swift 4 TensorFlow, Marzipan, JAMF, Codable, earnings, Bill Atkinson, iTunes MS Store, MacBook Air, What's New In Swift, TLDRLegal, Classic CS Problems in Swift
https://t.co/mIxPT5q4Ql
November 18, 2024 at 4:14 PM
I haven’t found a solution ready to use, probably searched too little, so I created a simple enum repeating all system colors available in the Color class, made it Codable, and now I can easily use it everywhere
#BuildInPublic #IndieHacker #iOSDev #IndieDev
March 9, 2025 at 6:16 PM
The first 80% of Codable is drop dead simple and ridiculously useful. The last 20% is incredibly wild and terrifying.
November 19, 2024 at 4:12 PM
I don't know if it's a joke, but for the sake of completeness, I'll add it.

I'm considering what's the best way to implement it. I just want something simple and doesn't use a lot of memory and CPU usage. But I'm still keeping Sendable and Codable conformance in mind.
March 22, 2025 at 3:40 PM
Having to use optionals everywhere instead of being able to simply set default values for Codable is maddening... Spent too long figuring out why my decoder wasn't returning any data.

@jordanmorgan10.bsky.social to the rescue: www.swiftjectivec.com/swift-codabl...

Brb, decorating EVERYTHING 👀
@DefaultIfMissing - My Codable Failsafe
Sometimes, you just want some leniancy with codable. Here’s how I get it.
www.swiftjectivec.com
January 13, 2025 at 8:19 PM
I have found this to be an excellent use case for LLMs. Feed them a bunch of JSON examples, and they will generate a really good first version of a Codable struct.
December 1, 2024 at 3:10 PM
So this is a cool thing that's finally possible in Swift.

I'm late to the party but I've been waiting to do this since before `any Protocol` was introduced, which is what this requires.

Notice how neither `Colors` and `Marker` conform to Codable 🧐
November 8, 2024 at 10:46 PM
⬆️ Daniel Farrelly just released swift-any-codable v1.0.1 – Codable extensions to make working with loosely-structured data easier.

https://swiftpackageindex.com/jellybeansoup/swift-any-codable#releases
January 11, 2025 at 7:20 PM
That’s why theologians, despite themselves, are progressive: they get into atheism, and find themselves confronted with the challenge—is this thing codable?
January 4, 2025 at 2:03 AM
On day 51 of #100DaysOfSwiftUI, I added logic to the Cupcake Corner app & learned:
— that to make async func work inside a button action closure we need to wrap it with Task { };
— how to send encoded codable data over the internet;
— about useful service .
November 23, 2024 at 4:11 PM
Sometimes, when doing medical coding, I feel like the goblins in the closet in the beginning of Labyrinth. "That's not the right words!"

Like, we can't code dependence on oxygen without the actual word "depend/ence." "Requires oxygen" is not codable.
December 30, 2024 at 4:44 PM
4. A lot of categories have seen large drops; some are probably things most people get help from LLMs with, others are maybe passe' because less vibe codable? Wild speculation on my part here.

5. New categories added in 2025 seem popular: productivity, GenAI, CMP, growth & mentorship...
August 20, 2025 at 2:53 PM
Fun weekend project. One day I woke up and thought "wait, SwiftUI views are just structs, right? Can it be Codable? Could you create a native SwiftUI view with JSON?"

The answer is yes.

github.com/camh/CodableUI
GitHub - camh/CodableUI: A proof-of-concept to represent native SwiftUI views in a Codable structure.
A proof-of-concept to represent native SwiftUI views in a Codable structure. - camh/CodableUI
github.com
March 25, 2025 at 6:31 PM
A few things:
- correct and fast implementation for ATProto apps cause I wanna contribute something
- deterministic encoding is useful for a distributed data protocol I’ve been developing

Also cause I got into it and have been having a blast messing with Swift’s Codable APIs
October 20, 2025 at 10:52 PM
The compiling issue is actually the biggest blocker. You can’t use Codable in embedded mode, and you can’t have untyped throws (right now required by Codable), and the lack of Metatypes (needed to decode dates, UUIDs, Data, and other non-stdlib types) all make it impossible to use this lib
September 4, 2025 at 3:41 PM
Sounds like something that could be claude-codable by someone who knows ahk well?
January 16, 2026 at 8:02 PM
Codable
Might do it

I must first do other stuff
December 24, 2024 at 1:08 AM
ObservableDefaults Now Embraces Codable Magic
Thanks to `jmisol`, ObservableDefaults now effortlessly handles `Codable` properties via the `CodableUserDefaultsPropertyListValue` protocol. Seamlessly store and retrieve complex data types with UserDefaults.
github.com/fatbobman/O...
May 2, 2025 at 12:19 PM
Thanks to playing with the `apple-on-device-openai` I mentioned yesterday, I learned that Apple's local Foundation Models *excel* at entity extraction. The Swift API for it is also super nice in that you can tell it the structure of the output and it obeys.

1/3
June 17, 2025 at 7:19 AM
That is something that should be very vibe codable. Give it a crack.
August 24, 2025 at 9:59 PM
It could be, I’m not sure it compiles for embedded right now.

TBH I’d probably say a streaming decoder is more applicable to embedded. This can’t do that right now because of Codable restrictions
September 4, 2025 at 3:41 PM