by S M Zahed Kamal | Dec 18, 2021 | Javascript
To create autocomplete feature for input field(s), HTML’s datalist tag can be the easiest solution. But it has limited styling and also some browser support issues. So, let’s create our own stylish autocomplete using vanilla JavaScript and Bootstrap for...
by S M Zahed Kamal | Dec 6, 2021 | Javascript
Gulp is a toolkit to automate & enhance our workflow. Most of the time, I use gulp for my SASS projects. In this article, I’ll show you how to use gulp to automate SASS to CSS compilation. First, let’s create a folder named sass and then initialize npm...
by S M Zahed Kamal | Dec 6, 2021 | Javascript, Node.js
When you install a node.js package, you get the latest version. But, what if you need to get the latest version of the packages in an old project? Let me show you how I do it Imagine, Below is what we’ve in the package.json of a project – {...
by S M Zahed Kamal | Dec 4, 2021 | How To, Laravel
Imagine you want to define some variables that can be accessed from anywhere in your laravel project. To achieve that, the best way will be to take advantage of laravel’s configuration file. Creating a Configuration File First, you need to create a file inside...
by S M Zahed Kamal | Jul 22, 2021 | How To, Laravel
Laravel has its own command-line interface named Artisan. It has a list of useful commands. You’ll need to use artisan commands when building an application. You may get into situations when you’ll have no access to SSH. In such situations, you might want...