<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>metamags.com Technology Blog &#124; Push The Limits of Technology &#187; Tutorial</title>
	<atom:link href="http://www.metamags.com/category/tuts/feed" rel="self" type="application/rss+xml" />
	<link>http://www.metamags.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sun, 01 Aug 2010 15:23:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Beginners Guide to Collection API</title>
		<link>http://www.metamags.com/beginners-guide-to-collection-api?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=beginners-guide-to-collection-api</link>
		<comments>http://www.metamags.com/beginners-guide-to-collection-api#comments</comments>
		<pubDate>Tue, 13 Jul 2010 16:54:05 +0000</pubDate>
		<dc:creator>suz_java</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.metamags.com/?p=303</guid>
		<description><![CDATA[What is Collection API? All classes and interface that form the collection framework are called data structure. Collections help programmers by giving groups of objects in JAVA. A collection can be defined as a set object. Collections in java are nothing but implementation of different data structures. Data structures can be visualized as container that [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.metamags.com%2Fbeginners-guide-to-collection-api"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.metamags.com%2Fbeginners-guide-to-collection-api&amp;source=metamags&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<h3>What is Collection API?</h3>
<hr /><img class="aligncenter" src="http://blog.ifanchu.com/wp-content/uploads/2009/12/collections-2.png" alt="Collection API" width="570" height="447" /><br />
All classes and interface that form the collection framework are called data structure. Collections help programmers by giving groups of objects in JAVA. A collection can be defined as a set object. Collections in java are nothing but implementation of different data structures. Data structures can be visualized as container that group multiple elements and represent them as a single entity. The collection framework enables us to store, access, retrieve, and manipulate the data elements that they contain. Different classes and interface that are available in the collection framework are found in java.util package.<br />
Collection interface is generally used to route collection and manipulate them it can be used to transmit a collection of object between methods.</p>
<h3>Difference between array and vector</h3>
<hr /><img class="aligncenter" src="/wp-content/woo_uploads/api12072010/1dmnson_arr.png" alt="One Dimentional Array" width="447" height="181" /><br />
When we work on java, it’s common to us to handle the Collection interface, but many times we forget the basic deference of some common method. I want to introduce some of the most common deference of array and vector.</p>
<ol>
<li>The size of array is static, while a vector is a dynamically resizable.</li>
<li>Vector can store only object reference not any primitive data type. Unlike arrays, vector can contain any combination of object data type.</li>
<li>Array is accessed directly through its integer index. The method elementAt(index)  of vector is used to retrieve a given reference at specified index.</li>
</ol>
<pre class="brush: csharp;">
/* example of vector class */
import java.util.*;
class VectorClass
{
	public static void main(String arg[])
	{
		Vector V=new Vector();
		V.addElement(new Integer(10));
		V.addElement(new Integer(20));
		V.addElement(new Integer(30));
		System.out.println(V);
		V.addElement(new Double(55.45);
		System.out.println(V);
		V.removeElement(new Integer(30));
		System.out.println(V);
			if(V.contains(new Integer(20)))
		System.out.println(&quot;20 is present &quot; +V.indexOf(new Integer(20)));
			else
		System.out.println(&quot;20 is not present&quot;);
	}
}
</pre>
<h3>Introduction to ArrayList</h3>
<hr /><img class="aligncenter" src="/wp-content/woo_uploads/api12072010/arr_lst.png" alt="Array List" width="494" height="229" /></p>
<p>It is similar to vector, a dynamic resizable array. Both classes inheritance from AbstractList, and implement the interface list.<br />
Array List is compared with vector both are dynamically resizable, both have some common method but it does not have legacy method that Vector has, like elementAt( ), addElement( ).</p>
<pre class="brush: csharp;">
// example of ArrayList
import java.util.*;
class Alist
{
	public static void main(String arg[])
	{
		ArrayList a=new ArrayList(2);
		a.add(new Integer(10));
		a.add(new Integer(20));
		a.add(new Float(30.4));
		a.add(new Integer(45));
		System.out.println(&quot;contents of a:&quot;+a);
		a.add(2,new Integer(5)); // it is insert into the 2nd position
		System.out.println(&quot;contents of a:&quot;+a);
		a.remove(2);
		System.out.println(&quot;contents of a:&quot;+a);
	}
}
</pre>
<h3>Guide to LinkedList</h3>
<hr /><img class="aligncenter" src="/wp-content/woo_uploads/api12072010/lnk_lst.png" alt="Link List" width="540" height="259" /></p>
<p>It adds new functionality that vector did not have previously. It has method like addList( ), addlast( ) to add elements to start or end of the list. It has method like getList( ), getLast( ), removeFirst( ), removeLast( ). So, using the Link list we can handle more perfectly the data elements.</p>
<pre class="brush: csharp;">
// Demonstrate LinkedList.
import java.util.*;
class LinkedListDemo
{
	public static void main(String args[])
	{
		// create a linked list
		LinkedList ll = new LinkedList();
		// add elements to the linked list
		ll.add(&quot;F&quot;);
		ll.add(&quot;B&quot;);
		ll.add(&quot;D&quot;);
		ll.add(&quot;E&quot;);
		ll.add(&quot;C&quot;);
		ll.addLast(&quot;Z&quot;);
		ll.addFirst(&quot;A&quot;);
		ll.add(1, &quot;A2&quot;);
		System.out.println(&quot;Original contents of ll: &quot; + ll);
		// remove elements from the linked list
		ll.remove(&quot;F&quot;);
		ll.remove(2);
		System.out.println(&quot;Contents of ll after deletion: &quot; + ll);
		// remove first and last elements
		ll.removeFirst();
		ll.removeLast();
		System.out.println(&quot;ll after deleting first and last: &quot; + ll);
		// get and set a value
		Object val = ll.get(2);
		ll.set(2, (String) val + &quot; Changed&quot;);
		System.out.println(&quot;ll after change: &quot; + ll);
	}
}
</pre>
<h3>Hash Table</h3>
<hr /><img class="aligncenter" src="http://wpcontent.answers.com/wikipedia/commons/thumb/d/d0/Hash_table_5_0_1_1_1_1_1_LL.svg/450px-Hash_table_5_0_1_1_1_1_1_LL.svg.png" alt="Hash Table" width="450" height="310" /><br />
It is a data structure that maps keys to values.It is used where sequentially access is not necessary.</p>
<p>A hash table is not as array or vector.It allows developer a more specific means of accessing data other than index value. Keys and value can be made up or any non-null object. This class extends from the class dictionary and implements the interfaces. The creation of use of Hash Table is similar to Vector, instantiation of its result in an empty Hash Table, where elements are add using put with key and value arguments of type object. To retrieve object from a Hash Table, the object used as keys must implements method hashCode( ) and equals( ).</p>
<pre class="brush: csharp;">
//Testting Hashtable behavior when objects representating the same
//entity are used as hastable keys
class Program
{
	static void Main(string[] args)
		{
			Hashtable col = new Hashtable();
			col[&quot;key1&quot;] = &quot;Value1&quot;;
			col[&quot;key2&quot;] = &quot;Value2&quot;;
			DisplayResults(col);
			col[&quot;key2&quot;] = &quot;Value2Updated&quot;;
			DisplayResults(col);
			System.Console.Read();
		}
	static void DisplayResults (Hashtable col)
		{
			Console.WriteLine();
			Console.WriteLine(&quot;Total Items: {0}&quot;,col.Count);
			foreach (DictionaryEntry entry in col)
				{
					Console.WriteLine(
						&quot;Key[{0}], Hash[{1}], Value[{2}]&quot;,
						entry.Key,
						entry.Key.GetHashCode().ToString(),
						entry.Value);
				}
		}
}
</pre>
<h3>Conclusion</h3>
<hr />So, I think from my few points of collection API  we can easily understand of it&#8217;s different method and their advantages  . You can understand  more clearly if you ran the given examples.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Beginners+Guide+to+Collection+API+-+http://cli.gs/1ZnZL+%28Via+%40metamags%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.metamags.com/beginners-guide-to-collection-api&amp;title=Beginners+Guide+to+Collection+API" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.metamags.com/beginners-guide-to-collection-api&amp;title=Beginners+Guide+to+Collection+API" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.metamags.com/beginners-guide-to-collection-api&amp;t=Beginners+Guide+to+Collection+API" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-designbump">
			<a href="http://designbump.com/submit?url=http://www.metamags.com/beginners-guide-to-collection-api&amp;title=Beginners+Guide+to+Collection+API&amp;body=What%20is%20Collection%20API%3F%0D%0A%0D%0AAll%20classes%20and%20interface%20that%20form%20the%20collection%20framework%20are%20called%20data%20structure.%20Collections%20help%20programmers%20by%20giving%20groups%20of%20objects%20in%20JAVA.%20A%20collection%20can%20be%20defined%20as%20a%20set%20object.%20Collections%20in%20java%20are%20nothing%20but%20implementation%20of%20different%20data%20struc" rel="nofollow" class="external" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="shr-webblend">
			<a href="http://thewebblend.com/submit?url=http://www.metamags.com/beginners-guide-to-collection-api&amp;title=Beginners+Guide+to+Collection+API&amp;body=What%20is%20Collection%20API%3F%0D%0A%0D%0AAll%20classes%20and%20interface%20that%20form%20the%20collection%20framework%20are%20called%20data%20structure.%20Collections%20help%20programmers%20by%20giving%20groups%20of%20objects%20in%20JAVA.%20A%20collection%20can%20be%20defined%20as%20a%20set%20object.%20Collections%20in%20java%20are%20nothing%20but%20implementation%20of%20different%20data%20struc" rel="nofollow" class="external" title="Blend this!">Blend this!</a>
		</li>
		<li class="shr-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.metamags.com/beginners-guide-to-collection-api&amp;title=Beginners+Guide+to+Collection+API" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.metamags.com/beginners-guide-to-collection-api&amp;title=Beginners+Guide+to+Collection+API&amp;summary=What%20is%20Collection%20API%3F%0D%0A%0D%0AAll%20classes%20and%20interface%20that%20form%20the%20collection%20framework%20are%20called%20data%20structure.%20Collections%20help%20programmers%20by%20giving%20groups%20of%20objects%20in%20JAVA.%20A%20collection%20can%20be%20defined%20as%20a%20set%20object.%20Collections%20in%20java%20are%20nothing%20but%20implementation%20of%20different%20data%20struc&amp;source=metamags.com Technology Blog | Push The Limits of Technology" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.metamags.com/beginners-guide-to-collection-api&amp;title=Beginners+Guide+to+Collection+API" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Beginners+Guide+to+Collection+API&amp;du=http://www.metamags.com/beginners-guide-to-collection-api&amp;cn=What%20is%20Collection%20API%3F%0D%0A%0D%0AAll%20classes%20and%20interface%20that%20form%20the%20collection%20framework%20are%20called%20data%20structure.%20Collections%20help%20programmers%20by%20giving%20groups%20of%20objects%20in%20JAVA.%20A%20collection%20can%20be%20defined%20as%20a%20set%20object.%20Collections%20in%20java%20are%20nothing%20but%20implementation%20of%20different%20data%20struc" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.metamags.com/beginners-guide-to-collection-api&amp;title=Beginners+Guide+to+Collection+API" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.metamags.com/beginners-guide-to-collection-api&amp;title=Beginners+Guide+to+Collection+API&amp;desc=What%20is%20Collection%20API%3F%0D%0A%0D%0AAll%20classes%20and%20interface%20that%20form%20the%20collection%20framework%20are%20called%20data%20structure.%20Collections%20help%20programmers%20by%20giving%20groups%20of%20objects%20in%20JAVA.%20A%20collection%20can%20be%20defined%20as%20a%20set%20object.%20Collections%20in%20java%20are%20nothing%20but%20implementation%20of%20different%20data%20struc" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.metamags.com/beginners-guide-to-collection-api&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.metamags.com/beginners-guide-to-collection-api&amp;n=Beginners+Guide+to+Collection+API&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.metamags.com/beginners-guide-to-collection-api/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://www.metamags.com/beginners-guide-to-collection-api" rel="nofollow" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.metamags.com/beginners-guide-to-collection-api" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.metamags.com/beginners-guide-to-collection-api&amp;title=Beginners+Guide+to+Collection+API" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.metamags.com/beginners-guide-to-collection-api&amp;bm_description=Beginners+Guide+to+Collection+API&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.metamags.com/beginners-guide-to-collection-api/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Monetize Your Site with Google Advertising Programs</title>
		<link>http://www.metamags.com/monetize-your-site-with-google-advertising-programs?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=monetize-your-site-with-google-advertising-programs</link>
		<comments>http://www.metamags.com/monetize-your-site-with-google-advertising-programs#comments</comments>
		<pubDate>Thu, 20 May 2010 11:28:51 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[adsense]]></category>
		<category><![CDATA[advertise]]></category>
		<category><![CDATA[adwords]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://www.metamags.com/?p=260</guid>
		<description><![CDATA[Overview: If you are a googler then you must know about the Google advertising program. Google has two types of advertising program AdWords and AdSense accordingly. With this article we will go through the overview of this advertising program explain some of the advertising term like Web Traffic, CTR, eCPM etc. and give you some [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.metamags.com%2Fmonetize-your-site-with-google-advertising-programs"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.metamags.com%2Fmonetize-your-site-with-google-advertising-programs&amp;source=metamags&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<h3>Overview:</h3>
<p>If you are a googler then you must know about the Google advertising program. Google has two types of advertising program AdWords and AdSense accordingly. With this article we will go through the overview of this advertising program explain some of the advertising term like Web Traffic, CTR, eCPM etc. and give you some tips and tricks to earn the maximize revenue from Google AdSense. First we should know what this AdSense and AdWords means.</p>
<ol>
<li>
<h4>AdWords:</h4>
<p>AdWords let advertisers to promote their product or website through Google or other AdSense integrated website. When you search in Google with a keyword you may find some links highlighted under the search box and the sidebar and a text ‘sponsored Links’ will be found under the box. This links are sent through AdWords. That means some of the advertiser paid Google to show the links in its site. AdWords are most preferable for advertisers as they have option for geo-targeting, Contextual ads and show the ads on the most relevant content.</li>
<li>
<h4>AdSense:</h4>
<p>AdSense is an opportunity for the publishers to earn money from the Google Advertising program. Your web portal will be advertised with relevant ads through AdSense and the ads will come from the advertisers on AdWords. AdSense is preferred by both publishers and users as they are less disturbing and annoying compared to loud and flashy banners. After you make a registration, a Mediabot will crawl through your website and find some appropriate keywords so that your website can host the most relevant advertisement.</li>
</ol>
<h3>Requirements:</h3>
<p>Before we can start through AdSense program, we should know the minimum requirements to earn.</p>
<ol>
<li>Your own website ( you have to access the source code of your website to incorporate the AdSense code into your website, so the website must be your own as anybody will not let you to place AdSense code into his website).</li>
<li>A computer with internet access.</li>
<li>Basic web-design knowledge to make a good website.</li>
</ol>
<h3>Relate yourself with some advertising terms:</h3>
<ul>
<li>
<h4>Web Traffic:</h4>
<p>Web Traffic determined by the number of visitors visits your site.</li>
<li>
<h4>Backlinking:</h4>
<p>Determined by number of website linking back to your website. More backlink is the more opportunity to gain more traffic.</li>
<li>
<h4>CPC:</h4>
<p>Acronym of Cost-Per-Click. As the name suggest, you will be paid from AdSense only when anyone click the hosted ad in your web portal.</li>
<li>
<h4>CPM:</h4>
<p>Acronym of Cost-Per-Mille. This advertisement will pay you when it gets thousand impressions from your site, impression means how many time the ads has been shown up in your website.</li>
<li>
<h4>CTR:</h4>
<p>Acronym of Click-Through-Rate. This measure what percentage of your website-visitor had click on your ads. As an example you got 100 visitors in a day and 5 of them clicked on ads after visiting your site. So your Click-Through-Rate will be 5%.</li>
</ul>
<h3>Getting Started:</h3>
<p>You may relate yourself with basic advertising terms now. Getting started with AdSense program is very easy. After you apply your website for Google AdSense program a mediabot will crawl through your site and find the relevant keyword from your site. Before you apply your site in AdSense program you have to ensure that you are generating good web traffic in your web portal. You will get a notification from AdSense to let you know whether your site has been approved in AdSense networking or not. Google AdSense has a strict guideline on how the Ads should be displayed in your site. If mediabot will unable to crawl through your site, it will not display sponsored advertisement in your site. Please check if your website meets the requirement of <a href="https://www.google.com/adsense/support/bin/answer.py?answer=48182&amp;hl=en&amp;sourceid=aso&amp;subid=ww-en-et-storefrontEN_v2_ProgramPoliciesLink&amp;medium=link">Google Program policy</a> and <a href="https://www.google.com/adsense/localized-terms">Terms &amp; Condition</a> before applying. If you site has been approved you have to create an ad campaign to select the size, look and feel of your adslot. A JavaScript code will be sent to you. You need to incorporate that code into the source code of your website to start host ads.</p>
<h3>Types of AdSense:</h3>
<ul>
<li>
<h4>AdSense for content:</h4>
<p>This is the general and mostly used AdSense type. You can place ad box on your web page with this program.</li>
<li>
<h4>AdSense for feeds:</h4>
<p>If you have an atom RSS feeds for your blog that can be advertised through this program.</li>
<li>
<h4>AdSense for Mobile:</h4>
<p>It will show ads if somebody navigates to your site through mobile or PDA devices.</li>
<li>
<h4>AdSense for search:</h4>
<p>A companion to the regular AdSense program, AdSense for search, allows website owners to place Google search boxes on their websites. When a user searches the Internet or the website with the search box, Google shares any advertising revenue it makes from those searches with the website owner.</li>
</ul>
<h3>Optimizing your site to earn maximize revenue:</h3>
<p>The principal of having a good CTR in your site is to attract more people to your ad slot. You can reach this goal in many ways by optimizing ad placement, dimension of ad box, choosing the best color pallets to fit your site etc. We will go through all this optimizing tips now. A good CTR for your website is 5%, below 3% means mediocre and below 2% indicated you that you have to do more with your ad placement and colors.</p>
<ul>
<li>
<h4>Optimizing Placement:</h4>
<p>Optimizing the best placement for your AdSense ad box is very easy. You have to determinate where the people attract most in your website. That may be in a important article in your website or that can be determined by the way a visitor will browse his eyes in your website.</li>
</ul>
<p>Google has produces a heat map based on with ad placement had earned more revenue. The Color had fade from dark orange (Strongest performance) from light yellow (Weakest performance).</p>
<li>Google has produces a heat map based on with ad placement had earned more revenue. The Color had fade from dark orange (Strongest performance) from light yellow (Weakest performance).</li>
<div class="wp-caption aligncenter" style="width: 420px"><a href="http://www.metamags.com/wp-content/woo_uploads/MonetizeGoogle20062010/GoogleHeatmap.png"><img title="Google AdSense Heatmap" src="/wp-content/woo_uploads/MonetizeGoogle20062010/GoogleHeatmap.png" alt="Google AdSense Heatmap" width="410" height="546" /></a><p class="wp-caption-text">Google AdSense Heatmap</p></div>
<p>But if you are maintain a blog then the image below would be the map for the best placement for your ads.</p>
<div class="wp-caption aligncenter" style="width: 360px"><a href="http://www.metamags.com/wp-content/woo_uploads/MonetizeGoogle20062010/GoogleBlogHeatmap.png"><img title="Google AdSense Heatmap for Blogger" src="/wp-content/woo_uploads/MonetizeGoogle20062010/GoogleBlogHeatmap.png" alt="Google AdSense Heatmap for Blogger" width="350" height="263" /></a><p class="wp-caption-text">Google AdSense Heatmap for Blogger</p></div>
<p>The image below is the image for forum ad optimization…</p>
<div class="wp-caption aligncenter" style="width: 222px"><a href="http://www.metamags.com/wp-content/woo_uploads/MonetizeGoogle20062010/GoogleForumHeatmap.png"><img title="Google AdSense Heatmap for Forum" src="/wp-content/woo_uploads/MonetizeGoogle20062010/GoogleForumHeatmap.png" alt="Google AdSense Heatmap for Forum" width="212" height="298" /></a><p class="wp-caption-text">Google AdSense Heatmap for Forum</p></div>
<p>The image below is a reference from EyeTrack III. This image shows how a man browse his eyes on the homepage of a website.</p>
<div class="wp-caption aligncenter" style="width: 424px"><a href="http://www.metamags.com/wp-content/woo_uploads/MonetizeGoogle20062010/EyeTrackIII.png"><img title="Eye Track III" src="/wp-content/woo_uploads/MonetizeGoogle20062010/EyeTrackIII.png" alt="Eye Track III" width="414" height="341" /></a><p class="wp-caption-text">Eye Track III</p></div>
<p>This is a heat map image produces by EyeTrack III.</p>
<div class="wp-caption aligncenter" style="width: 410px"><a href="http://www.metamags.com/wp-content/woo_uploads/MonetizeGoogle20062010/EyeTrackIIIProv.png"><img title="Eye Track III HeatMap" src="/wp-content/woo_uploads/MonetizeGoogle20062010/EyeTrackIIIProv.png" alt="Eye Track III HeatMap" width="400" height="342" /></a><p class="wp-caption-text">Eye Track III HeatMap</p></div>
<p>According to Google’s research, if positioned well then a <a href="https://www.google.com/adsense/large-rectangle?sourceid=asos&amp;subid=ww-ww-et-HC_entry&amp;medium=link">336x280px large rectangle</a>, <a href="https://www.google.com/adsense/inline?sourceid=asos&amp;subid=ww-ww-et-HC_entry&amp;medium=link">300x250px medium rectangle</a>, <a href="https://www.google.com/adsense/wide-skyscraper?sourceid=asos&amp;subid=ww-ww-et-HC_entry&amp;medium=link">160x600px Wide Skyscraper</a> medium rectangle will help you to earn most revenue from Google AdSense.</p>
<ul>
<li>
<h4>Optimizing Ad Color Palettes:</h4>
<p>There are three types of color palettes available for optimizing your AdSense AdSlot. They are Blend, Complement, and Contrast.</p>
<ul>
<li>
<h4>Blend:</h4>
<p>This type’s color palettes should designed with the same border and background color with the background where you are placing ads. This types of color palettes should be used where the background color is very light.</li>
<li>
<h4>Complement:</h4>
<p>Use the color already used in your site but should not be same as the background color. You can use this types of palettes both in light and dark background.</li>
<li>
<h4>Contrast:</h4>
<p>Choose a color that strictly against your background. Use it only in dark background.</li>
</ul>
</li>
</ul>
<p>Below is the reference of three types of color palettes from Google.</p>
<div class="wp-caption aligncenter" style="width: 310px"><a href="http://www.metamags.com/wp-content/woo_uploads/MonetizeGoogle20062010/Blend.png"><img title="Blend Color Palette" src="/wp-content/woo_uploads/MonetizeGoogle20062010/Blend.png" alt="Blend Color Palette" width="300" height="300" /></a><p class="wp-caption-text">Blend Color Palette</p></div>
<div class="wp-caption aligncenter" style="width: 310px"><a href="http://www.metamags.com/wp-content/woo_uploads/MonetizeGoogle20062010/Complement.png"><img title="Complement Color Palette" src="/wp-content/woo_uploads/MonetizeGoogle20062010/Complement.png" alt="Complement Color Palette" width="300" height="300" /></a><p class="wp-caption-text">Complement Color Palette</p></div>
<div class="wp-caption aligncenter" style="width: 310px"><a href="http://www.metamags.com/wp-content/woo_uploads/MonetizeGoogle20062010/Contrast.png"><img title="Contrast Color Palettes" src="/wp-content/woo_uploads/MonetizeGoogle20062010/Contrast.png" alt="Contrast Color Palettes" width="300" height="300" /></a><p class="wp-caption-text">Contrast Color Palettes</p></div>
<ul>
<li>Optimizing revenue from ad review center: Go to your AdSense account &gt; AdSense Setup Tab &gt; Ad Review Center. You will find ‘Category Filters’ there. This will help you to block specific category of ads from showing on your website. Just block the categories which are against your website. That will help you to earn more revenue from AdSense.</li>
</ul>
<div class="wp-caption aligncenter" style="width: 440px"><a href="http://www.metamags.com/wp-content/woo_uploads/MonetizeGoogle20062010/AdReviewCenter.PNG"><img title="Google AdSense Category Filtering" src="/wp-content/woo_uploads/MonetizeGoogle20062010/AdReviewCenter.PNG" alt="Google AdSense Category Filtering" width="430" height="224" /></a><p class="wp-caption-text">Google AdSense Category Filtering</p></div>
<h3>Video Screenplay:</h3>
<p>Still under confusion? Then watch this video below. This is a official video from Google demonstrating the optimiztion of AdSense through a screenplay. I am sure that this video will help you as a beginner level AdSense optimization. So Happy earning!<br />
<span class="youtube">
<object type="application/x-shockwave-flash" width="480" height="385" data="http://www.youtube-nocookie.com/v/WpPX4A78jqg&amp;color1=d6d6d6&amp;color2=f0f0f0&amp;border=0&amp;fs=1&amp;hl=en&amp;autoplay=0&amp;showinfo=0&amp;iv_load_policy=3&amp;showsearch=0?rel=0">
<param name="movie" value="http://www.youtube-nocookie.com/v/WpPX4A78jqg&amp;color1=d6d6d6&amp;color2=f0f0f0&amp;border=0&amp;fs=1&amp;hl=en&amp;autoplay=0&amp;showinfo=0&amp;iv_load_policy=3&amp;showsearch=0?rel=0" />
<param name="allowFullScreen" value="true" />
<param name="wmode" value="transparent" />
</object>
</span><p><a href="http://www.youtube.com/watch?v=WpPX4A78jqg"><img src="http://img.youtube.com/vi/WpPX4A78jqg/default.jpg" width="130" height="97" border=0></a></p><p><a href="http://www.youtube.com/watch?v=WpPX4A78jqg">www.youtube.com/watch?v=WpPX4A78jqg</a></p></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Monetize+Your+Site+with+Google+Advertising+Programs+-+http://cli.gs/rWt6s+%28Via+%40metamags%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.metamags.com/monetize-your-site-with-google-advertising-programs&amp;title=Monetize+Your+Site+with+Google+Advertising+Programs" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.metamags.com/monetize-your-site-with-google-advertising-programs&amp;title=Monetize+Your+Site+with+Google+Advertising+Programs" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.metamags.com/monetize-your-site-with-google-advertising-programs&amp;t=Monetize+Your+Site+with+Google+Advertising+Programs" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-designbump">
			<a href="http://designbump.com/submit?url=http://www.metamags.com/monetize-your-site-with-google-advertising-programs&amp;title=Monetize+Your+Site+with+Google+Advertising+Programs&amp;body=Overview%3A%0D%0AIf%20you%20are%20a%20googler%20then%20you%20must%20know%20about%20the%20Google%20advertising%20program.%20Google%20has%20two%20types%20of%20advertising%20program%20AdWords%20and%20AdSense%20accordingly.%20With%20this%20article%20we%20will%20go%20through%20the%20overview%20of%20this%20advertising%20program%20explain%20some%20of%20the%20advertising%20term%20like%20Web%20Traffic%2C%20C" rel="nofollow" class="external" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="shr-webblend">
			<a href="http://thewebblend.com/submit?url=http://www.metamags.com/monetize-your-site-with-google-advertising-programs&amp;title=Monetize+Your+Site+with+Google+Advertising+Programs&amp;body=Overview%3A%0D%0AIf%20you%20are%20a%20googler%20then%20you%20must%20know%20about%20the%20Google%20advertising%20program.%20Google%20has%20two%20types%20of%20advertising%20program%20AdWords%20and%20AdSense%20accordingly.%20With%20this%20article%20we%20will%20go%20through%20the%20overview%20of%20this%20advertising%20program%20explain%20some%20of%20the%20advertising%20term%20like%20Web%20Traffic%2C%20C" rel="nofollow" class="external" title="Blend this!">Blend this!</a>
		</li>
		<li class="shr-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.metamags.com/monetize-your-site-with-google-advertising-programs&amp;title=Monetize+Your+Site+with+Google+Advertising+Programs" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.metamags.com/monetize-your-site-with-google-advertising-programs&amp;title=Monetize+Your+Site+with+Google+Advertising+Programs&amp;summary=Overview%3A%0D%0AIf%20you%20are%20a%20googler%20then%20you%20must%20know%20about%20the%20Google%20advertising%20program.%20Google%20has%20two%20types%20of%20advertising%20program%20AdWords%20and%20AdSense%20accordingly.%20With%20this%20article%20we%20will%20go%20through%20the%20overview%20of%20this%20advertising%20program%20explain%20some%20of%20the%20advertising%20term%20like%20Web%20Traffic%2C%20C&amp;source=metamags.com Technology Blog | Push The Limits of Technology" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.metamags.com/monetize-your-site-with-google-advertising-programs&amp;title=Monetize+Your+Site+with+Google+Advertising+Programs" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Monetize+Your+Site+with+Google+Advertising+Programs&amp;du=http://www.metamags.com/monetize-your-site-with-google-advertising-programs&amp;cn=Overview%3A%0D%0AIf%20you%20are%20a%20googler%20then%20you%20must%20know%20about%20the%20Google%20advertising%20program.%20Google%20has%20two%20types%20of%20advertising%20program%20AdWords%20and%20AdSense%20accordingly.%20With%20this%20article%20we%20will%20go%20through%20the%20overview%20of%20this%20advertising%20program%20explain%20some%20of%20the%20advertising%20term%20like%20Web%20Traffic%2C%20C" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.metamags.com/monetize-your-site-with-google-advertising-programs&amp;title=Monetize+Your+Site+with+Google+Advertising+Programs" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.metamags.com/monetize-your-site-with-google-advertising-programs&amp;title=Monetize+Your+Site+with+Google+Advertising+Programs&amp;desc=Overview%3A%0D%0AIf%20you%20are%20a%20googler%20then%20you%20must%20know%20about%20the%20Google%20advertising%20program.%20Google%20has%20two%20types%20of%20advertising%20program%20AdWords%20and%20AdSense%20accordingly.%20With%20this%20article%20we%20will%20go%20through%20the%20overview%20of%20this%20advertising%20program%20explain%20some%20of%20the%20advertising%20term%20like%20Web%20Traffic%2C%20C" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.metamags.com/monetize-your-site-with-google-advertising-programs&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.metamags.com/monetize-your-site-with-google-advertising-programs&amp;n=Monetize+Your+Site+with+Google+Advertising+Programs&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.metamags.com/monetize-your-site-with-google-advertising-programs/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://www.metamags.com/monetize-your-site-with-google-advertising-programs" rel="nofollow" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.metamags.com/monetize-your-site-with-google-advertising-programs" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.metamags.com/monetize-your-site-with-google-advertising-programs&amp;title=Monetize+Your+Site+with+Google+Advertising+Programs" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.metamags.com/monetize-your-site-with-google-advertising-programs&amp;bm_description=Monetize+Your+Site+with+Google+Advertising+Programs&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.metamags.com/monetize-your-site-with-google-advertising-programs/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Use the Right Typography in Your Design and Documents</title>
		<link>http://www.metamags.com/use-the-right-typography-in-your-design-and-documents?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=use-the-right-typography-in-your-design-and-documents</link>
		<comments>http://www.metamags.com/use-the-right-typography-in-your-design-and-documents#comments</comments>
		<pubDate>Wed, 03 Mar 2010 18:01:12 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[document]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[typeface]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://www.metamags.com/?p=163</guid>
		<description><![CDATA[When you make conversation with somebody, your body languages, and words plays a big role in your mood and makes the conversation richer. Like that the typeface you used in your document irrespective in printing media or online publishing, construct the mood of reader. So when you are writing your next document doesn’t ignore this [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.metamags.com%2Fuse-the-right-typography-in-your-design-and-documents"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.metamags.com%2Fuse-the-right-typography-in-your-design-and-documents&amp;source=metamags&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<div class="wp-caption aligncenter" style="width: 550px"><a href="http://www.metamags.com/wp-content/woo_uploads/user_right_typography.png"><img title="Use right typeface for your documents" src="/wp-content/woo_uploads/user_right_typography.png" alt="Use right typeface for your documents" width="540" height="210" /></a><p class="wp-caption-text">Use right typeface for your documents</p></div>
<p>When you make conversation with somebody, your body languages, and words plays a big role in your mood and makes the conversation richer. Like that the typeface you used in your document irrespective in printing media or online publishing, construct the mood of reader. So when you are writing your next document doesn’t ignore this stuff. Only choosing the right font is not the only way to construct the mood of reader. Size, color, underline, style have a strong impact on reader. Now go through this article to know how to use the right typography for your document.</p>
<p><strong><span style="text-decoration: underline;">Understanding the difference: Typeface and Fonts</span></strong></p>
<p>I have experienced that most of the people take this two term typeface and typography as same. But technically they don’t carry the same meaning. Font is just a font-family of a character. i.e. Verdana or Arial is determined as typography whereas typeface is the font-family is the details about font-family. i.e.  “Verdana, Italic, 15pt” is constitute as font-face. So a font face describes the state of your font. Most of the people choose the font from two major font-families namely Serif, Sans-serif. You can use Decorative font in your design.</p>
<p><strong><span style="text-decoration: underline;">Understanding the difference: Serif &amp; Sans-Serif fonts</span></strong></p>
<p>Serif fonts have a short stroke at the start and end of every letter. These strokes are called serif. Serif fonts are broadly used in legal documents, letter, newsletter and all other printing documents as it has the better readability.</p>
<p>‘Sans’ is a French word that means ’without’. That means sans-serif font don’t have the decorative strokes at the start and end of a letter. This font-family has a very smooth and eye catching font that mostly used in web (online) publishing and in the header of an article.</p>
<p style="text-align: center;">
<div class="wp-caption aligncenter" style="width: 550px"><a href="http://www.metamags.com/wp-content/woo_uploads/serif-fonts.png"><img title="Serif Fonts" src="/wp-content/woo_uploads/serif-fonts.png" alt="Serif Fonts" width="540" height="210" /></a><p class="wp-caption-text">Serif fonts have a short decorative strokes at the begining and end of every letter</p></div>
<div class="wp-caption aligncenter" style="width: 550px"><a href="http://www.metamags.com/wp-content/woo_uploads/Sans-Serif-Fonts.png"><img title="Sans-Serif Fonts" src="/wp-content/woo_uploads/Sans-Serif-Fonts.png" alt="Sans-Serif Fonts" width="540" height="210" /></a><p class="wp-caption-text">Decorative strokes are missing in Sans-Serif fonts</p></div>
<p><strong><span style="text-decoration: underline;">Some Popular fonts of Serif families listed below:</span></strong></p>
<ul>
<li><strong><span style="text-decoration: underline;">Book Antiqua:</span></strong> Popularly used in the body text of multi-page report as it has a very great readability even in small font size.<strong> </strong></li>
<li><strong><span style="text-decoration: underline;">Courier New:</span></strong> This font falls under moonscape font-family. It’s widely used in technological writing, scripting, examples and illustrations.<strong> </strong></li>
<li><strong><span style="text-decoration: underline;">Garamond:</span></strong> This font is mostly used in email communication, notice and circulars.<strong> </strong></li>
<li><strong><span style="text-decoration: underline;">Times:</span></strong> Times and Times New Roman has a little kerning difference. The character come closer in the Times font.<strong> </strong></li>
<li><strong><span style="text-decoration: underline;">Times New Roman:</span></strong> This was the default font for the old Microsoft products. Since the printing media has offered a higher resolution print, this font doesn’t appear hazy or blur.<strong> </strong></li>
</ul>
<p><strong><span style="text-decoration: underline;">Some Popular of Sans-serif families listed below:</span></strong></p>
<ul>
<li><strong><span style="text-decoration: underline;">Arial:</span></strong> It’s the most classic Sans-serif font. Used in most of web design and this is the default font for most of the browsers. <strong> </strong></li>
<li><strong><span style="text-decoration: underline;">Arial Black:</span> </strong>You can say it’s the bolder version of Arial font. It’s mostly used in web heading but not in body text.<strong> </strong></li>
<li><strong><span style="text-decoration: underline;">Calibri:</span></strong> This is the default font for Windows 7, Windows Vista, Office 2007 and 2010. This is a very smooth font can be read online. But it need some negative kerning for better readability.<strong> </strong></li>
<li><strong><span style="text-decoration: underline;">Helvetica: </span></strong>Very Clear, Ideal for numbers. It’s an alternative to Arial.<strong> </strong></li>
<li><strong><span style="text-decoration: underline;">Microsoft Sans Serif:</span></strong> Excellent for body text of a web page.<strong> </strong></li>
<li><strong><span style="text-decoration: underline;">Verdana:</span></strong> Mostly Used in email communication. It’s a great font that can be used anywhere irrespective body or heading text of a web page.</li>
</ul>
<p><strong><span style="text-decoration: underline;">Font Viewer:</span></strong></p>
<p><strong> </strong></p>
<div class="wp-caption aligncenter" style="width: 490px"><strong><strong><span style="text-decoration: underline;"><a href="http://www.metamags.com/wp-content/woo_uploads/fonntviewer_net.png"><img class=" " title="fontviewer screenshot" src="/wp-content/woo_uploads/fonntviewer_net.png" alt="fontviewer screenshot" width="480" height="338" /></a></span></strong></strong><p class="wp-caption-text">fontviewer screenshot</p></div>
<p><strong> </strong></p>
<p>To choose the right font you need to type some text and check that with every font available in your system. But this process is very a time wasting. But you can do the same thing with font viewing software. Font viewing software makes it easy to choose the right font for your occasion. Now we are taking a look on the FONT VIEWER software. You can download this software from <a href="http://www.fontviewer.net/">http://www.fontviewer.net</a> . And in the ‘text to display box’ type the text that you want to check with every available font. Change the foreground, background color and the size to exactly see how the text will look in your document. Click on the go button and you will see the text is displaying in a table with every available font in your system with Bold, Italic, Bold &amp; Italic view.</p>
<p><strong><span style="text-decoration: underline;">Tips for using the right font:</span></strong></p>
<ul>
<li>Don’t use more than three fonts in your document.</li>
<li>Don’t use larger than 18pt size in heading.</li>
<li>Use smaller than 12pt size for body text.</li>
<li>Use Sans-Serif fonts for body text and Serif fonts for Heading.</li>
<li>Try To use contrast color in heading to attract reader.</li>
<li>Use Italic style for some word that shouldn’t be overlooked, Use Bold for mediocre important words and use bold and words for high sensitive words in your document.</li>
<li>Adjust the kerning option for better readability.</li>
</ul>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Use+the+Right+Typography+in+Your+Design+and+Documents+-+http://cli.gs/apUth+%28Via+%40metamags%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.metamags.com/use-the-right-typography-in-your-design-and-documents&amp;title=Use+the+Right+Typography+in+Your+Design+and+Documents" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.metamags.com/use-the-right-typography-in-your-design-and-documents&amp;title=Use+the+Right+Typography+in+Your+Design+and+Documents" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.metamags.com/use-the-right-typography-in-your-design-and-documents&amp;t=Use+the+Right+Typography+in+Your+Design+and+Documents" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-designbump">
			<a href="http://designbump.com/submit?url=http://www.metamags.com/use-the-right-typography-in-your-design-and-documents&amp;title=Use+the+Right+Typography+in+Your+Design+and+Documents&amp;body=%0D%0A%0D%0AWhen%20you%20make%20conversation%20with%20somebody%2C%20your%20body%20languages%2C%20and%20words%20plays%20a%20big%20role%20in%20your%20mood%20and%20makes%20the%20conversation%20richer.%20Like%20that%20the%20typeface%20you%20used%20in%20your%20document%20irrespective%20in%20printing%20media%20or%20online%20publishing%2C%20construct%20the%20mood%20of%20reader.%20So%20when%20you%20are%20writing%20yo" rel="nofollow" class="external" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="shr-webblend">
			<a href="http://thewebblend.com/submit?url=http://www.metamags.com/use-the-right-typography-in-your-design-and-documents&amp;title=Use+the+Right+Typography+in+Your+Design+and+Documents&amp;body=%0D%0A%0D%0AWhen%20you%20make%20conversation%20with%20somebody%2C%20your%20body%20languages%2C%20and%20words%20plays%20a%20big%20role%20in%20your%20mood%20and%20makes%20the%20conversation%20richer.%20Like%20that%20the%20typeface%20you%20used%20in%20your%20document%20irrespective%20in%20printing%20media%20or%20online%20publishing%2C%20construct%20the%20mood%20of%20reader.%20So%20when%20you%20are%20writing%20yo" rel="nofollow" class="external" title="Blend this!">Blend this!</a>
		</li>
		<li class="shr-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.metamags.com/use-the-right-typography-in-your-design-and-documents&amp;title=Use+the+Right+Typography+in+Your+Design+and+Documents" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.metamags.com/use-the-right-typography-in-your-design-and-documents&amp;title=Use+the+Right+Typography+in+Your+Design+and+Documents&amp;summary=%0D%0A%0D%0AWhen%20you%20make%20conversation%20with%20somebody%2C%20your%20body%20languages%2C%20and%20words%20plays%20a%20big%20role%20in%20your%20mood%20and%20makes%20the%20conversation%20richer.%20Like%20that%20the%20typeface%20you%20used%20in%20your%20document%20irrespective%20in%20printing%20media%20or%20online%20publishing%2C%20construct%20the%20mood%20of%20reader.%20So%20when%20you%20are%20writing%20yo&amp;source=metamags.com Technology Blog | Push The Limits of Technology" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.metamags.com/use-the-right-typography-in-your-design-and-documents&amp;title=Use+the+Right+Typography+in+Your+Design+and+Documents" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Use+the+Right+Typography+in+Your+Design+and+Documents&amp;du=http://www.metamags.com/use-the-right-typography-in-your-design-and-documents&amp;cn=%0D%0A%0D%0AWhen%20you%20make%20conversation%20with%20somebody%2C%20your%20body%20languages%2C%20and%20words%20plays%20a%20big%20role%20in%20your%20mood%20and%20makes%20the%20conversation%20richer.%20Like%20that%20the%20typeface%20you%20used%20in%20your%20document%20irrespective%20in%20printing%20media%20or%20online%20publishing%2C%20construct%20the%20mood%20of%20reader.%20So%20when%20you%20are%20writing%20yo" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.metamags.com/use-the-right-typography-in-your-design-and-documents&amp;title=Use+the+Right+Typography+in+Your+Design+and+Documents" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.metamags.com/use-the-right-typography-in-your-design-and-documents&amp;title=Use+the+Right+Typography+in+Your+Design+and+Documents&amp;desc=%0D%0A%0D%0AWhen%20you%20make%20conversation%20with%20somebody%2C%20your%20body%20languages%2C%20and%20words%20plays%20a%20big%20role%20in%20your%20mood%20and%20makes%20the%20conversation%20richer.%20Like%20that%20the%20typeface%20you%20used%20in%20your%20document%20irrespective%20in%20printing%20media%20or%20online%20publishing%2C%20construct%20the%20mood%20of%20reader.%20So%20when%20you%20are%20writing%20yo" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.metamags.com/use-the-right-typography-in-your-design-and-documents&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.metamags.com/use-the-right-typography-in-your-design-and-documents&amp;n=Use+the+Right+Typography+in+Your+Design+and+Documents&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.metamags.com/use-the-right-typography-in-your-design-and-documents/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://www.metamags.com/use-the-right-typography-in-your-design-and-documents" rel="nofollow" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.metamags.com/use-the-right-typography-in-your-design-and-documents" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.metamags.com/use-the-right-typography-in-your-design-and-documents&amp;title=Use+the+Right+Typography+in+Your+Design+and+Documents" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.metamags.com/use-the-right-typography-in-your-design-and-documents&amp;bm_description=Use+the+Right+Typography+in+Your+Design+and+Documents&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.metamags.com/use-the-right-typography-in-your-design-and-documents/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>create your own free blog in jiffy with vox.com</title>
		<link>http://www.metamags.com/create-your-own-free-blog-in-jiffy-with-vox-com?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=create-your-own-free-blog-in-jiffy-with-vox-com</link>
		<comments>http://www.metamags.com/create-your-own-free-blog-in-jiffy-with-vox-com#comments</comments>
		<pubDate>Thu, 21 Jan 2010 06:41:19 +0000</pubDate>
		<dc:creator>Editor</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[vox]]></category>

		<guid isPermaLink="false">http://metamag.000space.com/?p=14</guid>
		<description><![CDATA[Trends for creating blogs are growing rapidly. Mostly user prefers Word press and other Content Management System (CMS) for their blog hosting. Installing any CMS in a server needs a minimum knowledge on hosting, server and scripting. Some people who doesn’t want to invest any buck for blog or doesn’t know anything about hosting, vox.com [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.metamags.com%2Fcreate-your-own-free-blog-in-jiffy-with-vox-com"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.metamags.com%2Fcreate-your-own-free-blog-in-jiffy-with-vox-com&amp;source=metamags&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<div class="wp-caption aligncenter" style="width: 541px"><a href="http://vox.com"><img title="create your own free blog in jiffy with vox.com" src="/wp-content/woo_uploads/vox.png" alt="create your own free blog in jiffy with vox.com" width="531" height="206" /></a><p class="wp-caption-text">create your own free blog in jiffy with vox.com</p></div>
<p>Trends for creating blogs are growing rapidly. Mostly user prefers Word press and other Content Management System (CMS) for their blog hosting. Installing any CMS in a server needs a minimum knowledge on hosting, server and scripting. Some people who doesn’t want to invest any buck for blog or doesn’t know anything about hosting, vox.com is for them. This week we have reviewed <a href="http://vox.com/">vox.com</a>. You can create blog easily, free of cost and with no coding experience with this site. Your blog will be created as the sub-domain of vox.com (e.g. your-blog-name.vox.com). So let’s go through how to create a blog with vox.com in jiffy!</p>
<p><strong><span style="color: #008000;">Step 1: Setup Your Blog</span></strong></p>
<ol>
<li>Open up your browser. Go to <a href="http://vox.com/">http://vox.com</a> .</li>
<li>Click on ‘Join Vox’ on top and you will be redirected to the registration page.</li>
</ol>
<p><span style="color: #3366ff;">Tip:</span> <span style="color: #339966;">You can also click on ‘Take a Tour’ for a small tutorial on using the site and at the same time you will be aware of all the features of the site.</span></p>
<div class="wp-caption aligncenter" style="width: 481px"><a href="http://www.metamags.com/wp-content/woo_uploads/a.png"><img title="Joinig Vox" src="/wp-content/woo_uploads/a.png" alt="Joinig Vox" width="471" height="366" /></a><p class="wp-caption-text">Joining Vox</p></div>
<ol>
<li>Fill up your original details and a valid email address.</li>
<li>Enter the text ‘captcha’ and click ‘Sign Up’.</li>
</ol>
<p><span style="color: #339966;">Info:<span style="color: #33cccc;"> </span></span><span style="color: #3366ff;">It is free to create your account. Unfortunately there have no option to host your vox blog with top level domain.</span></p>
<div class="wp-caption aligncenter" style="width: 481px"><a href="http://www.metamags.com/wp-content/woo_uploads/b.png"><img title="Registering at vox" src="/wp-content/woo_uploads/b.png" alt="Registering at vox" width="471" height="379" /></a><p class="wp-caption-text">Registering at vox</p></div>
<ol>
<li>You will get a validation mail containing a confirmation link.</li>
<li>Either go through the link or copy the confirmation number and paste in vox account verification page and click ‘Confirm Account’.</li>
<li>Fill your profile details (optional) if you like.</li>
</ol>
<div class="wp-caption aligncenter" style="width: 481px"><a href="http://www.metamags.com/wp-content/woo_uploads/c.png"><img title="Confirm account in vox" src="/wp-content/woo_uploads/c.png" alt="Confirm account in vox" width="471" height="407" /></a><p class="wp-caption-text">Confirm account in vox</p></div>
<p><strong><span style="color: #008000;">Step 2: Creating Your Post</span></strong></p>
<ol>
<li>click on the ‘create’ on the top from the control panel.</li>
</ol>
<div class="wp-caption aligncenter" style="width: 481px"><a href="http://www.metamags.com/wp-content/woo_uploads/d.png"><img title="Strart Blogging" src="/wp-content/woo_uploads/d.png" alt="Strart Blogging" width="471" height="195" /></a><p class="wp-caption-text">Start Blogging</p></div>
<ol>
<li>You will get a text editor on the screen.</li>
<li>Give a relevant title that would attract your post viewer.</li>
<li>Enter some relevant keyword. Your blog will appear in the search result when anybody searches those keywords.</li>
</ol>
<div class="wp-caption aligncenter" style="width: 481px"><a href="http://www.metamags.com/wp-content/woo_uploads/e.png"><img title="Editing a Blog" src="/wp-content/woo_uploads/e.png" alt="Editing a Blog" width="471" height="460" /></a><p class="wp-caption-text">Editing a Blog</p></div>
<ol>
<li>Click on ‘Photos’ if you like to insert image in your post.</li>
<li>This site supports photo uploading from your computer, Flickr, iStockphoto, photobucket and your Vox library.</li>
<li>Click on ‘Choose’ and target your image path.</li>
<li>Add some relevant keyword for your photo.</li>
<li>You can change the permission of viewing your photo from bottom line.</li>
<li>Click on ‘ok’ if you’re done.</li>
</ol>
<div class="wp-caption aligncenter" style="width: 481px"><a href="http://www.metamags.com/wp-content/woo_uploads/f.png"><img title="Uploading photo in vox" src="/wp-content/woo_uploads/f.png" alt="Uploading photo in vox" width="471" height="320" /></a><p class="wp-caption-text">Uploading photo in vox</p></div>
<ol>
<li>You can change the size and position of your image which you have uploaded.</li>
</ol>
<div class="wp-caption aligncenter" style="width: 481px"><a href="http://www.metamags.com/wp-content/woo_uploads/g.png"><img title="Resizing an image" src="/wp-content/woo_uploads/g.png" alt="Resizing an image" width="471" height="437" /></a><p class="wp-caption-text">Resizing an image</p></div>
<ol>
<li>You can add music in the same way you have insert the image.</li>
<li>Vox support MP3, MP4, M4A, AMR, Ogg, Vorbis and WAV music format.</li>
<li>You can upload your music from your computer, Vox library, Amazon.</li>
</ol>
<div class="wp-caption aligncenter" style="width: 481px"><a href="http://www.metamags.com/wp-content/woo_uploads/h.png"><img title="Uploading Media" src="/wp-content/woo_uploads/h.png" alt="Uploading Media" width="471" height="183" /></a><p class="wp-caption-text">Uploading Media</p></div>
<ol>
<li>Click on ‘save’ when you think your page is done.</li>
<li>Once you have saved your post, you can send notification about it to your friends or bookmark it to social bookmarking sites.</li>
</ol>
<div class="wp-caption aligncenter" style="width: 481px"><a href="http://www.metamags.com/wp-content/woo_uploads/i.png"><img title="Sharing your blog" src="/wp-content/woo_uploads/i.png" alt="Sharing your blog" width="471" height="426" /></a><p class="wp-caption-text">Sharing your blog</p></div>
<p><strong><span style="color: #008000;">Step 3: Styling Your Blog with Themes</span></strong></p>
<ol>
<li>Click on ‘you’ from the top menu and select design from the sub menu.</li>
<li>Select your layout at first.</li>
<li>Point your mouse over the theme and click ‘apply to blog’.</li>
<li>You can change the theme category from the sidebar to fit your blog.</li>
</ol>
<p><strong><span style="color: #008000;">Here is what you get at last</span></strong></p>
<p><strong> </strong></p>
<div class="wp-caption aligncenter" style="width: 481px"><a href="http://www.metamags.com/wp-content/woo_uploads/j.png"><img title="Final Image" src="/wp-content/woo_uploads/j.png" alt="Final Image" width="471" height="321" /></a><p class="wp-caption-text">Final Image</p></div>
<p><strong> </strong><strong> </strong></p>
<p>Hope you have enjoyed this tutorial. So create your first Vox blog as soon as possible. <img src='http://www.metamags.com/wp-content/plugins/smilies-themer/Silk/emoticon_wink.png' alt=';-)' class='wp-smiley' /> </p>
<p>© <a title="Metamags Technology Blog" href="http://www.metamags.com">metamags.com</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=create+your+own+free+blog+in+jiffy+with+vox.com+-+http://cli.gs/Q8NRt+%28Via+%40metamags%29&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.metamags.com/create-your-own-free-blog-in-jiffy-with-vox-com&amp;title=create+your+own+free+blog+in+jiffy+with+vox.com" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.metamags.com/create-your-own-free-blog-in-jiffy-with-vox-com&amp;title=create+your+own+free+blog+in+jiffy+with+vox.com" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.metamags.com/create-your-own-free-blog-in-jiffy-with-vox-com&amp;t=create+your+own+free+blog+in+jiffy+with+vox.com" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-designbump">
			<a href="http://designbump.com/submit?url=http://www.metamags.com/create-your-own-free-blog-in-jiffy-with-vox-com&amp;title=create+your+own+free+blog+in+jiffy+with+vox.com&amp;body=%0D%0A%0D%0ATrends%20for%20creating%20blogs%20are%20growing%20rapidly.%20Mostly%20user%20prefers%20Word%20press%20and%20other%20Content%20Management%20System%20%28CMS%29%20for%20their%20blog%20hosting.%20Installing%20any%20CMS%20in%20a%20server%20needs%20a%20minimum%20knowledge%20on%20hosting%2C%20server%20and%20scripting.%20Some%20people%20who%20doesn%E2%80%99t%20want%20to%20invest%20any%20buck%20for%20blog%20or" rel="nofollow" class="external" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="shr-webblend">
			<a href="http://thewebblend.com/submit?url=http://www.metamags.com/create-your-own-free-blog-in-jiffy-with-vox-com&amp;title=create+your+own+free+blog+in+jiffy+with+vox.com&amp;body=%0D%0A%0D%0ATrends%20for%20creating%20blogs%20are%20growing%20rapidly.%20Mostly%20user%20prefers%20Word%20press%20and%20other%20Content%20Management%20System%20%28CMS%29%20for%20their%20blog%20hosting.%20Installing%20any%20CMS%20in%20a%20server%20needs%20a%20minimum%20knowledge%20on%20hosting%2C%20server%20and%20scripting.%20Some%20people%20who%20doesn%E2%80%99t%20want%20to%20invest%20any%20buck%20for%20blog%20or" rel="nofollow" class="external" title="Blend this!">Blend this!</a>
		</li>
		<li class="shr-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.metamags.com/create-your-own-free-blog-in-jiffy-with-vox-com&amp;title=create+your+own+free+blog+in+jiffy+with+vox.com" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.metamags.com/create-your-own-free-blog-in-jiffy-with-vox-com&amp;title=create+your+own+free+blog+in+jiffy+with+vox.com&amp;summary=%0D%0A%0D%0ATrends%20for%20creating%20blogs%20are%20growing%20rapidly.%20Mostly%20user%20prefers%20Word%20press%20and%20other%20Content%20Management%20System%20%28CMS%29%20for%20their%20blog%20hosting.%20Installing%20any%20CMS%20in%20a%20server%20needs%20a%20minimum%20knowledge%20on%20hosting%2C%20server%20and%20scripting.%20Some%20people%20who%20doesn%E2%80%99t%20want%20to%20invest%20any%20buck%20for%20blog%20or&amp;source=metamags.com Technology Blog | Push The Limits of Technology" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.metamags.com/create-your-own-free-blog-in-jiffy-with-vox-com&amp;title=create+your+own+free+blog+in+jiffy+with+vox.com" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=create+your+own+free+blog+in+jiffy+with+vox.com&amp;du=http://www.metamags.com/create-your-own-free-blog-in-jiffy-with-vox-com&amp;cn=%0D%0A%0D%0ATrends%20for%20creating%20blogs%20are%20growing%20rapidly.%20Mostly%20user%20prefers%20Word%20press%20and%20other%20Content%20Management%20System%20%28CMS%29%20for%20their%20blog%20hosting.%20Installing%20any%20CMS%20in%20a%20server%20needs%20a%20minimum%20knowledge%20on%20hosting%2C%20server%20and%20scripting.%20Some%20people%20who%20doesn%E2%80%99t%20want%20to%20invest%20any%20buck%20for%20blog%20or" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.metamags.com/create-your-own-free-blog-in-jiffy-with-vox-com&amp;title=create+your+own+free+blog+in+jiffy+with+vox.com" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.metamags.com/create-your-own-free-blog-in-jiffy-with-vox-com&amp;title=create+your+own+free+blog+in+jiffy+with+vox.com&amp;desc=%0D%0A%0D%0ATrends%20for%20creating%20blogs%20are%20growing%20rapidly.%20Mostly%20user%20prefers%20Word%20press%20and%20other%20Content%20Management%20System%20%28CMS%29%20for%20their%20blog%20hosting.%20Installing%20any%20CMS%20in%20a%20server%20needs%20a%20minimum%20knowledge%20on%20hosting%2C%20server%20and%20scripting.%20Some%20people%20who%20doesn%E2%80%99t%20want%20to%20invest%20any%20buck%20for%20blog%20or" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.metamags.com/create-your-own-free-blog-in-jiffy-with-vox-com&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.metamags.com/create-your-own-free-blog-in-jiffy-with-vox-com&amp;n=create+your+own+free+blog+in+jiffy+with+vox.com&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.metamags.com/create-your-own-free-blog-in-jiffy-with-vox-com/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://www.metamags.com/create-your-own-free-blog-in-jiffy-with-vox-com" rel="nofollow" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.metamags.com/create-your-own-free-blog-in-jiffy-with-vox-com" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.metamags.com/create-your-own-free-blog-in-jiffy-with-vox-com&amp;title=create+your+own+free+blog+in+jiffy+with+vox.com" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.metamags.com/create-your-own-free-blog-in-jiffy-with-vox-com&amp;bm_description=create+your+own+free+blog+in+jiffy+with+vox.com&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.metamags.com/create-your-own-free-blog-in-jiffy-with-vox-com/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>
