Results 17 comments of Ryan Halliday

@bk2204 Should be fixed now! Single space after the pipe character.

This library is for the [Shopify Admin API](https://help.shopify.com/api/reference/) and doesn't fully support the [Sales Channel SDK](https://help.shopify.com/api/sdks/sales-channel-sdk). It is easily possible to write some of your own functions to update this,...

Horrible process but the solution came out okay enough. In your site directory (eg `/opt/easyengine/sites/mysite.com` make a file named `php.Dockerfile`: ```yaml FROM easyengine/php:v4.6.6 USER root RUN docker-php-ext-install gettext; \ docker-php-ext-enable...

Most of my jobs were processing models with bpy, not rendering. So I built this to run on AWS Lambda instead: https://github.com/ryanhalliday/bpy-lambda

In case anyone missed the comment by @marcobazzani while reading here: **WAIT BEFORE RUNNING YOUR FIRST GENERATION and the problem goes away** Things are still loading.

I had to run `pip install safetensors omegaconf ` and checkout to the `v0.12.1` branch for `convert_original_stable_diffusion_to_diffusers.py` to work.

The UserManager has a delete function that takes a User object. ``` php $user = $app['user.manager']->findOneBy(array( 'email' => '[email protected]', )); $app['user.manager']->delete($user); unset($user); ```

@mattvb91 For now you can add this to your `composer.json`: ```json { "repositories": [ { "type": "vcs", "url": "https://github.com/ry167/befriended" } ] } ``` and change the `require` to: `"rennokki/befriended": "dev-master"`....

Capture the `click` action on the `a` tags with jQuery `.click()` or something similar to [this](https://stackoverflow.com/questions/1163073/pure-javascript-equivalent-of-jquery-click) and then call `nav.close();`

Hate to be a pain but when is v2.1.0 coming out? Can't see it as a milestone [here](https://github.com/plausible/wordpress/milestones?state=open). If there is anything blocking it I'd be happy to help out?