Monday, 18 April 2016

change mouse pointer of blogger

Go to blogger -template-edit html and click ctrl+f an find </head>  tag and jest place code before </head>

hear is the code:
<div style="background-image:url(http://www.html.am/images/image-codes/milford_sound_t.jpg);width:220px;height:140px;color:black;font-size:18px;">
This text appears in front of the background image.
</div>

Sunday, 17 April 2016

how to add a top commenter widget on blogger

Top commenter widget shows the people who commented to your blog you can add it any ware  you wand in blog with html/java script widget to see an demo jest comment below or go to Tech&Reviews  this will ingress your comments becose  readers will post comments.
jest copy the html code and add it as a html/java script widget that  all then it will start showing top commenters
you can change the settings of it by editing this code


<style type="text/css">
.top-commentators {
margin: 3px 0;
border-bottom: 1px dotted #ccc;
}
.avatar-top-commentators {
vertical-align:middle;
border-radius: 30px;
}
.top-commentators .commenter-link-name {
padding-left:0;
}
</style>
<script type="text/javascript">
var maxTopCommenters = 8;
var minComments = 1;    
var numDays = 10;        
var excludeMe = true;  
var excludeUsers = ["Anonymous", "someotherusertoexclude"];
var maxUserNameLength = 42;
//
var txtTopLine = '<b>[#].</b> [image] [user] ([count])';
var txtNoTopCommenters = 'No top commentators at this time.';
var txtAnonymous = '';
//
var sizeAvatar = 33;
var cropAvatar = true;
//
var urlNoAvatar = "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg8_NJ_7aieGLeCJ3fVQAT54nMiMbu6jnYwa1fDZB3aTupx9a9T_xq60efeT4ObJQmJrDEOoFwJL0hB-KmL_6FlsIwAT58cEbrhkzpJuiBlpd3ex554pZaIbZUUov4WXrWDtmy9f3WhN5rH/s1600/avatar_blue_m_96.png" + sizeAvatar;
var urlAnoAvatar = 'https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiUKgRVKR6cmt5qaQm0utGkuVGbAZDxwcyD4maUNcyPZnWc2JvsfE6-CBH8og4civhzQ1eIedO_IQ24Zew1LovAY039inpddUb3tVYv8qrXZGScoapQerHF8xiaiwKvo6fiq49w9EIOeZI2/s1600/avatar1.png' + sizeAvatar;
var urlMyProfile = '';
var urlMyAvatar = '';
if(!Array.indexOf) {
 Array.prototype.indexOf=function(obj) {
  for(var i=0;i<this.length;i++) if(this[i]==obj) return i;
  return -1;
}}
function replaceTopCmtVars(text, item, position)
{
  if(!item || !item.author) return text;
  var author = item.author;
  var authorUri = "";
  if(author.uri && author.uri.$t != "")
    authorUri = author.uri.$t;
  var avaimg = urlAnoAvatar;
  var bloggerprofile = "http://www.blogger.com/profile/";
  if(author.gd$image && author.gd$image.src && authorUri.substr(0,bloggerprofile.length) == bloggerprofile)
    avaimg = author.gd$image.src;
  else {
    var parseurl = document.createElement('a');
    if(authorUri != "") {
      parseurl.href = authorUri;
      avaimg = 'http://www.google.com/s2/favicons?domain=' + parseurl.hostname;
    }
  }
  if(urlMyProfile != "" && authorUri == urlMyProfile && urlMyAvatar != "")
    avaimg = urlMyAvatar;
  if(avaimg == "http://img2.blogblog.com/img/b16-rounded.gif" && urlNoAvatar != "")
    avaimg = urlNoAvatar;
  var newsize="s"+sizeAvatar;
  avaimg = avaimg.replace(/\/s\d\d+-c\//, "/"+newsize+"-c/");
  if(cropAvatar) newsize+="-c";
  avaimg = avaimg.replace(/\/s\d\d+(-c){0,1}\//, "/"+newsize+"/");
  var authorName = author.name.$t;
  if(authorName == 'Anonymous' && txtAnonymous != '' && avaimg == urlAnoAvatar)
    authorName = txtAnonymous;
  var imgcode = '<img class="avatar-top-commentators" height="'+sizeAvatar+'" width="'+sizeAvatar+'" title="'+authorName+'" src="'+avaimg+'" />';
  if(authorUri!="") imgcode = '<a href="'+authorUri+'">'+imgcode+'</a>';
  if(maxUserNameLength > 3 && authorName.length > maxUserNameLength)
    authorName = authorName.substr(0, maxUserNameLength-3) + "...";
  var authorcode = authorName;
  if(authorUri!="") authorcode = '<a class="commenter-link-name" href="'+authorUri+'">'+authorcode+'</a>';
  text = text.replace('[user]', authorcode);
  text = text.replace('[image]', imgcode);
  text = text.replace('[#]', position);
  text = text.replace('[count]', item.count);
  return text;
}
var topcommenters = {};
var ndxbase = 1;
function showTopCommenters(json) {
  var one_day=1000*60*60*24;
  var today = new Date();
  if(urlMyProfile == "") {
    var elements = document.getElementsByTagName("*");
    var expr = /(^| )profile-link( |$)/;
    for(var i=0 ; i<elements.length ; i++)
      if(expr.test(elements[i].className)) {
        urlMyProfile = elements[i].href;
        break;
      }
  }
  if(json && json.feed && json.feed.entry && json.feed.entry.length) for(var i = 0 ; i < json.feed.entry.length ; i++ ) {
    var entry = json.feed.entry[i];
    if(numDays > 0) {
      var datePart = entry.published.$t.match(/\d+/g);
      var cmtDate = new Date(datePart[0],datePart[1]-1,datePart[2],datePart[3],datePart[4],datePart[5]);
 
      var days = Math.ceil((today.getTime()-cmtDate.getTime())/(one_day));
      if(days > numDays) break;
    }
    var authorUri = "";
    if(entry.author[0].uri && entry.author[0].uri.$t != "")
      authorUri = entry.author[0].uri.$t;
    if(excludeMe && authorUri != "" && authorUri == urlMyProfile)
      continue;
    var authorName = entry.author[0].name.$t;
    if(excludeUsers.indexOf(authorName) != -1)
      continue;
    var hash=entry.author[0].name.$t + "-" + authorUri;
    if(topcommenters[hash])
      topcommenters[hash].count++;
    else {
      var commenter = new Object();
      commenter.author = entry.author[0];
      commenter.count = 1;
      topcommenters[hash] = commenter;
    }
  }
  if(json && json.feed && json.feed.entry && json.feed.entry.length && json.feed.entry.length == 200) {
    ndxbase += 200;
    document.write('<script type="text/javascript" src="http://'+window.location.hostname+'/feeds/comments/default?redirect=false&max-results=200&start-index='+ndxbase+'&alt=json-in-script&callback=showTopCommenters"></'+'script>');
    return;
  }
  // convert object to array of tuples
  var tuplear = [];
  for(var key in topcommenters) tuplear.push([key, topcommenters[key]]);
  tuplear.sort(function(a, b) {
    if(b[1].count-a[1].count)
        return b[1].count-a[1].count;
    return (a[1].author.name.$t.toLowerCase() < b[1].author.name.$t.toLowerCase()) ? -1 : 1;
  });
  var realcount = 0;
  for(var i = 0; i < maxTopCommenters && i < tuplear.length ; i++) {
    var item = tuplear[i][1];
    if(item.count < minComments)
        break;
    document.write('<di'+'v class="top-commentators">');
    document.write(replaceTopCmtVars(txtTopLine, item, realcount+1));
    document.write('</d'+'iv>');
    realcount++;
  }
  if(!realcount)
    document.write(txtNoTopCommenters);
}
document.write('<script type="text/javascript" src="http://'+window.location.hostname+'/feeds/comments/default?redirect=false&max-results=200&alt=json-in-script&callback=showTopCommenters"></'+'script>');
</script>

Saturday, 16 April 2016

adding costume domain on blogger

when you create an blog your address will be example.blogspot.com this is too long and unattractive so yo want to ad top domains like .com .in .net this post will help you in that

1.go to freenom.com  an sign in with your google account

2.search your domain and get it.Now go to cart and choose use for DNS then you will asked to put tow IP address give these address their
 216.239.32.21
 216.239.34.21

3.now give your details and register domain now go to my domain tab and select manage DNS there will be the the  ip address that you given earlier now remove and place thise A name records select type as A and TIL as 3600 ( TIL is same for all) leve first column blank and give this ip address as A name record
 216.239.32.21
 216.239.34.21
 216.239.36.21
 216.239.38.21

4.After saving this go to blogger settings->basic and under blog adress ther will be ad an terd party domain and give the domain name that you registered in freenom (you have to ad www. before domain name) now you will see some words open freenome in new tab and go to the domain you registered and select cename and put this in those first colums (TIL is 3600)
www    ghs.google.com

4.now ad the second to lines also and save it and save it in blogger. Also your custome domain will be reedy in 15 min

photo of adding records the records will look like in the pitcher


Tuesday, 1 March 2016

Turn your computer in to wifi hotspot

Creat wifi hotspot on computer download connectify software+crack from hear

To know how to use the crack go to this sight

And enjoy wifi internet all home 

You may need KB3033929 you can get it from hear

Wednesday, 17 February 2016

How to upload files for Download in Blogger/web sight

1.Go To Google Drive >> Create >> Folder Name It Something Such As "Downloads" Open That Folder >> Click "Upload Icon" and Choose "Files". Now Select The Files That You Want To Upload.

2.When The File is Uploaded, Right Click On That File. Click "Share" and Once Again "Share". Now Pop Up Box Will  Appear.

3.In The "Who Has Access" Section, Click "Change". Here Just Tick Mark "Public On The Web" and Save It. Now Same Box Will Appear Back and At The Top, There Will Be Link in "Link To Share" Box.

4.Copy That Link and Paste It in Notepad. Copy This Link and Also Paste It in Notepad https:/ /docs.google.co m/uc? export=downlo ad&id=FILE-ID- GOES-HERE

5.Now Look In The First Link Which You Copied From Google Drive. It Will Be Having File ID Which Looks Like 0ByNodV_ m9cVLN1loc2JX ZGJQUjQ Copy Yours File ID and Replace It With FILE-ID- GOES-HERE in The Second Link Which You Copied From Here.

6.Now The Second Link Will Look Like This https:// docs.google.co m/uc? export=downlo ad&id=0 ByNodV_m9cV LYTRKbjVIYXEw VXM Download Link Is Ready Now! Whenever People Will Open The Link Like Above The File Will Start Downloading and Yes It is Direct Download Link.

7.Go To Blogger >> Create New Post >> Link Paste The Prepared Link in URL Box, Write "Download" in "Texts to Display" Box.

8.Click "OK" Prepare The Post. Click on "Publish" Button. Done! Thats

Friday, 12 February 2016

Make blog and make mony

How to creat a blog
1.Go to blogspot.com sign in with your gmail accound
2.now you will have to enter you information
3.after that you will get to the main bloger page you can see new botton click
3.now you can ender the title it can be any name you wish. in the adress type the adress that you whand fore your blog 
4.click creat blog then the blog is reddy now you can start posting
Make mony with bloger
1.after 6 monts you can use adsense to make mony.for it open blog
2.click on Earnings-adsense
3.use gmail id and creat a adsense account.after that select whare you wand ads
4.wait fore 1 day fore activating account.it will take some days for ads to come up
5.you will get mony fore each click
6.to widrow the mony you will need an bank accound

Saturday, 6 February 2016

How to make sugar roket


Rokets in market are very costly why do you need by them you can esyly make one useing house hold ingreadiance so Today i am showing you how to make a sugar roket
You will need:
Kno3 (stump remover)
A template from hear
5 inch pcv pipe
Clay (kity liter)
Shugar
I am gona show you tow ways to creat roket faule one is powder roket faul and the liquid faul
Powder type:
First copy the template to a rount stic that can esyly co insite the pvc.place the pvc on a brick put some kity liter or clay and using the rod compress it thare
Now take the sugar and useing a mixer make it pouder and put it aside and do the same with kno3 after that mix the 40% sugar and 60% kno3 to geter with out heating it becose now it is highly flammable tis inside the pvc as compressed as possible use the stick and check the template.after doing this cover the other and with clay and make hole for fuse.now attach it with a stick and pouder roket is redy.click hear to watch a YouTube video tutorial
Liquid form:
Take a pvc and cover one side with clay like earlyer (you can also use pipe blocker for it).
Now you need a stow thake it outside and ware sfty glass.put a pan on stow and preheat it before adding 40% sugar and 60% kno3.now mix them to gethar.after some time you will see that the shugar will turn brown(caramelice) whait untill it fully turn brown and become a liquid after that poar the liquid inside the pipe before it becomes hard make a hole fore fuse them drie it After it becomes hard put a stick on side and it will be redy.fore a video tutorial click hear
Tip:wen making liquid fule with kno3 and shugar you can also add water and some mettels like calsiam fore color
Note:by mixing mettels with both roket fule you can make coluer full flames eg:
Calsiam-Red
Potasiam-violet
Sodiam-yellow
Magnisiam-white (sparcle)
To make kno3  compain amoniam nitrate and potasim cloride

Thursday, 4 February 2016

Fore comodo free antivirus
Jest click on this link
Protect pc from virus

To download eduubuntu 14.04 from hear

Android 5.1 iso is hear

The comodo fierwall is hear

Wednesday, 3 February 2016

How Use call divert on any phone

By using call divert or forwarding feature you can move your calls to another desired number. See below how to forword calls

To forward all calls To start, enter **21*number #
To stop, enter ##21#

To forward calls while you are speaking to some one else To start, enter **67*number #
To stop, enter ##67#

To forward calls if you dont answer the incoming caller within 30 seconds To start, enter **61*number #
To stop, enter ##61#

To forward calls if your cell phone is switched off or is out of reach To start, enter **621*number #
To stop, enter ##62#

To cancel all preset conditions enter ##002# Calls will come to your orignal number

Mount VHD on windows

Hello iam gona show you how to mount VHD in windows with cmd

To start open cmd and type diskpart.exe and run disk part

1. Creating a VHD The example below creates a 20GB dynamically expanding VHD called "test.vhd" and places it in the root of the C: drive.Note that the type parameter is optional and the default type is fixed.
create vdisk file=c:\test.vhd maximum=20000 type=expandable

2. Attaching a VHD The following example shows how to select and attach the VHD. It also provides steps for partitioning, formatting and assigning a drive letter to the attached VHD.
select vdisk file=c:\test.vhd attach vdisk create partition primary format fs=ntfs label="Test VHD" quick assign letter=v

3. Detaching the VHD To detach (i.e. unmount) the VHD, use the following example:
select vdisk file=c:\test.vhd detach vdisk

Note: All 3 of these VHD actions can also be performed in the Disk Management Console of Windows 7.

Tuesday, 2 February 2016

Make 100w invelter

This is a 100w invelter digram.
For more digrams click hear

Make windows bootble pendrive with out any software

To creat a bootble pendrive
Copy all files from iso to pendrive.check the drive letter of the pendrive.
Then go to
c:\windows\system32\cmd.exe
And run it as administrater
Then type this
Drive letter(eg:G)
G:\>Cd boot
G:\boot>Bootsect /nt60 G:
The way is fore windows system iso
If you whand other system bootble meadia creating software jest click hear