Alexandru Ungur
Alexandru Ungur
+1 from me :) Trying to figure out how can I use signs (set/unset) from Go client as well as how can I read the quickfix list (or rather/better -...
Much appreciated all for the pointers and the invite!
Hi, Not sure why you needed that, this worked for me just fine: ```go func dieHard(w http.ResponseWriter, r *http.Request, err interface{}) { log.Println(r.URL.Path, err) w.WriteHeader(http.StatusInternalServerError) } router.PanicHandler = dieHard ```
I need this as well. Would you be interested in a PR?
labstack/echo#1222
This explains it very nice: https://serverless-stack.com/chapters/cognito-user-pool-vs-identity-pool.html I don't think this is a bug, it works for me just fine. IdentityPoolId would've been for logging in with Facebook or Google (etc.)...
#22 should fix this.
While we're at it, on my own code, I simplified that even further, a bit into absurd :D : ```JavaScript router.beforeEach((to, from, next) => { if (!to.meta) return next() if...
Just wanted to add that I am here for https://neovim.io/doc/user/lsp.html#vim.lsp.buf.document_highlight() The documentation currently recommends using `CursorHold` for document_highlight, but it was also recommended above NOT to use that event. Thank...
@roman-vynar could you please detail what you mean by "Logger interface is not generic" ? What exactly could it make "more generic"? As far as I understand it, as long...