Eve icon indicating copy to clipboard operation
Eve copied to clipboard

Better tools for thought

Results 76 Eve issues
Sort by recently updated
recently updated
newest added

Video: https://v.usetapes.com/4zoLVyb754

editor

The following code causes time to only update once a minute instead of once a second. ``` Show seconds ~~~ search [#time seconds] bind @view [#value value:"{{seconds}}"] ~~~ Show Minutes...

See below for an example of a program trying to commit a circular structure that doesn't work currently. If you break the cycle by removing either of the two next...

This updates correctly: ``` search [#time seconds] bind @browser [#div id: "time" text: "Time: {{seconds}}"] ``` but this doesn't: ``` search time = [#time] bind @browser [#div id: "time" text:...

Right now, any time you use `[#time ..]` we create a timer under the covers to issue events that will cause your rules to fire, but in many cases we...

enhancement

To improve performance in the case of binds that don't generate stable IDs on unique terms, we can reuse elements with the same tag that live in the right DOM...

enhancement
editor