Skip to content

Instantly share code, notes, and snippets.

View elvis-cai's full-sized avatar
🌴
On vacation

elvis-cai

🌴
On vacation
View GitHub Profile
@elvis-cai
elvis-cai / ALL GCP APIs
Created December 18, 2019 23:01 — forked from vovandodev/ALL GCP APIs
All Google Cloud APIs
NAME TITLE
abusiveexperiencereport.googleapis.com Abusive Experience Report API
acceleratedmobilepageurl.googleapis.com Accelerated Mobile Pages (AMP) URL API
accesscontextmanager.googleapis.com Access Context Manager API
actions.googleapis.com Actions API
adexchangebuyer-json.googleapis.com Ad Exchange Buyer API
adexchangebuyer.googleapis.com Ad Exchange Buyer API II
adexchangeseller.googleapis.com Ad Exchange Seller API
adexperiencereport.googleapis.com Ad Experience Report API
admin.googleapis.com Admin SDK
@elvis-cai
elvis-cai / kafka-cheat-sheet.md
Created May 24, 2019 05:58 — forked from ursuad/kafka-cheat-sheet.md
Quick command reference for Apache Kafka

Kafka Topics

List existing topics

bin/kafka-topics.sh --zookeeper localhost:2181 --list

Describe a topic

bin/kafka-topics.sh --zookeeper localhost:2181 --describe --topic mytopic

Purge a topic

bin/kafka-topics.sh --zookeeper localhost:2181 --alter --topic mytopic --config retention.ms=1000

... wait a minute ...