Showing posts with label Internet. Show all posts
Showing posts with label Internet. Show all posts

Tuesday, August 16, 2016




This tool does the complete opposite of the HTML Special Character Escape Tool. If you have some special character escaped HTML codes and want to unescape them then this tool is for you. It will reconvert the escaped HTML codes to their original form. So, let's use it:

HTML Special Character UnEscape Tool


Input code:






UnEscaped code:



Here is the source code. You can paste it anywhere inside your body tag:

<div style="margin:auto; display:inline-block;">
   <h3>HTML Special Character UnEscape Tool</h3>
   <h4>Input code:</h4>
    <textarea style="width:100%; height:90px; resize:none;" id="infld"></textarea><br /><br />
    <button style="float:right; background-color:#015264; color: white; text-align:center; border:none; padding:5px;" type="submit" onclick="unescapeHtml()">Submit</button><br /><br />
    <h4>UnEscaped code:</h4>
    <textarea style="width:100%; height:90px; resize:none;" id="outfld"></textarea><br /><br />
    </div>
    <script>
    function unescapeHtml() {
        var text = document.getElementById('infld').value;
  var change = {
    '&amp;': '&',
    '&lt;': '<',
    '&gt;': '>',
    '&quot;': '"',
    '&#039;': "'"
  };

  document.getElementById('outfld').value = text.replace(/&#?[a-z|0-9]+;/g, function(c) { return change[c]; });
}
    </script>


You can use the HTML Special Character Escape Tool here.






Sometimes when we try to display some HTML code in our websites or blogs, we face major difficulties. This is because the websites and blogs are created with HTML (Hyper Text Markup Language), and when we try to display HTML codes in these documents, the codes that are meant to be displayed, also gets executed by the web browsers. As a result, we only get to see results instead of those codes. We can bypass this problem by escaping the special HTML characters. I have made the following JavaScript tool to escape the HTML characters. Hope you'll find it useful:

HTML Special Character Escape Tool


Input code:






Escaped code:



Here is the source code. You can paste it anywhere inside your body tag:

<div style="margin:auto; display:inline-block;">
   <h3>HTML Special Character Escape Tool</h3>
   <h4>Input code:</h4>
    <textarea style="width:100%; height:90px; resize:none;" id="infld"></textarea><br /><br />
    <button style="float:right; background-color:#015264; color: white; text-align:center; border:none; padding:5px;" type="submit" onclick="escapeHtml()">Submit</button><br /><br />
    <h4>Escaped code:</h4>
    <textarea style="width:100%; height:90px; resize:none;" id="outfld"></textarea><br /><br />
    </div>
    <script>
    function escapeHtml() {
        var text = document.getElementById('infld').value;
  var change = {
    '&': '&amp;',
    '<': '&lt;',
    '>': '&gt;',
    '"': '&quot;',
    "'": '&#039;'
  };

  document.getElementById('outfld').value = text.replace(/[&<>"']/g, function(c) { return change[c]; });
}
    </script>


You can use the HTML Special Character UnEscape Tool here.



Wednesday, March 30, 2016


To change the default quality of video -


1) Login to your facebook account

2) Visit this link - https://www.facebook.com/settings/?tab=videos

3) Click on the dropdown menu and select your preferred quality


4) For slow internet connections change it to - SD Only -but if you are a video collector and you want to download high quality video then select - HD if available -option

5) Done

Thursday, February 5, 2015




How To Fix Google Webmaster Tools Structured Data Postid Errors of a Blogger/Blogspot Blog?


When you add a Blogger/ Blogspot site in the Google Webmaster Tools It may show a lot of errors in Search Appearance - Structured Data. If your errors are because of BlogPost then you can fix them by following the steps bellow:

1. Log in to Blogger.

2. Select your Blog.

3. Go to Template.

4. Click on Edit HTML.

5. Inside the code box press Ctrl+F.

6. Search for itemprop='blogPost'.

7. Delete itemprop='blogPost'.

8. Click Save Template.

9. Done.





How To Fix Google Webmaster Tools Structured Data Postid Errors of a Blogger/Blogspot Blog?


When you add a Blogger/ Blogspot site in the Google Webmaster Tools It may show a lot of errors in Search Appearance - Structured Data. If your errors are because of Postid then you can fix them by following the steps bellow:

1. Log in to Blogger.

2. Select your Blog.

3. Go to Template.

4. Click on Edit HTML.

5. Inside the code box press Ctrl+F.

6. Search for itemprop='postid'.

7. You'll find it twice.

8. Delete both the itemprop='postid'.

9. Click Save Template.

10. Done.






How To Fix Google Webmaster Tools Structured Data Blogid Errors of a Blogger/Blogspot Blog?


When you add a Blogger/ Blogspot site in the Google Webmaster Tools It may show a lot of errors in Search Appearance - Structured Data. If your errors are because of Blogid then you can fix them by following the steps bellow:

1. Log in to Blogger.

2. Select your Blog.

3. Go to Template.

4. Click on Edit HTML.

5. Inside the code box press Ctrl+F.

6. Search for itemprop='blogid'.

7. You'll find it twice.

8. Delete both the itemprop='blogid'.

9. Click Save Template.

10. Done.


Wednesday, February 4, 2015




How To Fix Google Webmaster Tools Structured Data Hatom Missing: Author Errors of a Blogger/Blogspot Blog?


