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
Software Testing | Understanding Severity & Priority
While testing the Web applications, Software and Projects, sometimes we cannot perform the full test scenarios and bug fixes due to shortage of time or due to project running out of time. A lot of bugs and errors could be
PHP | Send mail through Gmail SMTP server and phpmailer
We have mail() function to send emails in PHP. It uses built in sendmail command that uses local mail server to send emails. PHPMailer, on the other hand, is very different. Rather than relying on sendmail, it communicates directly with
Salesforce | Dynamic table column headings in a VisualForce page
In VisualForce Page I wanted to have different column headings, like this: I tried it using tag and tag but you can not display header value using tag as well as <apex:facetname=”header” > tag. <apex:repeat value=”{!prolist}” var=”ls” > <apex:column headerValue=”Producer
Stripe Gateway Payments | Some important points
Important points about Stripe Gateway payments In Test Mode: Below are some very useful points that you must know if are going to use Stripe as your payment gateway: 1. There is no limit on the payments for a stripe
Moodle: Checking visibility of Specific activity to users
In moodle, there can be various conditions based on which we can restrict visibility of an activity to all or some specific users even when activity has been created in course and is available to users. First Red Box area
Test cases generation and bug report generation in salesforce
In case you would like to create test cases or record bugs inside Salesforce you can create custom objects for this. Steps for test cases object creation: Select->Setup->create object->new custom object Then we can add custom fields and relationships or
Couple of different ways to rename table name through UI in phpmyadmin
First method: 1. Click on the database (from list of databases on the phpMyAdmin home screen) in which you want to rename table name. 2. You will see a list of tables on click of the database. 3. Select the
What is PDO? Why PDO should be used in PHP?
PDO stands for PHP Data Objects. PDO is a consistent way to access databases. Today, mostly websites or desktop based applications store their data in databases. Therefore, PHP has also provided the way to connect with databases. PHP supports following
Moodle | Hyperlinks in course summary
In Moodle when we create a new course we have an option to add summary/description of course. We can use this summary anywhere while showing courses. This summary could be anything. It can be simple text, image, multimedia or hyperlinks.
