Angelo Bulfone
Angelo Bulfone
As I mentioned, we tend to be inconsistent. It's been long enough since elementary school that I forget if we were taught to use commas or spaces. Sometimes there aren't...
There appear to be quite a few conflicts to getting this merged. I'm not terribly familiar with Javascript, so how bad are these conflicts that we're looking at? I'll just...
Wasmtime is meant to be embeddable, and it is working on `no_std` support, but it's not there yet. Should work on that progress, it could be considered as a potential...
That right there is valid Nix syntax, though `record` would be parsed as a function rather than a keyword because it doesn't have to disambiguate between types and values (dynamically...
Currently, `load_file` generates its own `TcEnv` and `DesugarEnv`. While `TcEnv` can be added to after the fact, `DesugarEnv` can only be expanded by generating new identifiers. In order for this...
While nix-index detects the use of flakes if `~/.nix-profile/manifest.nix` exists, it fails if nix is set with `use-xdg-base-directories = true`, which doesn't use `~/.nix-profile`, but instead uses `$XDG_STATE_HOME/nix/profile` (or `~/.local/state/nix/profile`...
[`std::os::unix::fs::MetadataExt::rdev`](https://doc.rust-lang.org/std/os/unix/fs/trait.MetadataExt.html#tymethod.rdev) You are correct in that it doesn't have functions _"which return major and minor driver numbers",_ because it only returns a single 32-bit integer. There are functions in `libc`...
The AEABI spec seems to require returning the same values as `__aeabi_idiv0` and `__aeabi_ldiv0` upon division by 0, which seem to either trap or return 0, though it also seems...
The current "wrapping" shift behavior is unintuitive. Every other wrapping or saturating operator applies to the result rather than the inputs, which is important for modular arithmetic. Shift is the...
You already have Vec4 as a homogenous point, and Isometry as a combination of a Rotor and a translation. Currently Isometries don't support screw motion since they lack an equivalent...