I hereby claim:
- I am sabuhish on github.
- I am sabuhish (https://keybase.io/sabuhish) on keybase.
- I have a public key ASD-e3s1F_AyP3BONS7Qua0lhEN7D0yDBJDrsZLXVlohTAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
This page collects common comments made during reviews of Go code, so that a single detailed explanation can be referred to by shorthands. This is a laundry list of common mistakes, not a style guide.
You can view this as a supplement to http://golang.org/doc/effective_go.html.
Please discuss changes before editing this page, even minor ones. Many people have opinions and this is not the place for edit wars.
GET /_cat/indices?v | |
GET /_cat/indices?h=index | |
GET logstash-*/_settings |
----Branch---- | |
git checkout - | |
moves to the previous branch where you were before. | |
git diff master..my-branch | |
see the difference between branches |
FWIW: I didn't produce the content presented here (the outline from Edmond Lau's book). I've just copy-pasted it from somewhere over the Internet, but I cannot remember what exactly the original source is. I was also not able to find the author's name, so I cannot give him/her the proper credits.
docker run -p 4574:4574 -p 4576:4576 --name my_localstack localstack/localstack | |
################################SQS############################################### | |
#to created test_queue: | |
aws --endpoint-url=http://localhost:4576 sqs create-queue --queue-name SQSTest | |
#send message to queue |
config set notify-keyspace-events Ex | |
config get notify-keyspace-events | |
redis-cli --csv PSUBSCRIBE '__key*__:*' |