Joey Robert

Results 5 comments of Joey Robert

Would be great to see this merged and published. WIthout this, one can't implement the full podcast RSS spec using feedgen and must explore other options. Is this project still...

Thanks @olikami, I'll use your fork for the time being. Appreciate this PR!

Drive by comment, I came across this same error when including `ws` in the client side. It's actually not needed on the client side and browsers should use the native...

I'm using VirtualBox to run a Ubuntu 22.04 guest on a Windows 11 host. I also experienced this: ``` ➜ Repos git clone https://github.com/ggerganov/whisper.cpp.git Cloning into 'whisper.cpp'... remote: Enumerating objects:...

I wrote this snippet recently leveraging worker pool, maybe it could be of use: ``` function mapParallel(func, items) { var pool = workerpool.pool(); var promises = items.map(item => pool.exec(func, [item]));...