When you add a Blogger/ Blogspot site in the Google Webmaster Tools It may show a lot of errors in Search Appearance - Structured Data. If your errors are because of hatom (markup: microformats.org) Missing: Author then you can fix them by following the steps bellow:

1. Log in to Blogger.

2. Select your Blog.

3. Go to Template.

4. Click on Edit HTML.

5. Inside the code box press Ctrl+F.

6. Search for
span class='post-author vcard'
.


7. You'll Find:
 
                <b:if cond="data:top.showAuthor"> 
                  <b:if cond="data:post.authorProfileUrl"> 
                    <span class="fn"> 
                      <a expr:href="data:post.authorProfileUrl" href="https://www.blogger.com/null" rel="author" title="author profile"> 
                        <data:post author=""> 
                      </data:post></a> 
                    </span> 
                  <b:else> 
                    <span class="fn"><data:post author=""></data:post></span> 
                  </b:else></b:if> 
                </b:if> 
              

8. Replace the codes with the following codes:
<span class="post-author vcard" itemscope="itemscope" itemtype="http://schema.org/Person"> 
                <b:if cond="data:top.showAuthor"> 
                  <b:if cond="data:post.authorProfileUrl"> 
                    <span class="fn author"> 
                      <a expr:href="data:post.authorProfileUrl" href="https://www.blogger.com/null" rel="author" title="author profile"> 
                        <span itemprop="name"><data:post author=""></data:post></span> 
                      </a> 
                    </span> 
                  <b:else> 
                    <span class="fn author"><span itemprop="name"><data:post author=""></data:post></span></span> 
                  </b:else></b:if> 
                </b:if> 
              </span>

9. If you can't find the span section then paste the above codes in a section where you want the author name to appear.

10. Click Save Template.

11. Click on a error from Webmaster Tools.

12. From the dialog box click Test Live Data.

13. Done.





How To Fix Google Webmaster Tools Structured Data Hatom Missing: Updated Errors of a Blogger/Blogspot Blog?


When you add a Blogger/ Blogspot site in the Google Webmaster Tools It may show a lot of errors in Search Appearance - Structured Data. If your errors are because of hatom (markup: microformats.org) Missing: Updated then you can fix them by following the steps bellow:

1. Log in to Blogger.

2. Select your Blog.

3. Go to Template.

4. Click on Edit HTML.

5. Inside the code box press Ctrl+F.

6. Search for data:post.timestamp/.

7. You'll find this in two places:

<a class="timestamp-link" expr:href="data:post.url" href="https://www.blogger.com/null" rel="bookmark" title="permanent link"><abbr class="published" expr:title="data:post.timestampISO8601"><span style="font-family: &quot;verdana&quot; , sans-serif;"><data:post .timestamp=""></data:post></span></abbr></a>


8. Replace them with:

<a class="timestamp-link" expr:href="data:post.url" href="https://www.blogger.com/null" rel="bookmark" title="permanent link"><abbr class="published" expr:title="data:post.timestampISO8601"><data:post .timestamp=""></data:post></abbr></a>

9. Remember to replace in both places.

10. Click Save Template.


11. Click on a error from Webmaster Tools.

12. From the dialog box click Test Live Data.

13. Done.






How To Fix Google Webmaster Tools Structured Data Image_url Errors of a Blogger/Blogspot Blog?


When you add a Blogger/ Blogspot site in the Google Webmaster Tools It may show a lot of errors in Search Appearance - Structured Data. If your errors are because of Image_url then you can fix them by following the steps bellow:

1. Log in to Blogger.

2. Select your Blog.

3. Go to Template.

4. Click on Edit HTML.

5. Inside the code box press Ctrl+F.

6. Search for itemprop='image_url'.

7. You'll find it in multiple places.

8. Change all of them to itemprop='image'.

9. Click Save Template.

10. Done.



Tuesday, December 30, 2014






Sometimes we need to unpublish blogger (blogspot) post without deletion. Because every post we write requires some effort. We don't know when we will need it again. So here is how to do it:-


1. Login to Blogger.com.

2. Go to Dashboard.

3. Click on Posts.

4. Select the checkbox of the post you want to unpublish.

5. Click on Revert to draft.

6. Done.



Thursday, October 4, 2012

Cache files can make your browser work slow. To delete cache files -

- Click "Tools" then click "Options".




- From "Advanced" click the "Network" tab and then click the "Clear Now" button under the "Cached Web Content" section. Your cache files will be deleted.







Saturday, February 12, 2011




Best Tech Products of 2010


1. Google Android 2.2


2. Amazon Kindle (third-generation)


3. Netflix


4. Samsung Galaxy Tab


5. Microsoft Security Essentials


6. HTC HD7


7. Blizzard Entertainment StarCraft II


8. Panasonic Lumix DMC-LX5


9. Microsoft Office 2010


10. Canon Pixma MG8120


11. Blizzard Entertainment World of Warcraft: Cataclysm


12. Motorola Droid X


13. Adobe Creative Suite 5


14. Sony Handycam NEX-VG10


15. nVidia GeForce GTX 460


16. Google Voice

17. AMD Phenom II X6 1090T

18. Google Gmail

19. Western Digital 3TB My Book Essential


20. PC Tools Internet Security 2011

21. Corsair 800D

22. Cisco Flip UltraHD 8GB with FlipPort

23. Asus Eee PC 1201n


24. Dell UltraSharp U2711

25. TheFind.com