Niko Dittmann
Niko Dittmann
I don't know if that's an issue but I noticed that truncating the logfile (the redirected STDOUT) doesn't work, at least the way expected. When doing ``` echo '' >...
As far as I've seen images are deleted by a GET-Request to `/admin?md5=12345&t=1`. Best practice IMHO would be to * Never be destructive on GET requests. * Use DELETE requests...
The "Content-Type" header doesn't reflect the requested and delivered format. I store a jpg and request a jpg, png and gif. The "Content-Type" header is always "image/jpeg" although the actual...
Did I miss something or are #zpopmin, #zpopmax, #bzpopmin and #bzpopmax missing?
Hi Louis-Philippe, buoy sounds really interesting. Is it possible to stream the response body with buoy? Your slideshare presentation suggests otherwise but I couldn't find it in the documentation. Niko.
I'm writing a phoenix app and I'm forced to support an HTTP/1.0 client which streams data to the app. As it's HTTP/1.0 it doesn't support `transfer-encoding: chunked` and as it...
Whenever #runlist is called "apt-get update" is issued on the server. This slows down otherwise fast runlists. I'd suggest s/th like this: https://gist.github.com/4692247
I've installed pyaudio from source and pynum via pip. Python version 3.3.3. I get this error: File "send.py", line 6, in FORMAT = pyaudio.paInt16 AttributeError: 'module' object has no attribute...
When doing HTTP 1.1 requests ngx_http_substitutions_filter_module removes the `content-length` header and adds `transfer-encoding: chunked`. That's perfectly fine. When doing HTTP 1.0 requests ngx_http_substitutions_filter_module just removes the `content-length` header while still...