Christopher Dunn

Results 20 comments of Christopher Dunn

I'm simplifying [the travisci setup for **jsoncpp**](https://github.com/open-source-parsers/jsoncpp/pull/1229). I have to say that **homebrew** makes OSX setup so easy, I'd recommend it. I don't think you need to bother with **pyp**...

@rogdog, I upgraded to OSX 10.10.1, lost 4k, re-installed this patch, and got 4k back. So yes, re-patching is necessary (probably for the signature). I have 2011 MacAir.

[Go-lang](http://golang.org/doc/code.html) (go-build/go-install/go-get) solves this completely. It has `$GOROOT` for the system installation, and [`$GOPATH`](https://github.com/golang/go/wiki/GOPATH) for a colon-separated list of workspaces. Each workspace can have multiple go-repos. Ordinarily, [you don't need...

> Nimble does support installation from URLs. You can easily execute nimble install git://github.com/dom96/jester for example. You don't understand. [Go allows](https://groups.google.com/forum/#!topic/golang-nuts/8JFwR3ESjjI) `import "github.com/user/project.git"` in source code. That's a major difference...

A system-wide installation is related to an ad hoc project if there is a list of directories in the project. I don't need that personally. I'm happy with just one...

Because, as @BillyDonahue mentioned, `Value` can be many kinds of object, I would oppose adding methods which behave differently for different types. So I favor adaptors. You would have to...

@baylesj, I too am a fan of the Google C++ Style Guide. I wish I could convince co-workers to adopt it where I work. Anyway, we could probably add `explicit`...

You're right: UTF-8 is just as easy to scan for `"` as UTF-32. So we _could_ store the JSON strings (the part between quotation marks) as either UTF-8 or UTF-32,...

Sorry, I don't like to change/break old behavior. This was our mistake. But now, I wonder whether we can recover the old behavior without reverting that large PR. Somehow, we...

I need help from other team members. I expect it to take a couple months for us to change our methodology. The code reversions have priority. Is this a blocker?