Tag: programming

Logo Programming: Snake Game using Python

Hello, this week we will be exploring logo programming. Yes, using python is it can be done. Python is a very rich language it comes with a preinstalled library called a turtle. Python turtle library comes with a similar interactive feature that gives new programmers a taste of what it’s like to work with Python.…
Read more

Android Application Development: How to build ARCore Android App

In my previous article, I have talked about installing the android studio in the system and the simple Hello World application in android. Today, we are going to talk about how we can develop the AR android application using Sceneform Android Library. So, let’s dig into it. Step 1: Create a new project You can…
Read more

Android Application Development: Hello World

Today, this week we will talk about how the basic android application is created. Wanna learn how android applications are made? Prerequisites Android Studio Basics of Java programming OOPs concept If you have all these prerequisites, you are good to go for the development of android applications. For starting application development, first, we need to…
Read more

What is React js?

React is a library for building composable user interfaces. It encourages the creation of reusable UI components, which present data that changes over time. Lots of people use React as the V in MVC. React abstracts away the DOM from you, offering a simpler programming model and better performance. React can also render on the…
Read more

Simple Animation to Race a Drunk Man from Start to Finish with C++

This is an interactive console animation app, where your choice of character (any letter from a to z) will appear to move funnily from start to finish line. If he finishes the race within the specified counter (in our case, 1000000), then we print a particular message, else another message. You can find the source…
Read more

Using Graphics to Draw and Move Shapes with C++

In this graphics program, you will learn to make a car and then make it move using graphics. This is a simple program written using Turbo C++; however, the same program will work on other IDEs like Dev C++. Code:: Blocks and Visual Studios. You have to get the graphics.h file for the program to…
Read more

Helicopter Game with C++

For all the 90s kids, this was one of the most favorite games and very easy to implement! In this project, we will use SDL graphics. The goal of the game is to move the helicopter forward without touching the obstacles. The player should control the game through keys, holding the key moves the helicopter,…
Read more

Git Good

If you’re looking to get serious about coding and make more projects, you’ll need to learn git to avoid a lot of headaches. Git is a version control software that tracks your changes and lets you revert to past versions if needed. HERE is a great guide to learn git. GitHub is where you can…
Read more

Let Lua Take You to the Moon

Lua is a programming language used for some game engines and is great to learn. Lua is very similar to python and javascript and is easy for beginners to learn. HERE is a quick guide to get started with Lua.

Bookshop Inventory System with C++

This is a simple project where the system maintains the inventory of books in a bookshop. If a customer purchases a book, the book’s count will decrease; if a book is added, the same is updated. Notice the use of pointers. You can modify the code to add a book ID and make the search…
Read more