How to create Bingo game using Java

By Saima Shamim

In this tutorial, we will learn how to create Bingo game in Java. Bingo game is somewhat related to the random number guessing game. In this game, two or more players are given a r.... Read More

Make a clickable table of contents in LaTeX

By Parvez Akhtar Pasha

In LaTeX, you can easily create a table of contents with the \tableofcontents command and it will generate the table of contents with all the sections and subsections. But in this .... Read More

Read text from a TextField in SwiftUI

By Samim

In this tutorial, we will see how to read text from a TextField in SwiftUI. In SwiftUI, text input from a TextField can be managed by binding it to a @State property. This binding .... Read More

Insert text, image and list in a table in LaTeX

By Parvez Akhtar Pasha

In this tutorial, I will show you how to add text, an image, and a list in a row vertically centered in a cell. In order to insert text, an image, and a list in a row, you can use .... Read More

Move forward with constant speed in Unity using C#

By Faruque Ahamed Mollick

You may have played video games where the player moves forward with a constant speed and overcomes some obstacles by moving sidewise. Well, you can do this same kind of thing in Un.... Read More

Count number of GameObject in the scene with specific tag in Unity

By Faruque Ahamed Mollick

In game development with Unity using C# programming, you may have to count the number of objects with a specific tag. More practically, you need to get the updated statistic of the.... Read More

Plus-minus (±) and Minus-plus (∓) symbol In LaTeX

By Parvez Akhtar Pasha

To get the plus-minus (±) symbol in LaTeX you can use the default command \pm and to get the minus-plus (∓) symbol you can use the \mp command. \documentclass{article} \begin{do.... Read More

Change font color of a TextField in SwiftUI

By Samim

In this tutorial, we will see how to change the font color of a TextField in SwiftUI. This article will cover the topics mentioned below. Changing Font Color in TextField Change Cu.... Read More

Related Posts