Friday, February 26, 2010

How To increase Your Computer Speed

Those who are having windows installed in their computers can follow some simple methods to speed up their computer. Just follow the few steps and you can speed up your computer-

Empty Your Recycle Bin- Just check if their anything important in your trash and empty your recycle bin. Do not let it filled with unnecessary stuff.

Clean out temporary files- Go to My Computer, right click on the local disk (c:) and select properties. There is a box that says Disk Cleanup. Click it and select all the check boxes and click OK. That would restore some more space
Compress the drive to save space. Again, go to My Computer, right click on the local disk and select properties. Check the box that says compress drive to save space.

Do not go for hibernation- If you are one of those users who switches on a computer and never uses hibernation, this is for you. Go to Control Panel, select classic view, click on power options. Then click the tab that is titled hibernation and uncheck the box. This will save some more valuable hard drive space.

Reduce the size of system restore - Go to Control Panel, click system, click the system restore tab and reduce the size allocated to system restore. I generally decrease it right down to 200MB but this is optional. Reduce it to a size you feel is suitable.

Less Short-cut Icons On Desktops- Try to keep less icons or short-cuts on desktops window. those which are unused or rarely used should be cleaned up by using desktop clean-up wizard.

Virtual memory- This is hard drive space used as extra RAM. This is how you do it. Control panel > system > advanced > then select the option where it mentions virtual memory. You can either manage this amount yourself, you can let the computer decide how much it needs, or if you have more than 1GB of RAM (depending on what you use your computer for), you can select no paging file. I never use a paging file because i feel i have enough RAM. This is entirely a personal choice. Click apply once you have selected your option and restart your computer.

Wednesday, February 24, 2010

Blogger Tips- Create Drop Down Menu For Labels

If you don't want labels to be shown up on your blog as a long list, just try the following code . It would help you to create a drop down menu for your labels.

Go to edit HTML section of layout and find following code(Please make sure that you have already defined labels)


<ul>
   <b:loop values='data:labels' var='label'>
     <li>
       <b:if cond='data:blog.url == data:label.url'>
         <data:label.name/>
       <b:else/>
         <a expr:href="data:label.url"><data:label.name/></a>
       </b:if>
       (<data:label.count/>)
     </li>
   </b:loop>
   </ul>
 Replace above selected of code with the following code snippet
 <br/>
<select
onchange='location=this.options [this.selectedIndex].value;'
style='width:200px; background-color:#fff; color:#000;'>
<option>Select a Label</option>
   <b:loop values='data:labels' var='label'>
      <option expr:value='data:label.url'><data:label.name/>
         (<data:label.count/>)
      </option>
   </b:loop>
</select>

Now Save Template. 
 
 
 
 

Tuesday, February 23, 2010

When Google Bot visits your web page

I found a great tool (Script) by which you can get when Google Bot visits your page
.Try the following code ,Just put it in your header, footer or wherever to think to convenient (But this Tricks works on PHP based pages only) -

if ( strpos( $_SERVER['HTTP_USER_AGENT'], ‘Googlebot’ ) !== false )
{
// The email address we want to send the email to
$email_address = ‘YOUREMAIL@EMAIL.COM’;
// Send the email
mail($email_address,’Googlebot Visit’, ‘Googlebot has visited YOURSITE.COM: ‘.$_SERVER['REQUEST_URI']);
}
?>

Monday, February 22, 2010

How To remove/ Hide Navbar In Blogspot

Here is a trick by which you can hide navbar in your blogspot's Blog. Your blog will be looking more of a website rather than a typical blog.

1. Open your Blog's dashboard.
2. Go to Layout settings > Edit HTML
3. Look for:
/* Variable definitions
========================

4. And just above that add:

#navbar-iframe { display: none !important; }

For More Tips Keep Visiting- http://dguruof.blogspot.com