Skip to content

Instantly share code, notes, and snippets.

View mumy81's full-sized avatar

Muhammed Celik mumy81

View GitHub Profile
@mumy81
mumy81 / README.md
Created June 3, 2018 23:02 — forked from hofmannsven/README.md
My simply MySQL Command Line Cheatsheet
@mumy81
mumy81 / CentOS_comamnds.txt
Last active February 28, 2019 09:07
CentOS linux comamnds
1. Learn CentOS version:
cat /etc/centos-release
2. Show Users
cat /etc/centos-release
3. Find Command
find [optimization] [path] [options] [parameter]
examples:
@mumy81
mumy81 / CustomCollectionDataProvier.php
Last active June 20, 2019 08:24
API Platform Custom Data Providers
<?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
@mumy81
mumy81 / EntityBase.php
Created June 20, 2019 21:41
symfony doctrine updatedAt createdAt updated_at created_at fields timestamp
<?php
namespace AppBundle\Mapping;
use Doctrine\ORM\Mapping as ORM;
use DateTime;
/**
* Class EntityBase
*
@mumy81
mumy81 / jwt_refresh_token.md
Created August 10, 2019 20:31
JWT Refresh Token

Below are the steps to do revoke your JWT access token:

  1. When you do login, send 2 tokens (Access token, Refresh token) in response to client .
  2. Access token will have less expiry time and Refresh will have long expiry time .
  3. Client (Front end) will store refresh token in his local storage and access token in cookies.
  4. Client will use access token for calling apis. But when it expires, pick the refresh token from local storage and call auth server api to get the new token.
  5. Your auth server will have an api exposed which will accept refresh token and checks for its validity and return a new access token.
  6. Once refresh token is expired, User will be logged out.

-- another explantation:

@mumy81
mumy81 / symfony-docker-copy-overwrite-issue.md
Last active August 29, 2019 21:32
Symfony and Dockerfile COPY issue fixing summary

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.

@mumy81
mumy81 / media-query.css
Created September 9, 2019 20:24 — forked from gokulkrishh/media-query.css
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
//CSS
@mumy81
mumy81 / docker_compose_cheatsheet.md
Last active December 25, 2019 17:53 — forked from jonlabelle/docker_compose_cheatsheet.md
Docker Compose Cheatsheet
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);