Tag: programming

Car Rental System with C++

This is a trendy project and very useful for learning about keyboard events, date-time functions, and implementing a C++ login system. The program has separate menus for admin and other users. There are also methods to calculate fares based on time and distance, including displaying car details, availability, etc. Check the source code on GitHub.…
Read more

Angular Chess

I love playing chess. I also love programming. How to marry the two? How about playing chess against a chess engine (chess playing program) that I have designed and wrote? If you are intrigued- read on! This is the first blog post in the series about building my chess engine in Java. The rules of…
Read more

Learn VI

A holy war has been raging since the 80’s between nerds all over the word about which command line editor is better to use. Command line editors are necessary when the only means of using a computer is via the terminal or command line, for example while remotely accessing a server or any computer that…
Read more

Login and Registration System with C++

To practice learning C++, you can do a lot of projects from easy to advanced levels. Each of these projects that we are going to talk about during this semester will teach you something new so that you are familiar with the most important topics that will always come in handy when you build real-world…
Read more

Build A JavaScript Mouseover Element

Another bit of JavaScript goodness you’ve come to rely on online is the mouseover effect—instances where hovering a mouse over a certain icon or area on a screen produces an action or result from the spot where you’re hovering. Mouseovers are a routine part of JavaScript development, so spending your time on a quick mouseover…
Read more

JavaScript Tic Tac Toe

Building a simple Tic Tac Toe game with JavaScript is another excellent project idea you can finish in a single day. You will create a 3×3 grid where two players will take turns marking the grid with cross and circle symbols. The first player to get three marks in a horizontal, vertical, or diagonal row…
Read more

Develop an Alarm Clock in Python

It is no doubt that an alarm clock is always handy to alert us whenever we sleep, take a short nap, or to remind us about the work, we always get oblivious about. Our ancestors have been using an alarm clock, going back to its 2,000 years long history but over time, the new advancements…
Read more

Build A JavaScript Drawing

JavaScript can be used as a drawing tool, bringing HTML and CSS elements to life on a web browser screen. Being able to make static pages look more appealing with graphical elements is a key part of web development, so learning how to make the most out of JavaScript’s drawing capabilities is critical. Consider trying…
Read more

Build a JavaScript Animated Navigation Toggle

When you build website menus using only HTML and CSS, you’re limited to creating links that move the user from one static page to another—it’s JavaScript that allows for drop down, collapsible, and otherwise animated navigation features when you’re doing web development. Animated navigation toggles are another ubiquitous part of the internet landscape that you’ll…
Read more

Python Tic Tac Toe

It’s no doubt, you must have played Tic Tac Toe in your school days and every one of us loves to play the game. You will be surprised to know that the game of Tic Tac Toe is known to exist since ancient Egypt times. With this Python project by TechVidvan, we are going to…
Read more