Dariusz Baciński

Results 15 comments of Dariusz Baciński

`implementation 'io.branch.sdk.android:library:4.1.1'` Same problem here. This issue should be reopened.

https://github.com/meilisearch/meilisearch/releases/tag/v0.28.0 I see there are breaking changes in 0.28.0: `The endpoint to update an index is now PATCH /indexes/{indexUid} instead of PUT` when do you plan to adapt java library...

I had to modify the existing GKE firewall rule on google console and add port 9443. now creating resources works: ``` $ kubectl apply -f collector.yaml opentelemetrycollector.opentelemetry.io/apm-sidecar created $ kubectl...

I agree with @shekibobo, Null Safety and Null Object are orthogonal concepts. Here is a good description of it https://sourcemaking.com/design_patterns/null_object On the other hand it is much less used in...

I have a problem with understanding pattern based on this example. See this one: https://github.com/ochococo/Design-Patterns-In-Swift#-flyweight Where the same instance of coffee is used in two different contexts and objects are...

``` let coffeeShop = CoffeeShop(menu: Menu()) coffeeShop.takeOrder(origin: "Yirgacheffe, Ethiopia", table: 1) coffeeShop.takeOrder(origin: "Yirgacheffe, Ethiopia", table: 3) coffeeShop.takeOrder(origin: "Buziraguhindwa, Burundi", table: 3) coffeeShop.serve() ``` By context, I meant "table" in above...

Object is also lazy at a class level, it won't get initialised until you will reference class. See "decompiled" byte code https://stackoverflow.com/a/54053195/361832 It only makes sense if you have more...

I have no exp with coroutines but I will look into it.

Long time ago I wrote article about unit testing RxJava 1 : http://macoscope.com/blog/unit-testing-rxjava/ It is a good idea to make a new one about RxJava v2.

To log in to different account I had to clear Chrome app data 🤯