Wednesday, November 21, 2012

how to add sitemap to your blog

Sitemap is a way to learn a search engines about pages scattered in your blog. A sitemap will list down all URLs in your blog and it will make it easy for search engines to find your pages. Else search engines need to come and crawl your pages to grasp updates on your pages. So you may have heard of the word "Sitemap" if you are using tools such as Google Webmaster Tools, Bing Webmaster Tools to notify about your blog updates to search engines. They will ask for sitemap address from you whenever you wanna submit URLs. Eventhough you have heard of it, you may have no idea how to obtain or generate sitemap address for your blog. Wanna find out your sitemap address?

Blogger maintain a unique address as blog's sitemap address. You don't need to generate a new address for it. All you just need to do is finding relevant sitemap address for your blog and provide it whenever you need to submit your sitemap. Generally, your sitemap includes recently updated posts only. So if you update an old post and submit default sitemap, your post update won't notify for search engines. So you may have to alter sitemap address to populate all of your blog page addresses. Let's discuss how to find default sitemap address and alter it to grab all of your post URLs. You might think this is a advanced scenario to find your sitemap. But its neither advanced nor hard to find.

Steps:

1. Type your blog URL in the address bar of your web browser.

2. At the end of your URL, append /robots.txt and hit Enter.

i.e: http://www.mayura4ever.com/robots.txt

3. It will open up a simple page with text. As you see at the end, you can find your default sitemap address for your blog.



Also you can make use of below:

[Your Blog URL]/atom.xml?redirect=false


Note: But this default sitemap address will submit or notify about your recent page URLs (approximately 25). If you need to include all your page URLs in the sitemap, you need to use below modified sitemap address,

[Your Blog URL]/feeds/posts/default?redirect=false&max-results=[Number of Posts]

or

[Your Blog URL]/atom.xml?redirect=false&start-index=1&max-results=[Number of Posts]


Color Indication Information

- Your Blog URL

Add your blog URL here with preceding http://

- Number of Page/Post URLs to Submit

Here this refers to maximum number of pages that will be submitted to the Sitemap. Mostly this could be equivalent to the number of posts on your blog. Use a number which exceeds the count of number of posts published on your blog.

i.e: If you have 21 posts published on your blog, use a number larger than 21. It may be 22, 30, 100, 500, 1000 or even 100000. It will include all available page URLs with your specified limit.


5. Now you can submit your sitemap to relevant services.



for ur blogger blog...................goto dashboard-setting-search preferences-costum robot.txt
click yes and paste ur sitemap




for website.......goto google webmaster.....optimisation...sitemaps.........addsitemaps and done!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

Sunday, November 4, 2012

hide ip

Surf Anonymously with Real Hide IP
Protect your identity and privacy while you surfing Internet with Real Hide IP, you can hide your real IP address, surf anonymously, send emails anonymously through any web based mail system, un-ban yourself from forums sites or blocked websites, It keeps your personal information safe from identity thieves and hackers .
Real Hide IP allows you to change fake IP addresses which can be from different countries such as United States, United Kingdom, France, etc. This utility works perfectly with Internet Firefox, Google Chrome, Explorer, Opera, Maxthon and its compatible with all types of home networks, firewalls, routers, wireless networks and any other kind of Internet.


How It Works?

Click "Start Hide" to hide your IP.
You can change location by clicking "Change location"


download-hide ip-full-version-free

Add Snow Falling Effect In Mouse Cursor for Blogg

Hello friends!, here i am again with another great trick. Snow falling in mouse cursor. You can decorate with this script. You can Spice up your blog in Winter, Christmas , It'll bring more joy to your visitors. ok lets have the code

1.Copy the code below:

<script type='text/javascript'>
// <![CDATA[
var colour="White";
var sparkles=100;

