James Roper

Results 120 comments of James Roper

To be honest, my understanding of the `Type` hierarchy, including `actualTypeArguments`, and what may be returned in what contexts, is somewhat limited - the changes I made here were guided...

The title of this issue should be renamed now - it should be "add option to allow creating one slide per fragment". In my presentations, I often use fragments to...

Maybe we could implement a reactive mail client? :wink:

Definitely not provide an implementation of reactive streams. However, we could use Akka streams to implement an asynchronous SMTP client - SMTP is mostly line by line so would be...

You could also just do: ``` scala Future(...) ``` That will dispatch it asynchronously, and also allow you to add callbacks when it's done.

I agree that a TCK would be great - a TCK isn't just useful for validating implementations, it would be useful for validating the spec itself. I think there are...

I think a more generalised solution would be better. Play currently doesn't allow the response to be customised at all, I think a better solution would allow the user to...

> Firstly, is this actually possible currently (and I just haven't figured out how) No, it's not possible. > If not, is this something that could be implemented? Maybe. `RequestHeader`...