Christopher Baker

Results 161 comments of Christopher Baker

Can you give a more specific example? Do you mean like: ``` cpp Json::Value v; v["x"] = 3; // update v["x"] = 4; ```

This uses the built-in `ofLoadURL` which defaults to `GET` requests. You can construct a similar `POST` request using the underlying `Poco::HTTPRequest` or you can use `ofxHTTP` which has support for...

That is how I would do it! Also, basic http auth is supported in ofxHTTP as well as oauth 1/2. On Fri, Oct 20, 2017, 10:36 AM moebiussurfing wrote: >...

Yeah, it's hasn't been working for a long time but we left it because it still results in parsed json :) We should remove it or document that fact more...

See my comment on the forum http://forum.openframeworks.cc/t/networkinitializer-duplicate-symbol-ofxosc-with-new-poco/18122

Seems like a good idea to me, assuming the underlying implementations are const.

Good point @bilderbuchi -- it's very easy to do with the new makefile system, but wasn't sure how it would play out in other project files. I suppose an update...

so in the new `addons_config.mk` file, users will specify shared libraries (e.g. libMySharedLib.so MyOtherSharedLib.so) as ``` ADDON_SHARED_LIBRARIES := MySharedLib ADDON_SHARED_LIBRARIES += MyOtherSharedLib ``` and static libs like (e.g. libopencv_legacy.a and...

Just thinking about this some more, if we use `-l / -L` for addon shared libs, then they will be required to be prefixed with `lib`, but if we go...

Also, just FYI (and this is well-documented in the new makefile system), the reason we are separating out shared and static libs is so that we can now avoid the...