Skip to content

Instantly share code, notes, and snippets.

View PhamBaTrungThanh's full-sized avatar

Phạm Bá Trung Thành PhamBaTrungThanh

  • Viet Nam
View GitHub Profile
@PhamBaTrungThanh
PhamBaTrungThanh / .php_cs.laravel.php
Created March 1, 2020 08:41 — 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]
@PhamBaTrungThanh
PhamBaTrungThanh / cloudflare-update-record.sh
Created April 19, 2019 04:45 — forked from benkulbertis/cloudflare-update-record.sh
Cloudflare API v4 Dynamic DNS Update in Bash
#!/bin/bash
# CHANGE THESE
auth_email="user@example.com"
auth_key="c2547eb745079dac9320b638f5e225cf483cc5cfdda41" # found in cloudflare account settings
zone_name="example.com"
record_name="www.example.com"
# MAYBE CHANGE THESE
ip=$(curl -s http://ipv4.icanhazip.com)