<?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>Pagalz.com - Blog &#187; Web Apps</title>
	<atom:link href="http://www.pagalz.com/blog/category/web-apps/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pagalz.com/blog</link>
	<description>At pagalz.com blog get the most happening things all around the world under one roof. Things which will make you say pagalz(madz)</description>
	<lastBuildDate>Wed, 30 Mar 2011 17:48:07 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>13 Useful Code Snippets for WordPress Development</title>
		<link>http://www.pagalz.com/blog/2010/04/13-useful-code-snippets-for-wordpress-development/</link>
		<comments>http://www.pagalz.com/blog/2010/04/13-useful-code-snippets-for-wordpress-development/#comments</comments>
		<pubDate>Sat, 17 Apr 2010 19:15:49 +0000</pubDate>
		<dc:creator>Durgesh</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Web Apps]]></category>
		<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[Useful Code]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.pagalz.com/blog/?p=812</guid>
		<description><![CDATA[WordPress has grown to be commonly defined as the core solution for your blogging needs. It is the most recognized and sought after Content Management System by writers and designers. Consequently, over the past few years there has been a voluble increase in WordPress blogs, this has caused the “need” for useful tips, tricks, and hacks, all made to allow the customizing of your WordPress powered site. Here are 13 code snippets or hacks that will help you extend the capabilities of your WordPress site.]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-825" title="code-snippets-wordpress" src="http://www.pagalz.com/blog/wp-content/uploads/2010/04/code-snippets-wordpress.jpg" alt="code-snippets-wordpress" width="630" height="394" /></p>
<p>Now to structure your comment you’ll need to open your style.css file and place the following code:</p>
<p>WordPress has grown to be commonly defined as the core solution for your blogging needs. It is the most recognized and sought after Content Management System by writers and designers. Consequently, over the past few years there has been a voluble increase in WordPress blogs, this has caused the “need” for useful tips, tricks, and hacks, all made to allow the customizing of your WordPress powered site. Here are 13 code snippets or hacks that will help you extend the capabilities of your WordPress site.</p>
<h3>Customize the Logo of Your WordPress Login Page</h3>
<p>After constantly having to visit your WordPress login page, having to see the same logo and design over and over can be a bit boring. This is where this hack comes in handy. All you have to do is place the following in your <em>functions.php</em> file, and replace the image.</p>
<pre><code>
function my_custom_login_logo() {
    echo '&lt;style type="text/css"&gt;
        h1 a { background-image:url('.get_bloginfo('template_directory').'/images/custom-login-logo.gif) !important; }
    &lt;/style&gt;';
}

add_action('login_head', 'my_custom_login_logo');
</code></pre>
<h3>Detecting Mobile Devices Accessing Your Site</h3>
<p>Mobile web surfing is continuing to evolve on a larger scale. This is why detecting those users who are visiting your WordPress blog through a mobile device and redirecting them to a mobile version of your site is important. In order to achieve this, you first have to get the code from detectmobilebrowsers.mobi and upload it to your theme directory.</p>
<p>Then, all you simply have to do is open your header.php file and place the following at the top of the file. Remember to edit line 5 to where you’d like to redirect mobile users.</p>
<pre><code>
include('mobile_device_detect.php');
$mobile = mobile_device_detect();

if ($mobile==true) {
  header( 'Location: http://your-website.com/?theme=Your_Mobile_Theme' ) ;
}
</code></pre>
<h3>Automatically Resize Images</h3>
<p>If you’re accustomed to displaying large quantities of images on your blog, then you know how tedious it can be to have to always resize your images manually. Now you can use this hack to automatically resize any image you’d like to whatever width and height you choose for a more organized look. To do this, copy the following script and create a folder for it anywhere on your site (i.e. scripts) and name it “timthumb.php“. Now, you can use the following syntax to add an automatically resized image to your blog post:</p>
<pre><code>
&lt;img src="/scripts/timthumb.php?src=/images/whatever.jpg&amp;amp;h=150&amp;amp;w=150&amp;amp;zc=1" alt="" /&gt;
</code></pre>
<h3>Displaying Your Tags in a Dropdown Menu</h3>
<p>Tag clouds are often hard to read, especially for a more busy site. Eliminate this problem by using a dropdown menu to display your tags. You must place the following code in your <em>functions.php</em> file.</p>
<pre><code>
&lt;?php
function dropdown_tag_cloud( $args = '' ) {
	$defaults = array(
		'smallest' =&gt; 8, 'largest' =&gt; 22, 'unit' =&gt; 'pt', 'number' =&gt; 45,
		'format' =&gt; 'flat', 'orderby' =&gt; 'name', 'order' =&gt; 'ASC',
		'exclude' =&gt; '', 'include' =&gt; ''
	);
	$args = wp_parse_args( $args, $defaults );

	$tags = get_tags( array_merge($args, array('orderby' =&gt; 'count', 'order' =&gt; 'DESC')) ); // Always query top tags

	if ( empty($tags) )
		return;

	$return = dropdown_generate_tag_cloud( $tags, $args ); // Here's where those top tags get sorted according to $args
	if ( is_wp_error( $return ) )
		return false;
	else
		echo apply_filters( 'dropdown_tag_cloud', $return, $args );
}

function dropdown_generate_tag_cloud( $tags, $args = '' ) {
	global $wp_rewrite;
	$defaults = array(
		'smallest' =&gt; 8, 'largest' =&gt; 22, 'unit' =&gt; 'pt', 'number' =&gt; 45,
		'format' =&gt; 'flat', 'orderby' =&gt; 'name', 'order' =&gt; 'ASC'
	);
	$args = wp_parse_args( $args, $defaults );
	extract($args);

	if ( !$tags )
		return;
	$counts = $tag_links = array();
	foreach ( (array) $tags as $tag ) {
		$counts[$tag-&gt;name] = $tag-&gt;count;
		$tag_links[$tag-&gt;name] = get_tag_link( $tag-&gt;term_id );
		if ( is_wp_error( $tag_links[$tag-&gt;name] ) )
			return $tag_links[$tag-&gt;name];
		$tag_ids[$tag-&gt;name] = $tag-&gt;term_id;
	}

	$min_count = min($counts);
	$spread = max($counts) - $min_count;
	if ( $spread &lt;= 0 )
		$spread = 1;
	$font_spread = $largest - $smallest;
	if ( $font_spread &lt;= 0 )
		$font_spread = 1;
	$font_step = $font_spread / $spread;

	// SQL cannot save you; this is a second (potentially different) sort on a subset of data.
	if ( 'name' == $orderby )
		uksort($counts, 'strnatcasecmp');
	else
		asort($counts);

	if ( 'DESC' == $order )
		$counts = array_reverse( $counts, true );

	$a = array();

	$rel = ( is_object($wp_rewrite) &amp;&amp; $wp_rewrite-&gt;using_permalinks() ) ? ' rel="tag"' : '';

	foreach ( $counts as $tag =&gt; $count ) {
		$tag_id = $tag_ids[$tag];
		$tag_link = clean_url($tag_links[$tag]);
		$tag = str_replace(' ', '&amp;nbsp;', wp_specialchars( $tag ));
		$a[] = "\t&lt;option value='$tag_link'&gt;$tag ($count)&lt;/option&gt;";
	}

	switch ( $format ) :
	case 'array' :
		$return =&amp; $a;
		break;
	case 'list' :
		$return = "&lt;ul class='wp-tag-cloud'&gt;\n\t&lt;li&gt;";
		$return .= join("&lt;/li&gt;\n\t&lt;li&gt;", $a);
		$return .= "&lt;/li&gt;\n&lt;/ul&gt;\n";
		break;
	default :
		$return = join("\n", $a);
		break;
	endswitch;

	return apply_filters( 'dropdown_generate_tag_cloud', $return, $tags, $args );
}
?&gt;
</code></pre>
<p>Now, to finalize your dropdown menu you have to open the theme file where you want the list to be displayed (i.e. sidebar.php) and insert the following code:</p>
<pre><code>
&lt;select name="tag-dropdown" onchange="document.location.href=this.options[this.selectedIndex].value;"&gt;
	&lt;option value="#"&gt;Liste d'auteurs&lt;/option&gt;
	&lt;?php dropdown_tag_cloud('number=0&amp;order=asc'); ?&gt;
&lt;/select&gt;
</code></pre>
<h3>Custom “Read More” Links for Your Posts</h3>
<p>This is a really useful hack if you want to better define or customize the look of your “Read More” links for posts. The first thing you have to do is to edit your posts and create custom fields. Give them custom_more as a key, and whatever text you want to be displayed as the value. Then you have to edit your index.php file (and also your category.php, search.php, etc) and find a line similar to this:</p>
<pre><code>
the_content("Read more");
</code></pre>
<p>Now just replace it with this code:</p>
<pre><code>
&lt;?php $custommore = get_post_meta($post-&gt;ID, 'custom_more', true); ?&gt;
&lt;?php if (!$custommore) { $custommore = 'Read More &amp;raquo;'; } ?&gt;
&lt;?php the_content($custommore); ?&gt;
</code></pre>
<h3>Scheduling Posts for RSS</h3>
<p>If you regularly publish articles and you care about the quality of your posts then this is a good hack for you. The main purpose of this hack is that it lets you schedule your posts to be viewed in your RSS at a later time, this will allow you enough time to get those last minute fixes and additions in before your post is forever published in your feed. Place the following code in your .htaccess file. In order to change the length of the delay, change the value of the $waitvariable on line 9.</p>
<pre><code>
function publish_later_on_feed($where) {
	global $wpdb;

	if ( is_feed() ) {
		// timestamp in WP-format
		$now = gmdate('Y-m-d H:i:s');

		// value for wait; + device
		$wait = '5'; // integer

		// http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html#function_timestampdiff
		$device = 'MINUTE'; //MINUTE, HOUR, DAY, WEEK, MONTH, YEAR

		// add SQL-sytax to default $where
		$where .= " AND TIMESTAMPDIFF($device, $wpdb-&gt;posts.post_date_gmt, '$now') &gt; $wait ";
	}
	return $where;
}

add_filter('posts_where', 'publish_later_on_feed');
</code></pre>
<h3>Display the Most Commented Posts of 2009</h3>
<p>As the New Year is about to role in, it would be fun and resourceful to let your readers know which of your posts were most popular in the past year. This hack will allow your visitors to view the top 10 most commented/popular posts of 2009. This is a great way to give your posts a second shot at being noticed. In order to do this, you’ll need to place the following code on your sidebar.php file, or wherever else you’d like on your theme:</p>
<pre><code>
&lt;ul&gt;
&lt;?php
$result = $wpdb-&gt;get_results("SELECT comment_count,ID,post_title, post_date FROM $wpdb-&gt;posts WHERE post_date BETWEEN '2009-01-01' AND '2009-12-31' ORDER BY comment_count DESC LIMIT 0 , 10");

foreach ($result as $topten) {
    $postid = $topten-&gt;ID;
    $title = $topten-&gt;post_title;
    $commentcount = $topten-&gt;comment_count;
    if ($commentcount != 0) {
    ?&gt;
         &lt;li&gt;<a href="&lt;?php echo get_permalink($postid); ?&gt;"></a>&lt;/li&gt;
    &lt;?php }
}
?&gt;
&lt;/ul&gt;
</code></pre>
<h3>Allow Only Your IP Address to Access the wp-admin Directory</h3>
<p>If you don’t have multiple writers or contributors to your blog, then realistically speaking only you should be allowed to visit the wp-admin directory. Especially since a great deal of security risks entail the wp-admin directory. All you have to do is enter your static IP adress on line 8. You can add more IPs if needed, by creating a new line. Place the following in your .htaccess file.</p>
<pre><code>
AuthUserFile /dev/null
AuthGroupFile /dev/null
AuthName "Example Access Control"
AuthType Basic
&lt;LIMIT GET&gt;
order deny,allow
deny from all
allow from xx.xx.xx.xx
&lt;/LIMIT&gt;
</code></pre>
<h3>Styling Your WordPress Comments</h3>
<p>When your blog has lots of comments, then it’s a great way to get visitors to interact more by styling the way your comments are displayed. If this is what you’re looking to to, then open your comments.php file and replace your comments loop with the following code:</p>
<pre><code>
&lt;ol id="commentlist"&gt;
&lt;?php foreach ($comments as $comment) : ?&gt;
	&lt;?php // The extra stuff to get commenter's role
	$user_id = $comment-&gt;user_id;
	$role = ( isset( $roles[$user_id] ) ? $roles[$user_id] : '' );
	?&gt;
	&lt;li class="&lt;?php echo $role; ?&gt;"&gt;
	&lt;p&gt;By &lt;?php comment_author_link() ?&gt; - &lt;?php comment_date() ?&gt;&lt;/p&gt;
	&lt;?php comment_text() ?&gt;
	&lt;/li&gt;
&lt;?php endforeach; ?&gt;
&lt;/ol&gt;
</code></pre>
<p>Now to structure your comment you’ll need to open your style.css file and place the following code:</p>
<pre><code>
#commentlist li { border:2px solid white; } /* not logged or subscriber */
#commentlist li.administrator { border:2px solid red } /* blog admin */
#commentlist li.editor { border:2px solid blue } /* editor */
</code></pre>
<h3>Remove Widget Areas on Your Homepage</h3>
<p>If your WordPress powered site is more than just a blog, then you probably want to get rid of the widget areas in your default sidebar and create your own. This hack doesn’t require any editing, just code insertion. Now, all you need to do is add the following to your functions.php file:</p>
<pre><code>
&lt;?php
add_filter( 'sidebars_widgets', 'disable_all_widgets' );

function disable_all_widgets( $sidebars_widgets ) {
	if ( is_home() )
		$sidebars_widgets = array( false );
	return $sidebars_widgets;
}
?&gt;
</code></pre>
<h3>Insert Author Bio for Each Post</h3>
<p>A multi-writer blog usually means everyone who writes or contributes a post will have section that speaks about them. If your blog doesn’t have this feature, then start giving your authors proper credit by inserting the following code into your functions.php file. An author bio will be automatically be displayed at the end of every post.</p>
<pre><code>
function get_author_bio ($content=''){
    global $post;

    $post_author_name=get_the_author_meta("display_name");
    $post_author_description=get_the_author_meta("description");
    $html="&lt;div class='clearfix' id='about_author'&gt;\n";
    $html.="&lt;img width='80' height='80' class='avatar' src='http://www.gravatar.com/avatar.php?gravatar_id=".md5(get_the_author_email()). "&amp;default=".urlencode($GLOBALS['defaultgravatar'])."&amp;size=80&amp;r=PG' alt='PG'/&gt;\n";
    $html.="&lt;div class='author_text'&gt;\n";
    $html.="&lt;h4&gt;Author: <span>".$post_author_name."</span>&lt;/h4&gt;\n";
    $html.= $post_author_description."\n";
    $html.="&lt;/div&gt;\n";
    $html.="&lt;div class='clear'&gt;&lt;/div&gt;\n";
    $content .= $html;
    }

    return $content;
}

