Michal Cichra

Results 67 comments of Michal Cichra

Preliminary patch https://github.com/mikz/httpclient/commit/329824633ec9479dddea765d561ca4b3dbc3ceb3

We are running with https://github.com/nahi/httpclient/compare/master...mikz:ssl-env-cert and it works just fine. And set the `SSL_CERT_DIR` or `SSL_CERT_FILE ` env variable. That is just a terrible workaround and would be way better...

Fixed by https://github.com/nahi/httpclient/pull/386

Hey, posted my findings in the other issue https://github.com/deivid-rodriguez/pry-byebug/issues/69#issuecomment-173876843. Imho it is surely bug in byebug (or an expected behaviour). Capybara webkit tries to connect to a socket in a...

I've been debugging the same issue and it looks like if you adjust brightness after turning the light on it does not trigger manual mode on state change. Brightness change...

You can configure persistent connection to github.com for a few seconds. I have this in my `~/.ssh/config` ``` Host github.com # Enable persistent connection multiplexing ControlMaster auto ControlPath ~/.ssh/-%r@%h:%p ControlPersist...

Block passed to `JWT.decode` is already used as a keyfinder. That has a significant issue, it is just passed the header, not the payload. So it can't find key based...

@mattbrictson will check, thanks! I'd expect `rbenv exec` to behave like `bundle exec`. Running any executable file with different environment. https://github.com/rbenv/rbenv/blob/a95ccd09a2c7cff435d915756abd5a2fe096fb9d/libexec/rbenv-exec looks like does exactly that, just prepares environment and...

@mattbrictson the example in https://github.com/capistrano/sshkit/pull/311#issuecomment-167902320 should fail also locally, right? ``` shell $ rbenv exec /usr/bin/env ruby -v ruby 2.3.0p0 (2015-12-25 revision 53290) [x86_64-darwin15] ``` Works just fine for me....