Skip to content

Instantly share code, notes, and snippets.

<?php
function createData($path)
{
$arr = [];
$storagePath = array_diff(scandir($path), array('.', '..'));
foreach ($storagePath as $key => $p) {
$current = $path . '/' . $p;
if (is_dir($current)) {
@culy247
culy247 / gist:37bc8af3c77cc5ae2db7276e144f77ec
Last active March 25, 2020 04:24
git ignore local file
git config --global alias.ignore 'update-index --skip-worktree'
git config --global alias.unignore 'update-index --no-skip-worktree'
git config --global alias.ignored '!git ls-files -v | grep "^S"'
exp:
#to ignore local "config.xml"
git ignore config.xml
#to remove ignore local "config.xml"
git unignore config.xml
@culy247
culy247 / .php_cs.laravel.php
Created June 24, 2020 06:45 — forked from laravel-shift/.php-cs-fixer.php
PHP CS Fixer - Laravel Coding Style Ruleset
<?php
use PhpCsFixer\Config;
use PhpCsFixer\Finder;
$rules = [
'array_syntax' => ['syntax' => 'short'],
'binary_operator_spaces' => [
'default' => 'single_space',
'operators' => ['=>' => null]
@culy247
culy247 / command.txt
Created August 14, 2020 01:08 — forked from fbn4sc/command.txt
Delete all branches except master and develop.
git branch | grep -v "master\|develop" | xargs git branch -D
@culy247
culy247 / Git-Pre-commit-setup.md
Created August 27, 2020 03:07 — forked from sdavara/Git-Pre-commit-setup.md
Git-pre-commit-hooks for PHP/Laravel Project

Pre Commit Setup

Setup pre-commit hook in php projects for lint, code standard, test cases etc.

Prerequisites

  • php >= 5.6
  • composer
  • git

Installation

@culy247
culy247 / read_csv.php
Created January 28, 2021 22:06 — forked from selwynpolit/read_csv.php
Php code to read a csv file of any size without exhausting memory and let you process it in chunks
/*
Reads a CSV file in chunks of 10 lines at a time
and returns them in an array of objects for processing.
Assumes the first line of the CSV file has headings
that will be used as the object name for the item you are
processing. i.e. the heading is CurrentURL then refer to
$item->CurrentURL
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml" lang="ja">
<head>
<style type="text/css">
@font-face{
font-family: ipag;
font-style: normal;
font-weight: normal;
src:url('/home/hp/develop/project/koala-api/storage/fonts/ipag.ttf');
}
@culy247
culy247 / a.
Created February 23, 2021 02:01
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xml:lang="ja" xmlns="http://www.w3.org/1999/xhtml" lang="ja">
<head>
<style type="text/css">
@font-face{
font-family: ipag;
font-style: normal;
font-weight: normal;
src:url('/home/hp/develop/project/koala-api/storage/fonts/ipag.ttf');
}
#~/.local/share/DBeaverData/workspace6/General/.dbeaver/credentials-config.json
openssl aes-128-cbc -d \
-K babb4a9f774ab853c96c2d653dfe544a \
-iv 00000000000000000000000000000000 \
-in credentials-config.json | \
dd bs=1 skip=16 2>/dev/null
@culy247
culy247 / UnixTimestampDateConversion.php
Created March 10, 2021 04:50 — forked from chalasr/UnixTimestampDateConversion.php
Integer values for date claims using lcobucci/jwt v4
<?php declare(strict_types=1);
namespace App\JWT\Encoding;
use Lcobucci\JWT\ClaimsFormatter;
use Lcobucci\JWT\Token\RegisteredClaims;
class UnixTimestampDateConversion implements ClaimsFormatter
{
public function formatClaims(array $claims): array