How to Integrate SyntaxHighlighter to Blogger, Blogspot

Leave a Comment
If you are a developer & want to share your code over the blog with proper highlighting & syntax, then Blogger/Wordpress doesn't have any feather like that
using System;

namespace HelloWorld
{
    class Hello
    {
        public static void Main(String[] args)
         {
             Console.WriteLine("Hello World");
         }
    }
}
There are many javascript library which allow us to do that. Now I'll show you how to integrate one into your blog.
Read More

How to extract audio from video on android phone

Leave a Comment
Following these steps to extract audio from video on android phone

  1. Download "Audio Extractor" from Google Play Store: https://play.google.com/store/apps/details?id=com.microappx.audioextractor
  2. Open app, select video that you would like to extract audio
  3. Tap on it and select "Extract Audio"
  4. Wait for a moment, your audio will ready on "Music" tab






Read More

How to change DNS settings on Android phone

Leave a Comment
If you need change your DNS settings on android phone, just do some simple steps

1. Open Wi-Fi settings
2. Connect to Wi-Fi which you would like to change DNS settings
3. Long click on it, choose "Modify network config"
4. Tick on "Show advanced options"
5. Fill DNS 1 and DNS 2 field with DNS IPs

* Famous DNS IPs

1. Google DNS: 8.8.8.8 and 8.8.4.4
2. Open DNS: 208.67.222.222 and 208.67.220.220
Read More