aksel

Results 16 comments of aksel

I was just about to open a similar PR myself, and noticed yours here :smile: In general, the status code for invalid authorization seems to depend on the application. The...

> However, the definition of 401 in the same [RFC](https://tools.ietf.org/html/rfc7235#section-3.1) fits it _better_ I agree.

From my understanding, `/users/?` is no longer supported either. From what I can gather, [compile_path now escapes any regex tokens](https://github.com/encode/starlette/blob/master/starlette/routing.py#L140): ```python >>> from starlette.routing import compile_path >>> r_path, *_ =...

I have a use case, where an application exists exclusively as a consumer. of some resources - namely Secrets Manager and SQS. In our E2E test suite - which uses...

I have almost gotten this to work, using the experimental project option. It currently outputs each stack into its respective build folder, which I then have to manually combine. But...

I ended up writing my own plugin, _heavily_ inspired by yours. [Here's a gist](https://gist.github.com/aksel/d7a6adf1862b21a6945c0253fb8a2820) But I got it working, specifically for our use case, which is Node-only functions, only one...

Same issue here, and this is the only thing I could find about it online. I'm on a Thinkpad T14, Arch Linux, 5.18.14-arch1-1, i3. Closing and reopening the lid just...

+1 to this, I was _just_ about to post this exact same thing. My use case: I have an old route called /likes, which shows the logged in user's likes....

We use it @ [artboost.com](https://artboost.com). Isomorphic React, with Redux. react-router v3 has a bug with session storage, that does not appear to be fixable. v4 does not support transition blocking,...

@cyberhck Regarding nested routes, I go through the routes recursively, and find the appropriate component to render. [Link to gist](https://gist.github.com/aksel/afb81f22ce44efc90a575470ad220a2d) If you use Redux, you can use a selector, and...