jeremyrsmith

Results 16 issues of jeremyrsmith

Currently it's easy to accidentally have a space after a spark configuration property, which leads to e.g. that property not properly overriding the same property from the template. For example,...

For whatever reason, this seems to be much faster than using real Promises. In a very large notebook, this change consistently cuts load time from ~3800ms to ~1100ms on my...

Sandbox HTML output in an iframe. This is to prevent malicious HTML from accessing the notebook or communicating with the server. An attempt is made to keep the iframe sized...

When using `withDataFrame`, Vegas collects all the data and has a threshold for sampling instead. But when doing aggregations in your plot, this means it will fetch all the data...

It would be great if websockets (server-side) could support the `permessage-deflate` extension, which provides compression for websocket frames. It's described in [RFC 7692](https://tools.ietf.org/html/rfc7692) and is currently implemented client-side in at...

enhancement
module:blaze-server

Given a case class with an optional field: ``` scala case class Foo(foo: Option[Int]) ``` When deriving a patch for that class: ``` scala Decoder[Foo => Foo] ``` The patch...

bug
help wanted
ready

This commit makes the following changes: * Enable a new preferred API, `toService`. This API allows for creating a service from a request. Rather than specifying content up-front, you can...

GET, POST, and PUT requests should support content streaming. GET requests should allow content to be streamed from the resource. POST and PUT requests should allow content to be streamed...

- Add the ability to place filters before the HTTP service, configurable at the request level - Add the concept of an Authorizer, which is just a filter. - Add...