Yusup Hambali

Results 22 comments of Yusup Hambali

maybe consider to use `role=group`

an another method maybe helps you https://github.com/yus-ham/blangko/blob/db7e475c704454d418e1f6e7331452932e6a5b6d/src_front/pages/posyandu/index.svelte#L13-L38

perhaps to store them to github repo | gist

so, now this is the pull() ```js async pull(c) { const refreshRate = 4000; return new Promise((resolve) => { setInterval(function() { c.write(`id:${Date.now()}\nretry:${refreshRate}\ndata: {"message":"Welcome"}\n\n`) c.flush(true) }, refreshRate) }) }, ``` seems...

guessing that the server has 5 secs interval for sending data, so I make this ```js async pull(c) { const internalRefreshRate = 5000; const refreshRate = 1000; let sec =...

@vjik, @samdark its now now only one is reds. i don't know why it still fails

There is a [PHP RFC: array_find](https://wiki.php.net/rfc/array_find) and its [PR](https://github.com/php/php-src/pull/14108) that is what actually I need to be implemented. It seems has been discussed about a month ago and I found...