K-Nearest Neighbour(KNN)

What is KNN Algorithm ? K nearest neighbors or KNN Algorithm is a simple algorithm which uses the entire dataset in its training phase. Whenever a prediction is required for an unseen data instance, it searches through the

By |2023-01-17T20:05:40+05:3029 April 2021|Comments Off on K-Nearest Neighbour(KNN)

Fortran-with-Python_Linux

Fortran is a general-purpose, compiled imperative programming language that is especially suited to numeric computation and scientific computing. In this Blog we'll understand how can we automate a Fortran program using python. Pre-Requisite : * Fortran file.

By |2023-04-17T17:40:09+05:3027 April 2021|Comments Off on Fortran-with-Python_Linux

Spring Boot with Docker

Docker is a tool which is used to automate the deployment of applications in lightweight containers so that applications can work efficiently in different environments. Common Docker Terms Docker Container A container is a standard unit of software

By |2023-01-17T20:06:23+05:3020 April 2021|Comments Off on Spring Boot with Docker

Unit Testing Using Junit 5

What is unit testing? Unit testing is the first step(level) of testing in SDLC. In unit testing, a single unit or component of the software is tested by developers during the development phase or coding phase, and in

By |2023-01-17T20:06:33+05:305 April 2021|Comments Off on Unit Testing Using Junit 5

Skeleton components in React

This article discusses how one could handle loading dynamic content in a modern web application, by making use of skeleton components or skeleton screens. Introduction The speed and responsiveness of an application is also perceived by how you

By |2023-01-17T20:06:50+05:301 April 2021|Comments Off on Skeleton components in React

How to implement 2-way SSL using Spring Boot

What is 2-way SSL(Mutual Authentication)? In 2-way SSl both client and server have to present their certificates to each other to verify themselves with a trusted certificate. In 2-way SSl there are 12 steps to digitally handshake. They

By |2023-01-17T20:07:13+05:3025 March 2021|Comments Off on How to implement 2-way SSL using Spring Boot

AWS Amplify – Serverless Deployment Reactjs/Nextjs Stack

Amplify AWS , GCP, Azure all coming up with new tools and services to ease out the development and deployment pain points. Amplify helps you build and deploy serverless applications on AWS cloud.  It takes care of your

By |2023-01-17T20:07:18+05:3024 March 2021|Comments Off on AWS Amplify – Serverless Deployment Reactjs/Nextjs Stack

How SSL Certificate safeguards the communication

What is SSL SSL certificates have become the necessity now. Browsers have stopped entertaining the web applications without SSL certificates. It is security protocol that enables encrypted communication. With SSL you can be confident that – • No

By |2023-01-17T20:07:24+05:3023 March 2021|Comments Off on How SSL Certificate safeguards the communication

XML Signatures –Build a Secure Channel for data exchange and communication

Why the need of Signatures When sending a message between two parties we need to address the problem that message should not be read or altered by any middle men. Solution is to encrypt the message and then

By |2023-01-17T20:07:31+05:3023 March 2021|Comments Off on XML Signatures –Build a Secure Channel for data exchange and communication

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 within a time zone is defined by its offset (difference) from Coordinated Universal

By |2023-01-17T20:08:12+05:3024 February 2021|Comments Off on 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 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-6649e86b8aae4275427306/]   [crayon-6649e86b8aaec230334863/] [crayon-6649e86b8aaef073679083/] 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
Go to Top