Sunday, June 5, 2016
Saturday, June 4, 2016
Monday, May 2, 2016
How to use multiple values in Google Mail filters?
We can use OR and AND operators for handling multiple values in the Google Mail Filters.
Example:
{“test2”, “testing”} OR {“test” AND “test1”}
Cheers!!!
Monday, April 18, 2016
What is the best tool for screen recording?
The best tool for screen recording is Active Presenter.
It is easy to use and more user friendly.
Please use the below link to download the file
Friday, April 8, 2016
How to check whether a website is Online or Offline using JAVASCRIPT?
1. Copy the below code in a notepad and save using.html extension.
<p><strong>Enter the website url below and click Check button to get the status of the server</strong></p>
<p>http:// <input type=’text’ id=’sitehost’/> <input type=’button’ id=’checkhost’ value=’Check’/></p>
<script type=’text/javascript’>
function isSiteOnline(url,callback) {
// try to load favicon
var timer = setTimeout(function(){
// timeout after 5 seconds
callback(false);
},5000)
var img = document.createElement(“img”);
img.onload = function() {
clearTimeout(timer);
callback(true);
}
img.onerror = function() {
clearTimeout(timer);
callback(false);
}
img.src = url+”/favicon.ico”;
}
document.getElementById(‘checkhost’).onclick = function() {
isSiteOnline(“http://”+document.getElementById(‘sitehost’).value,function(result){
var msg = result ? “Site is online” : “Site is offline”;
alert(msg);
})
}
</script>2. Enter any website URL and click Check button to check the status.
<p><strong>Enter the website url below and click Check button to get the status of the server</strong></p>
<p>http:// <input type=’text’ id=’sitehost’/> <input type=’button’ id=’checkhost’ value=’Check’/></p>
<script type=’text/javascript’>
function isSiteOnline(url,callback) {
// try to load favicon
var timer = setTimeout(function(){
// timeout after 5 seconds
callback(false);
},5000)
var img = document.createElement(“img”);
img.onload = function() {
clearTimeout(timer);
callback(true);
}
img.onerror = function() {
clearTimeout(timer);
callback(false);
}
img.src = url+”/favicon.ico”;
}
document.getElementById(‘checkhost’).onclick = function() {
isSiteOnline(“http://”+document.getElementById(‘sitehost’).value,function(result){
var msg = result ? “Site is online” : “Site is offline”;
alert(msg);
})
}
</script>2. Enter any website URL and click Check button to check the status.
Thursday, March 31, 2016
Tuesday, March 22, 2016
How to enable Develop menu in Safari?
Use the following steps to enable Develop menu in Safari.
1. Go to Safari Preferences.

2. Enable Develop Menu.

Subscribe to:
Posts (Atom)
How to change Cursor Color Theme?
Effortless Customization: A Step-by-Step Guide to Changing Your Cursor Color Theme Are you tired of the same old cursor on your screen? Do y...

-
We can do GET Request to UUID Tools endpoint to generate UUID from Postman client. Endpoint: https://www.uuidtools.com/api/generate/v4 Scrip...
-
We can easily setup Table of Contents in Google Documents. Please make use of the following steps for your reference: 1. For all the Titles,...
-
When you open the Lucidchart document, it will not show all the shapes. You have to edit the document to view all the added and supported sh...