© 2023 Hashnode
#student
Are you ready? 🚀 I'm the social media generation, and I'm not afraid to embrace it. I use social media to learn, to connect, and to have fun. So, this is how I encountered "ChatGPT" on my Instagram. …
Introduction: As an over-ambitious person, I have always been passionate about bringing people together to work on innovative projects. Nine months ago, I came up with the idea of Hack IT Sapiens, a h…
.What is ChatGPT?.How to Use ChatGPT..Ways ChatGPT Can Help You as a Student..students Tips for Using ChatGPT Effectively..Limitations and Considerations..conclution. As a college student, you're cons…
Let's use our Python skills to make a simple script that is going to monitor any file we want! However, note that if the file is binary, the contents may not be human-readable and may not make sense i…
Now let's learn about how to make a Python script so we can test the TCP Client that we previously created. This script makes a TCP server that listens on a specific IP address and port number for inc…
This Python script sends a UDP message to a target server and waits for a response. If a response is received, the script assumes it is valid JSON and decodes it. If an error occurs, the script will r…
In Python, everything is an object. An object is an instance of a class, which is a blueprint or a template for creating objects. A class defines the properties and behaviours of objects, and objects …
This is a Python script that uses the socket module to create a TCP client socket and connects it to a web server (in this case, www.google.com) on port 80, which is the default HTTP port. It then sen…
In 1937, a German mathematician named Lothar Collatz formulated an intriguing hypothesis (it remains unproven) which can be described in the following way: Take any non-negative and non-zero integer …
We are going to create a multi-dimensional list to be able to store telephone numbers and user names together. First, we are going to create a function to run our menu within a loop: def list(): u…