Getting started:
Related tutorials:
Getting started:
Related tutorials:
1. Learn CentOS version: | |
cat /etc/centos-release | |
2. Show Users | |
cat /etc/centos-release | |
3. Find Command | |
find [optimization] [path] [options] [parameter] | |
examples: |
<?php | |
namespace App\DataProvider; | |
use ApiPlatform\Core\DataProvider\CollectionDataProviderInterface; | |
use ApiPlatform\Core\DataProvider\RestrictedDataProviderInterface; | |
use Doctrine\Common\Persistence\ManagerRegistry; | |
use ApiPlatform\Core\Bridge\Doctrine\Orm\Util\QueryNameGenerator; | |
final class CollectionDataProvider implements CollectionDataProviderInterface, RestrictedDataProviderInterface |
<?php | |
namespace AppBundle\Mapping; | |
use Doctrine\ORM\Mapping as ORM; | |
use DateTime; | |
/** | |
* Class EntityBase | |
* |
Below are the steps to do revoke your JWT access token:
-- another explantation:
We came across a problem related Symfony4 and Dockerfile. The error is : while building ,in dockerfile, composer install and clear-cache and dump-autoload commands are executed , afterwards composer run-scripts run 'post-install-cmd' , post-install-cmd is set run auto-scripts in composer.json . Error is thrown while bin/console cache:clear is executing.
The real problem is at COPY . ./ , this docker COPY command copy all of current folder content to /srv/api in docker. But, that copying overwrites existing files in the container so "vendor" directory is overwriten. Due to overwriten vendor folder, symfony cannot find the installed composer packages (e.g. swiftmailer), already that packages is installed before 2-3 commands.
We solve that by excluding /vendor folder in .dockerignore file.
/* | |
##Device = Desktops | |
##Screen = 1281px to higher resolution desktops | |
*/ | |
@media (min-width: 1281px) { | |
//CSS | |
title | subtitle | author | date | source |
---|---|---|---|---|
Docker Compose Cheatsheet |
Quick reference for Docker Compose commands and config files |
Jon LaBelle |
April 7, 2019 |
official docker-compose reference: https://docs.docker.com/compose/compose-file/
I have solved this regex problem for : | |
https://www.codewars.com/kata/514a024011ea4fb54200004b | |
Find domain name in URLs with subdomains or without subdomains : | |
Regex : /((\w*:)?(\/\/)?(www\.)?)?([\w-]+\.)?(\w{2,}[\w-]+)\./g | |
function domainName(url){ | |
var re = /((\w*:)?(\/\/)?(www\.)?)?([\w-]+\.)?(\w{2,}[\w-]+)\./g; | |
var arr = re.exec(url); |