Daniel Kvasnička
Daniel Kvasnička
Same here. Neither `terraform validate` nor `tflint` show any errors in the loclist. Debugging Syntastic on my machine also shows that it executes the checkers and is aware of the...
Hi and thanks for the prompt response, In this case I was writing the decimal fields without any computation but other whole-number fields were involved in some computation - so...
`Ctrl-D` works but you have to delete any previously entered text, which kinda sucks.
Before this is implemented, would it be possible to at least make the lib ignore these keywords? Currently when I use them the whole generation proces fails with `RangeError: Maximum...
Current workaround is to use `kcli` (which, btw, also nicely auto-formats the JSON payload in a Kafka msg ;) ).
> **Update**: Use **SBCL**! - cl-mongo **works** for me with that, using latest mongo-community. > I was on CCL when I had the problem above. Can you be a little...
Mongo 3.6.6, SBCL 1.5.7 via roswell 19.3.10.97 ``` * (cl-mongo:with-mongo-connection (:host "127.0.0.1" :port 27017 :db "hub") (cl-mongo:show :collections)) NIL ```
Spin's `run` procedure passes its kw args to `serve/servlet` ([docs](http://docs.racket-lang.org/web-server/run.html?q=serve%2Fservlet#%28def._%28%28lib._web-server%2Fservlet-env..rkt%29._serve%2Fservlet%29%29)), which means that it supports (or _ought to_ support) serving static files using the `#:extra-files-paths` kw arg. Try defining a...
I think I've found the problem. The problem is that the `#:servlet-regexp #rx""` interferes with serving static files, "hijacks" the requests and returns 404. When I change the regexp to...
Something like this should work but then it seems to me that it doesn't make much sense to actually use Spin (because you'd do a lot of the crucial work...