Marc

Results 39 comments of Marc

You might wanna move to Electron - that seems to be the way the wind is blowing.

Why doesn't VisualVM just use the the `JAVA_HOME` environment variable to find Java?

Apparently PowerShell is receiving `ä` encoded as 5 bytes `226` `148` `156` `195` and `177`! ``` ps.addCommand('$str="bär";echo $str; echo $([System.Text.Encoding]::UTF8.GetBytes($str))'); ... b├ñr 98 226 148 156 195 177 114 ```

Nope, I gave up on this library 🤷‍♂️ and went for `node-powershell`. https://github.com/cawoodm/powowshell/blob/master/ide/package.json

Sure. I think we should provide an `ErrorActionPreference`option and maybe a `SeparateStdErr`option. You're moving to TypeScript right?

```javascript apiProxy.on('proxyRes', (proxyRes, req, res) => { var _write = res.write; var body = ''; proxyRes.on('data', function(data) { data = data.toString('utf-8'); body += data; }); res.write = function(data) { try...

We are seeing the same issue with 2 K3S nodes (1 master, 1 worker). If the worker goes down and we ping a service on the UP node we are...

Same here. Debugging I see that there is indeed a `GET /myindex/_source/` returning a `405 Method Not Allowed` and the library is translating that message to `Incorrect HTTP method for...

It seems docker scan does not respect the system CA Certificates. ``` curl https://docs.docker.com/ -I # No Problem docker scan myimage # Boom! unable to verify the first certificate ```

This is pretty crazy with Deno: * `import { Foo } from "./types.ts";` -> Runs fine but VS Code shows a syntax error: * `An import path cannot end with...