Coders Packet

Listing of packets of source code submitted by coders

Text Compression using Python

Code in Python compresses a .txt file into a .bin file where the compressed file is approximately 50% of the size of the original file. or decompresses the .bin to .txt file.

Decimal to Binary, Binary to Decimal using C++

Program to convert Decimal number into Binary format and Binary number to Decimal format using C++. The Binary number describes numeric values by two separate symbols: 1 (one) and 0 (zero).

Menu Driven Sorting Techniques Using C++

This menu-driven program is implemented using C++ language, allows the user to select a particular sorting technique from the menu, and automatically the sorted result is generated to the user.

Flappy Bird Game using Java SWING and JFrame

This Java project is a classic arcade game of a flappy bird. The player is tasked with navigating Faby, the bird through pairs of pipes that have equally sized gaps placed at random heights.

Line coding encoder and scrambler with digital data generator in C++

This C++ code implements line coding schemes such as NRZ-L, NRZ-I, Manchester, Differential Manchester, and AMI (with scrambling) on the randomly generated binary data stream.

TODO LIST USING JAVASCRIPT

This project is made using JavaScript, HTML, and CSS for frontend. It is a to save all the tasks user wants to do in the routine or for future planning.

Finding the maximum sum lane using C++

Given two arrays A and B representing two lanes of a route, from this, we can find the maximum sum route and return back the sum using C++

Encryption and Decryption of plaintext using Caesar Cipher in C++

Implementation of Encryption and Decryption of plain text using C++. Caesar Cipher is the simplest form of substitution cipher.

Max priority queue using Python

Implementation of the max priority queue and providing some functions such as getting length, inserting and deletion using Python

Password Manager using Python

It can store and even generate a powerful password for you, so you don't even have to stress on that.

Shopping Cart using ReactJS

Using React Js to create a shopping cart with data from a mock backend (JSON server).

Implementation of Singly linked list in Java

In this guide, you will learn how to implement a Singly linked list in Java. You will also learn about the operations that we can possibly perform with the Singly linked list.