Felix Dietze

Results 105 issues of Felix Dietze

To make maintenance simpler, @lihaoyi could you please activate Mergify for this repo, or give me the permissions to do so? https://github.com/marketplace/mergify The configuration to accept Scala Steward PRs when...

Let's say I have a custom Extractor and a Var: ```scala object Extractor { def unapply(x: Int): Option[Int] = Some(x + 1) } val a = Var(1) ``` Then the...

We still have to wait for algebra to be ported to cats 1.0: https://github.com/typelevel/algebra/pull/207

I just found a few interesting papers which I think are very relevant for achieving efficient dom updates without virtual dom: > Maier, Ingo, and Martin Odersky. "Higher-order reactive programming...

discussion
documentation

fixes #53 I had this branch lying around...

Just found this: https://github.com/mdn/data I think it should be possible to extract a huge amount of code automatically and have a more up-to-date library in general. There is also https://github.com/mdn/browser-compat-data...

discussion

https://developers.google.com/protocol-buffers/docs/reference/java/com/google/protobuf/TextFormat TextFormat interacts with the message Interface, while ScalaBuff uses MessageLite. I didn't find a way to convert.

enhancement

I'd like to derive a codec for ```scala case class A(x:Int)(y:Int) implicit val jsonCodec: JsonValueCodec[A] = JsonCodecMaker.make ``` but multiple parameter lists are not supported: ``` [error] 'A' hasn't a...

enhancement

when using `webpack --json`, using `console.log` makes the json unusable. So I changed the logging to log to stderr, which works well in this regard.