Rory Kelly
Rory Kelly
Is it possible to overlay audio to a video? Currently it looks like this library only replaces the audio for a video.
Builder toBuilder() function is included in the constructor for the auto generated parcel code. ``` Error:(128, 14) error: no suitable constructor found for AutoValue_TestSection(String,List,Integer) constructor AutoValue_TestSection.AutoValue_TestSection(String,List,Integer,Builder) is not applicable (actual...
We have an autogenerated Network Stack. Cuckoo cannot mock protocol extensions that have functions with default parameters. ```swift protocol ApolloNetworkService { var apolloClient: ApolloClient { get } func allClashesFeedQueryWatch(cachePolicy: CachePolicy)...
Im aware this is a strange requirement but hear me out. Lets imagine I'm reading binary data from a hardware sensor, like a microphone, so I wrap that in a...
**Describe the bug** simply referencing the `willDisplayCellPublisher` will change the delegate of your collection view. This should only happen After subscription. ``` var willDisplayCellPublisher: AnyPublisher { let selector = #selector(UICollectionViewDelegate.collectionView(_:willDisplay:forItemAt:))...
I can mock a generic graphQL service with graphql-tools I cannot use these tools with prisma binding as I cannot pass prisma-bindings an executable schema. **Current work around** create file...
in an app I'm slowly moving over to kotlin in Build.gradle I add in: ``` kapt 'com.jakewharton:butterknife-compiler:8.5.1' compile 'com.jakewharton:butterknife:8.5.1' compile 'com.jakewharton:kotterknife:0.1.0-SNAPSHOT' ``` When I Build it fails with: ``` Error:Error...
This test will fail even though oooo is a valid palindrome and palindrome Permutation ```kotlin @Test fun `'oooo' a palindrome`() { isPermutationPalindrome("oooo") shouldBeEqualTo true } ``` solution should be ```kotlin...
rough version of epics similar to https://redux-observable.js.org/docs/basics/Epics.html TODO: - [ ] Tests. - [ ] Wrap CurrentValue subject to hide the `accept` function in epics. Signed-off-by: Rory Kelly