Stuart Roebuck

Results 26 comments of Stuart Roebuck

Once rust nightly has been installed, the rest of the install can skip a few steps with: cargo +nightly install --git https://github.com/fede1024/kafka-view.git ...having said that, I notice that it needs...

I've added a pull request to fix the issue immediately above: #34

Yes, another thank you and request for this enhancement. As well as having very different weekends from weekdays, I also have a pattern to my weeks activities that, combined with...

I think I'm encountering this issue. I want to parse the following: ``` val s = """{"event":"form","id":"xsD7n7h4rPem6pg0M1Bv19r","data":[{"name":"name","value":"Fred Bloggs"},{"name":"email","value":"[email protected]"}]}""" ``` Trying this with jerkson (`com.codahale.jerkson.Json.parse(s)`) gives: ``` java.lang.ClassCastException: java.util.LinkedHashMap cannot be...

I have found that I can get most of the way with deserialising maps using: ``` Json.parse[Map[String, JValue]](json) ``` for a map between a String key and any kind of...

Okay, this isn't perfect, but with Coda's assistance I have discovered that Jerkson supports `Option` types, so, in the above example: ``` Json.parse[Map[String, Option[JValue]]](json) ``` works nicely, but for a...

Coda answered this one for me today… Just use: parse[Option[JValue]]("""[null]""") The result will then be `null`. Simple when you know how! :) > Okay, I was in too much of...

Apologies, I was in too much of a rush last night that I didn't test my example and also typed `null` instead of `None` which was what I was expecting...

There is "an official" docker based image of the docker registry on the official docker registry. It's recommended use is **without** TLS. If Docker would like users to setup TLS...

For history of this pull request refer to: https://github.com/altercation/solarized/pull/177