Josh Unger
Josh Unger
I'm getting this error - `TypeError: exec_command() got an unexpected keyword argument 'become_user'` I'm currently running `ansible-playbook 2.0.0`
Q. We're using script.js and webpack to bundle for both the browser and node.js. What is the best approach here to provide a fallback? Current, as expected, I get this...
Is it possible to add support for usernames already defined in the ssh config? It isn't technically "passing" it but ssh just uses it. This is how I believe Ansible...
Can you please provide the steps to enable concurrent mode and createRoot? https://reactjs.org/docs/concurrent-mode-reference.html To enable concurrent mode you typically do this - ``` ReactDOM.createRoot(rootNode).render(); ``` How do I do this...
I'm moving some of our `` code into JavaScript. Is it possible to server side render (SSR) a component on the SSR only without a tag. I'd like to render...
I'm seeing the following error - ``` Cannot read property 'name' of undefined ``` Unfortunately, the source code is private. Is there a way I can dump the logs to...
#### Steps to reproduce 1. Open https://github.com/GoogleCloudPlatform/cloud-functions-emulator/blob/master/src/utils/detectProjectId.js 2. View the code ``` if (process.env.GCLOUD_PROJECT) { return process.env.GCLOUD_PROJECT; } if (process.env.GOOGLE_CLOUD_PROJECT) { return process.env.GOOGLE_CLOUD_PROJECT; } ``` I thought GCLOUD_PROJECT is deprecated?...
The TypeScript definition is missing amount. https://github.com/recurly/recurly-js/blob/9e2e2ab144631c01555a625d167b19b68d4154ac/types/lib/paypal.d.ts But it appears to be valid here? https://github.com/recurly/recurly-js/blob/4d702a0e6b514441cb3a3b41d528e214ab39df29/lib/recurly/paypal/strategy/direct.js#L16 Thanks.
https://turbo.build/repo/docs/getting-started returns a 404 so I updated it to https://turbo.build/repo/docs/getting-started/add-to-project. Is this the correct fix or would you like the docs site (https://github.com/vercel/turbo/tree/main/docs/pages/repo/docs/getting-started) updated? Thanks.
### Reproduction example https://codesandbox.io/s/happy-dust-ijlfer?file=/src/App.js ### Prerequisites 1. Render ``` { const text = e.clipboardData.getData('Text') setVal(text) }} value={val} /> ``` 2. Paste clipboard data. ### Expected behavior If I call `.paste('12345')`...