Bryan

Results 122 comments of Bryan

I'm building it in as a first class supported language (for deployment)

Working beautifully so far - down from 240MB zip to 387kB, and several minutes faster.

I'm not enough of an expert in python to do this - needs a wake to find if `nmake` exists: Line 1187 of pico_project.py ```python nmakeExists = shutil.which("nmake") // will...

Maybe all triggers should have a list of ALL and NONE conditions. Only if all the ALLs and none of the NONEs are true does the trigger happen. Should the...

A 'trigger' is an event. A trigger pull. I think there are three types of event: 1. A true event: button press, button release, change of state, startup etc 2....

Example I want to set up device 1 with respect to device 2 Trigger on: - Device 1 enters online state - Device 2 enters online state - Device 2...

I've been noodling on the same problem for my recent project where I've ended up with about 20 triggers for a boardroom with 6 devices. In your use case, actions...

Another example I'm seeing a glitch in autotracking. `MyEmberArray.firstObject` is tracked `MyEmberArray.toArray()` is not so ```js get max() { let values = this.args.data.toArray(); return Math.max(...values); } ``` The above is...

I've tried with `A()` and `new TrackedArray([])`. Both fail to rerun, but adding `console.log(myArray.length)` to the getter makes it track correctly