Dan Rose

Results 238 issues of Dan Rose

### Bug description I see the following in my logs: ``` Command '['sshpass', '-p', 'raspberry', 'ssh', '-o', 'StrictHostKeyChecking=no', 'pi@localhost', 'lsattr /etc/resolv.conf']' returned non-zero exit status 5. ``` It appears this...

bug
ui
triage

### Preflight Checklist - [X] I agree to follow the [Code of Conduct](https://cider.sh/legal/conduct) that this project adheres to. - [X] I have searched the [issue tracker](https://github.com/ciderapp/Cider-2/issues) for a bug report...

confirmed
edge-case
pkg/dotnet-client

JSON output conflates `float` and `integer`, rendering both as JavaScript numbers. ```js import {Prolog, prolog} from "npm:trealla" const p = new Prolog() console.log(await p.queryOnce("A=1", {format:'prolog'})) // A = 1. console.log(await...

Certain numbers cause a syntax error when interpolated with the `prolog` function. It seems to be any number with 1 significant digit with an exponent larger than 20 or smaller...

`Term` is not a very ergonomic API. It's defined as a union of types: `export type Term = Atom | Compound | Variable | List | string | Numeric |...

In the playground, output is inconsistent when updating the database. Equivalently, query=`?- p(X).` and enter the following into the textarea: 1. program=`p(1).` click "Query" 2. program=`p(1). p(2).` click "Query" 3....

This seems rather suspect. For one thing, `options.format` could be a `Toplevel` object and not the string `"json"`. For another, the JSON format's `truth` function looks like it always returns...

There are a number of issues with usability of `js_eval` which make it awkward to use. All the following examples are passed into the query line at https://php.energy/trealla.html so it's...

A couple issues with the current playground: 1. It's not clear from inspection that the interpreter has an internal state which can differ from the textarea. 2. If the interpreter...

I'm trying to write trealla code that interoperates with javascript and it's not clear how to do this succinctly. I ran the following in a Deno repl: ```js import *...