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
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
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
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
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
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.
Before Navigation you must have known of Android Jetpack.You must be hearing a lot about Android Jetpack, which is a set of components, tools and guidance to make Android apps. What is Android Jetpack? Android Jetpack is a
Security Testing:- Can System be penetrated by any hacking way. Testing how well the system protects against unauthorized internal and external access checked if system database is safe from external attacks. Security testing is the most important testing
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
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
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
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 developed and open-sourced by Facebook and is now maintained by a large community
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
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 is how do they ensure factories and offices are free from infected employees
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
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
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-673f3597641d1648444274/] [crayon-673f3597641d8307177842/] Magento 1 generate hash by md5(salt + password) and save in database with
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-673f3597643db064744584/] [crayon-673f3597643e1778367816/] Create a .html file [crayon-673f3597643e3962009149/] And add a js [crayon-673f3597643e6079562930/] You can draw more type graph
Most of people thinks IN() and FIND_IN_SET() MySQL functions are identical and do the same job. But they not. You may be confused with them or don’t know when to use IN() or FIND_IN_SET().There are specific situation for
Purpose of using of IN() and Exist() is almost the same. Both MySQL functions are generally used with sub queries. To understand it better lets consider the following schema. Table - users Userid Name Age 1 Hitesh 29
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