แดงชาด #c9242b
หงชาด #cb6669
ดินแดง #984c36
ดินแดงเทศ #98262a
ดินแดงตัด #76202a
แดงตัด #951519
หงดินตัด #894c3e
หงดิน #d59088
หงสบาท #df92a3
This document has been modified from its [original format][m1], which was written by Ning Shang ([email protected]). It has been updated and reformatted into a [Markdown][m2] document by [Woody Gilk][m3] and [republished][m4].
When working with a remote git repository which is hosted on a third-party storage server, data confidentiality sometimes becomes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
var d1 = Math.floor(Math.random() * 10); | |
var d2 = Math.floor(Math.random() * 10); | |
var d3 = Math.floor(Math.random() * 10); | |
var d4 = Math.floor(Math.random() * 10); | |
var d5 = Math.floor(Math.random() * 10); | |
var d6 = Math.floor(Math.random() * 10); | |
var d7 = Math.floor(Math.random() * 10); | |
var d8 = Math.floor(Math.random() * 10); | |
var d9 = Math.floor(Math.random() * 10); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env bash | |
set -e | |
# used cf information of api enabled domain name | |
# export CF_Key="<number>" | |
# export CF_Email="<email>" | |
export CF_Account_ID=<acccount-id> | |
export CF_Token="<api-token>" | |
# add cname record at target |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"peacock.favoriteColors": [ | |
{ | |
"name": "แดงชาด", | |
"value": "#c9242b" | |
}, | |
{ | |
"name": "หงชาด", | |
"value": "#cb6669" | |
}, | |
{ |
-- report size information for all tables
-- Finding the size of your biggest relations
SELECT nspname || '.' || relname AS "relation",
pg_size_pretty(pg_relation_size(C.oid)) AS "size"
FROM pg_class C
LEFT JOIN pg_namespace N ON (N.oid = C.relnamespace)
WHERE nspname NOT IN ('pg_catalog', 'information_schema')
master
branch is always production-ready, deployable, 100% green test suite- New development is done on feature branches, with frequent rebasing onto master
- Clean commit history by preferring to rebase instead of merge (
git pull
is configured to automatically rebase)
You should install VirtualBox and Vagrant before you start.
You should create a Vagrantfile
in an empty directory with the following content: