Amazon launched Echo Wall Clock at its annual event last year. Amazon’s smart wall clock that was launched at a price of $29.99 (Rs 2,147 approx) not only allowed users to set timers and reminders but it also came with daylight saving setting. Now, a new report suggests that Amazon could be working on a …
Author : Reetesh Gupta
322 posts
Google, back at IFA 2019, had announced a special Ambient Mode coming to Android devices that would make it easier for users to access features such calendar, reminders and notification through their phone’s lockscreen. Now, nearly two months after the announcement, Google is finally bringing the Ambient Mode to its Google Assistant. The news comes …
SSI stands for server side includes, these are special HTML tags which you can include in your HTML documents to call CGI scripts or other HTML content. This is particularly useful, for example to include a navigation menu in your HTML documents, it allows you to use one document to display the navigation menu in …
Offline browsers are pieces of software which download your web page, following the links to your other web pages, downloading all the content and images. The purpose of this is innocent, so the visitor can log off the Internet and browse the site without a connection, but the demand on the server and bandwidth usage …
.htaccess’ is the filename in full, it is not a file extension. For instance, you would not create a file called, ‘file.htaccess’, it is simply called, ‘.htaccess’. This file will take effect when placed in any directory which is then in turn loaded via the Apache Web Server software. The file will take effect over …
What is .htaccess? .htaccess is a configuration file for use on web servers running the Apache Web Server software. When a .htaccess file is placed in a directory which is in turn ‘loaded via the Apache Web Server’, then the .htaccess file is detected and executed by the Apache Web Server software. These .htaccess files …
Send an Email Via Node.js – The Nodemailer Module The Nodemailer module makes it easy to send emails from your computer. The Nodemailer module can be downloaded and installed using npm: C:\Users\Your Name>npm install nodemailer After you have downloaded the Nodemailer module, you can include the module in any application: var nodemailer = require(‘nodemailer’); Send an …
Synchronous vs Asynchronous Every method in the fs module has synchronous as well as asynchronous forms. Asynchronous methods take the last parameter as the completion function callback and the first parameter of the callback function as error. It is better to use an asynchronous method instead of a synchronous method, as the former never blocks …
Node implements File I/O using simple wrappers around standard POSIX functions. The Node File System (fs) module can be imported using the following syntax − var fs = require("fs") Synchronous vs Asynchronous Every method in the fs module has synchronous as well as asynchronous forms. Asynchronous methods take the last parameter as the completion function …
In this tutorial, i will give you example of how to fire curl post request with codeigniter. it will help to get third party api data using curl request in codeigniter. you can fire post request, get request, put request and delete request in curl codeigniter 3. I will suggest to use code php curl …