How I implemented Snake and Apple Game using PyGame in Python

Featured

Install PyGame Pygame is a cross-platform set of Python modules which is used to create video games. It includes computer graphics and sound libraries designed to be used with the Python programming language. You can install it by using following command, pip install pygame For more information, check official documentation here. Introduction to the Game … Continue reading How I implemented Snake and Apple Game using PyGame in Python

What is a PCAP file?

Wonder HOW to convert the PCAP file to a CSV file? PCAP stands for Packet Capture. It is a file format widely used in network traffic analysis. PCAP files are data files created using a program. These files contain packet data of a network and are used to analyze the network characteristics. They also contribute to … Continue reading What is a PCAP file?

Conversion of PCAP file to CSV file

How to capture the network stream and convert it to model interpretable form? PCAP: Is this readable? Do You Know? What is a PCAP file? Tools required: Linux OSDumpcap command-line utilityWiresharkFlowmeter First, we will download and install the required tools to achieve this task. Download Linux distribution from here. Download Wireshark from here. Once Wireshark … Continue reading Conversion of PCAP file to CSV file

When to Use MongoDB Rather than MySQL

Inspired from Saikrishna Reddem's blog MySQL and MongoDB represent two sides of an argument that has been raging recently concerning data storage — the tried and tested relational database vs. non-relational or No-SQL database. They are both open-source products distributed under a version of the GNU GPL, and both are also available as commercial versions … Continue reading When to Use MongoDB Rather than MySQL

All You Need to know about CURL Command

Operating Systems Lab Curl Command Reference: https://linuxize.com/ Introduction Curl is a command-line utility for transferring data from or to a server designed to work without user interaction. With curl, you can download or upload data using one of the supported protocols including HTTP, HTTPS, SCP , SFTP , and FTP . curl provides a number … Continue reading All You Need to know about CURL Command