RE: https://mastodon.social/@mjtsai/116014736094096168

Oof, RIP Combine I guess?

"Avoid using the Combine framework and instead prefer to use Swift’s async and await versions of APIs instead"

@stroughtonsmith @mjtsai Well, the writing was on the wall for quite a long time. At my day job, we moved away from Combine a while ago and are much better for it. Instead we use much simpler solutions: async await, delegates and closures. Ultimately they are much more testable, scalable and approachable. One of the biggest mistakes we have ever made was trying to shoehorn Combine everywhere. But when you have a hammer, everything becomes a nail. So they say.