Dan Peterson

Results 15 issues of Dan Peterson

It'd be great if there was a way to specify httpie should only send credentials from netrc or similar when https is in use and working. This would help prevent...

When trying to serve the OBA webapp via https things break because external javascript and stylesheet resources are hardcoded to `http://...` instead of the more friendly `//...`. For example the...

bug

Right now with the tab list open you can use arrow keys to move up and down in the list. It'd be super handy if Ctrl-N (next/down) and Ctrl-P (previous/up)...

enhancement

Related to #381 I noticed if a query is parsed out of a `:url` attribute passed to `Excon.stub` it's not being converted to a hash as one might expect.

pinned

`Rack::Session::Cookie` [supports](https://github.com/rack/rack/blob/1f47a4478546602d3c17902cc3faf42b106f0638/lib/rack/session/cookie.rb#L27) an `:old_secret` which allows for graceful secret rotation without breaking existing sessions. Would be great if `EncryptedCookie` supported something similar. cc @tmaher

s3-us-east-1.amazonaws.com does not exist.

deployment

With a policy such as [this one](http://docs.aws.amazon.com/IAM/latest/UserGuide/ExampleIAMPolicies.html#iampolicy-example-s3).

I would like to have l2met produce a "unique things seen" metric from my log lines. Say I have an app that logs lines like this: ``` user_id=3 user_id=6 user_id=3...

Hi there, thanks for this family of modules. I'm using this module to generate schema near existing HTTP handler code (like a minimal version of swaggest/rest). Trying to use oneOf...

Consider [this query](https://datasette-json-html.datasette.io/demo?sql=select%0D%0A++json_array%28%0D%0A++++json_object%28%0D%0A++++++%27href%27%2C%0D%0A++++++%27https%3A%2F%2Fsimonwillison.net%2F%27%2C%0D%0A++++++%27label%27%2C%0D%0A++++++%27Simon+Willison%27%0D%0A++++%29%2C%0D%0A++++case%0D%0A++++++when+%27hi%27+%3D+%27hello%27+then+json_object%28%0D%0A++++++++%27href%27%2C%0D%0A++++++++%27https%3A%2F%2Fwww.python.org%2F%27%2C%0D%0A++++++++%27label%27%2C%0D%0A++++++++%27Python%27%0D%0A++++++%29%0D%0A++++end%2C%0D%0A++++json_object%28%0D%0A++++++%27href%27%2C%0D%0A++++++%27%27%2C%0D%0A++++++%27label%27%2C%0D%0A++++++%27Empty+href%27%0D%0A++++%29%0D%0A++%29+as+links), with this SQL: ```sql select json_array( json_object( 'href', 'https://simonwillison.net/', 'label', 'Simon Willison' ), case when 'hi' = 'hello' then json_object( 'href', 'https://www.python.org/', 'label', 'Python' ) end, json_object(...