Google App Script

What is Google App script Google app script is an application development platform on which we can build an app to interact with google workspace. It is the fastest and most reliable way to connect with google apps

By |2023-01-17T20:04:54+05:309 July 2021|Comments Off on Google App Script

Google Sheets API Integration Using Python

Introduction Google Sheets is the free, web-based spreadsheet application available to anyone with a Google account or Gmail address. It has become a useful, feature-rich competitor to Excel. Google sheets or spreadsheets are commonly used in every business

By |2023-01-17T20:05:01+05:307 July 2021|Comments Off on Google Sheets API Integration Using Python

MongoDB Sharding

What is Sharding in MongoDB? Sharding is a concept in MongoDB, which splits large data sets into small data sets across multiple MongoDB instances. Sometimes the data within MongoDB will be so huge, that queries against such big

By |2023-01-17T20:05:06+05:306 July 2021|Comments Off on MongoDB Sharding

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

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

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

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

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 performance, features, scalability, huge community, well design documentation, easy learning curve and many

By |2023-01-17T20:11:40+05:3011 June 2019|0 Comments

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 automate these tasks Laravel offers cron jobs scheduling.CronCron is a time-based task scheduler

By |2023-01-17T20:12:17+05:3011 April 2019|Comments Off on CronJob – Task Scheduling in Laravel

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. [crayon-6622101f648cc612770972/] [crayon-6622101f648d6801521207/] Magento 1 generate hash by md5(salt + password) and save in database with

By |2023-01-17T20:13:12+05:3022 August 2018|Comments Off on 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 [crayon-6622101f64c3a178718178/] [crayon-6622101f64c44001893565/] Create a .html file [crayon-6622101f64c47334343460/] And add a js [crayon-6622101f64c4b676847151/] You can draw more type graph

By |2023-01-17T20:13:24+05:3020 August 2018|Comments Off on How to create magento2 knockout chart

How to parse Request/ Response in Rest Api’s in yii2

Yii provides a whole set of tools to simplify the implementation of Restful Web Service APIs. In particular, It is all about converting request and response parameters in Apis. Goals To convert (parse) all type of Request data

By |2023-01-17T20:14:05+05:3013 August 2018|Comments Off on How to parse Request/ Response in Rest Api’s in yii2
Go to Top