Skip to content

Instantly share code, notes, and snippets.

View Carlos-Augusto's full-sized avatar

Carlos Augusto Sanchez Carlos-Augusto

View GitHub Profile
@snt
snt / node-jose-example.ipynb
Last active February 20, 2023 09:58
encrypt and decrypt using symmetric key with `node-jose`
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ursuad
ursuad / kafka-cheat-sheet.md
Last active March 14, 2024 10:32
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 ...