Nothing great, I made dancing text that randomly changes case while learning Decker. I don't know the best way to share it, but here's my code (just at the card level), I'd appreciate comments and critique:
local s: "abcdef" on view do if ! sys.frame < next_frame.text canvas.clear[] local t: flip (list "" split s),(list random[2 count s]) local y: "" fuse each u in t if u[1] "%u" else "%s" end format u[0] end canvas.text[y (50,50, 200,100)] next_frame.text: sys.frame + 5 end go[card] end