Anıl Anar
Anıl Anar
So seeing the source code for grunt tools, it is possible to add `placeholder` to attributes and then one can create a custom directive to translate it. But that doesn't...
I'm having this problem at https://eksisozluk.com One scrollbar on the left, one for body.
Readonly arrays/records (using ts `readonly` keyword) have low adoption in general even in immutable code bases. If mutable modules are replaced with the readonly variants, our codebase at Userlike would...
I noticed the same problem for other `fromIO`s so seems to be a problem in `FromIO`.
@DenisFrezzato Were they wrongly annotated in 2.10 too or is this a breaking change? I reported this as a bug because I assumed breaking changes were considered a bug; unless...
@DenisFrezzato I upgraded from 2.10 to 2.11 and just posted (minimal reproducible) code that broke after the upgrade. I'm aware that they are wrongly annotated in 2.11 :smile:
There's another important difference between fp-ts errors and rxjs errors: fp-ts errors do not stop the observable, but rxjs errors do. So with the proposed `retry` operator, there would be...
There's a Scala implementation of Rx observables here: https://github.com/OlivierBlanvillain/monadic-html It uses `switchMap` for `bind/chain/flatMap`. The author also provides a proof for monadic laws but I don't know if the proof...
Also the author implements Semigroup (by proving only associativity unlike Alt which needs distributivity) using `merge`.
We cannot prove laws of observables (the way proofs work in category theory) if we don't lawfully implement the observables ourselves. We are choosing to not implement observables ourselves so...