Colt Frederickson
Colt Frederickson
When I generate C++ code g++ seems to compile it fine, but clang on the other hand produces errors that look like this: ``` /home/colt/src/coltfred/ironoxide-java/cpp/generated/sdk/IronOxide_impl.hpp:116:27: error: assigning to 'void *'...
This fixes #309. Not sure if there was a reason it was commented out before?
The [swig](https://github.com/swig/swig/blob/master/Lib/java/javahead.swg#L90) code for throwing exceptions calls `ExceptionClear` before `ThrowNew`. It's not clear to me from the spec that this is required, but it does seem to be a safer...
We should decide if we want Debug implementations on secret data. Patrick was removing it as part of his memory protections PR, but I think it warrants a larger discussion....
https://github.com/frugalmechanic/fm-sbt-s3-resolver writes to an s3 bucket as a maven repo. Would you be interested in supporting the `s3://` urls? This would allow people who are publishing to a private maven...
It appears the sources for atto cannot be located by either sbt-ctags or sbt-sublime. I'm running SBT 0.13.5 and trying to get atto 0.3 on scala 2.11. Both of these...
I have my plugin configured as a global plugin in the following way: `~/.sbt/0.13/plugins/build.sbt` contains `addSbtPlugin("com.orrsella" % "sbt-sublime" % "1.1.0")`. I have `~/.sbt/0.13/global.sbt` containing `sublimeTransitive := true`. When I had...
I'm still fairly new to this library, but Kafka released 1.0 this week. After doing #8 is there anything that needs to be done to support the 1.0 protocol? Is...
I have a few projects which are moving to Cats. It'd be nice if we could have a version of this that worked for Cats without slurping in Scalaz. I...
There should be a `Length` for at least NonEmptyList, but it could be expanded to any foldable type. Couple open questions: - Should this go in its own trait that...