Giter Site home page Giter Site logo

Comments (6)

sebaslogen avatar sebaslogen commented on May 30, 2024 5

Fantastic program, I quite enjoyed it πŸ‘
My suggestion would have been to split it into two shorter parts (there was a good separation of topics about half way through the program), it took me a while to find the free time to listen to the whole episode.

Thanks for explaining Monads, the concept is still exploding in my mind but your explanation is close to what I found in this monads ELI5 and the concept is starting to crystalize in my mind.

I really liked the part where you guys discuss the similarities between Mosby3 and Paco's solution, although I would like a deeper dive in the differences of each solution to understand the nuances. Super interesting topic πŸ‘Œ

Note: The testing robots thing is indeed an abstraction from the UI layer for testing and it's originally called PageObject pattern coming from the old wild web world. Martin Fowler introduced it here: https://martinfowler.com/bliki/PageObject.html

Keep up with the high quality of the topics! πŸ’―

from thecontext-podcast.

artem-zinnatullin avatar artem-zinnatullin commented on May 30, 2024 3

Examples:

Observable.just(1).ofType(String::class.java).subscribe { /* Compiles :( */ }

Observable.just(1).ofType1<String>().subscribe { /* Compiles :( */ }

Observable.just(1).ofType2<Int, String>().subscribe { /* Not compiles! But requires specifying upstream type */ }

from thecontext-podcast.

artem-zinnatullin avatar artem-zinnatullin commented on May 30, 2024

cc @pakoito

from thecontext-podcast.

pakoito avatar pakoito commented on May 30, 2024

Errata: in 30:30 I say that to do filter + map to change based on type you need flatMap. There's actually an operator for that called ofType.

from thecontext-podcast.

artem-zinnatullin avatar artem-zinnatullin commented on May 30, 2024

Yup (we have custom ofType() which is filter + map under the hood, that what I was talking about), btw, @pakoito pls just write separate comments instead of editing one because nooooone receives emails about edited comments 😸

from thecontext-podcast.

artem-zinnatullin avatar artem-zinnatullin commented on May 30, 2024

Btw, here is the code of problematic ofType (not filter as I said in the podcast, my bad):

// This can be applied to any observable no matter which type is emitted by upstream 
// and may lead to no events in downstream if incompatible types are used.
inline fun <reified Downstream : Any> Observable<*>.ofType()
: Observable<Downstream> = ofType(Downstream::class.java)

// This version has type bounds, but for some reason Kotlin compiler requires 
// you to also pass upstream type, though I think it should be able to infer it.
inline fun <Upstream, reified Downstream : Upstream> Observable<Upstream>.ofType2()
: Observable<Downstream> = filter { it is Downstream }.map { it as Downstream }

Same problem of ofType1() will occur if you'll use stardard RxJava's ofType(Class) in both 1.x and 2.x.

from thecontext-podcast.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.