Craig Radcliffe

Results 4 comments of Craig Radcliffe

Here is a Python web server script that sets the `X-Content-Type-Options: nosniff` header: ```python #!/usr/bin/env python3 from http.server import HTTPServer, SimpleHTTPRequestHandler class Handler(SimpleHTTPRequestHandler): def do_GET(self): self.send_header("X-Content-Type-Options", "nosniff") super().do_GET() server_address =...

I'm not sure there's a clean way to do this while also limiting the cardinality of the extra labels from the library side. I was thinking the risk (and user...

I updated the playground PR to be closer to what we have in our actual code -- the `Where` clause seems to make a difference.

> The problem here is that if the user scan `[16]byte`, we don't know if he wants to query multiple records or one record. I agree that it's not clear...