Feb 26, 2022Pong Game using PygamePygame is a cross-platform set of Python modules designed for writing video games. It includes computer graphics and sound libraries designed to be used with the Python programming language. Installing pygame: Pygame requires Python; if you don’t already have it, you can download it from python.org. Use python 3.6.1 or greater, because…4 min read4 min read
Aug 18, 2021Flutter Application To run Docker Commands.Flutter is an open-source UI software development kit created by Google. It is used to develop cross platform applications for Android, iOS, Linux, Mac, Windows, Google Fuchsia, and the web from a single codebase. …5 min read5 min read
Aug 18, 2021How is Open Short Path First Routing Protocol implemented?What are Graphs? A Graph is a non-linear data structure consisting of nodes and edges. The nodes are sometimes also referred to as vertices and the edges are lines or arcs that connect any two nodes in the graph. More formally a Graph can be defined as, A Graph consists of a finite…7 min read7 min read
Jul 19, 2021K-Means clustering and its real use case in the Security DomainLet’s start with a Basics… — What is Clustering? Clustering is the task of dividing the population or data points into a number of groups such that data points in the same groups are more similar to other data points in the same group than those in other groups. …9 min read9 min read
Jul 7, 2021Integrating MongoDB with FlaskWhat Is MongoDB? MongoDB is an open-source document database built on a horizontal scale-out architecture. Founded in 2007, MongoDB has a worldwide following in the developer community. Instead of storing data in tables of rows or columns like SQL databases, each row in a MongoDB database is a document described in JSON, a…3 min read3 min read
Jul 7, 2021Using Map-Reduce in MongoDBWhat is MongoDB? MongoDB is a source-available cross-platform document-oriented database program. Classified as a NoSQL database program, MongoDB uses JSON-like documents with optional schemas. MongoDB is developed by MongoDB Inc. and licensed under the Server Side Public License. What is Map-Reduce? Map-reduce is a data processing paradigm for condensing large volumes of data into useful aggregated…3 min read3 min read
Jul 4, 2021Fetching Car Details using Computer Vision and OCR.Task Description: — 🎯Create a model that will detect a car in a live stream or video and recognize characters on the number plate of the car. 🎯Secondly, it will use the characters and fetch the owner’s information using RTO APIs. 🎯Create a Web portal where all this information will be displayed (using…10 min read10 min read
Jun 30, 2021Kubernetes Integration with Python-CGI.Task Description: Create a WebUI page for kubernetes Feature necessary. ⚙ It can launch pods with the specific names given by users. ⚙ Run deployment using the image and name given by the user. ⚙ Expose services on given user input port number. ⚙ Scale the replica according to user needs. ⚙ Delete complete environment created. ⚙ Delete specific resources given by the user. ⚙ Extra features related to k8s ( Optional)2 min read2 min read
Jun 25, 2021Docker Webapp using JavaScript and PythonTask-Description — Creating an app which will help the user to run all the docker commands like: 🎯docker images 🎯docker ps 🎯docker run 🎯docker rm -f 🎯docker start 🎯docker stop Pre-requisite: Install HTTPD software and enable it’s service. Install Docker-ce and enable it’s service. Internet connectivity Steps to be followed: Enable httpd service: “systemctl start httpd” Stop firewalld service: “systemctl stop firewalld”2 min read2 min read