Alex Rothberg
Alex Rothberg
Any chance to get this merged?
Can you run arbitrary js iside the `sourceArgs` resolver? For example if I have an array of key/value pairs and I want to filter for a specific one: ```yaml sourceArgs:...
Is it possible to write an additional resolver that runs on the source beforehand so that the value can then be extracted using the `sourceArgs`? My naive approach where I...
Theano has `theano.sandbox.cuda.cuda_ndarray.cuda_ndarray.mem_info()`: (https://github.com/Theano/Theano/blob/master/theano/sandbox/cuda/cuda_ndarray.cu#L3418) I am not sure about the other frameworks. Also you have to make that function call.
It is just a matter of passing additional arguments to `WSGIServer`: ``` python wsgi.WSGIServer((addr, port), wsgi_application, spawn=pool, keyfile='server.key', certfile='server.crt').serve_forever() ``` I think there is value in having the SSL support...
I agree with this being a great, lightweight option for a server. I am looking for a good solution for an internal staging/demonstration solution (ie a little more than dev...
I actually do want to use django secure and having SSL is very helpful. You can print warnings if debug mode is turned off. I use self signed cert in...
I can submit a PR.
Any way to apply that same technique to #5? :-)
Ok. For reference, I started to solve this using: ``` diff - wsgi.WSGIServer((addr, port), wsgi_application, spawn=pool).serve_forever() - + https = wsgi.WSGIServer((addr, port_https), wsgi_application, spawn=pool, keyfile='server.key', certfile='server.crt') + http = wsgi.WSGIServer((addr,...