Josh Kuhn
Josh Kuhn
There have been a couple of mentions about how the validators are a bit limited at the moment since you can only look at the document and the context. There...
This is an issue for specifying the pagination api ``` js fusion("table_name").paginate('timestamp', 10).value().then((rows, nextPage) -> { // do stuff with rows someDomNode.onClick(nextPage().then(...)) }) ``` `nextPage` returns a promise that's resolved...
Would be cool. Given that we don't have an elm client ([yet](https://discuss.horizon.io/t/a-pure-elm-client-for-the-horizon-server/175)) we'd need to use ports probably
In the next big release, we're adding plugins (#373) and middleware (#24) which includes moving to express for hz serve. Since our stack is becoming more modular, as people move...
This is a pretty critical part of any reasonably complex app, and RethinkDB doesn't provide these capabilities at all, so it'd be nice to have an official elasticsearch plugin
https://facebook.github.io/jest/ It looks like it's got a lot of things we want like built in coverage etc. Also seems fairly mature in terms of capabilities.
Right now groups are static in practice. You must define your permissions by config.toml, and the groups are hard-coded there. Since the group definitions and permissions code are stored in...
Looks like `maybe_unstr` is defined, but `maybe_str` is used. In `python_tests` all exceptions are discarded though, so a few places where there is a valid `ot` value aren't found by...
Currently a couple of the apis talk in tokens, which is inconvenient. It would be nice if you could translate text into tokens and vise-versa easily. The [rust_tokenizer][] crate has...
They're available here and have a very regular shape: https://github.com/openai/openai-python/tree/main/openai/api_resources Since the shape is pretty predictable, probably don't need to actually execute python and introspect, could just use a crate...