Dec 11, 2023

Testing Tool Kit

Testfully

Installation

Download app

Link to official site - https://docs.testfully.io/docs/download/

Install

$ sudo tar -xvz -f testfully_1.69.0_amd64.AppImage.tar.gz
$ sudo mkdir /opt/testfully
$ sudo mv testfully_1.69.0_amd64.AppImage /opt/testfully

Create shortcut

$ cd /usr/share/applications/
$ sudo touch Testfully.desktop && sudo vim Testfully.desktop

[Desktop Entry]
Encoding=UTF-8
Name=Testfully
Exec=/opt/testfully/testfully_1.69.0_amd64.AppImage
Terminal=false
Type=Application
Categories=Development

Configuration

Import collection

Plus - Import or Export

Aug 2, 2023

Kafka

Show all topics via Kafka:

./bin/kafka-topics.sh --bootstrap-server=localhost:9092 --list

Show all topics via Zoo:

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

Show details of specific topic:

./bin/kafka-topics.sh --bootstrap-server=localhost:9092 --describe --topic <topic name>

Jun 15, 2023

VNC

Install VNC server

$ sudo apt-get install tightvncserver -y

Create display

$ vncserver -geometry 1920x1080

5901 - display 1

5902 - display 2

Check port

$ netstat -an | grep 5901

Kill display

$ vncserver -kill :1

Kubernetes

kubectl installation $ curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl...