GraphQL A Query Language for APIs GraphQL is a new API standard that provides a more efficient, powerful, and flexible alternative to REST. It was … Read more “What is GraphQl and how it differs from REST?”
Dealing with timezones using moment.js
Dealing with timezones using moment.js This document covers common use cases one may have to deal with while handling timezones in applications. The local time … Read more “Dealing with timezones using moment.js”
Email Notification in Django
For sending email notification in django we use django’s send_mail function, with using some smtp sever. we can get smtp server from free smtp service … Read more “Email Notification in Django”
Custom Forgot Password in Django
Custom-Forgot-Password-in-Django Custom Forgot Password Functionality in Django Admin Site AIM: As for now, the Django Admin Site does not provide to reset the password without … Read more “Custom Forgot Password in Django”
React Native for Web
It is always better to reuse the existing code. We always strive through the point that we need to have different developers for running our … Read more “React Native for Web”
SystemNotifications handling in Django REST
To manage notifications we define types of notifications in a constant files(in a dictionary) and create two tables in our database, first is NotificationObjects and … Read more “SystemNotifications handling in Django REST”
React Native for Web
It is always better to reuse the existing code. We always strive through the point that we need to have different developers for running our … Read more “React Native for Web”
How to install and configure Puppet with Master/Slave configuration in Ubuntu/Debian
What is Puppet? Puppet is an open-source, software configuration management tool. It helps in keeping configurations automated and consistent with what we require and what … Read more “How to install and configure Puppet with Master/Slave configuration in Ubuntu/Debian”
Contactless Time and Attendance System – Post-Covid-19 Essential Tool for Factories
Today when the apparel manufacturing businesses around the world are battling the impact of COVID-19 pandemic the biggest challenge staring at them in the face … Read more “Contactless Time and Attendance System – Post-Covid-19 Essential Tool for Factories”
Role based embedded reports in data studio
Multiple times we need to build reports to present our data. The Google Data Studio provides a powerful tool to build your own reports with … Read more “Role based embedded reports in data studio”
Context Based QnA Using Google’s State Of Art -PreTrained BERT
Why Transformers? The problems with long-existing sequence models are long-range dependencies, vanishing and exploding gradient is hard to resolve even batch gradient descent when network … Read more “Context Based QnA Using Google’s State Of Art -PreTrained BERT”
Recommendation System Using Matrix Factorization
Model Based Collaborative Filtering: Model based collaborative approaches only rely on user-item interactions information and assume a latent model supposed to explain these interactions. For … Read more “Recommendation System Using Matrix Factorization”
Recommendation System using kNN
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”