spansh
spansh
Also things like https://www.edsm.net/en/nightly-dumps I'm currently using the rapidjson incremental parsing mode but am very interested in improving that (That said I am very much at the long tail of...
In my case I need to parse the whole file and I largely want every field (or some subset of them). Currently I'm using the SAX parser from RapidJSON which...
None of the code is currently public though the only thing from preventing that is my personal shame about how bad the code is (and it's tied in with a...
You can check out a version of that here: https://github.com/spansh/galaxy-spatial. I decoupled Postgres and made it so it just generates insert statements on stderr instead. Give me a shout if...
So where with simdjson you currently ```auto [doc, error] = document::parse(string("[ 1, 2, 3 ]"));``` and with the streaming api you do ``` simdjson::padded_string p = simdjson::get_corpus(filename); simdjson::ParsedJson pj; simdjson::JsonStream...
I did look at this again a few months ago and attempted to get simdjson to process my files. It seemed like I'd have to do a lot of preprocessing...
I believe I have finally managed to track down the error. I had done ```ember install ember-jquery``` which was tripping ember-cli-babel, specifically the _shouldBlacklistJQuery function. Uninstalling and reinstalling it with...
If you like I can send a pull request in with the relevant changes. Minimized to the json encode/decode stuff if wanted. I've gone another way with c++ version for...
> Syntax::Keyword::Try is also less quirky than Try::Tiny I did consider that but it has a hard requirement of perl 5.14 and it's still somewhat slower than eval, so I...
The link in the original post has speed comparisons http://blogs.perl.org/users/diab_jerius/2017/04/how-fast-can-you-try.html