-
Updated
Apr 20, 2022 - Python
scalajs
Here are 558 public repositories matching this topic...
Show[Throwable]
The .forall
pattern is a great way to create an optional filter for a field that could be defined or not:
case class Person(name: String, age: Int)
val nameOpt: Option[String] = Some("Joe")
run { query[Person].filter(p => lift(nameOpt).forall(_ == p.name)) }
// SELECT p.name, p.age FROM Person p WHERE ? IS NULL OR ? = p.name
// (i.e. when nameOpt := None then the `WHERE ? IS NULL`
-
Updated
Apr 18, 2022 - Scala
A such question have been raised again: https://stackoverflow.com/q/56132229/10793449
We should clarify an using an arbitrary scala code as an attribute value.
When I want to watch a user TV by clicking on a link it is not opening in the app (Android on my case but it should be the same with other OS).
So if I click on https://lichess.org/@/valvin1/tv browser offers me only browser apps to view this page althought it is implemented in the app.
I add a quick look on Android side and it looks it requires adding url pattern here: https://github.com/li
-
Updated
Apr 5, 2017 - Scala
-
Updated
Dec 13, 2021 - Scala
-
Updated
Apr 20, 2022 - Scala
Suggested on Telegram.
It may be easier to understand the examples if they don't show both distage
and BIO
at the same time, so we may want to have a variant of distage-example
that uses just distage
alone, using a monomorphic effect type everywhere.
-
Updated
Feb 24, 2022 - Scala
- 2 Udash apps should work just fine in a single JVM
- the API is pretty ugly and even the docs suggest wrapping it
-
Updated
Apr 5, 2022 - Scala
-
Updated
Apr 21, 2022 - Scala
As part of #283 the behavior of the right mouse button was altered to prevent the context menu from popping up. We want to add an advanced config flag so the user can control its behavior.
-
Updated
Apr 5, 2022 - Scala
-
Updated
Apr 19, 2022 - Scala
-
Updated
Dec 11, 2020 - Scala
-
Updated
Mar 30, 2022
-
Updated
Apr 21, 2022 - Scala
-
Updated
Apr 5, 2022 - Scala
-
Updated
May 29, 2020 - Scala
-
Updated
Jan 14, 2018
-
Updated
Mar 6, 2022 - Scala
Improve this page
Add a description, image, and links to the scalajs topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the scalajs topic, visit your repo's landing page and select "manage topics."
I just came across the fact that a
Show[Throwable]
exists.import Scalaz._
, one needs toimport scalaz.std.java.throwable._
What's going on with this? :D
Is it OK if I fix both of these (for 7.2 and 7.3)?