Skip to content

Instantly share code, notes, and snippets.

View tuanpht's full-sized avatar
💭
200 OK!

Pham Tuan tuanpht

💭
200 OK!
View GitHub Profile
@tuanpht
tuanpht / angularjs-providers-explained.md
Last active August 26, 2016 07:21 — forked from demisx/angularjs-providers-explained.md
AngularJS Providers: Constant/Value/Service/Factory/Decorator/Provider
Provider Singleton Instantiable Configurable
Constant Yes No No
Value Yes No No
Service Yes No No
Factory Yes Yes No
Decorator Yes No? No
Provider Yes Yes Yes

Constant

@tuanpht
tuanpht / config.diff
Created April 5, 2017 03:08 — forked from westonruter/config.diff
Using colordiff for my svn diff command (set in ~/.subversion/config)
@@ -28,7 +28,7 @@
### Set diff-cmd to the absolute path of your 'diff' program.
### This will override the compile-time default, which is to use
### Subversion's internal diff implementation.
-# diff-cmd = diff_program (diff, gdiff, etc.)
+diff-cmd = colordiff
### Set diff3-cmd to the absolute path of your 'diff3' program.
### This will override the compile-time default, which is to use
### Subversion's internal diff3 implementation.
@tuanpht
tuanpht / class-custom-walker-page-dropdown.php
Last active October 17, 2017 04:37
Custom wp_dropdown_pages walker class
<?php
class Custom_Walker_PageDropdown extends Walker_PageDropdown {
/**
* Starts the element output.
* @param array|string $args {
*
* @type int|string|callable $selected Value of the option that should be selected.
* Default 0.
@tuanpht
tuanpht / phpcs-subl.md
Last active October 17, 2017 04:37
Using PHPCS with Sublime Text
@tuanpht
tuanpht / react-hoc-authorization.js
Last active April 26, 2018 10:16
React HOC authentication, authorization
// Ref: https://hackernoon.com/role-based-authorization-in-react-c70bb7641db4
// Demo: https://codesandbox.io/s/n1n5jl374p
import React, { Fragment } from 'react';
import { render } from 'react-dom';
import { BrowserRouter as Router, Route } from 'react-router-dom';
function getCurrentUser() {
// return null; // Not login
return {
<?php
$text = $argv[1];
$postdata = http_build_query([
'q' => $text,
]);
$opts = [
'http' => [
'method' => 'POST',
'header' => 'Content-type: application/x-www-form-urlencoded',
@tuanpht
tuanpht / .php_cs
Created June 18, 2018 07:10
PHP-CS-Fixer configuration for PHPCS Framgia standard
<?php
$finder = PhpCsFixer\Finder::create()
// ->in(__DIR__ . '/config')
// ->in(__DIR__ . '/tests')
->in(__DIR__ . '/app');
return PhpCsFixer\Config::create()
->setRules([
'@PSR2' => true,
@tuanpht
tuanpht / laravel-quickstart-project-docker.md
Created June 21, 2018 07:05 — forked from wataridori/laravel-quickstart-project-docker.md
Running Laravel Quick Start Project easily using Docker
  • Install Docker
    • Docker for Ubuntu: https://docs.docker.com/engine/installation/linux/ubuntulinux/
      sudo apt-get update && apt-get install -y apt-transport-https ca-certificates
      sudo apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D
      
      // Open the /etc/apt/sources.list.d/docker.list and add the following line then save it
      // Ubuntu 14.04
      deb https://apt.dockerproject.org/repo ubuntu-trusty main
      

// Ubuntu 16.04

@tuanpht
tuanpht / User.php
Last active March 30, 2020 15:05
Laravel Eloquent integration test model save with DB
<?php
namespace App\Models;
use Illuminate\Notifications\Notifiable;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Support\Facades\Hash;
class User extends Authenticatable
{
@tuanpht
tuanpht / create-db.sql
Last active October 1, 2020 16:19
MySQL datetime vs timezone
# Create and insert data
CREATE TABLE `datetime_timestamp` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`datetime_value` datetime NOT NULL,
`timestamp_value` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`inputted_timezone` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
SET @@time_zone = 'SYSTEM';