Claas Augner

Results 755 comments of Claas Augner

PS: I have a weird progress bar result when importing several files at once. Usually it shows the filenames, but during some files it suddently doesn't anymore, showing a position...

> Are you on the latest nightly Heidi build? Yes, Nightly: 11.0.0.6096

> Is the intended behaviour to treat those files as if they were staged? The expected behavior would be to treat those files as _not_ staged, because `git add --intent-to-add`...

Something similar to this should work: ```js // Commonmark default options export default { options: { html: true, // Enable HTML tags in source xhtmlOut: true, // Use '/' to...

As a workaround, you should be able to change the locale of your browser to English.

Today we got a PR from Dependabot that updates `vue` and `vue-template-compiler` together (npm), so it seems like Dependabot somehow supports this already in some cases?

Don't hesitate to mark as ready for review again, but I thought "draft" better mirrors the "not ready" status.

I noticed the same with `bower-asset` packages just now: ![image](https://user-images.githubusercontent.com/495429/114248967-7ceec180-9999-11eb-9747-ca59d66abf6a.png)

I think it should be possible to extract the content using `openssl_pcks7_verify()`, as described here: https://www.php.net/manual/en/function.openssl-pkcs7-verify.php#113835 **Edit**: Here's my implementation: ```php

**Note**: In PHP 8.0 it should be possible to reduce the snippet to a single `openssl_pkcs7_verify` call thanks to [Named Arguments](https://wiki.php.net/rfc/named_params): ```php openssl_pkcs7_verify(filename: $msg, flags: PKCS7_NOVERIFY, content: $out) ```