Coding Projects with source Code Python HTML CSS JAVASCRIPT projects with source code

Convert Image to PDF Using Python GUI

Convert Image to PDF Using Python GUI With Source Code Introduction : The code given is a simple Graphical User Interface (GUI) application created using the Tkinter library in Python. The application for helping any user convert multiple images into a single Portable Document Format (PDF) file. The user does the selection of images they want […]

Library Management using Python GUI With Source Code Introduction:  This Library Management System project is a Python-based solution that utilizes the tkinter library to create a graphical user interface (GUI). Its main goal is to simplify and streamline the process of managing books and library members. The code includes a class named “Library Management,” which […]

Creating GUI Piano Using Python​ With Source Code Introduction: In this project, we are going to build a GUI piano by using different libraries of Python. With the help of the tkinter library, we will create the GUI for the project. As the name suggests, several keynotes of the piano will be there and by […]

Airline reservation system using java

Airline Reservation System Using Java With Source Code Introduction: In this project, we’ll show you how to create an Airline reservation system using java. This is a command-line user interface-based airline reservation system that allows you to check seat availability and reserve a seat if it is available. The system is designed with a switch case that gives […]

banking application using java GUI

Simple Banking Application Using Java GUI Introduction: Welcome to the Banking Swing Application! This banking application’s graphical user interface (GUI) provides a simple and understandable method for performing deposit and withdrawal operations. It is created using Java’s Swing library, which provides a flexible and powerful set of components for creating graphical user interfaces.  The application […]

Get Instagram Account Details using Python

Get Instagram Account Details using Python With Source Code Introduction : Hello Curious Coders, In this Project we are going to fetch the details of an Instagram Account. There is pre defined package in python named instaloader which is going to allow us to scrape through the instagram account of someone. Let’s get into it….. […]

pikachu using python

Drawing Pikachu Using Python With Source Code Introduction: In Python, the  turtle is one of the most exciting libraries which enables the user to create pictures on a virtual canvas, with the help of the in-built functions of this library we can see the magic of art. In this project, with the help of this […]

ATM Simulation System (CLI)

ATM Simulation System Using Java With Source Code Introduction: Thanks for visiting the ATM Stimulation System! This Command-Line User Interface (CLI)-based ATM Stimulation System offers a clear and easy way to execute withdrawals, deposits, and check balances. Java is the programming language used to create it. The system includes a simple command line interface with […]

Building Our Own ChatGPT using Python With Source Code Introduction: In This article, we’ll show you how to create a chatbot using OpenAI python. OpenAI is an artificial intelligence research organization that provides a platform for building and training machine learning models. ChatGPT is one of the most popular Ai Models which can be used […]

Detect Plagiarism in files using Python With Source Code Introduction Hello Curious Coders,In this project we are going to discuss how to check the plagiarism between thecontents present in two different text files. In python this can be done usingpredefined package difflib but we are going to check it manually. Let’s get into it…. Source […]

To Do Manager

To-Do Manager using HTML CSS JS with Source Code Introduction: This Projects is about a To do manager that manages users tasks. It has animated interface which is very helpful to interact with user.It is created by using the latest tech stacks i.e. HTML5 , CSS3  and JavaScript(ES6)The logic used to create this project no […]

Calculator in Java using Swing

Calculator in Java Using Swing With Source Code Introduction: Welcome to the Java Swing Calculator! This calculator is a graphical user interface(GUI)application that provides a simple and intuitive way to perform mathematical calculations. It is built using the Swing library in Java, which provides a flexible and powerful set of components for creating graphical user […]

Temperature Converter in Java using Swing

Temperature Converter in Java using Swing With Source Code Introduction:  The Temperature  Converter is a common tool used in daily life and has various applications in different fields such as meteorology, thermodynamics, and physics. With the rise of computer technology, it is now possible to build a graphical user interface (GUI) for this tool,making it […]

Convert Black & white Image into Color using python

Photo Collage Maker using Python With Source Code Introduction Hello Curious Coders, In this Project we are going to discuss how to form a collage of images using python. The Photo Collage is a group of multiple photographs or images arranged and displayed together in a single composition. The PIL packeg is used to generate […]

Wordcloud Output

WordCloud using Python Hello Curious Coders, WordCloud is a graphical representation technique where the words are displayed based on their frequency in the text provided. This is used when one want to analyze and find out the frequent words of a paragraph just by looking at an image. So here is the code to implement […]

Birthday Wishes Using Python With Source Code Introduction : Hello Curious Coders, In this Project we are going to generate simple Birthday wishes using turtle package in python. Turtle is a package in python which is responsible to produce some graphics. So here is the Code…. Source Code import turtle # Create a turtle object […]

Currency Converter in Java Using Swing ​

