Dan Rose

Results 564 comments of Dan Rose

I'm very much missing something here. Other Prolog systems make similar citations. https://sicstus.sics.se/sicstus/docs/latest4/html/sicstus.html/ISO-Compliance.html#ISO-Compliance > SICStus Prolog is fully compliant with the International Standard ISO/IEC 13211-1 (PROLOG: Part 1—General Core) as...

@mthom, @UWN Please suggest a wording so we can move this forward. The posture toward ISO/IEC 13211-2 should be either: 1. It doesn’t apply to Scryer. 2. We implement it...

I figured the visual aspect of this was from the "Observer" code in `@gltf-transform/view`. But I don't think that, e.g. rebuilding the entire THREE scene from the GLTF graph would...

> What do you mean by "value semantics" – would `readonly` be an example of that? Reference semantics: The getter and setter take and return an array object which has...

In experimenting with my own code, I'm becoming *very* fond of this convention: `getPosition(opt?: {into: vec4})` You get the simplicity of calling it as a regular getter plus the option...

Building with cargo and running *does* produce the expected output, so it seems this is a problem with the npm package itself. ```console $ /Users/dan/Source/ezno/target/debug/ezno check ./file.ts error: ┌─ file.ts:1:19...

I don't know how to debug this. I get as far as this call: `run_cli(cliArguments, readFile, writeFile, readFromCLI);` where `cliArguments` is `["check","file.ts"]` And after that, it steps into wasm code,...

> I presume `npx ezno info` does nothing as well. As show above, `npx ezno info` *does* show info about `ezno`. So I don't think it's the `bin` field. Additionally,...

> Looking at the code: I think it is maybe due to the glob support for checking files, which has been added since the last release. Indeed the glob support...

Okay I think I'm starting to understand Rust, WASM, and wasm-pack. In particular, just about *any* sort of system call is going to fail. If filesystem access and stdio is...