Alexei Guevara
Alexei Guevara
Just in case this helps someone, I've been quite happy with this poor man's version of autosave :) `window.setInterval(function() { eventBus.trigger("app:save"); }, 1000 * 60);`
I'll take a look later in today. Which version on node / os are you running on ?
yes that's a good point. there is really no exception handling at all at this point in time, I think I will have time this weekend to cobble something :)...
there is an example configuration in the npm project page (https://www.npmjs.com/package/homebridge-ssh). It supports public key authentication (https://github.com/zb0th/homebridge-ssh/issues/2)
More specifically, this plugin depends on https://www.npmjs.com/package/ssh-exec ...so you can pass in the ssh section whatever params ssh-exec supports.
this is a super quick and dirty version of pull. ``` clojure (ns foo (:require [docker-client.support.rest :as rest])) (slurp (rest/post c {} :create-image {} {:as :stream :query-params {"fromImage" "mysql:5.7.16"}})) ```...