Currency Converter in Java Using Swing With Source Code Introduction: The Java program that creates a simple currency converter using the Swing library. The program creates a GUI that consists of two labels(one for rupees and one for dollars),  two text fields (one for rupee input and one for dollar input), and three buttons (One […]

Simple Calculator Using Java​

Simple Calculator Using Java With Source Code Introduction: A simple calculator is a type of electronic calculator that is designed to perform mathematical operations, such as addition,subtraction,multiplication,division. These calculators are commonly used in fields such as engineering, physics, and finance. In this article, we will be discussing a basic scientific calculator program written in Java. […]

Simple Supermarket Billing System Using Java​

Simple Supermarket Billing System using Java With Source Code Abstract: The java program for a supermarket billing system. The code prompts the user to enter details about each items they are purchasing, such as the item name, quantity, and price. It then stores this information in an ArrayList of Item objects, which is a custom […]

Airline Reservation System Using Java

Airline Reservation System Using Java With Source Code Abstract: The code is an example of an airline reservation system implemented in Java language. The program uses an array of boolean values to represent the seats on a plane,  where a value of true indicates a seat is reserved and a value of false indicates a […]

Budget Tracker using Java With Source Code Introduction : The above code is a sample implementation of a budget tracker in Java. The BudgetTracker class keeps track of a user’s expenses and incomes, and calculates the current budget balance. The class has a constructor BudgetTracker(), which initializes two ArrayList objects, one for expenses and one […]

Library Management System Using Java​

Library Management System Using Java With Source Code Abstract: library management system would be to create a separate class for handling the catalog of books, and another class for handling the individual books. This would allow for better organization and separation of concerns, as well as making the code more reusable. The Library class holds a list […]

Online Voting System Using Java

Online Voting System Using Java With Source Code Introduction: Online voting systems have become increasingly popular in recent years, as they offer a convenient and efficient way for people to participate in elections and other types of voting events. Java is a powerful programming language that is well-suited for developing online voting systems due to […]

Simple Banking Application Using Java​

Simple Banking Application Using Java With Source Code Introduction: Simple Banking Application is a simple Java project for beginners to start their career in coding. You’ll learn about Scanner class to take inputs, and the basics of strings, loops, methods, and conditional statements. Here, simple banking operations like deposit, withdrawal, checking balance, exit, etc.  Explanation: […]

Number Guessing Game Using Java

Number Guessing Game Using Java With Source Code Introduction: A number guessing game is a simple and fun way to learn about programming and the Java programming language. In this article, we will walk through the process of creating a number guessing game using Java. Explanation:   The first step in creating a number guessing […]

OTP Verification using Python With Source Code Introduction: In this project, we have made an OTP verification System with Help of various libraries. First of all, we made use of Tkinter for creating the GUI for our project. Next to that, to generate the random Numbers as OTP we used a random module. At last, […]

Quiz Application Using Python With Source Code Introduction: In this project, we have built a Quiz Application with the help of the  tkinter module in Python. In this, users will be provided with a GUI in order to select one of the correct options. As the user will choose the correct option the point will increase. […]

BMI Calculator using python With source Code Introduction: In this project, we will build up an Advanced BMI Calculator by the tkinter library of Python. It is the standard GUI library of Python. With the help of sliders, the user can mention their height and weight, by clicking the report button they can see their calculated […]

Scientific calculator using Python With Source Code Introduction: In this project, we build up the scientific calculator using the tkinter library of Python. It is the standard GUI library for Python. With its help, we prepared the GUI for the project, and to add the functionalities of the scientific calculator, we used a math module. […]

Draw Doraemon Using Python With Source Code Introduction: In Python, the turtle is one of the most interesting libraries which enables the user to create pictures on a virtual canvas, with the help of the in-built functions of this library we can see the magic of art. In this project, with the help of this […]

Convert text into speech using python

Convert Text to speech using python With source Code Introduction: In this project, we will convert the text into speech using Python. It will be made possible by using the gTTS module in Python. It is a Python library and CLI tool to interface to Google Translate Text to speech API. Let’s get into this […]

GUI alarm Clock Using Python With Source Code Introduction: In this project, a GUI alarm clock has been created with help of the “Tkinter” module. Tkinter is a standard GUI library for python. With the help of this module, we have created a simple GUI interface for setting the alarm details. As per the requirement, […]

Hangman Game using python With Source Code Introduction:  In this project, we have created a Hangman game with the help of the “Pygame” module in Python language. Basically, it is a guessing game. The player tries to guess it by suggesting letters within a certain number of guesses. If the guessed word is correct within […]

sudoku game using python

Sudoku Game Using Python With Source Code Introduction: In this project, we have created a Sudoku Game with the help of a module named “Pygame”. Basically, in this, a random grid will be produced containing digits from 1 to 9 with the help of an API. To play this game: Each row, column, and square […]

Employee Record Management System using C++

Employee Management System using c++ With Source Code Introduction: Employee Management System the whole project is designed in ‘C++’ language. This project manages the employee records working in a company such as personal information, work information, and contact info. This project is easy to operate and understood by the users. it is based on the […]

GUI Calendar Project In Python

Graphical User Interface Calendar using python With Source Code Introduction: A calendar is used in our daily life. Here we will build a GUI(graphical user interface) Calendar project in python using a python module called Tkinter. Tkinter is a python module to create GUI applications. It is a great tool to build python applications. This […]

Student Management System using C++ With Source Code Introduction : This is a student record management system project, which enables you to create, read, modify, and delete student Records. This project is developed using the programming language C++. Student Management system is a management information system for education to manage students’ data. It includes the […]

ATM BANKING SYSTEM PROJECT USING C

ATM BANKING SYSTEM USING C Language With Source Code Introduction:  ATM uses software applications for performing banking operations, whether you want to withdraw cash, deposit cash or undergo any important fund transfers immediately, it is not exactly convenient to always visit the bank branch and wait in long queues to perform such quick and easy […]

GUI Based Internet Speed Test Using Python With Source Code Introduction: python language is one of the most preferred programming languages in today’s scenario of the data science field. Because of its simple syntax and vast libraries/packages/modules, implementing various applications/programs/codes is very handy. Explanation: GUI is one of the best interfaces for a user to […]

Snake Game Using Python With Source Code Introduction: In this project, we have created a snake game using a python module named  “Pygame”. Basically, in this game, the user will control the movement of the snake through the keyboard arrows and direct the snake in the direction of food, as the snake eats the food […]

airlines reservation system project using python

Airlines Reservation system using C with Source Code Introduction : Airlines Reservation System deals with the various activities related to the flights. It is a web-based flight booking agency that is used to conduct flight bookings. Earlier all activities were done manually, which was very time-consuming and costly. But the Airlines Reservation System simplifies the […]

Creating A WaterMark on Image using OpenCV with Source Code Introduction: We are now making watermarking images using OpenCV in Python in this project. Watermark is looking left Text/logo onto the image. This helps us to identify the actual developer of an artist. Watermarks are used to protect the copyright of the picture. watermarks sometimes […]

radha krishna drawing using python

Radha Krishna Drawing using Python with Source Code Installation: In this project, we’ll explore how Python’s graphics library can be used to draw a pleasing picture of Radha Krishna, one of the most beloved gods in Hinduism. So just relax and tune into an amusement for the eye and mind. Python comes with open source […]

GUI Digital Clock Using Python with Source Code Introduction: In this Project, I will show you. How to Create Graphical User Interface of Digital Clock and How to Design your clock beautifully. We are Using Tkinter, which is a framework of Python Programming Language. In which we can design your outer part of the project […]

GUI Stopwatch using Python with Source Code Introduction: We will build the GUI(graphical user interface) Stopwatch application usingpython with Tkinter. Tkinter is a python GUI package. Tkinter is the fast andeasiest way to create GUI applications. We will create start, pause, stop and quit buttons to control our application. Project Requirements: For writing code, there […]

Turtle Patterns in Python with Source Code Introduction: In this article, we will see how to draw patterns using Python turtle graphics. python has a turtle module. turtle is a popular way for introducing programming to kids.  About Turtle: Turtle graphics is a popular way for introducing programming to kids. It was part of the […]

Drawing Patterns Using Python Turtle with Source Code Introduction: In this article, we will see how to draw patterns using Python turtle graphics. python has a turtle module. turtle is a popular way for introducing programming to kids.  About Turtle: Turtle graphics is a popular way for introducing programming to kids. It was part of […]

Send WhatsApp Messages Using Python with Source Code Want to automatically send WhatsApp messages using Python? The pyautogui library makes it easy! you can Automatically message your friends using Python and the pyautogui library.  What is pyautogui ? The pyautogui library is a powerful tool for automating mouse and keyboard interactions with other applications. Using […]

Draw a Heart Using Python Turtle with Source Code Introduction : This tutorial teaches you how to draw a heart using the Python Turtle for beginners. The way to draw a heart in Python is by listening for control codes and looping. Control codes are special types of coding that give instructions for what the […]

Find Wi-fi Passwords using Python with Source Code Introduction : This article will show you how you can find wifi passwords using python. if you forget your wifi password so this python script can find your wifi password. To find the already connected wifi passwords we need to execute two commands on the terminal so […]

Print Rainbow Benzene using python with Source Code In this article we will see how to draw a rainbow Benzene using Python turtle graphics. python have a turtle module. turtle is a popular way for introducing programming to kids.  Print Rainbow Benzene using python  To install the turtle module open your terminal and run the […]

More Coding Projects
The current query has no posts. Please make sure you have published items matching your query.
Get Huge Discounts