Skip to content

Instantly share code, notes, and snippets.

View wanix's full-sized avatar

Erwan SEITE wanix

View GitHub Profile
@wanix
wanix / anonymize_email.py
Created February 2, 2018 15:03 — forked from Xowap/anonymize_email.py
A script to anonymize emails in a SQL dump
#!/usr/bin/env python3
# coding: utf-8
import argparse
import re
from uuid import uuid4
from hashlib import sha256
SALT = str(uuid4()).encode()
@wanix
wanix / kafka-cheat-sheet.md
Created September 4, 2018 09:40 — forked from filipefigcorreia/kafka-cheat-sheet.md
Apache Kafka Cheat Sheet

Kafka Topics

List existing topics

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

Purge a topic

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

... wait a minute ...

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