Matt Hughes

Results 40 issues of Matt Hughes

Having some issues with FF 36 and intrinsic container sizing. Not sure if this is a new bug in FF or even a bug at all. I was looking at...

`Request`'s apply method has a default value for URI: ```scala def apply[F[_]]( method: Method = Method.GET, uri: Uri = Uri(path = Uri.Path.Root), httpVersion: HttpVersion = HttpVersion.`HTTP/1.1`, ``` `Uri.Path.Root` is arguably...

RFC

The postgres protocol supports sending multiple queries across different tables/views (separated by semi-colon) in one request and receiving the results. Currently Skunk explicitly does not support this: From Query.scala ```scala...

``` /** * This strategy supports built-in Postgres types only, and does not need a database round-trip * for initialization. This is the fastest strategy and is appropriate when you...

Using ScalaTest, I'm trying to run just a subset of my tests by class name. I know I could use tags but that seems redundant for this purpose. Is there...

Provisioning webpack through NPM/yarn is rather slow and easily makes up 90% of my dependencies for any SJS project. I'd much rather just require that my CI server has webpack/webpack-cli...

```scala object Repo { implicit val printlnLogHandler = LogHandler(println) val query: Query0[String] = sql"select name from person".toQuery[String] def asStream: fs2.Stream[ConnectionIO, String] = query.stream def asVector: ConnectionIO[Vector[String]] = query.to[Vector] } Repo.asVector.transact(transactor).unsafeRunSync()...

I added the tut v4.0.0 plugin as directed and have a single file: src/main/tut/Foo.md (note I don't have the leading slash there, but was trying to figure out how to...

The following example ADT fails to derive the Encoder for Foo but can generate the Decoder. Changing this to use generic.semiauto works. This uses the latest 0.13.0-M4 release. ```scala import...

Using the following config: ``` grunt.initConfig({ karma: { unit: { options: { autoWatch: false, singleRun: true, } }, watch: { options: { autoWatch: false, singleRun: false }, background: true, },...

type: support