Nathan L Smith

Results 21 comments of Nathan L Smith

Ok, well apparently this doesn't happen always, so my fix above might not quite work. It may have happened before the DOM was ready, so maybe the submit needs to...

I think #47 is closer to what's going on here, though both items would be useful. The problem here is that we're assuming (and you would think that the whois...

We implemented something close to these examples for a bubble chart in APM in Kibana: https://github.com/elastic/kibana/pull/95577/files#diff-725dd22b1f6bbad4aa7a6186755643fdfd9d139de10f8ba32a2abf565af4e28a It works, but took quite a bit of copying from the elastic-charts source and...

I was able to fix it by putting ``` viml autocmd BufWinEnter {*.agsv} syntax on ``` in my vimrc.

@vaskas it's somewhere in the middle :) after the Vundle setup stuff.

It does make sense to be able to upload cookbooks through the web app. Does `knife cookbook site share` have problems on Windows as well? If it does and there...

@louis-gounot that sounds exactly right. I would go a step further and make it store upload in /var/opt by default (with a symlink into /opt/supermarket/.../public/system) and make this directory configurable.

Yes we should be able to do something like this in the (as of yet unreleased) [Omnibus package cookbook](https://github.com/opscode/omnibus-supermarket/tree/master/cookbooks/omnibus-supermarket). We probably can use a notification on something like the nginx...

If you look in `$(hab pkg path core/glibc)/include/netdb.h`, you'll see: ```c #define _PATH_PROTOCOLS "/etc/protocols" #define _PATH_SERVICES "/etc/services" ``` The correct thing might be to have core/glibc have a dependency on...

I'm in agreement with @reset for another reason: [TOML doesn't have `nil`](https://github.com/toml-lang/toml/issues/30), so if you want something to not be set you either would have to use an empty string,...