Best JavaScript Projects for Beginners in 2023
If you are a beginner and looking for a few ideas to really implement and enhance your JavaScript skills, this article is the end of…
How to create Notepad in Java?
Introduction To build a Notepad in Java we require basic knowledge of java and file operations. Java provides default packages such as Abstract Window Toolkit…
Super Mario game in Python using Pygame
Have you ever wanted to have the power to create the Mario game from scratch? Now, you can create your own Super Mario game in…
How to get a function name as a string in Python?
Today, we will see the two most used methods to get a function name as a string in Python. Using __name__ to get a function…
Access dictionary values in Python | dict[key] vs dict.get(key)
dict[key] and dict.get(key) are two ways to access dictionary values in Python. The difference is that dict.get(key) takes two arguments while dict[key] takes one argument…
Ludo Game in Python
Today we are back with one another fantastic article on game development articles in Python. In this article, we will talk about and learn about…
Ternary operator in Python: 6 possible methods
There are many ways to make a ternary operator in Python but there exists a one-liner if-else statement that is usually called the ternary or…
Get the length of a list in Python
Lists in Python are one of the most commonly used built-in data structures. Many times we need to find the length of a list in…
Memory Game in Java
Playing memory games can improve attention, and concentration and enhance critical thinking. In this article, we will make a Memory game in Java with Swing. This…
Draw Dog using CSS
Today we are going to Draw Dog using CSS, we will use HTML to structure the page and then use CSS to design the look,…
Rock Paper Scissor in HTML CSS JavaScript
Today, we will be developing a simple Rock Paper Scissor in HTML CSS JavaScript. This is a hand game, played by two players, and requires…
ToDo App in PHP with authentication
This tutorial is going to be an exciting and thrilling one as we are going to create a simple ToDo App in PHP with authentication…
Simple Car Race Game in Java
When it comes to building gaming applications, we always think of racing games as we loved playing these types of games in our childhood. So…
ATM program in Java
Introduction In this article, we are going to create an ATM program in Java for representing ATM transactions. In the ATM program, the user has…
Rock Paper Scissors Game in Python
Hello folks! Today, we are back with a fantastic tutorial on the Rock Paper Scissors Game in Python. We all are familiar with the topic…
Drawing Application In Java
Introduction In this article, we will design and build a Drawing Application In Java. In this project, the user can set the background color, draw,…
Tetris Game in Java
Today, we are going to learn how to build the classic Tetris Game in Java with Swing. The game requires the player to rotate and…
Snake and Ladder Game in Python
Introduction Are you looking for a fun way to learn Python coding? If so, why not create your own Snake and Ladder Game in Python?…
Pong Game in Java
In this article, we are going to build the simple Pong Game in Java. This is a two-player game in which players need to hit…
Pong Game in HTML and JavaScript
Today we will learn to make the most out of the javascript learned so far. We will combine the magic of CSS and js with…