vinney...axkl's avatar
vinney...axkl
vcavallo@vinneycavallo.com
npub19ma2...axkl
WoT/DCoSL R&D with https://brainstorm.world - Pet project: https://catallax.network - decentralized labor/bounty protocol - Order print books with bitcoin! https://whitepaperbooks.com - Convert web pages to nostr longform posts: https://github.com/vcavallo/ReadToRelay
vinney...axkl's avatar
vinney...axkl 6 months ago
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 →