Ruslan Shevchenko
Ruslan Shevchenko
Added origin xhr request to loadStarted and loadFinished callback, to have ability to check response status.
Now we have. a few issues in test:compile with -Ycheck:all enabled , among them - type failures in some tests during typing: ``` java.lang.AssertionError: assertion failed: non-empty constraint at end...
Track documentation from the point of novice and rewrite parts, which are hard to follow. // And not forget about experienced developers' paths, who will not want to read 'Monad-101'...
use as monad Try[List[_]] (or just List) and implement some exploring space algorithms, such as 8 eight queens puzzle, or knight tour in the monad, to have an example, which...
scala 3.0.2 and 3.1.0-RC2 skunk: 0.2.2 code: -------- ```scala package x import skunk.* import skunk.implicits.{*,given} import skunk.codec.all.{*,given} case class S6(s1: String, s2: String, s3: String, s4: String, s5: String, s6:...
Here is an implementation of the device authorization grant. (need more tests and docs before release, this pull request now is a work in progress, now just want to show...
Why not support awaitable operations inside try block, by translating try{ F } catch { G } finally { H } to something like: async(F).recoverWith(G).onComplete(H) ?
Thanks @lavrov for initial part. Progress can be reported in the scala-native branch. Currently we have issue with ``` rssh@rssh4> sbt catsEffectNative/test ~/work/oss/dotty-cps-async-connect [info] welcome to sbt 1.9.0 (Homebrew Java...