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
Integrate Laravel web service with custom alexa skill
Steps for integrating Laravel web service with custom alexa skill: Step 1: Your web service should be on secure HTTP connection and should have SSL/TLS. Alexa strictly enforces for this to protect the confidentiality and integrity of your data. Step
What is Visual Studio Code and its advantages
What is Visual Studio Code? What are the advantages of Visual Studio Code. Visual Studio Code is a source code editor developed by Microsoft for Windows, Linux and macOS. It is a super fast and lightweight Source Code Editor which
How to setup custom Domain DNS in AWS with office 365 including skype for business
Steps for setup of custom Domain DNS settings in AWS with office 365 including skype for business Below are the steps involved to get these settings done. Step.1 Open office 365 admin console and click Domains under menu “Setup”. Step.2
Install node.js on Linux and Windows
How to Install node.js on Windows: You can install node.js for windows from Node.js website as they had provided the installer there. You need to run the .msi installer that is downloaded. Then Restart your computer as you won’t be
PHP | Amazon S3 | Check if a file or folder already exists on Amazon S3 Bucket
To check if a file or folder already exists on Amazon S3 Bucket, use the following code Code: $info = $client->doesObjectExist($bucket, $FileName) if ($info) { echo ‘File exists’; } else { echo ‘File does not exists’; } Webner Solutions is
Bootstrap Alert Types
How to create alerts in Bootstrap: Bootstrap provides an easy way to display the information or create predefined alert messages on the screen. In Bootstrap alert is created using .alert class for example : <div class=”alert alert-success”> </div> Bootstrap alert
Introduction to Selenium and some Examples
Introduction to Selenium and some Examples History of Selenium Selenium was launched in 2004 by Jason Huggins (engineer at ThoughtWorks in Chicago) and he named it “Javascript TestRunner” but at that time it was stuck with the “same origin policy”
Laravel’s powerful validation rules
Laravel’s powerful validation rules When we develop any application in Laravel, various validation rules are available which are used to validate data from all incoming HTTP requests. Some Examples: 1. First let’s create a controller named RegistrationController by executing the
Reflection Api in Php
Reflection Api in Php What is Reflection and why is it useful? Reflection is generally defined as a program’s ability to examine itself and modify its logic/methods at execution time. In simple terms, reflection is asking an object to tell