var x=ox=400;
var y=oy=300;
var swide=800;
var shigh=600;
var sleft=sdown=0;
var tiny=new Array();
var star=new Array();
var starv=new Array();
var starx=new Array();
var stary=new Array();
var tinyx=new Array();
var tinyy=new Array();
var tinyv=new Array();
window.onload=function() { if (document.getElementById) {
var i, rats, rlef, rdow;
for (var i=0; i<sparkles; i++) {
var rats=createDiv(3, 3);
rats.style.visibility="hidden";
document.body.appendChild(tiny[i]=rats);
starv[i]=0;
tinyv[i]=0;
var rats=createDiv(5, 5);
rats.style.backgroundColor="transparent";
rats.style.visibility="hidden";
var rlef=createDiv(1, 5);
var rdow=createDiv(5, 1);
rats.appendChild(rlef);
rats.appendChild(rdow);
rlef.style.top="3px";
rlef.style.left="0px";
rdow.style.top="0px";
rdow.style.left="3px";
document.body.appendChild(star[i]=rats);
}
set_width();
sparkle();
}}
function sparkle() {
var c;
if (x!=ox || y!=oy) {
ox=x;
oy=y;
for (c=0; c<sparkles; c++) if (!starv[c]) {
star[c].style.left=(starx[c]=x)+"px";

star[c].style.top=(stary[c]=y)+"px";
star[c].style.clip="rect(0px, 5px, 5px, 0px)";
star[c].style.visibility="visible";
starv[c]=50;
break;
}
}
for (c=0; c<sparkles; c++) {
if (starv[c]) update_star(c);
if (tinyv[c]) update_tiny(c);
}
setTimeout("sparkle()", 40);
}
function update_star(i) {
if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
if (starv[i]) {
stary[i]+=1+Math.random()*3;
if (stary[i]<shigh+sdown) {
star[i].style.top=stary[i]+"px";
starx[i]+=(i%5-2)/5;
star[i].style.left=starx[i]+"px";
}
else {
star[i].style.visibility="hidden";
starv[i]=0;
return;
}

}
else {
tinyv[i]=50;
tiny[i].style.top=(tinyy[i]=stary[i])+"px";
tiny[i].style.left=(tinyx[i]=starx[i])+"px";
tiny[i].style.width="2px";
tiny[i].style.height="2px";
star[i].style.visibility="hidden";
tiny[i].style.visibility="visible"
}
}
function update_tiny(i) {
if (--tinyv[i]==25) {
tiny[i].style.width="1px";
tiny[i].style.height="1px";
}
if (tinyv[i]) {
tinyy[i]+=1+Math.random()*3;
if (tinyy[i]<shigh+sdown) {
tiny[i].style.top=tinyy[i]+"px";
tinyx[i]+=(i%5-2)/5;
tiny[i].style.left=tinyx[i]+"px";
}
else {


tiny[i].style.visibility="hidden";
tinyv[i]=0;
return;
}
}
else tiny[i].style.visibility="hidden";
}
document.onmousemove=mouse;
function mouse(e) {
set_scroll();
y=(e)?e.pageY:event.y+sdown;
x=(e)?e.pageX:event.x+sleft;
}
function set_scroll() {
if (typeof(self.pageYOffset)=="number") {
sdown=self.pageYOffset;
sleft=self.pageXOffset;
}
else if (document.body.scrollTop || document.body.scrollLeft) {
sdown=document.body.scrollTop;
sleft=document.body.scrollLeft;
}
else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
sleft=document.documentElement.scrollLeft;
sdown=document.documentElement.scrollTop;
}
else {
sdown=0;
sleft=0;
}
}
window.onresize=set_width;
function set_width() {
if (typeof(self.innerWidth)=="number") {
swide=self.innerWidth;
shigh=self.innerHeight;
}
else if (document.documentElement && document.documentElement.clientWidth) {
swide=document.documentElement.clientWidth;
shigh=document.documentElement.clientHeight;
}
else if (document.body.clientWidth) {
swide=document.body.clientWidth;
shigh=document.body.clientHeight;
}
}
function createDiv(height, width) {
var div=document.createElement("div");
div.style.position="absolute";
div.style.height=height+"px";
div.style.width=width+"px";
div.style.overflow="hidden";
div.style.backgroundColor=colour;
return (div);
}
// ]]>
</script>

2.Page element --> Add a Gadget --> HTML/JavaScript --> Paste the code and Save

Enjoy it.......!




How to Increase uTorrent, BitTorrent Download Speed

follow these steps before you know how to Increase torrent Download Speed.

 1.Speed Up Internet with Open DNS [Win 7]

 2.Speed Up Internet with Open DNS [Win XP]


Finally

