libraryrecommendation

Recommendations: Easy To Use/Low Dependency C/C++ RSS Library

Just like the title says. Anyone know of an RSS reading library for C/C++? Ideally: Minimal/no outside non-standard dependencies Easy to use API Cross platform would be ideal, but I'm OK with Win* only if necessary. I'd just rather not roll my own if necessary. :) ...

Using Java, Need to establish an https connection via proxy.

I need to establish and send/read over/from an https connection (to a website of course) but through an http proxy or SOCKS proxy. A few other requirements supports blocking (I can't use non-blocking/nio) isn't set as an environment or some other global scope property (there are multiple threads accessing) I was looking into HttpCore...

How can I render SVG with common PHP extensions?

I'm working on a project in PHP that needs to render dynamically-created SVG images to PNG (or GIF if not PNG) format. I know I can do this by invoking a SVG renderer like rsvg, or with an extension like ImageMagick, which isn't that common*. Is there a "drop-in" style library that can render SVG using things like GD and DomDocument? ...