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...