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
Salesforce | Send an email alert to Lead owner after X business hours from Lead Creation timestamp
Let’s say our business hours are from 9am to 6pm (Monday to Friday) and if Lead is created at 5pm on Monday an email alert should be sent to LeadOwner at 12am on Tuesday. You can set your business hours
Chargify | How to refund for duplicate payments
Description: If any customer has been charged for multiple times for the same month then there is an option in chargify to refund back for a particular transaction. So, if we want to refund for duplicate transaction, we can do
HTML | Make HTML table sortable on column click
When we need to sort an HTML table on click of any of its column headers then we can use sortable.js: Download library file sorttable.js. Add this js file to the current page. Add sortable class to the table for
Importance and Need of child theme in WordPress
In wordpress, a child theme is a theme that inherits the functionality and styling of its parent theme. Child themes are the recommended way of modifying an existing theme (like inheritance in object oriented programming). If we have any theme
Heroku | Fatal error due to PHP 7 and old version of CakePHP
Fatal Error on website whenever we were pushing any code change to our website hosted on heroku. We were suddenly facing a fatal error (error 500) on our website. After making debugger on, it displayed the following error : After
Cakephp | How to send email using google api (gmail) in cakephp 2.x ?
How to send email using google api (gmail) in cakephp 2.x? Answer: When you send email using google api, you’ll need: 1. Cakephp 2.x 2. A Google account with Gmail enabled. 3. PHPMailer Library. Download PHPMailer library from below link:
Jquery : Filter array by applying AND & OR logic on checkboxes
In one of our projects we have multiple groups of checkboxes and corresponding divs with id as checkbox label. Now we want our checkboxes to perform AND and OR logic . For Example: <html> <div id=”_Java_less than 1500_Basic_Dennis Ritchie” class=”6″
MySQL Access Denied due to wrong column name
MySQL access Denied for user while Username and password is correct. I got this error when I named one of my table columns as “order” which is also a mysql keyword. When tried to rename it, I got the following
Salesforce | Creating communities in Salesforce
Steps to create the communities in Salesforce: 1. Click on Setup: 2. Under customize click on communities. Click on all communities: 3. Click on New community button: 4. Choose your template according to your requirements. There are 5 templates provided
