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 send ical attachment via PHPMailer
We can send ical attachment in email using attach ical file (filename with .ics file extension). For example, following is the object containing the information about ical like event start date and time, location, event summary etc: $ical_content = “BEGIN:VCALENDAR
Attach SVN Commit comments to JIRA tickets
1. How to see svn code committed in eclipse related to your Jira ticket? One of the important features of Jira is that you can see all your svn commit history related to a task in it. Steps that we
Zoho Integration with Dropbox
This post briefly describes how to connect to dropbox from Zoho CRM in Deluge script and create a folder in Dropbox. Further integration can be done as required according to your project. 1. Login into your Dropbox account and generate
Perform Performance/Load Testing Using Selenium
We can perform load testing in selenium using thread Pool Size and invocationCount attributes of Test annotation. ThreadPoolSize will create a pool of threads with the help of which test method can be run via multiple threads. For Example: if
PHP FPDF (To generate PDF files)
FPDF (To generate PDF files) Using PHP we can generate PDF files dynamically. FPDF is a free PHP class that contains a number of PHP functions with the help of which we can create and manipulate PDFs. To get started
Timestamp issue while upgrading to MySQL 5.7
Problem: In our application, we have created the session token to provide secure access. We were using current system time stamp in our token as one of the key component. But after upgrading MySQL 5.5 to MySQL 5.7, we were
Adobe Captivate | Post Quiz results to custom LMS URL
1. Open Adobe Captivate. 2. Go to Edit->Preferences. A screen will appear like this: 3. Now click on reporting and select LMS as Internal Server. 4. Now click on configuration. A new popup screen will be displayed like below: 5.
Postgresql | How to save default timestamp in unix format instead of yyyy-dd-mm hh:mm:ss
In Postgresql we can save the default timestamp with now() method: CREATE TABLE test ( id serial NOT NULL, name character varying(255), last_modified_time timestamp without time zone DEFAULT now() ) This will save the date timestamp in this format: If
Adding images and links in Jira
Adding images and links in Jira 1. Adding an image in Jira comment: There are two ways using which we can insert an image in Jira: User can specify various attributes to the image such as height, width, horizontal space,
