Tyler

Results 17 comments of Tyler

Hi, I'm basically deleting the if guard and un-indenting the whole block here: https://github.com/russross/blackfriday/blob/v2.0.1/block.go#L610-L656 This block conditionally advances `i` based on info after the code fence, so the parser is...

I totally fixed this just now! I can send the PR...

@Lendar That was in my original comment, the underlying binary add-apt-repository is not idempotent, so calling it directly is not sufficient.

Go rules might be out of date? Can you try replacing the http_archive rules in https://github.com/google/graphd/blob/master/WORKSPACE#L2-L6 to be: ``` http_archive( name = "io_bazel_rules_go", urls = ["https://github.com/bazelbuild/rules_go/releases/download/0.18.1/rules_go-0.18.1.tar.gz"], sha256 = "77dfd303492f2634de7a660445ee2d3de2960cbd52f97d8c0dffa9362d3ddef9", )...

Nice, wanna send the PR?

LG, send the pull request and i'll merge it On Tue, Mar 26, 2019 at 2:23 PM Dave Winters wrote: > Just put committed it to: > > https://github.com/cetaus/graphd/blob/master/WORKSPACE >...

Hey Lonnie - yea we're under-documented, for sure. There's no REST interfaces, nor any HTTP servers generally to speak of here ... the best examples I can point you to...

> I am wondering what type of client you have available so that I can connect to a running instance? Do you have one in open source for C/C++ or...

These are great topics - I can cover some of them, others I'm going to have to either re-learn or go find an expert (I'm not the original author of...

We ended up working around this in an aspect by inspecting `ctx.bin_path`, eg: ``` if '/host/' in ctx.bin_dir.path: # ... host config ``` (h/t @rickeylev )