add_filter('the_content', 'get_author_bio');
</code></pre>
<h3>Remove Certain Categories From Being Displayed</h3>
<p>Place this code inside The Loop and whichever category you choose, it will not be displayed. This can be an interesting hack for those who only wish to display a certain category to chosen or registered users.</p>
<pre><code>
&lt;?php
if ( have_posts() ) : query_posts($query_string .'&amp;cat=-1,-2'); while ( have_posts() ) : the_post();
?&gt;</code></pre>
<h3>Redirect Your WordPress Feed to FeedBurner</h3>
<p>If you’ve found out how useful FeedBurner really is after you’ve set-up your WordPress site, and you have a few RSS subscribers on your default WordPress feed, then you’ll need to redirect your feed to FeedBurner. Every time a user follows a link to your default feed (i.e. http://www.yourblog.com/feed) they will be redirected to the location of your FeedBurner feed ( i.e. http://feeds.feedburner.com/yourblog). This way, even if a user manages to somehow subscribe to your old RSS feed, they will always be redirected to your new feed. Place the following code in your .htaccess file.</p>
<pre><code>
# temp redirect wordpress content feeds to feedburner
&lt;IfModule mod_rewrite.c&gt;
 RewriteEngine on
 RewriteCond %{HTTP_USER_AGENT} !FeedBurner    [NC]
 RewriteCond %{HTTP_USER_AGENT} !FeedValidator [NC]
 RewriteRule ^feed/?([_0-9a-z-]+)?/?$ http://feeds.feedburner.com/WebDesignLedger [R=302,NC,L]
&lt;/IfModule&gt;
</code></pre>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-spaced sexy-bookmarks-bg-caring">
<ul class="socials">
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.pagalz.com/blog/2010/04/13-useful-code-snippets-for-wordpress-development/&amp;t=13+Useful+Code+Snippets+for+WordPress+Development" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.pagalz.com/blog/2010/04/13-useful-code-snippets-for-wordpress-development/&amp;title=13+Useful+Code+Snippets+for+WordPress+Development" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.pagalz.com/blog/2010/04/13-useful-code-snippets-for-wordpress-development/&amp;title=13+Useful+Code+Snippets+for+WordPress+Development" 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="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.pagalz.com/blog/2010/04/13-useful-code-snippets-for-wordpress-development/&amp;t=13+Useful+Code+Snippets+for+WordPress+Development" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=13+Useful+Code+Snippets+for+WordPress+Development+-+http://bit.ly/cyRkK8+(via+@http://twitter.com/pagalz)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.pagalz.com/blog/2010/04/13-useful-code-snippets-for-wordpress-development/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.pagalz.com/blog/2010/04/13-useful-code-snippets-for-wordpress-development/&amp;title=13+Useful+Code+Snippets+for+WordPress+Development&amp;summary=%0D%0A%0D%0ANow%20to%20structure%20your%20comment%20you%E2%80%99ll%20need%20to%20open%20your%20style.css%20file%20and%20place%20the%20following%20code%3A%0D%0A%0D%0AWordPress%20has%20grown%20to%20be%20commonly%20defined%20as%20the%20core%20solution%20for%20your%20blogging%20needs.%20It%20is%20the%20most%20recognized%20and%20sought%20after%20Content%20Management%20System%20by%20writers%20and%20designers.%20Consequ&amp;source=Pagalz.com - Blog" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.pagalz.com/blog/2010/04/13-useful-code-snippets-for-wordpress-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An Overview of and Introduction to Pods CMS for WordPress</title>
		<link>http://www.pagalz.com/blog/2010/04/an-overview-of-and-introduction-to-pods-cms-for-wordpress/</link>
		<comments>http://www.pagalz.com/blog/2010/04/an-overview-of-and-introduction-to-pods-cms-for-wordpress/#comments</comments>
		<pubDate>Sun, 11 Apr 2010 16:09:16 +0000</pubDate>
		<dc:creator>Durgesh</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Web Apps]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[Pods CMS]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[World's Best]]></category>

		<guid isPermaLink="false">http://www.pagalz.com/blog/?p=803</guid>
		<description><![CDATA[The Pods CMS plugin allows you to create your own content types (pods), and add the fields you need to each pod. Once your content types are set up, you add items to them. This involves filling out a form -- with the input fields being the fields you've created.]]></description>
			<content:encoded><![CDATA[<p>As defined by its creators:</p>
<blockquote><p>Pods is a CMS framework for WordPress. It’s a plugin that sits on top of WordPress, allowing you to add and display your own content types.</p></blockquote>
<p>Calling Pods a ‘plugin’ <strong>is an understatement</strong>. It’s one of those WordPress plugins that does so much more than provide some functionality to work with that makes your life a bit easier or makes WordPress that much more useful. <em>Pods has changed the way I work with WordPress</em>. Pods has allowed me to truly use WordPress as the content management system it was born to be. While a ton of great stuff is happening in the core, Pods is giving us what we need to work with today, and it’s spectacular.</p>
<p>Over the next few months, I plan to divulge all I know about Pods in a series of tutorials and articles meant to act as my own personal user guide for Pods. Pods is a big enough system where you can actually work with it in your own style, and I think I’ve done that to an extent. Pods has an entire level of author features that I don’t particularly make use of simply because I prefer to get my hands even dirtier than Pods requires.</p>
<h2>An introduction to Pods</h2>
<p><img class="alignleft size-full wp-image-807" style="margin: 5px;" title="pods-logo" src="http://www.pagalz.com/blog/wp-content/uploads/2010/04/pods-logo.jpg" alt="pods-logo" width="220" height="80" /></p>
<p>As it is defined, <a href="http://pods.uproot.us/">Pods</a> is a content management plugin for <a href="http://wordpress.org/">WordPress</a>. Many people may wonder why a plugin is needed to make WordPress a content management system, doesn’t it do that already? <strong>Absolutely</strong>, but out of the box, WordPress specifically caters to a few types of content; <a href="http://codex.wordpress.org/Writing_Posts">Posts</a>, <a href="http://codex.wordpress.org/Pages">Pages</a>, <a href="http://codex.wordpress.org/Working_with_WordPress#WordPress_Media">Media</a>, <a href="http://codex.wordpress.org/Working_with_WordPress#Fighting_Comment_Spam">Comments</a>, and <a href="http://codex.wordpress.org/Links_Manager">Links</a>. WordPress does <strong>a ton</strong> more (such as categories, tags, users, etc.), but as far as the average user is concerned, those are the major content types you’re able to work with. Themes bring all that managed content together to share with the world, and plugins build on top of that even more.</p>
<p>Many plugins exist to provide you with a new type of content to manage, most often a specific type of content aimed at achieving a specific goal. That’s awesome, and helps tons of people to make that change they’re looking to update on their site. Pods, however, thinks about things in a different way.</p>
<p><a href="http://pods.uproot.us/">Pods</a> provides a platform on which to <em>build your own content types</em> to manage, all the while providing some really advanced functionality having to do with that content. From the <cite><a href="http://pods.uproot.us/codex/how_pods_works">User Guide</a></cite>, a Pod is a group of input fields. You can add and arrange any number of the various available input fields to any number of Pods, essentially creating your own custom CMS for each website you build in WordPress.</p>
<h3>Finding the happy medium between WordPress core and Pods</h3>
<p>So if WordPress is a CMS, and Pods is a plugin that acts as a CMS framework for WordPress, how (and why) can you use them at the same time?</p>
<p>While you can technically accomplish the same functionality with an out-of-the-box copy of WordPress using a crazy blend of nested Pages, categorized Posts, and a ton of <a href="http://codex.wordpress.org/Custom_Fields">Custom Fields</a>, Pods helps abstract that desired ‘next level’ of functionality you’re looking for as a WordPress developer.</p>
<p>Trying to explain what Custom Fields are and how to use them to a client isn’t something I look fondly upon. While it’s super for developers, to the rest of the world it’s terribly bulky and unintuitive. I think Custom Fields are <strong>an awesome</strong> available resource for plugin developers, but they’re one of those things better left unseen to the novice user. Pods brings the ability to work with custom <em>pieces</em> of data to the client, all the while giving developers a terrific extended platform to build upon. If you find yourself repeatedly using custom fields within your WordPress sites, especially for clients, you’re probably ready for <a href="http://pods.uproot.us/">Pods</a>.</p>
<p>You can <a title="Download Pods CMS" href="http://downloads.wordpress.org/plugin/pods.zip" target="_blank">download</a> it from the official site.</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-spaced sexy-bookmarks-bg-caring">
<ul class="socials">
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.pagalz.com/blog/2010/04/an-overview-of-and-introduction-to-pods-cms-for-wordpress/&amp;t=An+Overview+of+and+Introduction+to+Pods+CMS+for+WordPress" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.pagalz.com/blog/2010/04/an-overview-of-and-introduction-to-pods-cms-for-wordpress/&amp;title=An+Overview+of+and+Introduction+to+Pods+CMS+for+WordPress" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.pagalz.com/blog/2010/04/an-overview-of-and-introduction-to-pods-cms-for-wordpress/&amp;title=An+Overview+of+and+Introduction+to+Pods+CMS+for+WordPress" 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="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.pagalz.com/blog/2010/04/an-overview-of-and-introduction-to-pods-cms-for-wordpress/&amp;t=An+Overview+of+and+Introduction+to+Pods+CMS+for+WordPress" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=An+Overview+of+and+Introduction+to+Pods+CMS+for+WordPress+-+http://bit.ly/9F7gCh+(via+@http://twitter.com/pagalz)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.pagalz.com/blog/2010/04/an-overview-of-and-introduction-to-pods-cms-for-wordpress/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.pagalz.com/blog/2010/04/an-overview-of-and-introduction-to-pods-cms-for-wordpress/&amp;title=An+Overview+of+and+Introduction+to+Pods+CMS+for+WordPress&amp;summary=As%20defined%20by%20its%20creators%3A%0D%0APods%20is%20a%20CMS%20framework%20for%20WordPress.%20It%E2%80%99s%20a%20plugin%20that%20sits%20on%20top%20of%20WordPress%2C%20allowing%20you%20to%20add%20and%20display%20your%20own%20content%20types.%0D%0ACalling%20Pods%20a%20%E2%80%98plugin%E2%80%99%20is%20an%20understatement.%20It%E2%80%99s%20one%20of%20those%20WordPress%20plugins%20that%20does%20so%20much%20more%20than%20provide%20some&amp;source=Pagalz.com - Blog" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.pagalz.com/blog/2010/04/an-overview-of-and-introduction-to-pods-cms-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Search Rankings Now Consider Site Speed</title>
		<link>http://www.pagalz.com/blog/2010/04/google-search-rankings-now-consider-site-speed/</link>
		<comments>http://www.pagalz.com/blog/2010/04/google-search-rankings-now-consider-site-speed/#comments</comments>
		<pubDate>Sat, 10 Apr 2010 08:37:08 +0000</pubDate>
		<dc:creator>Durgesh</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Web Apps]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Rankings]]></category>
		<category><![CDATA[Search Engine]]></category>
		<category><![CDATA[Site Speed]]></category>
		<category><![CDATA[Web Applications]]></category>

		<guid isPermaLink="false">http://www.pagalz.com/blog/?p=797</guid>
		<description><![CDATA[Back in November, we started hearing murmurs that Google was considering whether or not to factor site speed into its search ranking algorithm. In a blog post today, the search giant confirms it is now adding site speed to its list of criteria that could affect your Google ranking.]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-801" title="google-site-speed" src="http://www.pagalz.com/blog/wp-content/uploads/2010/04/google-site-speed.jpg" alt="google-site-speed" width="260" height="190" /></p>
<p>Back in November, we started hearing murmurs that Google was considering whether or not to factor site speed into its search ranking algorithm. In a blog post today, the search giant confirms it is now adding site speed to its list of criteria that could affect your Google ranking.</p>
<p>It’s another step on Google (Google)’s long road toward achieving maximum speed and efficiency. The company even launched a Site Performance tool as part of its Webmaster Tools suite to help assess site performance statistics and make changes accordingly. Today’s blog post recommends a few other tools for evaluating your site’s speed as well, including the Firefox Add-on Page Speed, Yahoo’s YSlow and WebPagetest.</p>
<p>The new site speed criterion isn’t weighted as heavily as something like page relevance, however. Google says less than 1% of actual search queries performed are being affected by the site speed dimension in the current implementation.</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-spaced sexy-bookmarks-bg-caring">
<ul class="socials">
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.pagalz.com/blog/2010/04/google-search-rankings-now-consider-site-speed/&amp;t=Google+Search+Rankings+Now+Consider+Site+Speed" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.pagalz.com/blog/2010/04/google-search-rankings-now-consider-site-speed/&amp;title=Google+Search+Rankings+Now+Consider+Site+Speed" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.pagalz.com/blog/2010/04/google-search-rankings-now-consider-site-speed/&amp;title=Google+Search+Rankings+Now+Consider+Site+Speed" 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="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.pagalz.com/blog/2010/04/google-search-rankings-now-consider-site-speed/&amp;t=Google+Search+Rankings+Now+Consider+Site+Speed" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Google+Search+Rankings+Now+Consider+Site+Speed+-+http://bit.ly/ae8N85+(via+@http://twitter.com/pagalz)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.pagalz.com/blog/2010/04/google-search-rankings-now-consider-site-speed/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.pagalz.com/blog/2010/04/google-search-rankings-now-consider-site-speed/&amp;title=Google+Search+Rankings+Now+Consider+Site+Speed&amp;summary=%0D%0A%0D%0ABack%20in%20November%2C%20we%20started%20hearing%20murmurs%20that%20Google%20was%20considering%20whether%20or%20not%20to%20factor%20site%20speed%20into%20its%20search%20ranking%20algorithm.%20In%20a%20blog%20post%20today%2C%20the%20search%20giant%20confirms%20it%20is%20now%20adding%20site%20speed%20to%20its%20list%20of%20criteria%20that%20could%20affect%20your%20Google%20ranking.%0D%0A%0D%0AIt%E2%80%99s%20ano&amp;source=Pagalz.com - Blog" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.pagalz.com/blog/2010/04/google-search-rankings-now-consider-site-speed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>52 Really High Quality Free Fonts For Modern And Cool Design</title>
		<link>http://www.pagalz.com/blog/2010/04/52-really-high-quality-free-fonts-for-modern-and-cool-design/</link>
		<comments>http://www.pagalz.com/blog/2010/04/52-really-high-quality-free-fonts-for-modern-and-cool-design/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 22:19:54 +0000</pubDate>
		<dc:creator>Durgesh</dc:creator>
				<category><![CDATA[Art & Artists]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Free Fonts]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Web Apps]]></category>
		<category><![CDATA[Cool Design]]></category>
		<category><![CDATA[Designs]]></category>
		<category><![CDATA[High Quality]]></category>
		<category><![CDATA[High Quality Free Fonts]]></category>
		<category><![CDATA[Modern Fonts]]></category>

		<guid isPermaLink="false">http://www.pagalz.com/blog/?p=733</guid>
		<description><![CDATA[I am big fan of typography myself and was surprised I haven’t done any good font collection yet! While doing research I was amazed how many really high quality fonts are available for free. And now with Sifr and similar tools you can use any font in your web-design actually, but if you are graphic designer you get even bigger enjoyment through such detailed and beautiful fonts.]]></description>
			<content:encoded><![CDATA[<p><img style="display: inline;" src="http://www.pagalz.com/blog/wp-content/uploads/2010/04/sansation-free-high-quality-font-web-design.jpg" alt="sansation-free-high-quality-font-web-design" title="sansation-free-high-quality-font-web-design" width="570" height="450" class="aligncenter size-full wp-image-790" /></p>
<p><span>I</span> am big fan of typography myself and was surprised I haven’t done any good font collection yet! While doing research I was amazed how many really high quality fonts are available for free. And now with Sifr and similar tools you can use any font in your web-design actually, but if you are graphic designer you get even bigger enjoyment through such detailed and beautiful fonts. Balance between readability, elegance and use fonts with artistic approach to get best out of them, really that’s all you need to do. And by the way I am thinking about inspiring and effective typography article in soon future to show you very best examples – stay with us – get inspired and save your time because research has been done already for you!</p>
<p>Finally be sure to check license to these fonts, they may be free but some of them require reference or may not be used for commercial projects for free, although most of them are.</p>
<h2>1. <a href="http://www.dafont.com/sansation.font" target="_blank">Sansation Typeface</a></h2>
<p><a href="http://www.dafont.com/sansation.font" target="_blank"><img style="display: inline;" src="http://www.pagalz.com/blog/wp-content/uploads/2010/04/sansation-free-high-quality-font-web-design.jpg" alt="sansation-free-high-quality-font-web-design" width="570" height="450" /></a></p>
<h2>2. <a href="http://www.josbuivenga.demon.nl/fertigo.html" target="_blank">Fertigo Pro Typeface</a></h2>
<p>Beautiful font and it’s still unbelievable it is free! Now Fertigo Pro version is released with extended language support and more.</p>
<p><a href="http://www.josbuivenga.demon.nl/fertigo.html" target="_blank"><img style="display: inline;" src="http://www.pagalz.com/blog/wp-content/uploads/2010/04/fertigo-pro-2-free-high-quality-font-web-design.jpg" alt="fertigo-pro-2-free-high-quality-font-web-design" width="570" height="279" /></a></p>
<h2><a href="http://www.josbuivenga.demon.nl/fertigo.html" target="_blank"><img style="display: inline;" src="http://www.pagalz.com/blog/wp-content/uploads/2010/04/fertigo-pro-free-high-quality-font-web-design.jpg" alt="fertigo-pro-free-high-quality-font-web-design" width="570" height="400" /></a></h2>
<h2>3. <a href="http://www.smeltery.net/fonts/megalopolis-extra" target="_blank">Megalopolis Extra Typeface</a></h2>
<p>Revamped version of the 2004 one. Now in OT with extended language support and OpenType features with alternates, ligatures, different styles of figures, etc.</p>
<p><a href="http://www.smeltery.net/fonts/megalopolis-extra" target="_blank"><img style="display: inline;" src="http://www.pagalz.com/blog/wp-content/uploads/2010/04/megalopolis-extra-free-high-quality-font-web-design.jpg" alt="megalopolis-extra-free-high-quality-font-web-design" width="570" height="450" /></a></p>
<h2>4. <a href="http://www.fontsquirrel.com/fonts/Walkway" target="_blank">Walkway Typeface</a></h2>
<p><a href="http://www.fontsquirrel.com/fonts/Walkway" target="_blank"><img style="display: inline;" src="http://www.pagalz.com/blog/wp-content/uploads/2010/04/walkway-free-high-quality-font-web-design.jpg" alt="walkway-free-high-quality-font-web-design" width="570" height="450" /></a></p>
<h2>5. <a href="http://quersicht.ch/04_labor/04_ft_nadi.html" target="_blank">Nadia Serif Typeface</a></h2>
<h2><a href="http://quersicht.ch/04_labor/04_ft_nadi.html" target="_blank"><img style="display: inline;" src="http://www.pagalz.com/blog/wp-content/uploads/2010/04/nadia-serif-free-high-quality-font-web-design.jpg" alt="nadia-serif-free-high-quality-font-web-design" width="570" height="450" /></a></h2>
<h2>6. <a href="http://tonyfbaby.deviantart.com/art/Modeno-Font-89089212" target="_blank">Modeno Font</a></h2>
<p><a href="http://tonyfbaby.deviantart.com/art/Modeno-Font-89089212" target="_blank"><img style="display: inline;" src="http://www.pagalz.com/blog/wp-content/uploads/2010/04/modeno-pro-free-high-quality-font-web-design.jpg" alt="modeno-pro-free-high-quality-font-web-design" width="570" height="450" /></a></p>
<h2>7. <a href="http://mplus-fonts.sourceforge.jp/mplus-outline-fonts/download/index-en.html" target="_blank">M+ OUTLINE Typeface</a></h2>
<p>Really beautiful font with many variations – thin, light, regular, medium, black, heavy – be sure to check this free premium font.</p>
<h2><a href="http://mplus-fonts.sourceforge.jp/mplus-outline-fonts/download/index-en.html" target="_blank"><img style="display: inline;" src="http://www.pagalz.com/blog/wp-content/uploads/2010/04/m-plus-outline-free-high-quality-font-web-design.jpg" alt="m-plus-outline-free-high-quality-font-web-design" width="570" height="450" /></a></h2>
<h2>8. <a href="http://www.josbuivenga.demon.nl/fontinsans.html" target="_blank">Fontin Sans Typeface</a></h2>
<p><a href="http://www.josbuivenga.demon.nl/fontinsans.html" target="_blank"><img style="display: inline;" src="http://www.pagalz.com/blog/wp-content/uploads/2010/04/fontin-sans-free-high-quality-font-web-design.jpg" alt="fontin-sans-free-high-quality-font-web-design" width="570" height="450" /></a></p>
<h2>9. <a href="http://www.josbuivenga.demon.nl/diavlo.html" target="_blank">Diavlo Typeface</a></h2>
<p>Diavlo is a free font that contains 5 weights: Light, Book, SemiBold Medium, Bold and Black. Read and look more to this one in this <a href="http://www.josbuivenga.demon.nl/DIAVLO_II_release.pdf" target="_blank">*.pdf document</a>.</p>
<p><a href="http://www.josbuivenga.demon.nl/diavlo.html" target="_blank"><img style="display: inline;" src="http://www.pagalz.com/blog/wp-content/uploads/2010/04/diavlo-free-high-quality-font-web-design.jpg" alt="diavlo-free-high-quality-font-web-design" width="570" height="335" /></a></p>
<p><a href="http://www.josbuivenga.demon.nl/diavlo.html" target="_blank"><img style="display: inline;" src="http://www.pagalz.com/blog/wp-content/uploads/2010/04/diavlo-2-free-high-quality-font-web-design.jpg" alt="diavlo-2-free-high-quality-font-web-design" width="570" height="335" /></a></p>
<h2>10. <a href="http://www.josbuivenga.demon.nl/museo.html" target="_blank">Museo Typeface</a></h2>
<p>This OpenType font family comes in five weights and offers supports CE languages and even Esperanto. Besides ligatures, contextual alternatives, stylistic alternates, fractions and proportional/tabular figures MUSEO also has a ‘case’ feature for case sensitive forms.</p>
<p><a href="http://www.josbuivenga.demon.nl/museo.html" target="_blank"><img style="display: inline;" src="http://www.pagalz.com/blog/wp-content/uploads/2010/04/museo-2-free-high-quality-font-web-design.jpg" alt="museo-2-free-high-quality-font-web-design" width="570" height="277" /></a></p>
<h2><a href="http://www.josbuivenga.demon.nl/museo.html" target="_blank"><img style="display: inline;" src="http://www.pagalz.com/blog/wp-content/uploads/2010/04/museo-free-high-quality-font-web-design.jpg" alt="museo-free-high-quality-font-web-design" width="570" height="450" /></a></h2>
<h2>11. <a href="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&amp;item_id=Gentium_basic" target="_blank">Gentium Typeface</a></h2>
<p><a href="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&amp;item_id=Gentium_basic" target="_blank"><img style="display: inline;" src="http://www.pagalz.com/blog/wp-content/uploads/2010/04/gentium-sans-free-high-quality-font-web-design.jpg" alt="gentium-sans-free-high-quality-font-web-design" width="570" height="450" /></a></p>
<h2>12. <a href="http://www.josbuivenga.demon.nl/delicious.html" target="_blank">Delicious Typeface</a></h2>
<p>This font has been my favorite for some time, beautiful detail, every character has unique shape too.</p>
<p><a href="http://www.josbuivenga.demon.nl/delicious.html" target="_blank"><img style="display: inline;" src="http://www.pagalz.com/blog/wp-content/uploads/2010/04/delicious-free-high-quality-font-web-design.jpg" alt="delicious-free-high-quality-font-web-design" width="570" height="450" /></a></p>
<h2>13. <a href="http://www.theleagueofmoveabletype.com/fonts/1-junction" target="_blank">Junction Typeface</a></h2>
<p>Created by <a href="http://www.theleagueofmoveabletype.com/members/2-caroline-hadilaksono" target="_blank">Caroline Hadilaksono</a></p>
<p>Inspired by my favorite humanist sans serif typefaces, such as Meta, Myriad, and Scala, Junction is where the best qualities of serif and sans serif typefaces come together. It has the hand drawn and human qualities of a serif, and still retains the clarity and efficiencies of a sans serif typeface. It combines the best of both worlds.</p>
<p><a href="http://www.theleagueofmoveabletype.com/fonts/1-junction" target="_blank"><img style="display: inline;" src="http://www.pagalz.com/blog/wp-content/uploads/2010/04/junction-free-high-quality-font-web-design.jpg" alt="junction-free-high-quality-font-web-design" width="570" height="450" /></a></p>
<h2>14. <a href="http://www.fontsite.com/download-free-fonts/cartogothic-std/" target="_blank">CartoGothic Std Typeface</a></h2>
<p><a href="http://www.fontsite.com/download-free-fonts/cartogothic-std/" target="_blank"><img style="display: inline;" src="http://www.pagalz.com/blog/wp-content/uploads/2010/04/carto-gothic-std-free-high-quality-font-web-design.jpg" alt="carto-gothic-std-free-high-quality-font-web-design" width="570" height="450" /></a></p>
<h2>15. <a href="http://www.josbuivenga.demon.nl/anivers.html" target="_blank">Anivers Typeface</a></h2>
<p>This OpenType font family comes in regular, italic, bold and small caps and has some nice OpenType features. Besides ligatures, contextual alternatives, fractions, oldstyle/tabular numerals, Anivers also has a ‘case’ feature for case sensitive forms and tabular numerals … so Anivers can crunch numbers with ease.</p>
<h2><a href="http://www.josbuivenga.demon.nl/anivers.html" target="_blank"><img style="display: inline;" src="http://www.pagalz.com/blog/wp-content/uploads/2010/04/anivers-free-high-quality-font-web-design.jpg" alt="anivers-free-high-quality-font-web-design" width="570" height="450" /></a></h2>
<h2>16. <a href="http://www.dotcolon.net/font/font.php?id=3" target="_blank">Medio Typeface</a></h2>
<p><a href="http://www.dotcolon.net/font/font.php?id=3" target="_blank"><img style="display: inline;" src="http://www.pagalz.com/blog/wp-content/uploads/2010/04/medio-stout-free-high-quality-font-web-design.jpg" alt="medio-stout-free-high-quality-font-web-design" width="570" height="450" /></a></p>
<h2>17. <a href="http://www.dardenstudio.com/typefaces/birra_stout" target="_blank">Birra Stout Typeface</a></h2>
<p><a href="http://www.dardenstudio.com/typefaces/birra_stout" target="_blank"><img style="display: inline;" src="http://www.pagalz.com/blog/wp-content/uploads/2010/04/birra-stout-free-high-quality-font-web-design.jpg" alt="birra-stout-free-high-quality-font-web-design" width="570" height="450" /></a></p>
<h2>18. <a href="http://www.dafont.com/rezland.font" target="_blank">Rezland Typeface</a></h2>
<p><a href="http://www.dafont.com/rezland.font" target="_blank"><img style="display: inline;" src="http://www.pagalz.com/blog/wp-content/uploads/2010/04/rezland-free-high-quality-font-web-design.jpg" alt="rezland-free-high-quality-font-web-design" width="570" height="450" /></a></p>
<h2>19. <a href="http://arpad.deviantart.com/art/Often-tf-beta-version-POSTER-54732068" target="_blank">OFTEN Typeface</a></h2>
<p><a href="http://arpad.deviantart.com/art/Often-tf-beta-version-POSTER-54732068" target="_blank"><img style="display: inline;" src="http://www.pagalz.com/blog/wp-content/uploads/2010/04/often-tf-pro-free-high-quality-font-web-design.jpg" alt="often-tf-pro-free-high-quality-font-web-design" width="570" height="450" /></a></p>
<h2>20. <a href="http://www.gestalten.com/fonts/freefonts/details.html?id=16" target="_blank">Engel Light Typeface</a></h2>
<p><a href="http://www.gestalten.com/fonts/freefonts/details.html?id=16" target="_blank"><img style="display: inline;" src="http://www.pagalz.com/blog/wp-content/uploads/2010/04/engel-light-free-high-quality-font-web-design.jpg" alt="engel-light-free-high-quality-font-web-design" width="570" height="335" /></a></p>
<h2>21. <a href="http://moorstation.org/typoasis/designers/lab/lab_contra.htm" target="_blank">Contra Typeface</a></h2>
<p><a href="http://moorstation.org/typoasis/designers/lab/lab_contra.htm" target="_blank"><img style="display: inline;" src="http://www.pagalz.com/blog/wp-content/uploads/2010/04/contra-free-high-quality-font-web-design.jpg" alt="contra-free-high-quality-font-web-design" width="570" height="336" /></a></p>
<h2>22. <a href="http://www.dafont.com/nilland.font?psize=l" target="_blank">Nilland Typeface</a></h2>
<p>Created by <a href="http://www.dafont.com/manfred-klein.d302?psize=l" target="_blank">Manfred Klein</a></p>
<p><a href="http://www.dafont.com/nilland.font?psize=l" target="_blank"><img style="display: inline;" src="http://www.pagalz.com/blog/wp-content/uploads/2010/04/nilland-free-high-quality-font-web-design.jpg" alt="nilland-free-high-quality-font-web-design" width="570" height="450" /></a></p>
<h2>23. <a href="http://www.josbuivenga.demon.nl/calluna.html" target="_blank">Calluna Typeface</a></h2>
<p>Calluna supports a very wide range in languages and is a very complete OpenType typeface. Each font counts 723 glyphs. You can find detailed info on he character set and the OpenType features in the <a href="http://www.exljbris.com/pdf/Calluna_specimen.pdf" target="_blank">Calluna PDF specimen</a>.</p>
<p><a href="http://www.josbuivenga.demon.nl/calluna.html" target="_blank"><img style="display: inline;" src="http://www.pagalz.com/blog/wp-content/uploads/2010/04/calluna-free-high-quality-font-web-design.jpg" alt="calluna-free-high-quality-font-web-design" width="570" height="450" /></a></p>
<h2>24. <a href="http://www.typophile.com/node/50437" target="_blank">QuickSand Typeface</a></h2>
<p>This is a free and elegant sans serif typeface.</p>
<p><a href="http://www.typophile.com/node/50437" target="_blank"><img style="display: inline;" src="http://www.pagalz.com/blog/wp-content/uploads/2010/04/quicksand-free-high-quality-font-web-design.jpg" alt="quicksand-free-high-quality-font-web-design" width="570" height="450" /></a></p>
<h2>25. <a href="http://www.fontsquirrel.com/fonts/Mentone" target="_blank">Mentone Typeface</a></h2>
<p><a href="http://www.fontsquirrel.com/fonts/Mentone" target="_blank"><img style="display: inline;" src="http://www.pagalz.com/blog/wp-content/uploads/2010/04/mentone-free-high-quality-font-web-design.jpg" alt="mentone-free-high-quality-font-web-design" width="570" height="311" /></a></p>
<h2>26. <a href="http://www.fontsquirrel.com/fonts/Vegur" target="_blank">Vegur Typeface</a></h2>
<p><a href="http://www.fontsquirrel.com/fonts/Vegur" target="_blank"><img style="display: inline;" src="http://www.pagalz.com/blog/wp-content/uploads/2010/04/vegur-free-high-quality-font-web-design.jpg" alt="vegur-free-high-quality-font-web-design" width="570" height="450" /></a></p>
<h2>27. <a href="http://www.fontspace.com/roger-white/swansea" target="_blank">Swansea Typeface</a></h2>
<p><a href="http://www.fontspace.com/roger-white/swansea" target="_blank"><img style="display: inline;" src="http://www.pagalz.com/blog/wp-content/uploads/2010/04/swansea-free-high-quality-font-web-design.jpg" alt="swansea-free-high-quality-font-web-design" width="570" height="450" /></a></p>
<h2>28. <a href="http://www.dafont.com/geo-sans-light.font?psize=l" target="_blank">GeoSans Light Typeface</a></h2>
<p>Created by <a href="http://www.dafont.com/manfred-klein.d302?psize=l" target="_blank">Manfred Klein</a></p>
<p>I enjoy this font because of it’s thin and elegant font lines displaying text in really fashion way.</p>
<p><a href="http://www.dafont.com/geo-sans-light.font?psize=l" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" alt="geo-sans-light-free-high-quality-font-web-design" width="570" height="450" /></a></p>
<h2>29. <a href="http://com4t-fff.seesaa.net/article/90181133.html" target="_blank">COM4t Nuvu Regular Typeface</a></h2>
<p><a href="http://com4t-fff.seesaa.net/article/90181133.html" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" alt="com4t-nuvu-regular-free-high-quality-font-web-design" width="570" height="450" /></a></p>
<h2>30. <a href="http://www.dafont.com/steiner.font?psize=l" target="_blank">Steiner Typeface</a></h2>
<p><a href="http://www.dafont.com/steiner.font?psize=l" target="_blank"><img style="display: inline;" src="http://www.pagalz.com/blog/wp-content/uploads/2010/04/steiner-free-high-quality-font-web-design.jpg" alt="steiner-free-high-quality-font-web-design" width="570" height="450" /></a></p>
<h2>31. <a href="http://www.theleagueofmoveabletype.com/fonts/4-chunk" target="_blank">Chunk Typeface</a></h2>
<p>Created by <a href="http://www.theleagueofmoveabletype.com/members/14-meredith-mandel" target="_blank">Meredith Mandel</a></p>
<p>Chunk is an ultra-bold slab serif typeface that is reminiscent of old American Western woodcuts, broadsides, and newspaper headlines. Used mainly for display, the fat block lettering is unreserved yet refined for contemporary use.</p>
<p><a href="http://www.theleagueofmoveabletype.com/fonts/4-chunk" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" alt="chunk-free-high-quality-font-web-design" width="570" height="299" /></a></p>
<p><a href="http://www.theleagueofmoveabletype.com/fonts/4-chunk" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" alt="chunk-2-free-high-quality-font-web-design" width="570" height="299" /></a></p>
<h2>32. <a href="http://www.dmjx.dk/presserum/skrift.html" target="_blank">Aller Sans Typeface</a></h2>
<p>Check out <a href="http://www.dmjx.dk/presserum/downloads/AllerSans_skriftproeve.pdf" target="_blank">*.pdf document</a> for full examination.</p>
<p><a href="http://www.dmjx.dk/presserum/skrift.html" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" alt="aller-sans-free-high-quality-font-web-design" width="570" height="450" /></a></p>
<h2>33. <a href="http://home.comcast.net/%7Ecrudfactory/cf3/juvelo.xhtml" target="_blank">Juvelo Typeface</a></h2>
<p>Self explaining image below, but I enjoy this font because of its unique glance and serifs.</p>
<p><a href="http://home.comcast.net/%7Ecrudfactory/cf3/juvelo.xhtml" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" alt="juvelo-free-high-quality-font-web-design" width="570" height="450" /></a></p>
<h2>34. <a href="http://home.comcast.net/%7Ecrudfactory/cf3/gb1911.xhtml" target="_blank">Goudy Bookletter 1911 Typeface</a></h2>
<h2><a href="http://home.comcast.net/%7Ecrudfactory/cf3/gb1911.xhtml" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" alt="goudy-bookletter-1911-free-high-quality-font-web-design" width="570" height="383" /></a></h2>
<h2>35. <a href="http://home.comcast.net/%7Ecrudfactory/cf3/temporarium.xhtml" target="_blank">Temporarium Typeface</a></h2>
<p><a href="http://home.comcast.net/%7Ecrudfactory/cf3/temporarium.xhtml" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" alt="temporarium-free-high-quality-font-web-design" width="570" height="383" /></a></p>
<h2>36. <a href="http://flyjuztwithme.deviantart.com/art/Font-11-130651359" target="_blank">Bellerose Typeface</a></h2>
<p><a href="http://flyjuztwithme.deviantart.com/art/Font-11-130651359" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" alt="bellerose-free-high-quality-font-web-design" width="570" height="450" /></a></p>
<h2>37. <a href="http://jelloween.deviantart.com/art/Font-AMBROSIA-demo-39421709" target="_blank">Ambrosia Demo Typeface</a></h2>
<p>Here’s a demo version of font called Ambrosia. It has all letters, numbers and a few symbols.</p>
<p><a href="http://jelloween.deviantart.com/art/Font-AMBROSIA-demo-39421709" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" alt="ambrosia-free-high-quality-font-web-design" width="570" height="278" /></a></p>
<h2>38. <a href="http://bigyellowbiohazard.deviantart.com/art/surrounding-68530037" target="_blank">Surrounding Typeface</a></h2>
<p><a href="http://bigyellowbiohazard.deviantart.com/art/surrounding-68530037" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" alt="surrounding-free-high-quality-font-web-design" width="570" height="450" /></a></p>
<h2>39. <a href="http://crazyformusic.deviantart.com/art/CircleD-Font-128540162" target="_blank">Circled Typeface</a></h2>
<p>Very sharp and elegant letters, new font but it got my sympathies right away!</p>
<p><a href="http://crazyformusic.deviantart.com/art/CircleD-Font-128540162" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" alt="circled-free-high-quality-font-web-design" width="570" height="450" /></a></p>
<h2>40. <a href="http://www.tenbytwenty.com/products/typefaces/nevis" target="_blank">Nevis Typeface</a></h2>
<p>This strong, angular typeface is ideal for headings. It features 96 of the most commonly used glyphs (characters).</p>
<p><a href="http://www.tenbytwenty.com/products/typefaces/nevis" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" alt="nevis-free-high-quality-font-web-design" width="570" height="500" /></a></p>
<h2>41. <a href="http://emilystyles.deviantart.com/art/Zephyr-Font-129529611" target="_blank">Zephyr Typeface</a></h2>
<p><a href="http://emilystyles.deviantart.com/art/Zephyr-Font-129529611" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" alt="zephyr-free-high-quality-font-web-design" width="570" height="450" /></a></p>
<h2>42. <a href="http://inde-graphics.deviantart.com/art/advent-font-57338302" target="_blank">Advent Pro Typeface</a></h2>
<p>Excellent and very popular unique font with many, many different variations to play with.</p>
<p><a href="http://inde-graphics.deviantart.com/art/advent-font-57338302" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" alt="advent-pro-free-high-quality-font-web-design" width="570" height="450" /></a></p>
<h2>43. <a href="http://betatype.com/node/35" target="_blank">SerifBeta Typeface</a></h2>
<p>This is called as beta version, but still seems very complete for me – included in the set are Regular,Italic,Bold,Bold Italic for optical sizes 72, 12 and 6. Size 72 also includes italic swash characters and Black weights. (<a href="http://betatype.com/system/files/SerifBeta.pdf" target="_blank">demo pdf</a>)</p>
<p><a href="http://betatype.com/node/35" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" alt="serifbeta-free-high-quality-font-web-design" width="570" height="400" /></a></p>
<h2>44. <a href="http://paulw.deviantart.com/art/Evolution-True-Type-Font-83261584" target="_blank">Evolution True Type Font</a></h2>
<p>Note that you have to give credit if you use this font and you must contact author before using in commercial projects!</p>
<p><a href="http://paulw.deviantart.com/art/Evolution-True-Type-Font-83261584" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" alt="evolution-free-high-quality-font-web-design" width="570" height="450" /></a></p>
<h2>45. <a href="http://atobgraphics.deviantart.com/art/Sliced-AB-32595050" target="_blank">Sliced AB Typeface</a></h2>
<p><a href="http://atobgraphics.deviantart.com/art/Sliced-AB-32595050" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" alt="sliced-ab-free-high-quality-font-web-design" width="570" height="500" /></a></p>
<h2>46. <a href="http://sergeantswierq.deviantart.com/art/Technical-forest-v2-129760221" target="_blank">Technical Forest v2 Typeface</a></h2>
<p>Only for non-commercial use.</p>
<p><a href="http://sergeantswierq.deviantart.com/art/Technical-forest-v2-129760221" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" alt="technical-forest-free-high-quality-font-web-design" width="570" height="296" /></a></p>
<h2>47. <a href="http://www.dafont.com/alte-haas-grotesk.font" target="_blank">Alte Haas Grotesk Typeface</a></h2>
<p><a href="http://www.dafont.com/alte-haas-grotesk.font" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" alt="alte-haas-grotesk-free-high-quality-font-web-design" width="570" height="450" /></a></p>
<h2>48. <a href="http://aajohan.deviantart.com/art/Comfortaa-font-105395949" target="_blank">Comfortaa Typeface</a></h2>
<p>Comfortaa is a simple, good looking, true type font with an amazingly large number of 466 different characters and symbols. You can see them all in the preview.</p>
<p>It is absolutely free, both for personal and commercial use.</p>
<p><a href="http://aajohan.deviantart.com/art/Comfortaa-font-105395949" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" alt="comfortaa-free-high-quality-font-web-design" width="570" height="400" /></a></p>
<h2>49. <a href="http://fontfabric.com/?p=396" target="_blank">MOD™ font</a></h2>
<p>MOD is applicable for any type of graphic design – web, print, motion graphics etc and perfect for t-shirts and other items like logos, pictograms, 215 character set.</p>
<p><a href="http://fontfabric.com/?p=396" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" alt="mod-tm-free-high-quality-font-web-design" width="570" height="400" /></a></p>
<h2>50. <a href="http://new.myfonts.com/fonts/albatross/whiteboard-modern/" target="_blank">Whiteboard Modern Typeface</a></h2>
<p>Created by <a href="http://www.bittbox.com/fonts/bb-free-font-whiteboard-modern-demo/" target="_blank">Jay Hilgert</a></p>
<p>Whiteboard Modern is a hand-drawn face resembling the flowing motion and freedom of writing in an open space, such as a dry-erase board.</p>
<p><a href="http://new.myfonts.com/fonts/albatross/whiteboard-modern/" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" alt="whiteboard-modern-demo-free-high-quality-font-web-design" width="570" height="450" /></a></p>
<h2>51. <a href="http://andychung.ca/work/neighbourhood/" target="_blank">Neighbourhood Type</a></h2>
<p><a href="http://andychung.ca/work/neighbourhood/" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" alt="neighbourhood-free-high-quality-font-web-design" width="570" height="500" /></a></p>
<h2>52. <a href="http://www.justmytype.org/" target="_blank">Soraya Font by JustMyType</a></h2>
<p>On <a href="http://www.justmytype.org/" target="_blank">JustMyType site</a> you can find several more very unique and interesting letters.</p>
<p>Half serif, half sans serif. Capital letters A-Z, available only in <em>Illustrator AI format.</em></p>
<p><a href="http://www.justmytype.org/" target="_blank"><img src="http://www.1stwebdesigner.com/wp-content/plugins/jquery-image-lazy-loading/images/grey.gif" alt="soraya-free-high-quality-font-web-design" width="570" height="300" /></a></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-spaced sexy-bookmarks-bg-caring">
<ul class="socials">
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.pagalz.com/blog/2010/04/52-really-high-quality-free-fonts-for-modern-and-cool-design/&amp;t=52+Really+High+Quality+Free+Fonts+For+Modern+And+Cool+Design" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.pagalz.com/blog/2010/04/52-really-high-quality-free-fonts-for-modern-and-cool-design/&amp;title=52+Really+High+Quality+Free+Fonts+For+Modern+And+Cool+Design" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.pagalz.com/blog/2010/04/52-really-high-quality-free-fonts-for-modern-and-cool-design/&amp;title=52+Really+High+Quality+Free+Fonts+For+Modern+And+Cool+Design" 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="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.pagalz.com/blog/2010/04/52-really-high-quality-free-fonts-for-modern-and-cool-design/&amp;t=52+Really+High+Quality+Free+Fonts+For+Modern+And+Cool+Design" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=52+Really+High+Quality+Free+Fonts+For+Modern+And+Cool+Design+-+http://bit.ly/bZqrqn+(via+@http://twitter.com/pagalz)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.pagalz.com/blog/2010/04/52-really-high-quality-free-fonts-for-modern-and-cool-design/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.pagalz.com/blog/2010/04/52-really-high-quality-free-fonts-for-modern-and-cool-design/&amp;title=52+Really+High+Quality+Free+Fonts+For+Modern+And+Cool+Design&amp;summary=%0D%0A%0D%0AI%20am%20big%20fan%20of%20typography%20myself%20and%20was%20surprised%20I%20haven%E2%80%99t%20done%20any%20good%20font%20collection%20yet%21%20While%20doing%20research%20I%20was%20amazed%20how%20many%20really%20high%20quality%20fonts%20are%20available%20for%20free.%20And%20now%20with%20Sifr%20and%20similar%20tools%20you%20can%20use%20any%20font%20in%20your%20web-design%20actually%2C%20but%20if%20you%20are%20gra&amp;source=Pagalz.com - Blog" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.pagalz.com/blog/2010/04/52-really-high-quality-free-fonts-for-modern-and-cool-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Basic Tips to Increase Your Website Visibility</title>
		<link>http://www.pagalz.com/blog/2010/03/10-basic-tips-to-increase-your-website-visibility/</link>
		<comments>http://www.pagalz.com/blog/2010/03/10-basic-tips-to-increase-your-website-visibility/#comments</comments>
		<pubDate>Sun, 21 Mar 2010 20:25:59 +0000</pubDate>
		<dc:creator>Durgesh</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Web Apps]]></category>
		<category><![CDATA[10]]></category>
		<category><![CDATA[Basic Tips]]></category>
		<category><![CDATA[Increase]]></category>
		<category><![CDATA[Visibility]]></category>
		<category><![CDATA[Website Visibility]]></category>

		<guid isPermaLink="false">http://www.pagalz.com/blog/?p=687</guid>
		<description><![CDATA[There are hundreds of ways out there on how to improve the visibility of your websites or blogs, and at times that information can drive you out of your focus on your Search Engine Optimization campaign. To prevent what we usually call as “information overload”, I have set up a brief 10 to-do list.]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-720" title="Star-Favorite" src="http://www.pagalz.com/blog/wp-content/uploads/2010/03/Star-Favorite-150x150.jpg" alt="Star-Favorite" width="150" height="150" />There are hundreds of ways out there on how to improve the visibility of your websites or blogs, and at times that information can drive you out of your focus on your Search Engine Optimization campaign. To prevent what we usually call as “information overload”, I have set up a brief 10 to-do list.</p>
<p>Do the actions listed below for a consistent three months and see the results for your websites or blogs:</p>
<ol>
<li><strong>Constantly update      your content: </strong>if you want more traffic, you have to continuously      update your content. People will not visit your websites if they do not      have good and high quality content. Without a constant update, there will      not be any returning visitors as well.</li>
<li><strong>Apply good design and      layout: </strong>if your website is messy on its designs and navigations      then visitors will leave at the very moment they arrive on your website.      Make sure you apply good design, content-focused with proper color      schemes.</li>
<li><strong>Use your own domain      name:</strong> using a professional looking top level domain name will      make you look more professional and will then make visitors to trust you      more as a serious business entity. The cost of a domain name is as little      as US$8 per year and it can make a serious difference than having a free      domain</li>
<li><strong>Use StumbleUpon:</strong> I have had a lot of success using StumbleUpon for my websites, especially      those specifically talk about a specific niche, such as soccer. When you      put an interesting article from your website on StumbleUpon, then people      will rate it higher and in turn make the article more popular. Remember to      also make friends and connections in StumbleUpon to increase your personal      popularity and credibility on the website.</li>
<li><strong>Become a guest      poster:</strong> offer your unique writings and articles to other people’s      blogs. People love to get free and high quality blog content. In your      article, make sure you put a link back to your website. Again, make sure      that the article you submit as a guest blogger is unique and cannot be      found on any other blogs.</li>
<li><strong>Put keywords on      images: </strong>if you use images on your blog posts, then it is crucial      for you to give them relevant title and tag them with relevant keywords.      In my soccer website, a large portion of my visitors come from people      looking for soccer wallpaper from Google’s image search.</li>
<li><strong>Comments, comments      and comments: </strong>when you give comments, people will know that you      give notice, and they will appreciate that. However, please do not spam.      Some people just love to put comments such as “Hi, nice blog, how about      visiting mine?”. Those kind of comments will be removed without question      and you will only offend your blogger peers.</li>
<li><strong>Use MyBlogLog:</strong> sign up to MyBlogLog and join to all the communities available there and      you will see visitors start coming from MyBlogLog.</li>
<li><strong>Do not waste your      time:</strong> don’t waste your time with “get rich quick scheme”      promises. Concentrate on giving quality content, then the traffic and the      money will come.</li>
<li><strong>Most important,      always review your stats: </strong>by reviewing your sites’ statistics      using Google Analytical tool, you will find out what kind of keywords that      your visitors use to come across your site and which articles that are the      most appealing for them. The results of your review can then be used for      more effective and efficient future campaigns.</li>
</ol>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-spaced sexy-bookmarks-bg-caring">
<ul class="socials">
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.pagalz.com/blog/2010/03/10-basic-tips-to-increase-your-website-visibility/&amp;t=10+Basic+Tips+to+Increase+Your+Website+Visibility" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.pagalz.com/blog/2010/03/10-basic-tips-to-increase-your-website-visibility/&amp;title=10+Basic+Tips+to+Increase+Your+Website+Visibility" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.pagalz.com/blog/2010/03/10-basic-tips-to-increase-your-website-visibility/&amp;title=10+Basic+Tips+to+Increase+Your+Website+Visibility" 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="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.pagalz.com/blog/2010/03/10-basic-tips-to-increase-your-website-visibility/&amp;t=10+Basic+Tips+to+Increase+Your+Website+Visibility" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=10+Basic+Tips+to+Increase+Your+Website+Visibility+-+http://bit.ly/brWQp3+(via+@http://twitter.com/pagalz)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.pagalz.com/blog/2010/03/10-basic-tips-to-increase-your-website-visibility/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.pagalz.com/blog/2010/03/10-basic-tips-to-increase-your-website-visibility/&amp;title=10+Basic+Tips+to+Increase+Your+Website+Visibility&amp;summary=There%20are%20hundreds%20of%20ways%20out%20there%20on%20how%20to%20improve%20the%20visibility%20of%20your%20websites%20or%20blogs%2C%20and%20at%20times%20that%20information%20can%20drive%20you%20out%20of%20your%20focus%20on%20your%20Search%20Engine%20Optimization%20campaign.%20To%20prevent%20what%20we%20usually%20call%20as%20%E2%80%9Cinformation%20overload%E2%80%9D%2C%20I%20have%20set%20up%20a%20brief%2010%20to-do%20li&amp;source=Pagalz.com - Blog" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.pagalz.com/blog/2010/03/10-basic-tips-to-increase-your-website-visibility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>World&#8217;s best 50 plugins &amp; widgets for power blogging</title>
		<link>http://www.pagalz.com/blog/2010/03/worlds-best-50-plugins-widgets-for-power-blogging/</link>
		<comments>http://www.pagalz.com/blog/2010/03/worlds-best-50-plugins-widgets-for-power-blogging/#comments</comments>
		<pubDate>Sun, 21 Mar 2010 13:59:31 +0000</pubDate>
		<dc:creator>Durgesh</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Web Apps]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Widget]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[World's Best]]></category>

		<guid isPermaLink="false">http://www.pagalz.com/blog/?p=661</guid>
		<description><![CDATA[Some of the world's best 50 plugins &#038; widgets to make it powerful blogging. Some of the broadly classified lists Manage WordPress Comments, Stop WordPress Spam, Expert WordPress SEO, Easy WordPress Navigation, Interactive WordPress Posts, WordPress Twiter Plugins, WordPress Database tools, WordPress Admin Management Tools, etc. and many more.]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-664" title="wordpress" src="http://www.pagalz.com/blog/wp-content/uploads/2010/03/wordpress.jpg" alt="wordpress" width="630" height="300" /></p>
<p>The wordpress plugins are arranged broadly by category of usage. As far as I know, all these plugins are compatible with the latest WordPress 2.5 version. Please feel free to suggest great plugins in comments that I can add to this list.</p>
<h3>Manage WordPress Comments</h3>
<ul>
<li><a href="http://txfx.net/code/wordpress/subscribe-to-comments/">Subscribe To Comments</a> – Allows readers to recieve notifications of new comments that are posted to an entry.</li>
<li><a href="http://www.raproject.com/wordpress/wp-ajax-edit-comments/">WP AJAX Edit Comments</a> – Allows users and admins to edit comments on a post inline using AJAX.</li>
<li><a href="http://wordpress.org/extend/plugins/close-old-posts/">Close Old Posts</a> – Closes comments on old posts without any DB queries.</li>
<li><a href="http://alexking.org/projects/wordpress/readme?project=wp-grins">WP Grins</a> – allows you to put clickable smilies on your post and comments forms.</li>
<li><a href="http://plugins.trac.wordpress.org/wiki/LiveCommentPreview">Live Comment Preview</a> – the simplest way to get live comment previews on your site.</li>
<li><a href="http://www.pfadvice.com/wordpress-plugins/show-top-commentators/">Show Top Commentators</a> – Encourage more discussion from your readers, by displaying their names and number of comments they have made recently to your sidebar.</li>
<li><a href="http://www.commentluv.com/download/ajax-commentluv-installation/">CommentLuv</a> – shows a link to the last post from the commenters blog in their comment.</li>
<li><a href="http://www.napolux.com/2006/myavatars-a-wordpress-plugin-for-mybloglog.html">MyAvatars</a> – shows MyBlogLog&#8217;s avatars in your comments</li>
<li> <a href="http://www.justinshattuck.com/2007/03/19/comment-relish-wordpress-plugin">Comment Relish</a> – Sends a thank you e-mail to your first time commentators.</li>
<li> <a href="http://dev.wp-plugins.org/wiki/favatars">Favatars</a> – displays the favicon associated with the commenter&#8217;s website.</li>
<li><a href="http://www.semiologic.com/software/dofollow/">Dofollow</a> – lets you remove the nofollow attribute from your comments.</li>
<li><a href="http://the-notebook.org/12/01/2006/openid-comments-for-wordpress/">OpenID Comments for Wordpress</a> – allows users to leave comments using their OpenID.</li>
<li><a href="http://beingmrkenny.co.uk/extended-comment-options/">Extended Comment Options</a> – allows you to switch comments and/or pings on or off for batches of existing posts.</li>
<li><a href="http://blog.jodies.de/archiv/2004/11/13/recent-comments/">Get Recent Comments</a> – displays excerpts of the most recent comments and/or trackbacks that have been posted to the articles in your blog.</li>
</ul>
<h3>Stop WordPress Spam</h3>
<ul>
<li><a href="http://akismet.com/">Akismet</a> – intelligently blocks spam comments. Checks your comments against the Akismet web service to see if they are spam or not.</li>
<li><a href="http://www.bad-behavior.ioerror.us/">Bad Behavior</a> – is a set of PHP scripts which prevents spambots from accessing your site by analyzing their actual HTTP requests and comparing them to profiles from known spambots.</li>
<li><a href="http://marketingtechblog.com/projects/wp-contactform/">WP-Contact Form with Spam Protection</a> – creates a contact form on your blog, through which your readers can contact you easily.</li>
<li><a href="http://defensio.com/"> Defensio</a> is a spam filtering web service to block comment spam.</li>
<li><a href="http://www.maxpower.ca/wordpress-plugin-digital-fingerprint-detecting-content-theft/2006/09/25/#intro">Digital Fingerprint</a> � useful for detecting content theft.</li>
</ul>
<h3>Expert WordPress SEO</h3>
<ul>
<li><a href="http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/">Google XML Sitemaps Generator</a> – creates a sitemap of all articles on your WordPress blog. Helps Google and other search engines index every article you write.</li>
<li><a href="http://scott.yang.id.au/code/permalink-redirect/">Permalink Redirect</a> – replies a 301 permanent redirect, if requested URI is different from entry�s (or archive�s) permalink. It is used to ensure that there is only one URL associated with each blog entry.</li>
<li><a href="http://wp.uberdose.com/2007/03/24/all-in-one-seo-pack/">All in One SEO Pack</a> – Optimizes your Wordpress blog for Search Engines (Search Engine Optimization).</li>
<li><a href="http://guff.szub.net/2005/09/01/head-meta-description/">Head META Description</a> – Insert HTML META description tags using post excerpts.</li>
<li><a href="http://txfx.net/code/wordpress/enforce-www-preference/">Enforce www. Preference</a> – will help preserve your permalinks by enforcing your no-www or yes-www preference and will strip off index.php from the ends of URIs.</li>
<li><a href="http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/">Broken Link Checker</a> – monitors and notifies you for broken links on your blog.</li>
<li><a href="http://www.quickonlinetips.com/archives/quick-meta-keywords-wordpress-plugin/">Quick META Keywords</a> – will automatically add META Keywords tags to every single post based on categories under which the article is categorized.</li>
</ul>
<h3>Easy WordPress Navigation</h3>
<ul>
<li><a href="http://wasabi.pbworks.com/Related%20Entries">Related Entries</a> – Returns a list of the related entries based on active/passive keyword matches. Increase pageviews by providing targeted related content.</li>
<li><a href="http://mitcho.com/code/yarpp/">Yet Another Related Posts Plugin</a> (YARPP) – gives you a list of posts and/or pages related to the current entry.</li>
<li><a href="http://www.lesterchan.net/wordpress/readme/wp-pagenavi.html">WP-PageNavi</a> – Adds a more advanced page navigation to Wordpress, which is very useful for navigation on index and category pages.</li>
<li><a href="http://www.thunderguy.com/semicolon/wordpress/evermore-wordpress-plugin/">Evermore</a> – Abbreviate all posts when viewed on multiple post pages. Helpful to create expandable posts summaries in Wordpress. Combine with <a href="http://www.thunderguy.com/semicolon/wordpress/less-wordpress-plugin/">Less</a> that changes the (more�) link so it displays the entire post, not just the part after the “more”.</li>
<li><a href="http://wordpress.org/extend/plugins/random-redirect/">Random Redirect</a> – Allows you to create a link to a random post on your blog. Lets readers browse in a StumbleUpon-like fashion.</li>
<li><a href="http://www.roytanck.com/2008/03/15/wp-cumulus-released/">WP-Cumulus</a> – displays your tags and/or categories in 3D by placing them on a rotating sphere</li>
<li><a href="http://www.4mj.it/lightbox-js-v20-wordpress/">Lightbox JS Plugin</a> – used to overlay images on the current page into neat Javascript-powered overlay popups.</li>
<li><a href="http://www.dailyblogtips.com/homepage-excerpts-wordpress-plugin/">Homepage Excerpts</a> – Gives flexibility to use both full posts and excerpts on the homepage.</li>
<li><a href="http://alexking.org/projects/wordpress/readme?project=wordpress-mobile-edition">WordPress Mobile Edition</a> – shows an interface designed for a mobile device when visitors come to your site on a mobile device.</li>
<li><a href="http://alexking.org/projects/wordpress/readme?project=popularity-contest">Popularity Contest</a> – keeps a count of your post, category and archive views, comments, trackbacks, etc. and uses them to determine which of your posts are most popular.</li>
<li><a href="http://www.sonsofskadi.net/extended-live-archive/">Extended Live Archive</a> – implements a dynamic, AJAXified way of digging into the archives of a blog.</li>
<li><a href="http://theundersigned.net/2006/06/landing-sites-11">Landing Sites</a> – When visitors is referred to your site from a search engine, it shows them related posts to their search on your blog.</li>
<li><a href="http://sporadicnonsense.com/index.php/2005/04/28/clean-archives-plug-in/">Clean Archives</a> – designed to display your archive listings in a clean and uniform fashion. It lists the Month / Year, the day of the month the article was published, the title of the article, and the number of comments that have been made on each article.</li>
<li><a href="http://www.dailyblogtips.com/best-wordpress-plugins-custom-query-string/">Custom Query String</a> – set the number of posts (custom queries) for every single page on your website like categories, archives, or search results pages.</li>
<li><a href="http://adambrown.info/b/widgets/category/kb-advanced-rss/">KB Advanced RSS Widget</a> – a wordpress widget that gives you complete control over how RSS feeds are parsed for your sidebar.</li>
<li><a href="http://www.deanlee.cn/wordpress/permalinks-migration-plugin/">Permalinks Migration Plugin</a> – safely change your permalink structure without breaking the old links to your website or affecting your search engine rankings.</li>
</ul>
<h3>Interactive WordPress Posts</h3>
<ul>
<li> <a href="http://sharethis.com/publishers/getbutton/?type=wpplugin">Share This</a> – lets your visitors to add your post to various social bookmarking sites, or send a link via e-mail to a friend.</li>
<li><a href="http://yoast.com/wordpress/sociable/">Sociable</a> – automatically add links to your favorite social bookmarking sites on your posts, pages and in your RSS feed.</li>
<li><a href="http://www.lesterchan.net/wordpress/readme/wp-email.html">WP-Email</a> – Allows people to recommend/send your WordPress blog’s post/page to a friend.</li>
<li><a href="http://www.lesterchan.net/wordpress/readme/wp-postratings.html">WP-PostRatings</a> – Adds an AJAX rating system for your WordPress blog’s post/page.</li>
<li><a href="http://www.viper007bond.com/wordpress-plugins/vipers-video-quicktags/">Viper’s Video QuickTags</a> – easy posting of videos from various websites such as YouTube, DailyMotion, Vimeo etc.</li>
</ul>
<h3>WordPress Twiter Plugins</h3>
<ul>
<li><a href="http://danzarrella.com/beyond-tweetbacks-introducing-tweetsuite.html">TweetSuite</a> -� integrates Twitter with your blog with server-side TweetBacks, ReTweet-This buttons, digg-like Tweet-This Button, automatic tweeting of new posts etc.</li>
<li><a href="http://www.fiddyp.co.uk/wp-twitip-id-plugin-add-a-twitter-field-to-your-comment-form-easily/">WP Twitip ID</a> – Lets users add their twitter username to the comment form</li>
<li>Check out more <a href="http://www.quickonlinetips.com/archives/2007/04/10-best-twitter-tools-for-wordpress-blogs/">top Twitter plugins</a></li>
</ul>
<h3>WordPress Database tools</h3>
<ul>
<li><a href="http://www.ilfilosofo.com/blog/wp-db-backup">WordPress Database Backup</a> – On-demand backup of your WordPress database. Back up your blog today.</li>
<li><a href="http://ocaoimh.ie/wp-super-cache/">WP-Supercache</a> – A modification of WP-Cache that produces static html files.</li>
<li><a href="http://wordpress.net.ua/db-cache">DB-cache</a> – another caching plugin which claims your site will work much faster and will use less disk space for cached files.</li>
<li><a href="http://lesterchan.net/portfolio/programming/php/#wp-dbmanager">WP-DBManager</a> – Lets you to optimize database, repair database, backup database, restore database, delete backup database , drop/empty tables and run selected queries.</li>
</ul>
<h3>WordPress Admin Management Tools</h3>
<ul>
<li><a href="http://www.mightyseek.com/podpress/">PodPress</a> – adds lots of features designed to make WordPress the ideal platform for hosting a podcast.</li>
<li><a href="http://www.laptoptips.ca/projects/tinymce-advanced/">TinyMCE Advanced</a> – adds 16 plugins to TinyMCE, the WordPress wysiwyg editor. Adds over 40 new buttons to the toolbar, which is now two rows plus one hidden row.</li>
<li><a href="http://bluesome.net/post/2005/08/18/50/">Exec-PHP</a> – allows php tags inside the content or excerpt of your posts and pages to be executed just as in usual PHP files.</li>
<li><a href="http://www.photodropper.com/">Photo Dropper</a> – lets you add free photos (Flickr / Creative Commons) to your blog posts without leaving Wordpress.</li>
<li><a href="http://wordpress.org/extend/plugins/stats/">WordPress.com Stats</a> – Tracks views, post/page views, referrers, and clicks. Requires a WordPress.com API key.</li>
<li><a href="http://planetozh.com/blog/my-projects/wordpress-admin-menu-drop-down-css/">Admin Drop Down Menu</a> – eliminates the need for this double clicking on the Admin screens by allowing you to see the second level menu just by placing your mouse over a main menu.</li>
<li><a href="http://sw-guide.de/wordpress/plugins/maintenance-mode/">Maintenance Mode Plugin</a> – Adds a splash page to your blog that lets visitors know your blog is down for maintenance. Logged in administrators get full access to the blog including the front-end.</li>
<li><a href="http://www.prelovac.com/vladimir/wordpress-plugins/theme-test-drive">Theme Test Drive</a> – allows you to safely test drive any theme on your blog as an administrator, while visitors continue to see the default one.</li>
</ul>
<h3>WordPress Advertising</h3>
<ul>
<li><a href="http://blog.taragana.com/index.php/archive/wordpress-plugin-adrotator-rotate-your-ads-including-adsense-dynamically/2/">Ad Rotator</a> – Rotates Ads randomly from a specified text file.</li>
<li><a href="http://www.acmetech.com/blog/adsense-deluxe/">AdSense-Deluxe</a> – is a WordPress plugin offering advanced options for managing the automatic insertion of Google AdSense or Yahoo Publisher Network (YPN) ads to your WordPress posts. More <a href="http://www.quickonlinetips.com/archives/2006/11/10-best-wordpress-plugins-for-google-adsense/">Google Adsense WP plugins</a>.</li>
<li><a href="http://www.blogclout.com/blog/goodies/buy-me-a-beer-paypal-donation-plugin/">Buy Me a Beer</a> – allows your readers to donate money to you via PayPal on pretext of buying a beer.</li>
<li><a href="http://www.wpbankroll.com/">Wordpress BankRoll</a> – offers to help you cut out the middleman by allowing advertisers to buy reviews directly on your blog.</li>
</ul>
<h3>Wordpress Blog Translation</h3>
<ul>
<li><a href="http://www.nothing2hide.net/blog/wp-plugins/wordpress-global-translator-plugin/">Global Translator</a> – Translate your blog into multiple languages in a search engine friendly way.</li>
<li><a href="http://taragana.com/products/translator-plugin-pro/">Translator Plugin Pro</a> – provides automatic machine translation of your blog in 13+1 languages. Costs $30.</li>
</ul>
<h3>Enhance Wordpress RSS Feeds</h3>
<ul>
<li><a href="http://flagrantdisregard.com/feedburner/">FD Feedburner</a> – Redirects the main feed and optionally the comments feed to Feedburner.com</li>
<li><a href="http://www.quickonlinetips.com/archives/simple-feed-copyright-wordpress-plugin/">Simple Feed Copyright</a> – adds a simple copyright notice to full text wordpress feeds.</li>
<li><a href="http://www.solo-technology.com/apps.html#related_posts">Add Related Posts to Your Feed</a> – adds a list of Related Posts to your full text feed. Requires either UTW or Related Posts plugin installed and activated.</li>
<li><a href="http://www.smackfoo.com/plugins/sig2feed/">RSS Signature</a> – allow the addition of a custom tagline, signature or copyright message to the wordpress generated rss feeds.</li>
</ul>
<h3>Random WordPress Stuff</h3>
<ul>
<li><a href="http://blog.jalenack.com/archives/democracy/">Democracy</a> –  adds AJAX polling functionality to your WordPress blog.</li>
<li><a href="http://eightface.com/wordpress/flickrrss/">flickrRSS</a> – allows you to easily display Flickr photos on your weblog.</li>
</ul>
<p><strong> </strong></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-spaced sexy-bookmarks-bg-caring">
<ul class="socials">
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.pagalz.com/blog/2010/03/worlds-best-50-plugins-widgets-for-power-blogging/&amp;t=World%27s+best+50+plugins+%26+widgets+for+power+blogging" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.pagalz.com/blog/2010/03/worlds-best-50-plugins-widgets-for-power-blogging/&amp;title=World%27s+best+50+plugins+%26+widgets+for+power+blogging" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.pagalz.com/blog/2010/03/worlds-best-50-plugins-widgets-for-power-blogging/&amp;title=World%27s+best+50+plugins+%26+widgets+for+power+blogging" 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="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.pagalz.com/blog/2010/03/worlds-best-50-plugins-widgets-for-power-blogging/&amp;t=World%27s+best+50+plugins+%26+widgets+for+power+blogging" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=World%27s+best+50+plugins+%26+widgets+for+power+blogging+-+http://bit.ly/bWrk8b+(via+@http://twitter.com/pagalz)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.pagalz.com/blog/2010/03/worlds-best-50-plugins-widgets-for-power-blogging/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.pagalz.com/blog/2010/03/worlds-best-50-plugins-widgets-for-power-blogging/&amp;title=World%27s+best+50+plugins+%26+widgets+for+power+blogging&amp;summary=%0D%0A%0D%0AThe%20wordpress%20plugins%20are%20arranged%20broadly%20by%20category%20of%20usage.%20As%20far%20as%20I%20know%2C%20all%20these%20plugins%20are%20compatible%20with%20the%20latest%20WordPress%202.5%20version.%20Please%20feel%20free%20to%20suggest%20great%20plugins%20in%20comments%20that%20I%20can%20add%20to%20this%20list.%0D%0AManage%20WordPress%20Comments%0D%0A%0D%0A%09Subscribe%20To%20Comments%20%E2%80%93%20A&amp;source=Pagalz.com - Blog" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.pagalz.com/blog/2010/03/worlds-best-50-plugins-widgets-for-power-blogging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exploring Google</title>
		<link>http://www.pagalz.com/blog/2009/12/exploring-google/</link>
		<comments>http://www.pagalz.com/blog/2009/12/exploring-google/#comments</comments>
		<pubDate>Sun, 20 Dec 2009 03:10:44 +0000</pubDate>
		<dc:creator>Durgesh</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Search Engine]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Web Apps]]></category>
		<category><![CDATA[applications]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Surprise]]></category>

		<guid isPermaLink="false">http://www.pagalz.com/blog/?p=595</guid>
		<description><![CDATA[I came across a new place on google where I could see the most recently searched keyword during that day. The place is http://www.google.co.in/trends/hottrends.]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-726" title="trends_logo_lg1" src="http://www.pagalz.com/blog/wp-content/uploads/2009/12/trends_logo_lg1.jpg" alt="trends_logo_lg1" width="276" height="110" /></p>
<p>I came across a new place on google where I could see the most recently searched keyword during that day. The place is http://www.google.co.in/trends/hottrends.</p>
<p>Go guys check it out and look for something fascinating everyday on Google. <img src='http://www.pagalz.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Enjoyzz<br />
Durgesh Dhalla</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-spaced sexy-bookmarks-bg-caring">
<ul class="socials">
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.pagalz.com/blog/2009/12/exploring-google/&amp;t=Exploring+Google" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.pagalz.com/blog/2009/12/exploring-google/&amp;title=Exploring+Google" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.pagalz.com/blog/2009/12/exploring-google/&amp;title=Exploring+Google" 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="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.pagalz.com/blog/2009/12/exploring-google/&amp;t=Exploring+Google" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Exploring+Google+-+http://bit.ly/b7bayx+(via+@http://twitter.com/pagalz)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.pagalz.com/blog/2009/12/exploring-google/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.pagalz.com/blog/2009/12/exploring-google/&amp;title=Exploring+Google&amp;summary=%0D%0A%0D%0AI%20came%20across%20a%20new%20place%20on%20google%20where%20I%20could%20see%20the%20most%20recently%20searched%20keyword%20during%20that%20day.%20The%20place%20is%20http%3A%2F%2Fwww.google.co.in%2Ftrends%2Fhottrends.%0D%0A%0D%0AGo%20guys%20check%20it%20out%20and%20look%20for%20something%20fascinating%20everyday%20on%20Google.%20%3A%29%0D%0A%0D%0AEnjoyzz%0D%0ADurgesh%20Dhalla&amp;source=Pagalz.com - Blog" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.pagalz.com/blog/2009/12/exploring-google/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XML Parsing Error: xml declaration not at start of external entity … Line Number 2, Column 1:</title>
		<link>http://www.pagalz.com/blog/2009/08/xml-parsing-error-xml-declaration-not-at-start-of-external-entity-%e2%80%a6-line-number-2-column-1/</link>
		<comments>http://www.pagalz.com/blog/2009/08/xml-parsing-error-xml-declaration-not-at-start-of-external-entity-%e2%80%a6-line-number-2-column-1/#comments</comments>
		<pubDate>Sun, 09 Aug 2009 11:10:05 +0000</pubDate>
		<dc:creator>Durgesh</dc:creator>
				<category><![CDATA[Errors]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Web Apps]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Feed]]></category>
		<category><![CDATA[Parsing Error]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.pagalz.com/blog/?p=567</guid>
		<description><![CDATA[Hi All,
Today in the morning I noticed that my blog is giving error on feeds page, and after searching and googling here and there could not find a straight solution to it.
Like mine if anyone is getting such a error on there wordpress blog.
XML Parsing Error: xml declaration not at start of external entity …  <a href="http://www.pagalz.com/blog/2009/08/xml-parsing-error-xml-declaration-not-at-start-of-external-entity-%e2%80%a6-line-number-2-column-1/" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p>Hi All,</p>
<p>Today in the morning I noticed that my blog is giving error on <a title="RSS feeds page" href="http://www.pagalz.com/blog/feed/" target="_blank">feeds page</a>, and after searching and googling here and there could not find a straight solution to it.</p>
<p>Like mine if anyone is getting such a error on there wordpress blog.</p>
<blockquote><p><strong>XML Parsing Error: xml declaration not at start of external entity … Line Number 2, Column 1:&lt;?xml version=”1.0″ encoding=”UTF-8″?&gt;</strong></p></blockquote>
<p>Here are some of the steps to remove the error:-</p>
<ol>
<li>Check your wp-rss2.php and wp-atom.php files for blank lines outside of &lt;? and ?&gt; bracketed sections.</li>
<li>Check your wp-config.php file for blank lines outside of &lt;? and ?&gt; bracketed sections.</li>
<li>Check your theme’s functions.php file for blank lines outside of &lt;? and ?&gt; bracketed sections.</li>
<li>One by one, disable plugins and revalidate until you isolate the one causing the problem.</li>
</ol>
<p>And after all the above steps if your still not able to fix the issue try updating your wordpress blog, to the latest version(2.8.3), I just upgraded it and it worked for me.</p>
<p>Hopefully this post would be helpfull for those how are really struggling with the XML Parsing issue.</p>
<p>Just to share something new and nice for those who don&#8217;t want to waste their time on all the above steps. I have found a new plugin <a href="http://www.flyaga.info/en/wordpress/plugins/fix-rss-feed-error-wordpress-plugins.htm/" target="_blank"><span><strong>Fix rss feed</strong></span></a> which claims to solve all the RSS related issue by itself just by installing them on Wordpress blog.</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-spaced sexy-bookmarks-bg-caring">
<ul class="socials">
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.pagalz.com/blog/2009/08/xml-parsing-error-xml-declaration-not-at-start-of-external-entity-%e2%80%a6-line-number-2-column-1/&amp;t=XML+Parsing+Error%3A+xml+declaration+not+at+start+of+external+entity+%E2%80%A6+Line+Number+2%2C+Column+1%3A%3C%3Fxml+version%3D%E2%80%9D1.0%E2%80%B3+encoding%3D%E2%80%9DUTF-8%E2%80%B3%3F%3E" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.pagalz.com/blog/2009/08/xml-parsing-error-xml-declaration-not-at-start-of-external-entity-%e2%80%a6-line-number-2-column-1/&amp;title=XML+Parsing+Error%3A+xml+declaration+not+at+start+of+external+entity+%E2%80%A6+Line+Number+2%2C+Column+1%3A%3C%3Fxml+version%3D%E2%80%9D1.0%E2%80%B3+encoding%3D%E2%80%9DUTF-8%E2%80%B3%3F%3E" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.pagalz.com/blog/2009/08/xml-parsing-error-xml-declaration-not-at-start-of-external-entity-%e2%80%a6-line-number-2-column-1/&amp;title=XML+Parsing+Error%3A+xml+declaration+not+at+start+of+external+entity+%E2%80%A6+Line+Number+2%2C+Column+1%3A%3C%3Fxml+version%3D%E2%80%9D1.0%E2%80%B3+encoding%3D%E2%80%9DUTF-8%E2%80%B3%3F%3E" 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="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.pagalz.com/blog/2009/08/xml-parsing-error-xml-declaration-not-at-start-of-external-entity-%e2%80%a6-line-number-2-column-1/&amp;t=XML+Parsing+Error%3A+xml+declaration+not+at+start+of+external+entity+%E2%80%A6+Line+Number+2%2C+Column+1%3A%3C%3Fxml+version%3D%E2%80%9D1.0%E2%80%B3+encoding%3D%E2%80%9DUTF-8%E2%80%B3%3F%3E" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=XML+Parsing+Error%3A+xml+declaration+not+at+start+of+external+entity+%E2%80%A6+Line+Numb%5B..%5D+-+http://www.pagalz.com/blog/2009/08/xml-parsing-error-xml-declaration-not-at-start-of-external-entity-%e2%80%a6-line-number-2-column-1/+(via+@http://twitter.com/pagalz)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.pagalz.com/blog/2009/08/xml-parsing-error-xml-declaration-not-at-start-of-external-entity-…-line-number-2-column-1/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.pagalz.com/blog/2009/08/xml-parsing-error-xml-declaration-not-at-start-of-external-entity-%e2%80%a6-line-number-2-column-1/&amp;title=XML+Parsing+Error%3A+xml+declaration+not+at+start+of+external+entity+%E2%80%A6+Line+Number+2%2C+Column+1%3A%3C%3Fxml+version%3D%E2%80%9D1.0%E2%80%B3+encoding%3D%E2%80%9DUTF-8%E2%80%B3%3F%3E&amp;summary=Hi%20All%2C%0D%0A%0D%0AToday%20in%20the%20morning%20I%20noticed%20that%20my%20blog%20is%20giving%20error%20on%20feeds%20page%2C%20and%20after%20searching%20and%20googling%20here%20and%20there%20could%20not%20find%20a%20straight%20solution%20to%20it.%0D%0A%0D%0ALike%20mine%20if%20anyone%20is%20getting%20such%20a%20error%20on%20there%20wordpress%20blog.%0D%0AXML%20Parsing%20Error%3A%20xml%20declaration%20not%20at%20start%20of%20&amp;source=Pagalz.com - Blog" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.pagalz.com/blog/2009/08/xml-parsing-error-xml-declaration-not-at-start-of-external-entity-%e2%80%a6-line-number-2-column-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Discover The Best Of The Web</title>
		<link>http://www.pagalz.com/blog/2008/10/discover-the-best-of-the-web/</link>
		<comments>http://www.pagalz.com/blog/2008/10/discover-the-best-of-the-web/#comments</comments>
		<pubDate>Wed, 08 Oct 2008 10:18:47 +0000</pubDate>
		<dc:creator>Durgesh</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Web Apps]]></category>

		<guid isPermaLink="false">http://www.pagalz.com/blog/2008/10/08/discover-the-best-of-the-web/</guid>
		<description><![CDATA[We are always in the search of great free resources, tips and tricks, etc for our readers.  In this, we will find and make a list for the best of the web for the whole month. Maybe, we cannot cover all of the best from around the web but we will try our best  <a href="http://www.pagalz.com/blog/2008/10/discover-the-best-of-the-web/" class="more-link">More &#62;</a>]]></description>
			<content:encoded><![CDATA[<p>We are always in the search of great free resources, tips and tricks, <span title="You need to add a period at the end of this abbreviation, &lt;i&gt;etc&lt;b&gt;.&lt;/b&gt;&lt;/i&gt;" class="ver">etc</span> for our readers.  In this, we will find and make a list for the best of the web for the whole month. Maybe, we cannot cover all of the best from around the web but we will try our best to cover as much as possible.</p>
<p><strong>Design Tips, Tricks and Tutorial </strong></p>
<p><font color="#800000"><strong><a href="http://www.tutorial9.net/photoshop/colorful-glowing-text-effect/" target="_blank">Colorful Glowing Text Effect</a></strong></font></p>
<p><a href="http://www.tutorial9.net/photoshop/colorful-glowing-text-effect/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2008/08/colorful-glowing-text-effect.jpg" alt="Colorful Glowing Text Effect" /></a></p>
<p><span id="more-467"></span></p>
<p><font color="#800000"><strong><a href="http://psdtuts.com/tutorials-effects/40-dark-and-futuristic-photoshop-effects/" target="_blank">40 Dark and Futuristic Photoshop Effects </a></strong></font></p>
<p><a href="http://psdtuts.com/tutorials-effects/40-dark-and-futuristic-photoshop-effects/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2008/08/dark-and-futuristic-photoshop-effects.jpg" alt="40 Dark and Futuristic Photoshop Effects" /></a></p>
<p><font color="#800000"><a href="http://www.hongkiat.com/blog/30-nicest-photoshop-photo-effects-part-ii/" target="_blank">30+ Nicest Photoshop Photo Tutorials, Part II</a></font></p>
<p><a href="http://www.hongkiat.com/blog/30-nicest-photoshop-photo-effects-part-ii/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2008/08/photoshop-photo-tutorials.jpg" alt="30+ Nicest Photoshop Photo Tutorials, Part II" /></a></p>
<p><strong><font color="#800000"><a href="http://vandelaydesign.com/blog/design/photoshop-tutorials-poster-design/" target="_blank">35 Photoshop Tutorials for Designing Your Own Posters</a> </font></strong></p>
<p><a href="http://vandelaydesign.com/blog/design/photoshop-tutorials-poster-design/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2008/08/photoshop-tutorials-posters.jpg" alt="35 Photoshop Tutorials for Designing Your Own Posters" /></a></p>
<p><strong>Artwork, Digital Photography and Inspiration </strong><br />
<strong><font color="#800000"><a href="http://www.noupe.com/graphics/brilliant-pattern-designs.html" title="The Showcase of Brilliant Pattern Designs" target="_blank">The Showcase of Brilliant Pattern Designs</a></font></strong></p>
<p><a href="http://www.noupe.com/graphics/brilliant-pattern-designs.html" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2008/08/brilliant-pattern-designs.jpg" alt="The Showcase of Brilliant Pattern Designs" /></a></p>
<p><strong><font color="#800000"><a href="http://www.webdesignerwall.com/trends/single-page-portfolio-sites/" target="_blank">Single-Page Portfolio Sites</a></font></strong></p>
<p><a href="http://www.webdesignerwall.com/trends/single-page-portfolio-sites/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2008/08/single-page-portfolio-sites.jpg" alt="Single-Page Portfolio Sites" /></a></p>
<p><strong><font color="#800000"><a href="http://abduzeedo.com/web-design-illustration" target="_blank">Web Design: Illustration</a></font></strong></p>
<p><a href="http://abduzeedo.com/web-design-illustration" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2008/08/web-design-illustration.jpg" alt="Web Design: Illustration" /></a></p>
<p><strong><font color="#800000"><a href="http://vectortuts.com/illustration/50-high-impact-illustrated-vector-posters/" target="_blank">50+ High-impact Illustrated Vector Posters</a></font></strong></p>
<p><a href="http://vectortuts.com/illustration/50-high-impact-illustrated-vector-posters/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2008/08/vector-posters.jpg" alt="50+ High-impact Illustrated Vector Posters" /></a></p>
<p><strong><font color="#800000"><a href="http://www.colourlovers.com/blog/2008/08/19/20-stunningly-colorful-commercial-designers/" style="text-decoration: none; color: #515151" target="_blank">20 Stunningly Colorful Commercial Designers</a></font></strong></p>
<p><a href="http://www.colourlovers.com/blog/2008/08/19/20-stunningly-colorful-commercial-designers/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2008/08/colorful-designs.jpg" alt="20 Stunningly Colorful Commercial Designers" /></a></p>
<p><font color="#800000"><a href="http://www.hongkiat.com/blog/30-impressive-colour-spectrum-and-rainbow-wallpapers/" target="_blank"> 30 Impressive Colour Spectrum and Rainbow Wallpapers</a></font></p>
<p><a href="http://www.hongkiat.com/blog/30-impressive-colour-spectrum-and-rainbow-wallpapers/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2008/08/impressive-colour-and-rainbow-wallpapers.jpg" alt="30 Impressive Colour Spectrum and Rainbow Wallpapers" /></a></p>
<p><font color="#800000"><strong><a href="http://www.cssleak.com/Category/Websites-Using-Wood-Elements.html" target="_blank">31 Websites Using Wood Elements</a></strong></font></p>
<p><a href="http://www.cssleak.com/Category/Websites-Using-Wood-Elements.html" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2008/08/websites-using-wood-elements.jpg" alt="31 Websites Using Wood Elements" /></a></p>
<p><strong>Javascript and Ajax</strong></p>
<p><font color="#800000"><strong><a href="http://speckyboy.com/2008/08/19/a-study-in-ajax-web-trends-what-are-the-best-free-ajax-resources-70-of-the-best-ajax-resources/" target="_blank">A study in Ajax Web trends. What are the best Free Ajax Resources?</a></strong></font></p>
<p><a href="http://speckyboy.com/2008/08/19/a-study-in-ajax-web-trends-what-are-the-best-free-ajax-resources-70-of-the-best-ajax-resources/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2008/08/ajax-web-trends.jpg" alt="A study in Ajax Web trends. What are the best Free Ajax Resources? (70 of the Best Ajax Resources)." /></a></p>
<p><font color="#800000"><strong><a href="http://www.smashingmagazine.com/2008/08/11/5-useful-coding-solutions-for-designers-and-developers/" title="5 Useful Coding Solutions For Designers and Developers" rel="bookmark">5 Useful Coding Solutions For Designers and Developers</a></strong></font></p>
<p><strong>xHTML and CSS </strong></p>
<p><font color="#800000"><strong><a href="http://www.designvitality.com/blog/2008/08/19-css-menu-tutorials-to-spice-up-your-web-designs/" title="Permanent Link: 19 CSS Menu Tutorials to Spice Up Your Web Designs" rel="bookmark" target="_blank">19 CSS Menu Tutorials to Spice Up Your Web Designs</a></strong></font></p>
<h2><a href="http://www.designvitality.com/blog/2008/08/19-css-menu-tutorials-to-spice-up-your-web-designs/" title="Permanent Link: 19 CSS Menu Tutorials to Spice Up Your Web Designs" rel="bookmark"><img src="http://www.smashingapps.com/wp-content/uploads/2008/08/css-menu-tutorials.jpg" alt="19 CSS Menu Tutorials to Spice Up Your Web Designs" /></a></h2>
<p><font color="#800000"><strong><a href="http://www.noupe.com/css/form-elements-40-cssjs-styling-and-functionality-techniques.html" target="_blank">40+ CSS/JS Styling and Functionality Techniques</a></strong></font></p>
<p><a href="http://www.noupe.com/css/form-elements-40-cssjs-styling-and-functionality-techniques.html" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2008/08/css-styling-and-functionality-techniques.jpg" alt="CSS/JS Styling and Functionality Techniques" /></a></p>
<p><strong><font color="#800000"><a href="http://reencoded.com/2008/08/18/12-great-css-resources-from-inspiration-to-implementation/" title="Permanent Link to 12 Great CSS Resources: From Inspiration to Implementation." rel="bookmark">12 Great CSS Resources: From Inspiration to Implementation</a></font></strong></p>
<p><strong>Resources </strong></p>
<p><strong><font color="#800000"><a href="http://designm.ag/resources/13-sources-for-background-patterns-and-textures/" target="_blank">13 Sources for Background Patterns and Textures</a></font></strong></p>
<p><a href="http://designm.ag/resources/13-sources-for-background-patterns-and-textures/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2008/08/background-patterns-and-textures.jpg" alt="13 Sources for Background Patterns and Textures" /></a></p>
<p><font color="#800000"><strong><a href="http://sixrevisions.com/tools/adobe_air_apps_web_designers/" title="Permanent Link to 10 Adobe AIR Apps for Web Designers" rel="bookmark" target="_blank">Adobe AIR Apps for Web Designers</a></strong></font></p>
<p><a href="http://sixrevisions.com/tools/adobe_air_apps_web_designers/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2008/08/adobe-air-apps.jpg" alt="10 Adobe AIR Apps for Web Designers" /></a></p>
<p><strong><font color="#800000"><a href="http://www.webresourcesdepot.com/retro-photoshop-brushes-and-vector-images-giant-design-pack/" target="_blank">Retro Photoshop Brushes And Vector Images &#8211; Giant Design Pack</a></font></strong></p>
<p><a href="http://www.webresourcesdepot.com/retro-photoshop-brushes-and-vector-images-giant-design-pack/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2008/08/retro-photoshop-brushes-and-vector-images.jpg" alt="Retro Photoshop Brushes And Vector Images - Giant Design Pack" height="156" width="500" /></a></p>
<p><font color="#800000"><strong><a href="http://www.noupe.com/photoshop/40-adobe-photoshop-psd-files.html" target="_blank">Retro Photoshop Brushes And Vector Images &#8211; Giant Design Pack</a></strong></font></p>
<p><a href="http://www.noupe.com/photoshop/40-adobe-photoshop-psd-files.html" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2008/08/free-photosho-files-and-tutorials.jpg" alt="High Quality .PSD Files and Tutorials" /></a></p>
<p><font color="#800000"><strong><a href="http://vandelaydesign.com/blog/design/photoshop-brushes-light-sparkles/" target="_blank">200+ Photoshop Brushes for Light, Sparkles</a></strong></font></p>
<p><a href="http://vandelaydesign.com/blog/design/photoshop-brushes-light-sparkles/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2008/08/photoshop-brushes-for-light-and-sparkles.jpg" alt="200+ Photoshop Brushes for Light, Sparkles" /></a></p>
<p><font color="#800000"><strong><a href="http://woork.blogspot.com/2008/08/10-awesome-typewriter-fonts-for-web.html" target="_blank">10 Awesome typewriter fonts for web designers</a></strong></font></p>
<p><a href="http://woork.blogspot.com/2008/08/10-awesome-typewriter-fonts-for-web.html" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2008/08/awesome-typewriter-fonts.jpg" alt="10 Awesome typewriter fonts for web designers" /></a></p>
<p><strong>Miscellaneous Articles</strong></p>
<p><strong><font color="#800000"><a href="http://designreviver.com/general/14-of-the-most-useful-web-design-blogs/" title="Permanent Link to 14 of the Most Useful Web Design Blogs" rel="bookmark" target="_blank">14 of the Most Useful Web Design Blogs</a></font></strong></p>
<p><a href="http://designreviver.com/general/14-of-the-most-useful-web-design-blogs/" target="_blank"><img src="http://www.smashingapps.com/wp-content/uploads/2008/08/web-design-blogs.jpg" alt="14 of the Most Useful Web Design Blogs" /></a></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-spaced sexy-bookmarks-bg-caring">
<ul class="socials">
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.pagalz.com/blog/2008/10/discover-the-best-of-the-web/&amp;t=Discover+The+Best+Of+The+Web" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.pagalz.com/blog/2008/10/discover-the-best-of-the-web/&amp;title=Discover+The+Best+Of+The+Web" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.pagalz.com/blog/2008/10/discover-the-best-of-the-web/&amp;title=Discover+The+Best+Of+The+Web" 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="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.pagalz.com/blog/2008/10/discover-the-best-of-the-web/&amp;t=Discover+The+Best+Of+The+Web" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Discover+The+Best+Of+The+Web+-+http://bit.ly/cEzp0p+(via+@http://twitter.com/pagalz)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.pagalz.com/blog/2008/10/discover-the-best-of-the-web/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.pagalz.com/blog/2008/10/discover-the-best-of-the-web/&amp;title=Discover+The+Best+Of+The+Web&amp;summary=We%20are%20always%20in%20the%20search%20of%20great%20free%20resources%2C%20tips%20and%20tricks%2C%20etc%20for%20our%20readers.%20%20In%20this%2C%20we%20will%20find%20and%20make%20a%20list%20for%20the%20best%20of%20the%20web%20for%20the%20whole%20month.%20Maybe%2C%20we%20cannot%20cover%20all%20of%20the%20best%20from%20around%20the%20web%20but%20we%20will%20try%20our%20best%20to%20cover%20as%20much%20as%20possible.%0D%0A%0D%0ADesign%20T&amp;source=Pagalz.com - Blog" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.pagalz.com/blog/2008/10/discover-the-best-of-the-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

