Cheatsheets
MySQL Cheatsheet
Category Command Syntax Connection Login to MySQL mysql -u user -p Connection Exit MySQL exit; Database Create Database CREATE DATABASE dbname; Database Show Databases SHOW DATABASES; Database Use Database USE...
MySQL Cheatsheet
Category Command Syntax Connection Login to MySQL mysql -u user -p Connection Exit MySQL exit; Database Create Database CREATE DATABASE dbname; Database Show Databases SHOW DATABASES; Database Use Database USE...
π Kafka Cheatsheet: Core Commands
πΉ Topic Management # List all topicskafka-topics.sh --list --bootstrap-server localhost:9092 # Create a topickafka-topics.sh --create --bootstrap-server localhost:9092 \--replication-factor 1 --partitions 3 --topic my-topic # Describe a topickafka-topics.sh --describe --bootstrap-server localhost:9092...
π Kafka Cheatsheet: Core Commands
πΉ Topic Management # List all topicskafka-topics.sh --list --bootstrap-server localhost:9092 # Create a topickafka-topics.sh --create --bootstrap-server localhost:9092 \--replication-factor 1 --partitions 3 --topic my-topic # Describe a topickafka-topics.sh --describe --bootstrap-server localhost:9092...
GIT Cheatsheet
π§ Setup Command Purpose git config --global user.name "Your Name" Set your Git username git config --global user.email "you@example.com" Set your Git email git init Initialize a new Git repository...
GIT Cheatsheet
π§ Setup Command Purpose git config --global user.name "Your Name" Set your Git username git config --global user.email "you@example.com" Set your Git email git init Initialize a new Git repository...