Milan B
Milan B
Hi. I have a similar use case. I already have a fairly simple Express instance that both serves html/js/css files and API requests. What I'd like to do is if...
Thanks for the fast response! I'll see if I can make a prototype and see what I really want to do. I guess for me, the functionality I'm looking for...
OK, that wasn't actually that hard. Not sure if this helps anyone, but... **shrug** :D I tried. Of course for this to be sharable, it would need wrapping to a...
Also, maybe I'd also vouch for splitting lyrics into folders by `/Artist/Album/` because sometimes (although this is a rare case, for sure), seemingly songs from two albums might have slightly...
+1 The reasoning being, as a company with 100+ microservices, adding projects manually is an antipattern. For our use case (a small but growing dev team), everything should be scraped...
I also got false positive on the NSIS installer, but not on the MSI or the main .exe itself. (Tauri 2.0.0-beta.2, with plain JS and Bevy but otherwise hello-world-ish program.)...
Easy solution: ```javascript const bluebird = require('bluebird'); const Etcd = require('node-etcd'); bluebird.promisifyAll(Etcd.prototype); const etcd = new Etcd('http://127.0.0.1:2379'); async function foo() { let resp = await etcd.getAsync('/foo/bar/'); console.log('results are here:', resp.node.nodes);...
Hi, thank you for your reply. Sadly I did not manage to get it run. I did the steps you mentioned. At first it was exiting that it's missing hiprtc0507.dll,...
It might be that uWSGI is killing workers that have a request in progress, according to some of these settings: ``` max-requests = 1000 ; Restart workers after this many...
@esseti those are nginx configuration options. In our case the timeouts are happening within cluster, no haproxy/nginx in between. So far our solution has been to migrate to Node.js.