Sofia Swidarowicz

@Phynet
41 Followers
42 Following
26 Posts
iOS 👩‍💻 at @somewhere. Full of Memory failure and buffer resets. I relearn a lot then I forget. Love 🎥 🏒 📸 sci-fi
Walking with Swift
Githubhttps://github.com/phynet
Crazy idea: migrate slack accounts threads to a web forum, but like 2000’s style forum… and with AI search help.
Now everything gadget and home hardware requieres you to registre and login. Smart tv: login, weighing machine: register and login. Scared of the future, no privacy, no ownership

I made GitHub Copilot write a raindrop sound synthesizer in Swift (plus some SwiftUI and Charts) and wrote about how it feels, as an experienced developer, to wrangle an LLM-based coding assistant for Swift/Mac development.

https://www.cocoawithlove.com/blog/copilot-raindrop-generator.html

Using Copilot to write a raindrop audio synthesizer using AVAudioEngine

A quick look at the state of LLM assistants for Swift programming but also having fun with AVAudioEngine and SwiftUI Charts

Cocoa with Love

Hello network! Katharina Gopp and me are interested in orginze an event targeting female audience that code in iOS/MacOS, but first we need some input to shape it. Would you like to help us?
#womenintech

https://forms.gle/vcWAvjZkjCZ2sbec8

Thank you for your suport! 💪

Ladies who code in Swift

We would like to create a iOS conference or workshop event targeting women of all experience levels and backgrounds to share experiences, ask questions about iOS development, and enhance soft skills. Men are also welcome to attend, but our primary focus is increasing the participation of women in the field and to do so, we need to know how many women would like to attend. All personal data collected will solely be used to analyze the questionnaire and will be deleted afterward. This email box is required since we want to avoid duplicates. If you permit us, we may reach out to you for further communication. (see next question).

Google Docs
Rewatching Silicon Valley again. 10 years have passed already. Darn. Excellent series…
My company is letting remote roles like mine go, my last day will be in September. I need to check for work now xD ughhh interview process again makes me feel bad… oh well. What gives.
We need to touch some UIKIt and I forget everythingggggg xD
Thoughts about using KMM / KMP besides learning new stuff?
Good afternoon everyone 😎 or good morning if you’re not in europe. Good night if you’re in Asia 😀

When exploring race conditions in async/await code, I would like to suggest a tool that's been helping me:

Before and after every `await`, and at the beginning of every Task, add a Task.sleep (I use 100ms).

This will ensure that suspension points are long enough that rare things can happen more often.

You're just expanding the suspension points here, not adding new ones. Adding new suspension points would change the semantics of your code.

Don't use Thread.sleep here. That's very different.