In this blog, I am going to share with you some notes about the JavaScript. JavaScript is a client website scripting language. It is an object-based scripting language, lightweight, and it is designed for cross-platform working. It is also interpreted programming language. It can be written within any part of HTML document with the help […]
Enable Submit Button After Correct Validation including regExp
We can find forms on almost every website. In this blog, we will see how we can validate user inputs with the help of JavaScript. Form validation is the process of verifying that a form has been filled in accurately before it is submitted. Here, we’ll see if all the fields are of correct values, […]
Upload and Display Image using JavaScript and PHP
In this blog, I’ll show how to upload and display an image with both JavaScript and PHP. Please follow these steps. Step 1 First make a folder named, “upload-image”. Under “upload-image”, create another folder for the image, named “image” where my image will show after upload. Step 2 1. Create a file named, “index.php” […]
How to create a simple puzzle game in java?
One quite useful way to view mathematical puzzles is as games where only one person (the person playing the game) makes moves. We can borrow all the theoretical tools to learn the theory of games to research puzzles. For instance, we can use the same backtracking algorithm that proves that there is a winning strategy […]
Solution Of Concurrent Exception In JAVA (Android)
Hello guys! We all know about a Collection named ArrayList. You can find this class in java. This class belongs to the package “package java.util;”. We can store any kind of values inside this class and can sort, reverse accordingly. But you will face a problem while sorting with respect to any class with the […]
Learn The Best Way of cropping image by using Javascript Library
If you ever get stuck in a situation where you have to crop an area of an image like a circle or like a square or maybe a rectangle area in a web application then there’s a way of achieving that by using a Javascript library or plugin called Croppie. It is fast, and you will get a lot of configuration options to customize it as you need. If I can […]
DIFFERENCE BETWEEN REACT NATIVE AND FLUTTER
As a lot of and a lot of folks area unit clench modernized technology, the demand for mobile apps has accumulated to an oversized extent. In order to remain abreast with the growing want of the purchasers and businesses, the constant influx of the niche technology, frameworks, and also the platforms becomes a requirement. For […]
Create Your Own Flipbook with Turnjs
Hello guys, Today I am introducing a simple example of how can we make an image flipbook with the help of Turn JS. Turn JS is nothing but a JavaScript library that helps us to create beautiful magazines or books like user view with the advantage of HTML5. Here is the html part, first you […]
How to use Lambda expression in Java 8
Lambda Expression in Java 8- Lambda expression basically expresses instances of functional interfaces. Lambda expression is a new feature of Java 8. It adds more functionalities like treat functionality as a method with arguments, a function can be created without belonging to any class. The lambda expression is containing two parts the one on the […]
Easiest Process to Add Chart JS graphs to a React application
This blog is all about Chart JS to be implemented in a React application. Before we start, we assume that we have a new or existing React application with us. Now open Terminal (for Ubuntu/Mac users) or Command Prompt (for Windows users) and go to the project folder. Now we have to install […]