Eve
Eve copied to clipboard
Better tools for thought
After playing around with Eve for a few minutes I found that the code below creates an infinite loop in the browser tab. I'm not sure whether this is intentional...
Repro: In the editor, write the text "#foo" Select this text with the cursor. Click the "code" button Result: the generated markup is: ``` #`foo` ``` Expected: ``` `#foo` ```
An unconditional bind will "de-bind"/stop working when the code block is run a second time. I've [demonstrated the bug here](https://v.usetapes.com/dxSq7UQUMQ), showing it occurring both on my local server (up-to-date with...
Expectation - this chunk of code retrieves new values every 10 seconds. ```eve search [#time seconds] 0 = mod[value: seconds, by: 10] commit @http [#request #melete-latest url: "http://foo/getlatestevents"] ``` Actual...
We need a better explanation of fixpoint errors when they happen. Assuming we can continue to keep the changes at each logical timestep as we do now, we should be...
If you just ``` commit @http [#request #get-all url: "http://localhost:8081/getAll"] ``` Then two requests will reach the server immediately after a refresh. The intent was to perform the request once...
When trying to use the sum function I get this error ``` commit [#bills name: "Phone", amount: 85] [#bills name: "Apple Music", amount: 15] [#bills name: "Internet", amount: 100] search...
When cutting (or copying) and pasting text within the editor, only the raw text is transferred. All markup is lost. Tested on MacOS in Chrome and Safari.