Coders Packet

Listing of packets of source code submitted by coders

Text Extraction from live frame using Tesseract in Python

This packet involves the use of Pytesseract, a powerful OCR(Optical Character Recognition) tool in python, for the classification of characters in a live frame.

Snake and Ladder problem using C++

Snake and ladder is a unique puzzle-like problem. The problem is approached and solved using the BFS(Breadth-First Search) technique in C++ language.

Plotting Graph in Python using Matplotlib

This Python Project is used to plot a Line Graph by using the Matplotlib library. It takes the coordinate's input from the user.

LRU Cache implementaion using C++

LRU Cache uses Least Recently Used concept to maintain the Cache order. It is an important concept to be learned for interview preparation. Here it is implemented using c++

Quick Sort using C++programming language.

QuickSort follows the divide and conquer algorithm technique. It picks an element as a pivot and then it splits the given array around the picked pivot. element and then it is sorted. Using C++.

NMap Scanner - Python

This is simple Python automation of NMap Scanner. This Project helps in finding whether the ports are opened in the device, IP address of that device is given as input.

Program to Find True Discount In Python

Python program to find True Discount and Present worth when amount, Rate of interest, and time are given.

Calculator in Python

A simple calculator built on Python which can perform mathematical operations based on user input.

Automorphic Number Using C++

Automorphic numbers are those numbers in which the unit's place of the square of a number is equal to the number itself. Similarly, using C++ the program is explained.

Huffman Coding Implementation for Text Files in C++

This project is based on Huffman Coding, a lossless, bottom-up compression algorithm. It can compress and decompress any text files.

Calculator With Dark/Light Mode Using HTML,CSS,JavaScript

We are going to create a simple calculator using HTML, CSS, Javascript. Here, HTML is used for Frontend and CSS is used for styling properties, Javascript for making responsive Frontend.

Simple Digital Clock Using Tkinter Python

This project is to develop a simple digital clock using Python Language, By importing the Tkinter package. Tkinter is used to develop GUI applications. This is a really cool and simple project.