Each HTML element has a default display value, based on type of element. There are two display values: Inline-level elements: Below is the table summarise what each of those element does. Inline-level tags Description <a> Defines a hyperlink. <img> Defines an image. <span> Defines a small section of text. <em> Defines emphasized text. <strong> Defines … Continue reading “HTML Block and Inline Elements”
Author: admin
Bubble Sort – Java
Sorting is one of the major required feature for any application during implementation of any business logic. There are different types of sorting in place based on performance, speed, cost of operation. One of simplest and easy algorithm is Bubble Sort Algorithm which is an easy one to understand/implement for any quick implementation. Sorting a … Continue reading “Bubble Sort – Java”
Steps to create a Basic React Native App
To create a React Native Application, we need to install Node JS., With the help of Node JS, we can import all the Library require for creating a React Native App just like React JS. Install Node JS Since React Native is a Javascript Library, to setup React Native we have to install Node JS … Continue reading “Steps to create a Basic React Native App”
How to Configure/Serve Domains & SubDomains in NgInx server
Setup Records For Domain/SubDomain in Domain Provider(NameCheap/GoDaddy/Any) The first step in the NgInx configuration is to check whether domain/subdomain is pointed to server(Hosting) address. To point any Domain(www.tutuorialflow.com) to the hosting server, we need to configure server address in Manage DNS. Login to your Domain Provider, select your domain and click on “Manage DNS” or … Continue reading “How to Configure/Serve Domains & SubDomains in NgInx server”
The Battle of the Game Engines: Godot vs. Unity
The game engine market can be tricky to navigate. Every major game engine out there has its own pros and cons, and finding the right one for your project can be difficult. So if you’re weighing your options, or if you’re simply curious about what Godot and Unity are all about, read on to learn … Continue reading “The Battle of the Game Engines: Godot vs. Unity”
Top Java Interview Programs
Optional Keyword – Java 8
Java 8 has introduced java.util.Optional class to find a value present or absent. Normally Java developers do “not null” check to identify whether the Object is null or to be used further for business logic. In a Enterprise application, lot of null checks present as each meaning object is checked, which makes the code messy. … Continue reading “Optional Keyword – Java 8”
ReactJS + Node JS in Heroku in Minutes
In this tutorial, we are going to deploy React JS(Front End) and Node JS(Back End) as a single application in Heroku Server. Without deploying in individual servers, we will deploy both React JS & Node JS in a single server., so that API calls can be connected only from our front end to Back end. … Continue reading “ReactJS + Node JS in Heroku in Minutes”
Convert Integer to Binary in Java
What is Binary? Binary is a number either 0 or 1, is a base 2-numeral. Every value of Integer can be represented in binary format in a easy way. Simply, to convert Integer value to binary value, divide the integer by 2 until it becomes 0., and store the reminder… 0 – 0000 1 – … Continue reading “Convert Integer to Binary in Java”
Snake Game – Java In 10 Minutes
Snake game is famous classic game, starting from handset mobile to latest mobile, it always has its own admirers. The goal of the game is the snake needs to catch its food and grow to a maximum. In this example we will see how we can implement the logic in Java. Logic: The game follows … Continue reading “Snake Game – Java In 10 Minutes”