January 2023

Create QR Code Generator using Python (Python Projects)

Here is a Python code that generates a QR code from a given text using the " qrcode " library: Copy to clipboard …

Send SMS Text Messages using Python

Here is a Python script that sends an SMS message to a phone number specified by the user: Copy to clipboard im…

Make "I Love You" with Heart💕 program in Python

Here is a Python script that will print "💖I love you💕" 100 times with a simulation: Copy to clipboard …

How to build Email Scraper Tool using Java

Here is a Java code that can be used to scrape email addresses from a webpage: Copy to clipboard import java.io…

How to build a Number Guessing Game in Java (Java Projects)

Here is a code of Number Guessing Game in Java that uses the 'javax.swing' package for the user interface. The game is a number guessing gam…

How to build a YouTube Video Downloader Tool using Python

Here is a Python script that uses the ' pytube ' library to download a YouTube video: Copy to clipboard …

How to make a Subdomain Finder/Scanner using Python

Here's a Python script that can find all subdomains of a given host: Copy to clipboard import socket def …

How to create a custom widget with Qt designer in Python/PyQt5

To create a custom widget with Qt Designer in Python and PyQt, you can use the following steps: Create a new class for your custom widget by subclass…

How to build a cross-site scripting (XSS) vulnerability scanner in Python

Here is an example of a Python script that can check for cross-site scripting (XSS) vulnerability in a user-input URL: Cop…

How to add an image as a background in Python (PyGame)

In Pygame, you can use an image as a background by first loading the image using the 'pygame.image.load()' function, and then blitting it to …

How to create your own Web Browser using Python and PyQt5

Here is a code of how you can create a simple web browser using Python and PyQt5, which will allow you to build an executable file: …

How to create About Us page in HTML

Here is a HTML code for an "About Us" page: Copy to clipboard <!DOCTYPE html> <html> …

How to create Voice Translator using Python

Here's code for Voice Translator: Copy to clipboard import googletrans import speech_recognition impo…

How to create "Guess the word" game in Python

Here's Python code for a word guessing game where the goal is to get the highest score: Copy to clipboard …

How to create Multiplication Table Generator using Python

Here is the program that will generate tables for a range of numbers that the user specifies: Copy to clipboard …