robz
robz
Variables declared with `let` and `const` are block-scoped, not function-scoped. Yet `path.scope` is the same for both blocked-scoped variables and function-scoped variables declared with `var`. The following ``` var recast...
A `var` that is declared in catch clauses should have the scope that the try/catch is in, but instead `.scope` returns a scope that is the catch clause itself. For...
It would be nice to have a component analogous to the textarea HTML element, or make the existing Input component support multiline editing. The current Input element seems to only...
Is there an way to automatically compile (and/or execute) this project whenever a file changes? Right now I'm using this script that uses watchman: https://github.com/robz/ReasonNativeProject/blob/master/watchit.sh Is there another/better way to...
I'm considering using tch-rs to preprocess a bunch of data to use in an pytorch pipeline. Thanks for implementing these bindings! When saving a `tch::Tensor` like this: ``` // tch...
There is an undeclared variable $Math in rehack_tests/output/stdlib.cma.php/Stdlib__complex.php
hackfmt is a pretty printer for Hack written in OCaml and compiled with dune: https://github.com/facebook/hhvm/tree/master/hphp/hack/src If it's possible to extract, we could use it to replace php_output.re
Currently, optimization uses a [sum of minimum distances](https://github.com/robz/Linkages3/blob/master/src/math/GeometryUtils.js#L13) between points to calculate error. Instead, it could compare the change in angles between points along the paths. Optimization could then create...
Currently, optimization minimizes an error function that is computed by comparing two lists of points--the list from the input path that you draw, and the list that is generated by...
See comment at the top of [UIState.js](https://github.com/robz/Linkages3/blob/master/src/ui/UIState.js)