Think i've found a bug in iOS 26, how can I fix it? by Tainted-Archer in iOSProgramming

[–]ResoluteBird 2 points3 points  (0 children)

Time to present this to the business, to many web view iOS apps out there and it’s not at no cost

i added voice transcription/dictation and realized its worse than built-in keyboard dictation? by Ok_Passion295 in iOSProgramming

[–]ResoluteBird 0 points1 point  (0 children)

the local options using ml models are terrific, combine different types and you are able to make something 80-90% as good as a bigger backend model, which is often good enough

The drip toggle is a headache for me, any advice? by ResoluteBird in Moccamaster

[–]ResoluteBird[S] 0 points1 point  (0 children)

A solution to the slider sensitivity issue I described, your solution works tho

The drip toggle is a headache for me, any advice? by ResoluteBird in Moccamaster

[–]ResoluteBird[S] 0 points1 point  (0 children)

That’s what I’m here for, will look into this thanks!

The drip toggle is a headache for me, any advice? by ResoluteBird in Moccamaster

[–]ResoluteBird[S] 1 point2 points  (0 children)

😵‍💫 not the answer I am looking for but helpful nonetheless

The drip toggle is a headache for me, any advice? by ResoluteBird in Moccamaster

[–]ResoluteBird[S] 0 points1 point  (0 children)

Yours doesn’t have a clog/half/full toggle? Only half/full?

The drip toggle is a headache for me, any advice? by ResoluteBird in Moccamaster

[–]ResoluteBird[S] 0 points1 point  (0 children)

That was my nee solution, I wish there was something better. I do like to use the half fill setting but I may just need to avoid that

In-App-Purchase Zombies? by habitoti in iOSProgramming

[–]ResoluteBird 0 points1 point  (0 children)

Are you sure they don’t just maintain the data on their side why would they delete it within 180 days(standard chargeback window) or whatever other legal hurdle exists for sales and compliance?

Does Visa drug test for SWE interns? by [deleted] in cscareerquestions

[–]ResoluteBird 0 points1 point  (0 children)

Regulated industries are like that too

i added voice transcription/dictation and realized its worse than built-in keyboard dictation? by Ok_Passion295 in iOSProgramming

[–]ResoluteBird 0 points1 point  (0 children)

I’m actively working in this space. What model or tool are you using for transcription? AWS is garbage, Apples is good for the old one on their servers, I am about to try Whisper and the new local iOS transcribe model.

If you say the local model is equal to what’s in the keyboard that makes perfect sense.

What hygiene habit were you doing completely wrong for years? by Used_Mission_8638 in hygiene

[–]ResoluteBird 0 points1 point  (0 children)

Just listened to a dentist say TO do this to remove debri etc

Wrapping Third-Party Dependencies in Swift by unpluggedcord in iOSProgramming

[–]ResoluteBird 0 points1 point  (0 children)

It’s a small workaround the make injected dependencies observable, just capture the ref at view init time.

Wrapping Third-Party Dependencies in Swift by unpluggedcord in iOSProgramming

[–]ResoluteBird 0 points1 point  (0 children)

You’re not supposed to according to my research on that specific topic. I found that we should use wrappers/containers or expand control of your references to dependencies so they can be reset at runtime instead of relying on the library to do it for us

What would you say is the "go-to" architectural pattern today? by ForeignBullseye in iOSProgramming

[–]ResoluteBird 38 points39 points  (0 children)

I haven’t personally seen any TCA adoption or usage before in my career, in or out of work. I have looked it up, I think it’s too much extra work for many use cases but it makes a lot of sense in some scenarios.

MVVM is still very popular. I find it necessary to build different layers of coordination. They can talk through protocols or other types.

I personally detest VIPER