Hola!

I'm Priyanshu, nice to meet you(ˊ˘ˋ*)♡

Mapping The Cursor Movement from a Bluetooth Network Capture Using Numpy and Matplotlib

Description We need to Map the movement of the cursor to recieve the hidden message written on by the user…….We have a Bluetooth Network Capture as a challenge and we need to follow it’s movement to get the message Tools Required: TShark Numpy Matplotlib Code import os import matplotlib.pyplot as plt import numpy as np count = 0 plot_x = [] plot_y = [] X = [] Y = [] condition = [] x_pos = 0 y_pos = 0 output1= os.
2023-10-03

Learning Python at a Beginner level

Getting Started with python Python’s simplicity and readability make it an ideal programming language for beginners. To begin my journey, I familiarized myself with the fundamentals of Python, including variables, data types, loops, and functions. Online resources, interactive tutorials, and community forums provided invaluable guidance during this initial phase. The best resource out there i found was of FreeCodeCamp here
2023-10-02