Coders Packet

Listing of packets of source code submitted by coders

Reverse a string using Python

In this program, We will reverse a string inputted by the user using 'for' loops in Python

Strong Password Generator in Python

The following Python Code aids people who find it difficult to create and memorize strong passwords

Modular Exponentiation in the most efficient way using C++

Here when the user gives (a, n, val ) values, this will calculate the [(a power n)% val] value using C++. It can handle the larger values too.

Keyboard Stroke Recorder Using Python

This Python program will record every action that occurred on the keyboard. This program is mostly used for Parental Control , Company Security, and many other purposes.

Analog Clock using C++ graphics

The Analog Clock project has been designed and developed in the C++ programming language with the help of graphics.h and ctime library.

Mad Libs Generator in Python

Mad libs generator in Python is a fun game that creates a story using the words given as input. User has to enter substitutes for blanks in the story without knowing the story.

Python Script to convert images to thumbnail.

A Python script for converting image files to thumbnail using the Image module of the PIL Library.

Extra Long Factorials in C++

This is a C++ program to find the factorials of numbers that are too big to fit on any data type in C++.

Python Script to get Weather of any city.

Getting current weather of any city with the help of OpenWeather API, requests, and json module in Python.

Longest Palindromic substring in a given String using C++

When the user inputs any string, it gives the longest palindromic substring of the given string( case sensitive ) efficiently using C++ programming language.

Command-line To-do list Application using Argparse library in Python

A Command-line to-do list application built using the 'Argparse' library of Python that allows users to keep a record of to-do and done tasks and run commands using the terminal.

Using linear search with templates in C++

C++ templates are used with Linear search to show compile-time polymorphism. Three different data type arrays are used for verification.