Pavel Sorokin

Results 11 issues of Pavel Sorokin

It looks to be similar to: https://github.com/kylef/Mockingjay/issues/50 which was marked as fixed. I have a SessionManager initialized as a singleton and then used in the service under test. I first...

There are a few things that make 1.5 more desirable over 1.4 - one being this one https://github.com/localForage/localForage/pull/633. Then again, 1.5 has one breaking change: https://github.com/localForage/localForage/releases/tag/1.5.0 This affects only the...

I stumbled upon this: https://github.com/square/retrofit/issues/1554 and added a converter because I wanted to handle the empty response body and not pass it as null to Observable. That thread is talking...

I managed to find a way to fail-fast the validation chain with bail, but what about failing fast the middleware list? Say, I have ```javascript .post( '/somewhere', body('name').exists(), body('phoneNumber').exists(), handleStuff...

i: enhancement
good first issue

Not sure how critical this is, I just jumped into Xcode 12 GM today, but I have loads of warnings which were not there with Xcode 11. Once again, not...

So, if I do something like this: ``` var a = Kefir.constant(1) var merge = Kefir.merge([a, a]) merge.onValue() ``` The output will be 1, 1, end Now, if I do...

Storyboard segue identifiers are not necessarily unique even in scope of one storyboard - say, different controllers can navigate to the same controller and reuse "toThatController" segue identifier. This works...

Basically, using features introduced by SwiftUI "2.0": `App` protocol instead of App Delegate.

**EDIT**: OK, it seems I was too sleepy when comparing Webpack 2 and 3, so the problem is not only Webpack 3-specific. It's the same with 2 as well. The...

I am not sure this adheres to the official recommendations, thus not making it very clean. As I understand, view model instances shouldn't be passed down to children components. Say,...