Posts by Faruque Ahamed Mollick
Author Biographical Info: Not available
JavaScript has an in-built string.replace() method that is used to replace part of any given string with another string or a regular expression. Here, we just have to pass a value .... Read More
Object Detection is a powerful deep learning application used in many industries in this modern time. There are lots of processes and algorithms run to detect an object accurately. So surely, it needs to write lots of codes to develop an object detecting system in real life. But wait… In this article, I will show […] Read More
If you are reading this article, then you must be familiar with the QR code. QR code stands for Quick Response code. It is actually a trademark for a type of matrix barcode. If you are familiar with JavaScript then you may be interested in QR code generation using this programming language on the browser. […] Read More
Did you ever think about merging two arrays into one array in JavaScript that contain all the element of those arrays? Or do the same thing with more than two arrays? Well, in this.... Read More
In this article, I am going to share a PHP trick with you which going to be very useful. Developers often have to deal with multiple checkboxes when they work in a project in PHP. .... Read More
The Base64 format of an image is the encoded string of that image with proper printable characters only. Loading base64 image on the web page can speed up load time. It can also he.... Read More
Here we are going to see an example where we will check if a specific value exists in an array or not in PHP programming language. This task is going to be quite easy. So let’.... Read More
We all know that we can show an image on a web page using the HTML <img> tag just like you can see below: <img src="path/image1.jpg" alt="image"> Now I will show you ho.... Read More