Rob Landers

Results 541 comments of Rob Landers

Upon further testing (at least on x64 machine), with the Dockerfile + this change running with `--ulimit stack=33554432` is required to handle fibers reliably. I suspect this is due to...

I'm going to do a couple of tests with regular PHP and smaller stack size limits, since this may be a bug with PHP. Result: non-issue.

Actually, this change causes a segfault when running the `php` cli. If you set the stack size limit to 32 mb, this change isn't required at all.

It's a specific runtime configuration, so probably just needs documentation: Docker Run: `--ulimit stack=33554432` Docker Compose: `ulimits: {"stack": 33554432}` Kubernetes: (not supported: see https://github.com/kubernetes/kubernetes/issues/3595)

Alternatively, if there is some way to get PHP + golang stacks to play nice together, that would be a better solution.

> ~/.ssh/your_private_ssh_key_registered_on_github Yeah, that key doesn't exist because it's in an HSM and by the nature of an HSM, it can't be exported. I can only sign or encrypt data....

Seems that we should be able to generate the nonce in the same way they were generated using our public key?

> Any details of how to make a claim with Yubikey? See #31

For anyone still running into this issue. 1. Edit with `nano ~/.docker/config.json` in WSL 2. Remove the reference to "credhelper.exe" (if this is your first edit, you should have an...

It seems the tag doesn't get used anywhere in a pipeline. For example a custom pipeline: ``` echo ${runtime.images.app} ``` does not work unless the image is built. It makes...