Author: Adin

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

What is Big Data?

Big Data is a collection of data that is huge in volume, yet growing exponentially with time. It is data with so large size and complexity that none of the traditional data management tools can store it or process it efficiently. Big data is also data but with a huge size. You can read more HERE and…
Read more

Show and Tell April 6

In this week’s show and tell we’ll be talking about personality types from MBTI! Mostly based on the information on www.16personalities.com The zoom meeting will be HERE at 1pm on Tuesday. Or you can join with meeting ID: 829 7708 3019 and password: 982778.

How to Make A T-Shirt – Sewing DIY

Let’s talk about how you can make your own T-Shirt! Let’s look at the table of content for this tutorial: Sewing with Knits: Making a T-Shirt Step 1: Pin Shoulder Seams Step 2: Sew Shoulder Seams Step 3: Prepare Neckband Step 4: Attaching Neckline Step 5: Add Sleeves Step 6: Sew Side Seams Step 7:…
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

Sudoku Game with C++

We all know about the popular Sudoku game, wherein we need to arrange numbers from 1-9 such that they appear only once in a row and column of a 9×9 grid. The program uses the concept of backtracking. In this program, we have hard-coded the initial values, but you can also get the same input…
Read more

Credit Card Validator with C++

This is a simple project that uses Luhn’s algorithm to validate a user’s credit card. The program works for all popular cards like Visa, Amex, MasterCard, etc. Luhn’s algorithm checks for basic validations; for example, a Visa card should start with 4 and then moves on to complex digit-wise calculations. It is a good program…
Read more

Show & Tell March 16

This week’s show and tell we’ll talk about sewing machines! The zoom meeting will be HERE at 1pm on Tuesday. Or you can join with meeting ID: 829 7708 3019 and password: 982778.

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