Coders Packet

Listing of packets of source code submitted by coders

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.

Encoding and Decoding of Morse Code using C++

This Program converts English to Morse code (Encode) and Morse code back to English (Decode) using C++

Voice Based Temperature Convertor using SpeechRecognition in Python

A Python Project to perform basic temperature conversions between Kelvin, Celsius, and Fahrenheit using audio using libraries such as SpeechRecognition, pyttsx3, and gTTs.

N-Bit Gray Code Sequences using C++ Programing Language

Now here I have provided the code for binary to gray code. Like for example if you give the input the output of given will be displayed while running the program. Using C++ Programing Language

ARRAY IMPLEMENTATION OF QUEUES Using C++

ARRAY IMPLEMENTATION OF QUEUES Using rear and front. It is a linear data structure and it follows the first in first out technique. Using C++ Programming Language.

Application of stack infix to postfix. Using C++ programming language

Application of stack infix to postfix which follows last in first out and it is a linear data structure. Using C++ programming language

Stack implementation of linked list. Using C++ programming.

Stack implementation of the linked list. It is a data structure and the stack follows the last in first out technique. Using C++

Collections Module in Python

This module aims to improve the functionalities and provides alternatives to Python’s general-purpose built-in containers such as dict, list, set, and tuple

Audio based file handling in Python

The project utilizes python's libraries and other packages to provide simple file handling services on txt files using audio input.

Area of Triangle Using Heron's Formula in PYTHON

Calculate the area of a triangle when all the three sides are known using Heron's Formula in Python.

Deleting a node from a singly linked list using C

In this project, we will discuss how to delete a node from a singly linked list using C language. To delete a node at the nth position we have to traverse up to the nth element from starting.