Download Tcpip Patch and patch tcpip.sys to Increase Half open connections


after performing these information open utorrent

Click on "Option"

Go to "Preferences

 Click on "Bandwidth


Click on "Advanced"


Look for "bt.connect_speed" Set it to "80"

Look for "net.max_halfopen" Set it to "100"






apply changes and enjoyyyyyyy!!!!!!!!!!!!!!

















speed up your internet with open dns

Open DNS serve 30 billion DNS requests to 20 million customers every day, with plenty of capacity to spare. You're probably using DNS service from your Internet Service Provider (ISP) today, but ISPs have notoriously unreliable and slow service. OpenDNS is the best DNS service available and its the best solution for slow internet Connections.
  how to set open dns??????

first of all goto control panal and click on network and internet

then click on network and sharing
now change adapter setting






Then Right click on your current internet connection and choose “Properties”.
Select the “TCP/IPv4” service in the list, then click the “Properties” button.



In the DNS section fill with this numbers
Preferred DNS Server : 208.067.222.222
Alternate DNS Server : 208.067.220.220

 thats all its done











how to speed up your cdma,3g,wireless internet



first of all collect some straight wires and 2 way usb port as shown in figure.then rub one end of wire with the help of sandpaper.                                                                             
















then connect these straight wires with the port wires,which can be obtained by peelint plastic of port wire as shown in figure







now insert the 3g,cdma or other wireless modem into one end and connect it to computer from other end. 

                                 now enjoy superfast internet




next tip:
 find out any circular metal piece or a metallic dinner plate. keep your modem perpendicular to the metal and enjoy speedupd internet......!!!!!

Saturday, November 3, 2012

structure of kidney


In humans, the excretory system consists
of a pair of kidneys, one pair of ureters, a
urinary bladder and a urethra . Kidneys are reddish brown, bean
shaped structures situated between the
levels of last thoracic and third lumbar
vertebra close to the dorsal inner wall of
the abdominal cavity. Each kidney of an
adult human measures 10-12 cm in
length, 5-7 cm in width, 2-3 cm in
thickness with an average weight of 120-
170 g. Towards the centre of the inner
concave surface of the kidney is a notch
called hilum through which ureter, blood
vessels and nerves enter. Inner to the hilum
is a broad funnel shaped space called the
renal pelvis with projections called calyces.
The outer layer of kidney is a tough
capsule. Inside the kidney, there are two
zones, an outer cortex and an inner
medulla. The medulla is divided into a few
conical masses (medullary pyramids)
projecting into the calyces (sing.: calyx).
The cortex extends in between the
medullary pyramids as renal columns called
Columns of Bertini.
Each kidney has nearly one million
complex tubular structures called nephrons which are the functional units.
Each nephron has two parts – the
glomerulus and the renal tubule.
Glomerulus is a tuft of capillaries formed by
the afferent arteriole – a fine branch of renal
artery. Blood from the glomerulus is carried
away by an efferent arteriole.
The renal tubule begins with a double
walled cup-like structure called Bowman’s
capsule, which encloses the glomerulus.
Glomerulus alongwith Bowman’s capsule, is
called the malpighian body or renal
corpuscle . The tubule
continues further to form a highly coiled
network – proximal convoluted tubule
not to be republished. A hairpin shaped Henle’s loop is the
next part of the tubule which has a
descending and an ascending limb. The
ascending limb continues as another highly
coiled tubular region called distal
convoluted tubule (DCT). The DCTs of many
nephrons open into a straight tube called
collecting duct, many of which converge and
open into the renal pelvis through medullary
pyramids in the calyces.
The Malpighian corpuscle, PCT and DCT
of the nephron are situated in the cortical
region of the kidney whereas the loop of Henle
dips into the medulla. In majority of
nephrons, the loop of Henle is too short and
extends only very little into the medulla. Such
nephrons are called cortical nephrons. In
some of the nephrons, the loop of Henle is
very long and runs deep into the medulla.
These nephrons are called juxta medullary
nephrons.
The efferent arteriole emerging from the glomerulus forms a fine
capillary network around the renal tubule called the peritubular
capillaries. A minute vessel of this network runs parallel to the Henle’s
loop forming a ‘U’ shaped vasa recta. Vasa recta is absent or highly
reduced in cortical nephrons.