Kevin Squire

Results 140 comments of Kevin Squire

I think that makes sense. I think this interface with possibly created before keyword arguments existed. There's always the concern that keyword arguments don't participate in dispatch but I'm not...

@samuelcolvin, will you be submitting uJSON.jl to METADATA? For work, I would love to use uJSON.jl. At the same time, I would love to see JSON.jl improved as much as...

Strictly speaking, this isn't valid JSON--escape (`\`) can only be followed by a specific set of characters (see http://json.org/). Whether or not we want to support passing this anyway I'd...

Has there been any progress in finalization of mmap'ed arrays in Julia since 2015?

https://github.com/tanmaykm/ProtoBuf.jl https://github.com/tanmaykm/Thrift.jl https://github.com/kmsquire/MsgPack.jl

@slundberg, thanks for the report. Can you give the zlib version you're using? You can get it with `GZip.zlib_version`. Also, can you try installing the `Zlib` package and running the...

Sorry, that's `Zlib.Reader(open("/tmp/orig"))`.

I was just going to suggest doing that. :-) At least that gives you a workaround. You can set the compression level for gzip by appending the number to the...

GZip calls `gzwrite`, and Zlib doesn't, so that probably explains the difference. If you increase the buffer size for the write in `ZLib`, it might even be faster, if that...

Relevent (but not sure how useful), OpenMP has a `collapse` keyword for, well, collapsing nested parallel loops.