Joshua Tacoma
Joshua Tacoma
I’m sorry I didn’t notice this earlier! The dash is not a valid character in variable names: https://tools.ietf.org/html/rfc6570#section-2.3 You can percent-encode it as %2D instead: ~~~ https://api.github.com/repos/{repo%2Dname} ~~~
Thanks, I was pretty happy to figure out that communication channel for a minimum of platform specific glue code. I'm not focused on the mobile app part of the code...
Whoops! My commit message was not meant to resolve this issue. It says "partially resolves" but the word "resolves" matched a rule and this issue was closed. I'm re-opening because,...
Alexandr, I'd be happy to get a pull request! I hadn't heard for roaring bitmaps before, it looks like a good fit. We're very pre-1.0 here so don't worry too...
Could this be implemented without creating `BlockProperties`, and by adding line attribute `indent` instead? `BlockNode.optimize` and probably others would have to change a bit. Some API options, taking "decrease indentation"...
**question of clarification:** Does `BlockProperties` allow meeting the requirements? If so, how? _"Applying to lines within blocks"_ shows these examples: > First level quote >> Second level quote > First...
Zero-copy is pretty cool, nice to see you're having fun with it! I've got my hopes up :-)
You're right, I got 3.2.3 mixed up with 3.3: http://api.zeromq.org/3-3:zmq-socket-monitor where this pointer issue is fixed. What do you think of sticking with the zeromq convention that the caller is...
I just noticed this will only compile in Go 1.1 and up. That's not a problem for me, but maybe we can separate the 1.1-specific code into another file with...
Would we bother with this if it weren't for the protocol used in `zmq_socket_monitor`? Protocols that involve sending pointers can still work, all that we can't handle right now are...