Ilya Bersenev

Results 6 comments of Ilya Bersenev

In my case snapshots began rendering identically under Apple Silicon after I added 'Host Application' for unit test targets. Currently we use iOS 14.2 simulator for unit tests, there are...

Can you give an example? We use host apps generated by cocoapods, they only have almost empty appdelegate.m, main.storyboard files and info.plist and are linked with the corresponding framework.

If you enable additional concurrency warnings in Xcode, you can see that access to onCancel in the original implementation causes a warning: > Cannot use let 'onCancel' with a non-sendable...

If we are absolutely sure that `URLRequest` and `URLSession` should be `Sendable`, we can silence that warning like this: ```swift extension URLRequest: @unchecked Sendable {} extension URLSession: @unchecked Sendable {}...

I've found Russian dictionary with cases (35MB), it will work for our case

I've used dictionary from this repo: https://github.com/danakt/russian-words 35MB is in unicode, original file was 2 times smaller in cp1251 encoding Spellr completes in around 4 secs for 650k lines of...