mattn 2 days ago もしかしてダンサーが仕事奪われる? X (formerly Twitter)Rohan Paul (@rohanpaul_ai) on XRobots in China are doing it all now, even dancing on stage like pros. Here Unitree robots doing Webster flips and are performing at Chinese-Ameri...
mattn 2 days ago AI に rxNostr 使ったコードを吐かせると rxNostr.use(rxReq).pipe( filter((packet) => packet.event?.id === id && packet.event?.kind === kind ), distinct((p) => p.event!.id), take(1), timeout(10000), ).subscribe({ ... }) じゃなく rxNostr.use(rxReq).pipe( uniq(), take(1), timeout(10000) ).subscribe({ next: (packet) => { if (packet.event?.id === id && packet.event?.kind === kind) { ... } }, ... }) みたいなアホなコードを吐くなぁ。