Caching in Node.js with Redis: A Beginner’s Guide
Caching is a technique to store frequently used data in a temporary storage so that future requests for that data are faster. In Node.js applications, caching can help improve performance and reduce the load on your database. One popular tool
How to implement Login with Google Account
This post explains how to implement Login / Sign-In with Google Introduction :- Google Sign-In helps to increase the customers on your website. Because current trend is almost all the users have a Google Account and they can login to
Jquery | DataTables warning: table id – Cannot reinitialise DataTable
If you try to set properties of Jquery datatable 2 times as below, it will give an error: table = $(‘#product-data-table’).DataTable({stateSave: true}) ; table = $(‘#product-data-table’).DataTable ({“aoColumns”: [ { “bSortable”: false },null,null,null ] }); “DataTables warning: table id=product-data-table – Cannot
Data Sanitization using PHP
Understanding PHP data sanitization with an example In PHP data sanitization is a process in which we remove unwanted content from the strings to make them safe to use in HTML code. For example if user types Javascript code in
Enable Beta Testing of Custom Alexa Skill
Enable Beta Testing of Custom Alexa Skill Amazon provides us a feature to test our custom skill before publishing it to production. By enabling the beta testing, we can test the skill on amazon devices and apps. Amazon facilitate us
SequenceMatcher in Python and Calling Python Script in PHP
Introduction to SequenceMatcher in Python and Calling Python Script in PHP SequenceMatcher is a class in Python which compares pairs of sequences of any type.SequenceMatcher is a class which comes under the difflib module. It provides classes and functions for
Headless Browser Introduction and Examples
Headless Browser Testing With Selenium Webdriver Headless is a browser which does not have a GUI. A headless browser runs a testing script even though when there is no browser installed on our system such as we need the latest
View State Problem in Salesforce
View State in Salesforce It is a state that holds tags, field values and all component of controller except transient type. The maximum size limit of visualforce page is 132KB. If the size increase it results in View state problem.
How to restrict multiple attachments on a Salesforce Custom object
Restrict a user to create multiple attachments on a specific custom object. To accomplish this, as it is not possible to create a process builder or workflow on Notes & Attachments object, neither we have a privilege to view attachment
Multiple ng-app directives in a single page in AngularJS
How can we put multiple ng-app directives in a single page in AngularJS What is ng-app directive? The “ng-app” directive designates the root-element of the AngularJS application or we can say it initializes an angularJS application, usually placed near the
