A common task of recommender systems is to improve customer experience through personalized recommendations based on prior implicit feedback. These systems passively track different sorts … Read more “Recommendation System using kNN”
Face Recognition Using dlib’s State Of Art ‘face_recognition’
Face Recognition Recognize and manipulate faces from Python or from the command line with the world’s simplest face recognition library. Built using dlib’s state-of-the-art face recognition … Read more “Face Recognition Using dlib’s State Of Art ‘face_recognition’”
Recommendation System Using Alternating Least Square
Alternating Least Square (ALS) is also a matrix factorization algorithm and it runs itself in a parallel fashion. ALS is implemented in Apache Spark ML … Read more “Recommendation System Using Alternating Least Square”
Parking Slot Detection using MaskRCNN
Detecting the parking slot occupancy can help us by providing the exact location of the place which is empty for parking and save our time. … Read more “Parking Slot Detection using MaskRCNN”
Android Espresso Testing Framework
As mobile developers, we spend most of our time creating new screens or changing screens that already exist and we need to know that the … Read more “Android Espresso Testing Framework”
Django Multiple environment in one file
There are some points where we have to maintain settings for multiple environments. Django provides a very useful solution, to maintain multiple settings in a … Read more “Django Multiple environment in one file”
Continuous Deployment of React App to AWS EC2 with Bitbucket-Pipelines
It is an automated process i.e. deploy an application on AWS EC2 Instance every time when you push the code in application bitbucket repository. This … Read more “Continuous Deployment of React App to AWS EC2 with Bitbucket-Pipelines”
Dependency Injection
What is dependency injection? To understand dependency injection first we need to know about dependency. Let’s take an example. Class User { Private Profile $profile; … Read more “Dependency Injection”
NodeJS With MongoDB
This is the article of how to install Node.js with Express.js framework using MongoDB in ubuntu. Here we will use Mongoose.js module and “ejs” that … Read more “NodeJS With MongoDB”
ES6 Features
This is also known as ECMAScript 6 and ECMAScript 2015. ES6 has some new features. This blog introduced these features. Let & Const There was … Read more “ES6 Features”
MySQL Stored Procedures
Recently we were working on a project where we needed to categorize or manipulate a large dataset for further processing. The data needed to be … Read more “MySQL Stored Procedures”
Laravel Framework Specifications
Laravel is one of the highly used, open-source modern web application framework that designs customized web applications quickly and easily. Developers loves Laravel because of … Read more “Laravel Framework Specifications”
Integration and Customization of Laravel Authentication
1. For integrating Laravel Authentication, you should run the following artisan command php artisan make:auth it will integrate Laravel Default Authentication. If you looked at … Read more “Integration and Customization of Laravel Authentication”
CronJob – Task Scheduling in Laravel
Every application requires some tasks to be run periodically on the server. It could be sending emails, creating reports, creating backups or cleanup databases. To … Read more “CronJob – Task Scheduling in Laravel”
Service Oriented Architecture
Application with single transactional resource: Architecture: Common Approach most developers used is create a controller and relevant model. All business logics will resides in controller … Read more “Service Oriented Architecture”
Katalon Studio for Web Testing
Katalon Studio was developed with the keyword driven approach as the primary test authoring method with data-driven functionality for test execution. The main scripting language … Read more “Katalon Studio for Web Testing”
Critical CSS
Delivering a faster and smoother web experience is an important part of building websites today. Most of the time, we develop websites without understanding what … Read more “Critical CSS”
RabbitMQ, Implementation of RabbitMQ in YII.
What is RabbitMQ? RabbitMQ is open source software used to manage the queue. We can queue our application tasks to execute them in async way … Read more “RabbitMQ, Implementation of RabbitMQ in YII.”
How to use magento 1 customer password in magento 2
Magento 1 use MD5 hash to encrypt the password and Magento 2 use SHA-256. In Magento 1, they use Mage_Core_Model_Encryption class with following functions. Magento 1 … Read more “How to use magento 1 customer password in magento 2”
How to create magento2 knockout chart
You can download complete working example from below url https://github.com/mukdam/magento2-knockout-chart See below how it will work. Create a phtml file Create a .html file And … Read more “How to create magento2 knockout chart”