API Penetration Test – With Vooki REST API Vulnerability Scanner

VOOKI - REST API Vulnerability Scanner What is VOOKI Vooki REST application scanner is an automated tool to scan and detect vulnerabilities in REST API.It is a free web application vulnerability scanner which gives a scan report about

By |2023-01-17T20:08:52+05:3021 January 2021|Comments Off on API Penetration Test – With Vooki REST API Vulnerability Scanner

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 providers like SendGrid. In our settings.py file we define some parameters for sending

By |2023-04-17T17:30:16+05:3029 December 2020|Comments Off on 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 login or when we forget the Current Password. This Blog will make you

By |2023-04-17T17:38:32+05:3019 December 2020|Comments Off on 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 code in different platforms. For ex. A web developer is required to develop

By |2023-01-17T20:09:13+05:3017 December 2020|Comments Off on 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 second, Notifications like: [crayon-6620da4aa5c56505947186/]   [crayon-6620da4aa5c6a666658957/] [crayon-6620da4aa5c73442011750/] In NotificationObjects table we define entity_type_id

By |2023-01-17T20:09:20+05:3017 December 2020|Comments Off on 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 code in different platforms. For ex. A web developer is required to develop

By |2023-01-17T20:09:28+05:3015 December 2020|Comments Off on React Native for Web

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 less time and without any coding knowledge. Google Studio depends on Data Source.

By |2023-01-17T20:09:50+05:3023 April 2020|Comments Off on 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 is large and deep, a large amount of training steps needed, as well

By |2023-01-17T20:09:57+05:3013 April 2020|Comments Off on 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 example, matrix factorization algorithms consists in decomposing the huge and sparse user-item interaction

By |2024-01-08T17:02:33+05:3011 April 2020|Comments Off on 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 of user behavior, such as purchase history, watching habits and browsing activity, in

By |2024-01-08T17:04:00+05:3011 April 2020|Comments Off on 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 built with deep learning. The model has an accuracy of 99.38% on the

By |2023-01-17T20:10:20+05:3010 April 2020|Comments Off on 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 and built for a larger-scale collaborative filtering problems. ALS is doing a pretty

By |2023-01-17T20:10:27+05:3010 April 2020|Comments Off on 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. For this purpose, we can use Image Detection to get the location of

By |2023-01-17T20:10:37+05:3010 April 2020|Comments Off on 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 code works. That is why in our development process we must use tools

By |2023-01-17T20:10:49+05:305 March 2020|Comments Off on 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 single file. For that you need to install “django-configurations”. pip install django-configurations After

By |2023-01-17T20:10:55+05:3022 February 2020|Comments Off on Django Multiple environment in one file

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; Public user(){ $this.profile = new Profile(); } } Here we have a class

By |2023-01-17T20:11:08+05:3017 July 2019|Comments Off on 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 comes with Express.js framework. NodeJS is a platform built on Chrome’s JavaScript runtime

By |2023-01-17T20:11:15+05:3011 July 2019|Comments Off on NodeJS With MongoDB
Go to Top