You mean crazy shit like this? ``` {"type": "eval", "expr": "new Date().getMinutes()", "as": "minute", "display": false}, {"type": "data", "bind": "$.minute", "label": "Current minute: "}, {"type": "hr"}, { "type": "if", "condition": "$.minute % 2 == 1", "then": [ {"type": "text", "value": "Minute is ODD - querying notes..."}, {"type": "query", "filter": {"kinds": [1], "limit": 3}, "as": "notes", "children": [ {"type": "foreach", "items": "$.notes", "as": "note", "template": { "type": "container", "children": [ {"type": "text", "bind": "$.note.content"} ] }} ]} ], "else": [ {"type": "text", "value": "Minute is EVEN - showing different content"}, {"type": "text", "value": "Refresh on an odd minute to see notes!"} ] } ``` View quoted note →
i'm going to have to record a video of this in progress.. - write request - wait a bit - bot responds with a note whose content is the ui - ui is immediately rendered and usable from your connected npub image View quoted note →
tomorrow i'm going to make a bot that you describe a ui/ux to and it responds by posting a note that just IS that experience, rendered in a hypermedia client. no code necessary View quoted note →