Michael Hipp
Michael Hipp
If the ws is trying to re-connect but getting rejected because of status 403 there seems to be no way to catch this error in the error handler. Status 403...
I'm getting an install failure on googleapis-common-protos. I don't see any obvious way to submit an issue on that package as it's not really a python package per se. Any...
Does ipfilter work with Caddy 2?
I created a stub caddy project as directed here: `https://github.com/caddyserver/caddy`. Added an import for ipfilter: `_ "github.com/pyed/ipfilter"`. Here's what ended up in my go.mod: ``` module caddy go 1.13 require...
Starting from the sample code, The p.Occupancy always shows 0, no matter how many examples I have running and subscribed at the same time. But the p.Who lists the clients...
Starting from the sample code and adding: ```Go r.Status = false r.Changes = true ``` The received PresenceEvent for "changes" shows Who as being empty[] and occupancy 0. Output: ```...
As of this writing it does not show up in 'Package Control: Install Package'. There is 'BlockCursorEverywhere' by a different author, but 'SublimeBlockCursor' is not there.
In database/sql I generally use `db.Exec("UPDATE ... WHERE id=$1;", ...)` to update a single row. Is there a better way to do this this in Sqlx?