Skip to content

Instantly share code, notes, and snippets.

View stavalfi's full-sized avatar

Stav Alfi stavalfi

  • CVI @ CVI
  • Israel
View GitHub Profile
@yinonc
yinonc / es5-es6-deafault-args.md
Last active February 17, 2018 18:58
ES5 and ES6 Default Argumants by Yinon Cohen
@hartfordfive
hartfordfive / kafka-del-topics.sh
Last active October 30, 2023 04:32
Script to delete all kafka topics on a given cluster
#!/bin/bash
TOPICS=$(kafka-topics --zookeeper [ZK_IP]:2181/kafka --list )
for T in $TOPICS
do
if [ "$T" != "__consumer_offsets" ]; then
kafka-topics --zookeeper [ZK_IP]:2181/kafka --delete --topic $T
fi
done
@staltz
staltz / introrx.md
Last active April 25, 2024 04:18
The introduction to Reactive Programming you've been missing