Uncategorized

Basic JMeter Tutorial

Apache JMeter is an open-source tool used for load testing and performance measurement of web applications. It is widely used in the software industry to test the performance and scalability of web applications and servers under different load conditions. Here is a basic tutorial on how to use JMeter: This is just a basic tutorial …

Basic JMeter Tutorial Read More »

Common Python Issues & Solutions

Problem: Received the following error while activating the python virtual environment… Solution: Relax Windows PowerShell policy

How to remove duplicate from the python list

Let’s say you have a list with duplicate entry like nums = [1, 2, 4, 5, 3, 4, 5, 9, 0, 0, 0, 2, 6, 7, 8, 1, 2, 6, 7]. Following code removes duplicate entry: Output should look like following: