Olivier Blanvillain

Results 14 issues of Olivier Blanvillain

How to reproduce: 1. Write some text in the "Game Comments" section 2. Go to "next/previous" move After that the text is lost forever, ctrl+z or going back to previous...

Here is an example: ``` class A { public A() { System.out.println(1); } public A(String s) { System.out.println(2); } } ``` Which is converted to: ``` class A { println(1)...

We are currently missing these two Dataset method: - DataStreamWriter writeStream() - Dataset withWatermark(String eventTime, String delayThreshold) That require some understanding of Spark streaming to be properly typed and tested....

enhancement
help wanted

Exhaustive status of the API implemented by `frameless.TypedColumn` compared to Spark's `Column`. It's split into two, the methods implemented directly on `Columns`, and the methods comings from `org.apache.spark.sql.functions._` ### Column...

feature
beginner friendly

Here is an exhaustive status of the API implemented by `frameless.TypeDataset` compared to Spark's `Dataset`. We are getting pretty close to 100% API coverage :smile: Won't fix: - [ ]...

feature
beginner friendly

```scala case class Foo(bar: Int, baz: String, bal: Boolean) val ds: TypedDataset[Foo] ``` This is nicely *named* and *typed*! However, after a select, the names are completely lost: ```scala val...

enhancement
feature

Would be nice to use [shapeless.test.compileTime](https://github.com/milessabin/shapeless/blob/ab081796c183530efdd8b29dab8fee1fee7c61f9/core/src/main/scala/shapeless/test/compiletime.scala) or something to check that we don't accidentally introduce regression in compilation time.

enhancement
help wanted

Tut does not work for Scala.js only documentation. I wonder if that's doable at all given that Scala.js does not currently have a RELP. Here is my attempt on scalajs-react:...

I think the cats documentation is a bit hard to reach from the README, this is the expected path to [`SemigroupK`](https://github.com/typelevel/cats/blob/master/docs/src/main/tut/semigroupk.md): - Land on https://github.com/typelevel/cats - → click Documentation#website link...