Richard Dallaway

Results 57 issues of Richard Dallaway

I sometimes need to split a CSV into batches of rows, process them, and then recombine them. It would be convenient if the `--filename` argument allowed for `{}` to be...

Adopt https://github.com/olafurpg/sbt-ci-release

The project build depends on slick and shapeless, naturally. But should they be run-time dependencies to allow the end user to make minor version changes? Not sure what the best...

Hello 👋 For a case class with an optional value set to `None`: ``` case class C(a: Int, z: Option[Int]) val c = C(1, None) ``` ...is it possible to...

Users have asked for a way to add a "remember me" checkbox to enable/disable the setting of the ext_id cookie. Mailing list thread: http://groups.google.com/group/liftweb/browse_frm/thread/82b931d4bf43d10a/473332fda485d038?lnk=gst I'd suggest: - the ability to...

P:Normal

I've run into a strange issue with Firefox after upgrading BootstrapCK. We have an application using bootstrapck which was originally built using the [ckeditor builder](http://ckeditor.com/builder). That works fine, but the...

Hello! I'm looking to add a Travis build (as mentioned oin the Lift mailing list). As part of that I'm checking everything compiles OK. I've noticed that an sbt `+compile`...

In the README we use: ``` import cats.syntax.cartesian._ ``` This has been deprecated. Let's update the README.

Using `fromFile` generates an exception with a stream closed too soon. The iterator is lazy, and we close the file around it before a program can consume the rows.

A CSV with duplicate column names... ``` Home School, Allocation, Joint School, Allocation ``` ...modelled as: `(String, Double, Option[String], Option[Double])` will fail to parse a valid row such as: ```...