Patrick Schubert
Patrick Schubert
Hi there! Thanks for the nice package - works like a charm! :-) Since you provide a sync function which write the file (writeSync) I wonder - why is there...
Hi there! Thank you very much for this awesome package! Just built my first mysql meteor app. Just one thing: the product I am developing has to work with different...
Hi @morrys ! Thanks again for this awesome package! I need your help ... again. Following situation: - 2 apps: one main app running MongoDB and a react-app, second app...
So I have a **monerepo setup** with a `/packages` folder where I put all my private packages. Today I created a new package as always and added external dependencies to...
Mup version (`mup --version`): `1.4.5` So I am running into an error with my deployed Meteor app: ``` /built_app/programs/server/npm/node_modules/puppeteer/.local-chromium/linux-571375/chrome-linux/chrome: error while loading shared libraries: libX11-xcb.so.1: cannot open shared object file:...
Mup version (`mup --version`): 1.4.5 Mup config ```js module.exports = { servers: { one: { host: '100.100.100.100', username: 'root', pem: '~/.ssh/id_rsa' }, two: { host: '100.100.100.100', // YES, same IP!...
Hi there! I am currently revamping the UI layer of my production app and switching from Blaze to React. So I kind of started over with your base. It occurred...
Hello @theodorDiaconu ! You might remember me as the "bit annoying guy with way too many Grapher questions" some months/years ago! 😁 So I have been using grapher in production...
Hi there! So I would need something similar to Bluebirds [`Promise.each`](http://bluebirdjs.com/docs/api/promise.each.html), where the iteration of the promises happens **serially**. Right now I only have `awaitAll`, which calls the promises in...
I have the following query: ``` const selectStatement = `SELECT * FROM Customer WHERE DisplayName LIKE '%MFM 58%'`; // does NOT work! // const selectStatement = 'SELECT * FROM Customer';...