Hits: 33
mysqldump --single-transaction --quick --lock-tables=false -h HOST -u USER -p DBNAME | gzip > PROJECT-$(date +%F.%H%M%S).sql.gz
Developer, Maker.
Hits: 33
mysqldump --single-transaction --quick --lock-tables=false -h HOST -u USER -p DBNAME | gzip > PROJECT-$(date +%F.%H%M%S).sql.gz
Hits: 3
wget -O phpstan.phar https://github.com/phpstan/phpstan/raw/master/phpstan.phar chmod a+x phpstan.phar sudo mv phpstan.phar /usr/local/bin/phpstan phpstan
Hits: 24
The kProfil Settings and values based on Philipps 3D Druck and Anycubic Vyper Druckprofil
Download and extract the files under C:\Users\YOUR-USERNAME\AppData\Roaming\cura
Example Project with this Settings
Hits: 33
We need special prepared Snap interface plugin “removable-media” connection for the application.
snap connect APPLICATION-NAME-HERE:removable-media
For example we can give the to USB Access an Cura Slicer:
snap connect cura-slicer:removable-media
Hits: 1910
FROM php:8.1.1-apache RUN echo "Europe/Berlin" > /etc/timezone && dpkg-reconfigure -f noninteractive tzdata ENV APACHE_DOCUMENT_ROOT /var/www/html/web RUN apt-get update && apt-get install -y ca-certificates gnupg RUN curl -fsSL https://deb.nodesource.com/setup_16.x | bash - RUN apt-get update && apt-get upgrade -y && apt-get install -y git nodejs RUN sed -ri -e 's!/var/www/html!${APACHE_DOCUMENT_ROOT}!g' /etc/apache2/sites-available/*.conf RUN sed -ri -e 's!/var/www/!${APACHE_DOCUMENT_ROOT}!g' /etc/apache2/apache2.conf /etc/apache2/conf-available/*.conf RUN /usr/sbin/a2enmod rewrite && /usr/sbin/a2enmod headers && /usr/sbin/a2enmod expires RUN apt-get update && apt-get install -y libzip-dev zip && docker-php-ext-install zip RUN docker-php-ext-install pdo pdo_mysql mysqli RUN apt-get install -y libtidy-dev && docker-php-ext-install tidy && docker-php-ext-enable tidy RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer RUN pecl install xdebug && docker-php-ext-enable xdebug RUN echo 'zend_extension=xdebug' >> /usr/local/etc/php/php.ini RUN echo 'xdebug.mode=develop,debug' >> /usr/local/etc/php/php.ini RUN echo 'xdebug.client_host=host.docker.internal' >> /usr/local/etc/php/php.ini RUN echo 'xdebug.start_with_request=yes' >> /usr/local/etc/php/php.ini RUN echo 'session.save_path = "/tmp"' >> /usr/local/etc/php/php.ini