Frederik Bosch

Results 110 comments of Frederik Bosch
trafficstars

@remilapeyre Exactly, I understand. I used `local-exec` indeed, combined with `remote-exec` to create policies, tokens and apply directly on the remote machines. I did that for Consul, Vault and Nomad....

@rosen-vladimirov In the latest merged PR, I saw you giving a hint to the one opening the issue where to fix the code. Would it possible to point me in...

`containerClassNames` is an array. ```hbs ``` ```js import { helper as buildHelper } from '@ember/component/helper'; export default buildHelper(function() { return Array.prototype.slice.call(arguments, 0, -1); }); ```

I would skip `renderAsync`. Let `render` always return a promise. With the upcoming `await` syntax people can make it behave synchronous themselves. ```js const zip1 = await doc.render({first_name: 1}); ```

I have exactly the same problem at the moment, but I found another solution. My problem was solved by adding a `.boxed()` after all my `.or()` functions defining the routes,...

Glad to help, and thanks for the share! While my solutions worked when I wrote it, when my app grew it started failing again. Now I have a `.boxed()` after...

```php use Intervention\Image\Imagick\Commands\ExifCommand; use Intervention\Image\Imagick\Driver; class MyImagickDriver extends Driver { /** * Executes named command on given image * * @param Image $image * @param string $name * @param array...

If you want to use the `dontPreferExtension` method in the `ExifCommand` class, you have to create your own driver and overload the `executeCommand` method . However, you are also required...

I added the feature in PR #584.