Bruce Conrad

Results 103 comments of Bruce Conrad

That being said, I would not be in favor of adding annotations to KRL (in the way Java has done).

The last console log for that activity ended with ``` {"level":50,"time":"2021-09-08T07:41:06.728Z","picoId":"ckrxjd5xf0007bkpb2vhnhseb","txnId":"cktb7094804r5yupbaf5ghb7j","txn":{"id":"cktb7094804r5yupbaf5ghb7j","kind":"query","query":{"eci":"ckrxjd5xg0009bkpb8suoc6j5","rid":"io.picolabs.pico-engine-ui","name":"uiECI","args":{}}},"msg":"txnQueued"} ``` which queued a query. Subsequent activity just got queued as well. Nothing further until pico engine restarted.

It seems to be triggered by clicking on the link to a child pico, along with perhaps other things. So, maybe a problem with the About tab?

As an example, here is the output of a PHP script which fails at a certain point: ``` ... ... Password Information for adm.b1conrad - Expiration: ``` Notice how abruptly...

Maybe we could have a side-arrow (▷) to the left of each JSON string and clicking it could toggle it to a down-arrow (▽) beside the same string formatted.

This [commit](https://github.com/b1conrad/PicoStack/commit/014ef99d5ed234a85aa9ffcbd426cbcd8654974e) in PicoStack shows how it could be done. Doesn't use arrows, but more subtle indication: the cursor changes to a pointer when you hover over some (but not...

What to do about this? 1. We could just document this and leave the code alone. 2. We could modify `wrangler:channels` to do the equivalent cleaning in KRL. 3. We...

Also need to ensure that the tags are lowercase characters only, and RIDs allow for uppercase characters. so a more complete sanitation would be ``` ridAsTag = meta:rid.replace(re#[.]#g,"-").lc() ```