Jared Deckard
Jared Deckard
The `rands(min, max, count)` RNG function does not currently seem to be supported. It would be nice if there was a shortcut for generating a single value also `rand(min, max)`.
Using `&` after a command does not cause it to run in the background. I think this is a symptom of a larger problem: implementing a pseudo-shell instead of just...
If you want to create a field that transforms `None` to a preset value, a custom field is required. Currently the documentation for "Creating A Field Class" states: > To...
## Motivation I often have lots of small schemas containing unique `Meta` classes with only a few attributes. The `Meta` class sometimes requires more lines than the schema definition and...
### Description The poly-blend function was removed in https://github.com/libfive/libfive/pull/106 due to inoperability with the auto bounds feature. The auto bounds checker was later removed in https://github.com/libfive/libfive/commit/7520c6c4d1ead4bde5ed545f721d7d1053222305 and seems to have...
## Issue The collection view has a `href="#"` stub for document ID links. Navigation is handled by a JavaScript click event. This breaks the UX of copying links or opening...
**Issue** `package-json-versionify` is used as a babel plugin, but is not declared as an npm dependency. This worked locally, because it is a [dependency of `webtorrent`](https://github.com/feross/webtorrent/blob/master/package.json) and npm sometimes flattens...
A patched version of WebTorrent is currently being used so that the torrent can be discovered using the hash of the URL instead of the hash of the contents of...
You may need to update your forks of webtorrent and ut_metadata after a new version of WebTorrent is released upstream. Creating tagged releases and using them in your dependencies list...
When I call `cryptocoin.secureRandom(bytes)` in browsers that support `crypto.getRandomValues(clampedArray)`, I get the error `Error: Your browser does not support window.crypto.` The node module `secure-random` looks for `globals.crypto`, but is unable...