แดงชาด #c9242b
หงชาด #cb6669
ดินแดง #984c36
ดินแดงเทศ #98262a
ดินแดงตัด #76202a
แดงตัด #951519
หงดินตัด #894c3e
หงดิน #d59088
หงสบาท #df92a3
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
| **Note** the jump-server should config to use ssh passwordless | |
| Connect to internal oracle db via jump-server | |
| ``` | |
| ssh -v -N -L 1521:internal-oracle-db:1521 jump-server | |
| ``` | |
| ``` | |
| ssh -v -N -L 15432:localhost:5432 postgres-server |
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
| FROM postgres:11-alpine | |
| # default database name | |
| ENV DATABASE_DATABASE dev-db | |
| # default username | |
| ENV DATABASE_USERNAME postgres | |
| # default password | |
| ENV DATABASE_PASSWORD dev.db2019 |
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
| FROM node:10-alpine as builder | |
| WORKDIR /front | |
| COPY package*.json /front/ | |
| RUN npm i \ | |
| && mkdir /ng-app \ | |
| && mv ./node_modules /ng-app/ | |
| WORKDIR /ng-app | |
| COPY . . |
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
| FROM maven:3-jdk-8-slim as builder | |
| ENV JAVA_OPTS="" | |
| ENV MAVEN_OPTS="-XX:+TieredCompilation -XX:TieredStopAtLevel=1" | |
| WORKDIR /server | |
| COPY pom.xml . | |
| RUN mvn -B -fn verify |
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
| package main | |
| // Require pcscd, libpcsclite | |
| import ( | |
| "bufio" | |
| "bytes" | |
| "fmt" | |
| "io/ioutil" | |
| "os" | |
| "strconv" |
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
| # ⌨️ TD 108 Functions Description | |
| ***Light Mode:*** | |
| PRESS FN + F4 | |
| + Light up | |
| + Wave | |
| + Rain drop | |
| + Aurora | |
| + Breathing |
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
| // https://play.golang.org/p/ZC2RkvU5XtN | |
| package main | |
| import "fmt" | |
| import "encoding/json" | |
| func main() { | |
| payload := []byte(`[{"Key":"[email protected]:PROGRESS_UPDATE:UPD-000001", "Record":{"contractId":"UPD-000001","type":3,"status":0,"createDate":"2019-03-15T12:07:48+07:00","content":"mock content","groupOfSignatures":[{"participantId":"[email protected]","signature":"alice's signature"},{"participantId":"[email protected]","signature":""}],"message":"progress update for Inv 01","generalReferences":["n/a"],"pendingBy":"","referenceToContractId":""}},{"Key":"[email protected]:PROGRESS_UPDATE:UPD-000010", "Record":{"contractId":"UPD-000010","type":3,"status":4,"createDate":"2019-03-15T12:07:48+07:00","content":"mock content","groupOfSignatures":[{"participantId":"[email protected]","signature":"alice's signature"},{"participantId":"[email protected]","signature":""}],"message":"progress update for Inv 01","generalReferences":["n/a"],"pendingBy":"","referenceToContractId":""}},{"Key":"[email protected]:PROGRESS_UPDATE:UPD-00 |
I hereby claim:
- I am dahoba on github.
- I am siritas (https://keybase.io/siritas) on keybase.
- I have a public key ASDe7ntTvPimQ3saUBtfF3IRD-M190wNaVmRdFPEH3HfEAo
To claim this, I am signing this object:
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
| #!/bin/bash | |
| # Google 13+1 Thai Fonts by Cadson Demak | |
| # The script inspired by [Web-Font-Load](https://github.com/qrpike/Web-Font-Load) | |
| # OS detection | |
| osdetect=$(uname) | |
| file_path="unknown" | |
| if [[ "$osdetect" == 'Darwin' ]]; then |