Jan Christopher Vogt

Results 123 issues of Jan Christopher Vogt

this is work in progress. it currently still leads to ``` [error] /Users/chris/xdotai/diff/test/Main.scala:25: could not find implicit value for parameter e: ai.x.diff.DiffShow[Foo] [error] implicitly[DiffShow[Parent]] [error] ^ ```

- we could try multiple different releases with and without - we could try a version that uses == as a fallback. Maybe that's even possible through imports rather than...

an example with a class with a constructor would help here: https://www.scala-js.org/doc/interoperability/sjs-defined-js-classes.html E.g. ``` @ScalaJSDefined final class Node( val id: Int, val label: String ) extends js.Object ```

Currently SimpleBinaryOperator doesn't have any tests or examples. And it returns a `(Column[_], Column[_]) => ...`. There should probably we a way to type-safe it's arguments, e.g. through additional type...

improvement

Things to draw inspiration from: https://github.com/non/cats#how-can-i-contribute-to-cats https://github.com/non/cats/blob/master/CONTRIBUTING.md https://github.com/non/cats/blob/master/PROCESS.md cc @d6y

Some of our operators do not take `Column` arguments but ordinary Scala types, because we cannot abstract over these operation in SQL. Examples are take, drop, inSet. This could be...

improvement

In UTF-8 the character Ü is represented by two bytes, one of which appears as a key in mechanize._beautifulsoup.BeautifulStoneSoup.MS_CHARS In Browser.open a subclass of BeautifulStoneSoup called MechanizeBs is used, which...

I'd love to integrate this into CBT https://github.com/cvogt/cbt/ so people can do the same in their CBT builds. that would however require the functionality to be available in a zinc-dependent,...

We are ignoring autoinc column for inserts, we could to the same for updates. Either like this: `FoobarTable.filter(_.id === someFoobar.id).update(someFoobar)` where newRow's autoinc column is automatically excluded or even like...

improvement