Kevin Meredith

Results 23 comments of Kevin Meredith

@seanparsons Given: ```scala case class Person(name: String) ``` and: ``` scala> Parse.parse("""{"name": "Bob", "foo": "dunno"}""").toEither.right.get.hcursor.fieldSet res6: Option[Set[argonaut.Json.JsonField]] = Some(Set(name, foo)) ``` How would you use `fieldSet` to determine if there's...

Given all of the fields of a `case class A` and all of the `Json`'s keys, assuming we decode the `Json` to an `A`, we can compare `A`'s fields to...

As I understand your reply, @seanparsons, you believe the `LabelledGeneric` approach that I proposed in https://github.com/argonaut-io/argonaut/issues/104#issuecomment-313884079 to be unnecessary given the solution that you've provided with `DecodeJson#validate`? If so, perhaps...

@plokhotnyuk - I wasn't able to reproduce it in: ```scala $amm Loading... Welcome to the Ammonite Repl 1.0.3 (Scala 2.12.4 Java 1.8.0_121) If you like Ammonite, please support our development...

Could you please tell me how to, perhaps, modify my example to reproduce the error that you raised in this issue?

So, I just ran the sample project successfully - I have a better idea. It uploads the `Users.txt` contents to an S3 bucket, where they're separated by `|`. ``` $aws...

FYI (to those following the issue out of curiosity like me), I had to supply type parameters for `s.foldLeft...` to compile: ```scala @ import $ivy.`org.typelevel::cats-core:2.1.0` @ import cats.data.NonEmptyStream, cats.implicits._ import...

Hi - do you have any recommended readings to understand SAML? I tried pac4j in the past, but my main problem was not understanding the request/response flow of SAML. I...

Yes, it only occurs in the REPL: ``` $cat build.sbt scalaVersion := "2.12.1" libraryDependencies ++= Seq( "com.chuusai" %% "shapeless" % "2.3.2" ) $cat src/main/scala/net/NarrowReplBug.scala package net import shapeless.syntax.singleton._ object NarrowReplBug...

Hi @bplommer - the scope of this work is to provide a pure FP interface and implementation (using http4s) for both `io.confluent.kafka.schemaregistry.client.SchemaRegistryClient` and `io.confluent.kafka.schemaregistry.client.CachedSchemaRegistryClient`?