Michał Rutka
Michał Rutka
However for openremote.io Firefox is more popular than Safari - 9.8% vs 7.3% [statcounter screenshot](https://www.dropbox.com/s/k2h9p9j7y24z5ei/screenshot%202021-06-21%20at%2022.26.54.png?dl=0)
logging into demo.openremote.io shows that Firefox is a bit more popular than Safari in our target group: ``` └─[0] or manager --list-public-assets -t --realm smartcity | grep name | grep...
In boolean algebra AND truth table is: ABo 000 010 100 111 Please don't implement other type of algebra, because the boolean one is proved to work, which computers are...
For preventing infinitive loops you need to add delay not latching. In Drools simply by adding (int: 1) which you can spot in many rules I've written. For continuous data...
``` WHEN Any RoomAsset Light ON and Outside Brightness > 1000lux THEN SEND ALERT DON'T WASTE ENERGY ``` In the old Drools for 2.5 I would write something like this:...
Alternatively, rule a1 could be ``` rule a1 when not exists Event(asset=='RoomAsset', value=='Light ON') $a: Alarm(name=='rule a alarm') then retract($a); end ``` Depending on what your intention is. Perhaps in...
Default in Drools a rule matches when all facts evaluate true (AND behaviour) on each fact update. The second part was a problem in controller 2.5 therefore there was Java...
_Using these temporary facts (state) is latching and I do this implicitly in our JSON (when then) rules engine to hide this complexity from target users of when then rules._...
Is this already integrated?
Having no cleanup policy sounds expensive. At least add a lifecycle rule to purge untagged images, otherwise, they’ll still incur costs.