Jonathan Malmaud

Results 110 comments of Jonathan Malmaud

This package is looking to the match the Python API as closely as possible. So if that function exists in the Python API with the same semantics, then a PR...

Wanna just submit a PR to do that?

But the point of #435 was so CI would pass, and it seems this still fails.

@oxinabox trying to clean up the PRs. Do we still want this? I kinda forget the context.

Do you guys know about https://github.com/JuliaEditorSupport/julia-vscode? It's a pretty mature package that lets you evaluate Julia codeblocks like Jupyter, while also offering a lot of Julia intellisense features.

I searched but couldn't find a formal spec, but I know from experience it's relatively simple. https://github.com/brotchie/protobuf-textformat is a pretty minimal implementation that might be an easier reference than the...

While it's true that Julia tasks can largely accomplish the tasks that ZMQ polling are useful for, I don't see why we still couldn't a polling API like http://learning-0mq-with-pyzmq.readthedocs.io/en/latest/pyzmq/multisocket/zmqpoller.html.

Would you mind elaborating? How would I create a task that is willing to wait up to say 1sec to recv from a socket `s`?

Ya, that was my experience as well. On Mon, Aug 10, 2015 at 7:46 PM, Steven G. Johnson wrote: > > Hmm, I guess it is pretty awkward; all the...

Well i'm not sure this is the most elegant, but something like this would work if you don't mind a blocked task sticking around indefinitely. ``` julia s = Socket()...