Claire Foster

Results 720 comments of Claire Foster

You may be wondering "what's the purpose of `Blob` at all, then?" There's several things: * It's a lazy resource to be passed around to functions which can then `open`...

Thanks. Basically we'll need storage drivers for each type of remote data API. So far I haven't had time to make a solid implementation of this, but there was some...

Yes that's great news! I've been following along with some of the Downloads changes but I got a little lost in the list back and forth. It seemed like a...

I can understand why you'd like to do this; in specialized circumstances a macro wants to emit different code in different cases, (for example in https://github.com/JuliaLang/julia/pull/35833) The sticking point is...

That seems like a promising and minimalistic minimal way to implement this, I like it!

Hey guys, I just saw this issue and being the author of the standard logging frontend I think it's flexible enough to do what you want (yes I am biased...

> We have dealt with these issues in the past using [Dlog](https://github.com/kpamnany/Gasp.jl/blob/master/src/Dlog.jl). It does require some helper tools, but nothing else we tried worked at scale. I propose to implement...

See also the related discussion about Distributed logging at https://github.com/c42f/TerminalLoggers.jl/issues/22 A question for you: will you `serialize` the log records rather than turning them into text? That would allow much...

Doesn't the Serialization stdlib do most of that work for you? ```julia julia> using Serialization io = IOBuffer() serialize(io, Any[("message", (x=1.0,i=10,s="blah"))]) data = take!(io) # put data in a file...

> We could but, at the moment, we have function pointers in the balance law, which I've heard cannot be reliably serialized. I think `Ptr{T}` are serialized as null, so...