Paul Jimenez

Results 112 comments of Paul Jimenez

Implemented in www.gittip.com ; should pull it from there.

WSGI can't support socket.io/websockets. So to do this we have to: 1) make the aspen server rock solid as it's going to be the only way to support websockets 2)...

It doesn't. FastCGI and WSGI both allow the webserver to break up multiple requests from a single connection across multiple backend FastCGI or WSGI processes; websockets seems to require that...

Okay, #324 just dropped socket simplates as part of ripping out network_engines. This is an issue to remind us that someday we want that functionality back.

...there's a new solution: [ASGI](https://asgi.readthedocs.io/en/latest/) which has a good summary in the [intro](https://asgi.readthedocs.io/en/latest/introduction.html). I think this will allow @chadwhitacre 's original vision of allowing a simplate to be either a...

Having done this a bit before, you likely want to start by adding: ``` from __future__ import unicode_literals ``` which will make all literals be unicode without having to put...

The variability around where origin points is why it should look for an 'upstream' remote first, if one is defined. I think I'd rather have it guess wrong and have...

I was thinking there should be a `git hub repo` sub-group with subcommands `create` and `list` at the least, and maybe also `info` and `setinfo` to allow configuring the repo...

I don't mind the API part of it, but the strange nested object command parsing discouraged my attempt at implementation.