curl -fsSL https://gist.githubusercontent.com/muuvmuuv/7b7a911ddec2172375b75498154ce5e8/raw/2d2bef245f9644dae10f8724f784f3424c4e30a2/php-pm.sh | sh
More here: https://tideways.com/profiler/blog/an-introduction-to-php-fpm-tuning
FROM mcr.microsoft.com/devcontainers/python:3.10 | |
RUN curl -sSL https://install.python-poetry.org | POETRY_HOME=/usr/local python3 - | |
USER vscode | |
RUN /usr/local/bin/poetry config virtualenvs.in-project true |
curl -fsSL https://gist.githubusercontent.com/muuvmuuv/7b7a911ddec2172375b75498154ce5e8/raw/2d2bef245f9644dae10f8724f784f3424c4e30a2/php-pm.sh | sh
More here: https://tideways.com/profiler/blog/an-introduction-to-php-fpm-tuning
import { Storage } from '@capacitor/storage' | |
import * as ME from 'src/data/me.json' | |
import { STORAGE_KEY_ME_DATA } from './app/models/auth' | |
/** | |
* Prepare the application for development by pushing some example | |
* data into the cache. See {@link main.ts} for implementation details. | |
*/ |
@Component({ | |
animations: [ | |
trigger('visible', [ | |
state( | |
'false', | |
style({ | |
height: '0', | |
display: 'none', | |
}) | |
), |
const puppeteer = require('puppeteer') | |
/** | |
* Because no browsers are bundled with Cypress we will use the already installed | |
* puppeteer binary that we use for Karma. This function returns information | |
* about the latest downloaded binary for Chrome by Puppeteer. It works for now | |
* but might throw errors in future, it is a workaround not a plugin. | |
* | |
* @see https://docs.cypress.io/guides/guides/launching-browsers.html#Customize-available-browsers | |
*/ |