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

http://atomisystems.com/download/

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.

Thursday, March 31, 2016

How to add or edit signature in Outlook 2011 in Mac?

1. Go to Preferences.

2. Select Signatures.

3. Select ‘+’ sign to add the new signature or select the previously added signature to edit it.

Cheers!!!

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.

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...