Willem Olding
Willem Olding
Hi @alxs. I'm one of the engineers who worked on the integration so I'll respond on behalf of @empea-careercriminal. 1. IPFS Deployment - The wrapper is not ready for deployment...
@timotree3 would you mind checking I fixed those conflicts correctly and didn't undo any of your work
> @willemolding this is just a reminder to sign the terms and conditions. See CLA bot. Let me know if you have any questions. Signed
Oh yeah you are right about the fields. There is also the possibility that the field names are different to the key strings in the JSON string you want to...
I started working on an event based JSON parser written in AS based on RapidJSON (https://github.com/willemolding/asm-json-parser). This is what convinced me that using a third party might be a better...
From our perspective (using AS for writing holochain apps) we would prefer not to require GC and have everything happen at compile time
In the interest of keeping code size small and reusing existing float parsing functions etc. what do you think about either using or porting this lib (https://github.com/zserge/jsmn) ? It seems...
Interesting. I wonder if that is less of an issue for the problem we are trying to solve. I don't imagine anyone will be parsing a multi-GB json file in...
Ah yes. From what I can tell it only supports ASCII while the JSON standard requires full UTF-8 support which would seriously impact conformance
Cool, so it looks like RapidJSON is the way to go for maximizing compatibility and speed. The remaining decision is whether to think about a port OR to build a...