<?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>Tech Monk &#187; blogging</title>
	<atom:link href="http://www.techmonk.com/tag/blogging/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.techmonk.com</link>
	<description>Guide To The Nth Dimension Of Computing And Internet</description>
	<lastBuildDate>Mon, 16 Jan 2012 03:13:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How to Make a Neat Horizontal Bar with Social Buttons</title>
		<link>http://www.techmonk.com/how-to-make-a-neat-horizontal-bar-with-social-buttons/1062/</link>
		<comments>http://www.techmonk.com/how-to-make-a-neat-horizontal-bar-with-social-buttons/1062/#comments</comments>
		<pubDate>Wed, 31 Aug 2011 14:39:30 +0000</pubDate>
		<dc:creator>Pramodh KP</dc:creator>
				<category><![CDATA[Tools & Tutorials]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.techmonk.com/?p=1062</guid>
		<description><![CDATA[Social networking sites provide a great way to share content with people. So, it's important that your content is equipped with good sharing options. In this tutorial, I talk about a code that I wrote to create a horizontal bar with all social buttons in one line]]></description>
			<content:encoded><![CDATA[<p>Just a few days ago, I changed the theme of my blog, with my own one. While designing my own theme, I was kind of stuck with one thing. If you came to this post, searching through Google, then I think even you are finding the same problem.</p>
<p><strong>PROBLEM</strong> -  Making a neat horizontal bar with all the social-sharing buttons inline.</p>
<p>Well, I am not a coding expert. But, somehow I wrote a code which is simple and easy. So, I thought I would share the code here on my blog.</p>
<p>I scratched my head for a lot of time over this problem. But, later I came to know that I was not really looking at the problem. Okay, now first let me give you the code.</p>
<pre><code>&lt;div&gt; 

&lt;!-- tweet button --&gt;  
&lt;div style="float:left;"&gt;
&lt;a href="http://twitter.com/share" data-count="horizontal"&gt;Tweet&lt;/a&gt;
&lt;script type="text/javascript" src="http://platform.twitter.com/widgets.js"&gt; &lt;/script&gt;
&lt;/div&gt;
 &lt;!-- tweet button --&gt; 

&lt;!-- facebook like button--&gt;
&lt;div style="float:left;"&gt;
&lt;iframe src="http://www.facebook.com/plugins/like.php?href&amp;amp;send=false&amp;amp; layout=button_count&amp;amp;width=450&amp;amp;show_faces=true&amp;amp;action=like&amp;amp; colorscheme=light&amp;amp;font&amp;amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:60px; height:21px;" allowTransparency="true"&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;!-- facebook like button--&gt; 

&lt;!-- Google +1 button --&gt;  
&lt;div style="float:left;"&gt;
&lt;!-- Place this tag where you want the +1 button to render --&gt;  
&lt;g:plusone size="medium" annotation="inline" <span style="color: #ff0000;">width="60"</span>&gt;&lt;/g:plusone&gt; 

&lt;!-- Place this render call where appropriate --&gt;  
&lt;script type="text/javascript"&gt;   (function() {     var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;     po.src = 'https://apis.google.com/js/plusone.js';     var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);   })();  &lt;/script&gt;
&lt;/div&gt;
&lt;!-- Google +1 button --&gt;
&lt;/div&gt;</code></pre>
<p><strong>One another thing</strong>-  This is the code I wrote. It is very simple and easy. But, still this code didn&#8217;t work in the beginning. Notice the highlighted part of the code above. By default, the Plus one button width will be450px or something, which makes it not possible to keep them inline. That&#8217;s why it didn&#8217;t work. But, after sometime I found the problem and fixed it. I am just giving a heads up so that you don&#8217;t do the same problem.</p>
<p>Also, the code I wrote is only for three buttons, but you can extend it. Just add the code of the button in between the following tags.</p>
<blockquote>
<pre>&lt;div style="float:left;"&gt;
Paste the code for the button here
&lt;/div&gt;</pre>
</blockquote>
<p>That&#8217;s all. You can see my code in action at the beginning of this post. Please don&#8217;t hesitate to comment if you have any problems or suggestions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techmonk.com/how-to-make-a-neat-horizontal-bar-with-social-buttons/1062/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Create Extension of Any Website/Blog for Any Browser Using Extension Factory</title>
		<link>http://www.techmonk.com/create-extension-of-any-blog-for-any-browser/1058/</link>
		<comments>http://www.techmonk.com/create-extension-of-any-blog-for-any-browser/1058/#comments</comments>
		<pubDate>Mon, 29 Aug 2011 09:29:28 +0000</pubDate>
		<dc:creator>Pramodh KP</dc:creator>
				<category><![CDATA[Tools & Tutorials]]></category>
		<category><![CDATA[addons]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[services]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.techmonk.com/?p=1058</guid>
		<description><![CDATA[Sharing content is the basic motive any blogger has. The more the ways to share your content, the more the traffic and reader base. Here is a tool that helps you to create extension for your blog using your feed easily, in just a click!]]></description>
			<content:encoded><![CDATA[<p>The basic motive of any blog is to share content with people about any topic. Sharing is done by different means &#8211; example, through <a href="http://www.techmonk.com/tag/social-networking/" target="_blank">social networks</a> like Twitter, Facebook or through feeds. Each and every blogger strives hard to make his content reach <a title="How To Get Readers For A Blog?" href="http://www.techmonk.com/how-to-get-readers-permanent-traffic-blog/126/" target="_blank">maximum readers</a>. Feeds are the most popular way of sharing content of your blog with readers. Considering that your content is good, it is obvious that the<a title="Get Apture And Make Your Blog More Reader Friendly!" href="http://www.techmonk.com/addon-reduce-bounce-rate-of-blogger-wordpress-blogs/528/" target="_blank"> more easier</a> it becomes to access your content, the more reader base your content will get.</p>
<p>Today in this blog post, I will introduce a tool that will help you to create extension for your blog, which in turn will help your content to be easily discovered.<strong> Extension Factory</strong> is a tool that helps you to easily create extension of your blog, or rather any blog you want &#8211; all you need to do is enter the required blog URL.</p>
<p>It is easy to create an extension of your blog. Go to <a title="Extension Factory" href="http://builder.extensionfactory.com/" target="_blank">Extension Factory</a> page. Enter the URL of the blog and click &#8220;Create your Extension&#8221;. Then, you get a code, copy and add it in your website. Or, if you want to test the extension first, you can also do it by click on &#8220;Test Extension&#8221; button. If you are a wordpress user, then there is a<a title="Wordpress Plugin" href="http://wordpress.org/extend/plugins/site-button-by-extension-factory/" target="_blank"> plugin</a> that does the same job. You might have noticed that on my blog.</p>
<p>The tool basically takes the RSS feed URL of a blog and creates an extension using that feed. The tool supports Firefox, Chrome, Safari and IE. It creates a simple dialog box interface containing feeds of your blog posts. Whenever a new post is updated on your blog, the extension shows a notification (See picture below).</p>
<p><img class="aligncenter" title="Create own extension" src="http://www.techmonk.com/postimg/create_own_extension.png" alt="create_own_extension" width="444" height="101" /></p>
<p>The extension has an option to bookmark posts too. Also, if a blog has more than one feed, you can select only the feeds you want, from the &#8220;Options&#8221; tab.</p>
<p><img class="aligncenter" title="create own extension 2" src="http://www.techmonk.com/postimg/create_own_extension_2.png" alt="create_own_extension_2" width="515" height="533" /></p>
<p>&nbsp;</p>
<p>If you want anymore information about this tool, visit their <a title="Extension Factory FAQ" href="http://www.techmonk.com/search-for-text-in-compressed-files-duplicate-files/1038/" target="_blank">FAQ</a> here.</p>
<p>Don&#8217;t you think getting feeds of your favorite blog right on your browser would be great? So, IMHO this a simple yet good tool. What do you think about this tool? Would you use it for your blog? Or how would you use it? Drop in your comments below.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techmonk.com/create-extension-of-any-blog-for-any-browser/1058/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Want to Make a Few Bucks More This Football Season? Use the Right Keywords</title>
		<link>http://www.techmonk.com/using-right-keywords-for-football-soccer-posts/822/</link>
		<comments>http://www.techmonk.com/using-right-keywords-for-football-soccer-posts/822/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 04:33:14 +0000</pubDate>
		<dc:creator>Pramodh KP</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[analysis]]></category>
		<category><![CDATA[blogger]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[fifa world cup 2010]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[traffic]]></category>

		<guid isPermaLink="false">http://www.techmonk.com/?p=822</guid>
		<description><![CDATA[FIFA is trending, and bloggers are trying to make more bucks out of it. If you are also trying to, then learn what keywords to use and how to use]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.techmonk.com/tag/fifa-world-cup-2010/" target="_blank">FIFA World Cup 2010</a> has been a trending topic online, for quite a few days now. Many bloggers have also started posting about the FIFA. However, it is important to check whether you are using the right keywords, in right places. This post is just to give a tip to increase your earnings to a small extent.</p>
<p>While writing FIFA posts, most blogs (especially Indian) I have read, have used the keyword Football (including me).  However, I recently did a adwords keyword search using the <a href="https://adwords.google.com/o/Targeting/Explorer?__u=1000000000&amp;__c=1000000000&amp;stylePrefOverride=2#search.none!ideaType=KEYWORD&amp;requestType=IDEAS" target="_blank">keyword tool</a> regarding this. I found that the keyword &#8220;soccer&#8221; had more Estimated Avg.CPC, than the keyword &#8220;football&#8221;.</p>
<p>Well, the reason why we (Indians) use &#8220;football&#8221; more often than &#8220;soccer&#8221; is that &#8220;football&#8221; is used all over the world, while &#8220;Soccer&#8221; is American. As, in most parts of world, &#8220;football&#8221; is in practice, we tend to use &#8220;football&#8221;.</p>
<p>If you take a look at the image below, the keyword &#8220;football&#8221; has an average CPC of around 0.99 USD, while &#8220;soccer&#8221; has an average CPC of 1.13 USD. The difference is pretty much noticeable.</p>
<p style="text-align: center;"><a href="http://techmonk.com/postimg/adwords_research_football.png"><img class="aligncenter" title="adwords_research_football" src="http://techmonk.com/postimg/adwords_research_football.png" alt="adwords_research_football" width="547" height="103" /></a></p>
<p>Another thing is, while doing the keyword research, the location was set to United States. Since most bloggers, as far as I know, target American traffic, it&#8217;s better to use &#8220;soccer&#8221; keyword in your posts than &#8220;football&#8221; keyword.</p>
<p>But, till now we just looked at the average CPC. But, if you see the the search volume for the keyword &#8220;football&#8221; is more than the search volume for &#8220;soccer&#8221;. It&#8217;s almost less than half the &#8220;football&#8221; volume. So, it&#8217;s better to use both the keywords simultaneously. Like, &#8220;football&#8221; in the title and excerpt, while &#8220;soccer&#8221; in the middle of the posts. What do you think?</p>
<p><em><strong>This post is not written by an expert. These are just my views and there may be many mistakes in my analysis. I expect you to hit me with questions or tell me what&#8217;s right and what&#8217;s wrong. We can strike a discussion together. Thanks for reading!</strong></em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.techmonk.com/using-right-keywords-for-football-soccer-posts/822/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check How A Search Engine Sees Your Blog With SEO-Browser</title>
		<link>http://www.techmonk.com/check-how-a-search-engine-sees-your-blog-with-seo-browser/536/</link>
		<comments>http://www.techmonk.com/check-how-a-search-engine-sees-your-blog-with-seo-browser/536/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 16:14:43 +0000</pubDate>
		<dc:creator>Pramodh KP</dc:creator>
				<category><![CDATA[Tools & Tutorials]]></category>
		<category><![CDATA[analysis]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[interent]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[search engines]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.techmonk.com/?p=536</guid>
		<description><![CDATA[SEO-Browser.com is a website that helps you to look at your website in a way the search engine looks.This helps you in optimizing your website or blog for search engines. Check out what are the aspects a search engine analyzes while looking through your blog in this post]]></description>
			<content:encoded><![CDATA[<p><a id="aptureLink_Zy9z65g2Ao" href="http://en.wikipedia.org/wiki/SEO">Search Engine Optimization</a> is one of the toughest concept I have seen while blogging. This is the reason why many blogs writing about SEO have emerged and get good traffic too! There are lots of tools to check out of how much &#8220;search engine friendly&#8221; you website is. Today I found a very interesting tool that you may like it.</p>
<p><a href="http://www.seo-browser.com/" target="_blank">SEO-Browser.com</a> is a tool that helps you to check how search engines sees a particular website/blog. This is helpful for the bloggers to analyze and optimize their website with ease. To use this tool, you need to enter your blog URL and you are done.</p>
<p>There are two modes for analyzing your website. Simple mode and Advanced mode. Simple mode just shows you how a page is viewed by a search engine. Whereas in advanced mode, it helps you to analyze many internal aspects of a website/blog like metadata, external and internal links, CSS sheet, duplicate content and so on&#8230; These are the aspects which are very important to note while optimizing your website for search engine.</p>
<p><a href="http://www.techmonk.com/wp-content/uploads/2009/11/seo_browser_1.png"><img class="aligncenter size-medium wp-image-538" title="seo_browser_1" src="http://www.techmonk.com/wp-content/uploads/2009/11/seo_browser_1-580x435.png" alt="seo_browser_1" width="580" height="435" /></a></p>
<p><a href="http://www.techmonk.com/wp-content/uploads/2009/11/seo_browser_1.png"><a href="http://www.techmonk.com/wp-content/uploads/2009/11/seo_browser_2.png"><img class="aligncenter size-medium wp-image-539" title="seo_browser_2" src="http://www.techmonk.com/wp-content/uploads/2009/11/seo_browser_2-580x435.png" alt="seo_browser_2" width="580" height="435" /></a></a></p>
<p>Overall, SEO-Browser is very helpful for website optimization. What do you think about this tool? Do you think it will really help in optimizing blogs? Share your thoughts through comments below. Every comment you make is of great value to me.</p>
<h3>SEO I Did To This Post</h3>
<p><strong>SEO Title: Know How Search Engines See Your Blog/Website</strong></p>
<p>&#8220;Blog/Website&#8221; again as in the <a id="aptureLink_7HlBOgZI1J" href="../addon-reduce-bounce-rate-of-blogger-wordpress-blogs/528/">previous post</a> , you need to use double keywords in your title. This helps you to rank higher. Actually, &#8220;know&#8221; here is a noise, however it would not be nice to submit a title which contains only keywords. So I added that word. BTW, I have a doubt here. If you are reading this line, please be kind to answer my small doubt:</p>
<p><strong>&#8220;What&#8217;s wrong in adding only keywords in the title instead of sentences?&#8221;</strong></p>
<p><strong>SEO Excerpt: Here is a tool that helps you to look at your blog/website in a way search engines look. This gives you a deeper understanding of SEO and make your blog more SEO-Friendly!</strong></p>
<p>Some important keywords: &#8220;blog/website&#8221;, &#8220;SEO&#8221;, &#8220;SEO-Friendly&#8221;</p>
<p><strong>SEO tags: seo for blogs, tool to seo, how search engine looks a website,</strong></p>
<p><strong><br />
</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.techmonk.com/check-how-a-search-engine-sees-your-blog-with-seo-browser/536/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Get Apture And Make Your Blog More Reader Friendly!</title>
		<link>http://www.techmonk.com/addon-reduce-bounce-rate-of-blogger-wordpress-blogs/528/</link>
		<comments>http://www.techmonk.com/addon-reduce-bounce-rate-of-blogger-wordpress-blogs/528/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 11:45:05 +0000</pubDate>
		<dc:creator>Pramodh KP</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[addons]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[services]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.techmonk.com/?p=528</guid>
		<description><![CDATA[Apture is an amazing addon for all blogging platforms that turns your link onto a compact encyclopedia by adding multimedia to the links you provide. This makes your readers to dig through your content and hence helping in reducing the bounce rate!]]></description>
			<content:encoded><![CDATA[<p>Decreasing bounce rates of a blog is a tough job for any blogger to do. Bloggers use many techniques like Internal Linking, Related posts etc. to reduce the bounce rate of a blog. Recently, when I was surfing, I found a website with an addon. This addon would make a compact encyclopedia of all the related information and show it through a link. I found this pretty useful and hence decided to share it with you people.</p>
<p>Apture is an addon that helps you to reduce the bounce rate of your blog. This addon helps you to insert multimedia to your blog posts and in turn makes your readers dig deeper through your articles. Apture is compatible for almost all common blogging platforms such as Blogger, WordPress, Typepad etc.</p>
<p>Links you usually offer directs the readers to a new page and hence many readers are hesitant to click on those links. Apture is different here. If you link to a Wikipedia article using Apture, it&#8217;s pretty easy for readers to reach it. When the pointer hovers on the link, a pop-up appears enabling users to read the article there itself.</p>
<p>I am using this addon right now and this is how it will show up when you <a id="aptureLink_D6KyjnRPGj" href="http://en.wikipedia.org/wiki/Wikipedia">hover the mouse here.</a> With this addon, you can also link to your previous related articles as I have done in the link above.</p>
<p>Apture helps you to find reference articles, when you are writing articles that need information right from your editor. It uses Wikipedia and other trusted sources. The sites that you can access through Apture are Flickr, Wikipedia, Google Books, Yahoo! Youtube and many more.</p>
<p>It also helps you to add relevant images or videos to the links. Overall, the link you provide through Apture will be a compact encyclopedia for the readers. It also helps you to embed the document itself into your blog post and hence making it more convenient for the readers. This is how an embedded link looks.</p>
<p><a id="aptureLink_ShUtV3WJp7" style="margin: 0pt auto; padding: 0px 6px; text-align: center; display: block;" href="http://en.wikipedia.org/wiki/Flickr"><img style="border: 0px none;" title="FLICKR" src="http://placeholder.apture.com/ph/360x280_WikipediaArticle/" alt="" width="360px" height="280px" /></a></p>
<p>You can also check out how Apture would work on your blog or website <a href="http://www.apture.com/" target="_blank">here.</a></p>
<p>Don&#8217;t you think this addon is amazing? Share your thoughts about this addon through comments! If you liked this post, then don&#8217;t forget to subscribe to my <a href="http://feeds.feedburner.com/TechMonk" target="_blank">RSS feed</a> for more such amazing articles.</p>
<h3>SEO I Did To This Post:</h3>
<p><strong>SEO Title: Blogger/Wordpress Addon For Reducing Bounce Rate Of Blogs</strong></p>
<p>There are certain important things to note here. I have used &#8220;Blogger/Wordpress addon&#8221;. This adds more keyword relevancy to the title. The googler is pretty much likely to search for any of the two keywords, &#8220;WordPress&#8221; or Blogger&#8221;. Another important thing to note here is, I have used &#8220;Blogger&#8221; first and then &#8220;WordPress&#8221;, this is because there is less competition for the keyword &#8220;Blogger&#8221; than &#8220;WordPress&#8221;. The more nearer the keyword will be from the starting of the title the more better it is.</p>
<p><strong>SEO Excerpt: A perfect addon for reducing bounce rate of wordpress or blogger blogs.Add links from various sources and make visitors to dig through your site content for a long time.</strong></p>
<p>Nothing much to explain here. Usual things. Write keyword-oriented excerpts in order to rank higher.</p>
<p><strong>SEO Tags:reduce bounce rate of blogger blogs, reduce bounce rate of wordpress blogs, bounce rate reduction, addon for reducing bounce rate.</strong></p>
<p>All possible search terms that a googler could search for.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techmonk.com/addon-reduce-bounce-rate-of-blogger-wordpress-blogs/528/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How To Post Articles To Your Blog Using Microsoft Word</title>
		<link>http://www.techmonk.com/post-articles-to-blog-using-ms-word/501/</link>
		<comments>http://www.techmonk.com/post-articles-to-blog-using-ms-word/501/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 05:48:15 +0000</pubDate>
		<dc:creator>Pramodh KP</dc:creator>
				<category><![CDATA[Tools & Tutorials]]></category>
		<category><![CDATA[blogger]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[services]]></category>
		<category><![CDATA[softwares]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[utilities]]></category>

		<guid isPermaLink="false">http://www.techmonk.com/?p=501</guid>
		<description><![CDATA[If you are searching for a good alternative for WLW, then you need no other application. Here is a simple tutorial that can help you to write and post articles onto your blog (Wordpress, Blogger, LiveSapce etc.) using Microsoft Word!]]></description>
			<content:encoded><![CDATA[<p>Windows Live Writer (WLW) is a an excellent tool for blogging. It has lots of features helpful while writing a post. However, WLW consumes a huge amount of RAM which is unaffordable by many bloggers who use computers with low configurations. In those situations, this trick would be ideal! You can blog from Microsoft Word! Be your blog hosted on Blogger, WordPress or LiveSpace, it doesn&#8217;t matter anymore.</p>
<p>To enable, this feature in MS Word, you need to first setup your account in the MS Word. The following tutorial could help you doing so.</p>
<ol>
<li>Click on the Office button on the top left corner of MS word. Go to &#8220;Publish&#8221; option and select &#8220;Blog&#8221;.</li>
<li>In the new window open, create new blog account. This image tutorial will guide you through the installation.
<p style="text-align: center;"><a href="http://www.techmonk.com/wp-content/uploads/2009/11/blog_from_msword_1.png"><img class="size-full wp-image-503 aligncenter" title="blog_from_msword_1" src="http://www.techmonk.com/wp-content/uploads/2009/11/blog_from_msword_1.png" alt="blog from msword" width="451" height="243" /></a><a href="http://www.techmonk.com/wp-content/uploads/2009/11/blog_from_msword_2.png"><img class="aligncenter size-full wp-image-510" title="blog_from_msword_2" src="http://www.techmonk.com/wp-content/uploads/2009/11/blog_from_msword_2.png" alt="blog_from_msword_2" width="400" height="245" /></a><a href="http://www.techmonk.com/wp-content/uploads/2009/11/blog_from_msword_3.png"><img class="aligncenter size-full wp-image-505" title="blog_from_msword_3" src="http://www.techmonk.com/wp-content/uploads/2009/11/blog_from_msword_3.png" alt="blog_from_msword_3" width="511" height="318" /></a><a href="http://www.techmonk.com/wp-content/uploads/2009/11/blog_from_msword_4.png"><img class="aligncenter size-full wp-image-506" title="blog_from_msword_4" src="http://www.techmonk.com/wp-content/uploads/2009/11/blog_from_msword_4.png" alt="blog_from_msword_4" width="399" height="205" /></a></p>
</li>
<li>While setting up the account, click on &#8220;Picture Options&#8221;. Select my own server and enter the URL of where you upload the pictures. For example, http://www.techmonk.com/wp-admin/uploads.php. If you are using FTP server, then give the corresponding URL. In the &#8220;Source URL&#8221; enter your blog URL.</li>
<li>If you are setting up an Blogger account then you can simply select the blog provider option or set up any other server online like Flickr or Photobucket wherein you can upload your pictures.</li>
</ol>
<p><strong><em>Note: If you are using WordPress.org (Self-hosted) then you need to enable XML &#8211; RPC. (Remote Publishing Client). To do so, go to &#8220;Settings- Writing&#8221;. Check the Enable Remote Publishing option.</em></strong></p>
<p><strong><em><a href="http://www.techmonk.com/wp-content/uploads/2009/11/blog_from_msword_5.png"><img class="aligncenter size-medium wp-image-507" title="blog_from_msword_5" src="http://www.techmonk.com/wp-content/uploads/2009/11/blog_from_msword_5-580x314.png" alt="blog_from_msword_5" width="580" height="314" /></a><br />
</em></strong></p>
<h3>Advantages Of Blogging From MS Word</h3>
<p>There are many advantages when you are blogging from MS Word.</p>
<ol>
<li>It has more formatting options. So you can choose among variety of fonts.</li>
<li>You feel at home when you use MS Word.</li>
<li>You can use font sizes with greater flexibility.</li>
<li>You can insert chart, clip-art, wrod art and so on.</li>
</ol>
<h3>Disadvantages Of Blogging From MS Word</h3>
<ol>
<li>You cannot SEO your articles like in WordPress or in WLW.</li>
<li>You cannot create tags and categories for Blogger account. However, if you are using wordpress you can create categories.</li>
</ol>
<h3>SEO I Did To This Article:</h3>
<p>This is a new practice that I am adopting in my blogging. This section of the blog will contain all the SEO I make to a article as it would be helpful to my readers. I discuss the importance of the SEO below every post from now on as much as I know. Suggestions about SEO and the article are welcome by means of comments or mails. Will continue it depending on how people react to this.</p>
<p><strong>Post Title:</strong> <strong>How To Post Articles To Your Blog Using Microsoft Word.</strong></p>
<p><strong> </strong>Here the post title is same as the one I have entered into the Platinum SEO pack. This is because people search like &#8220;How to post articles from MS Word&#8221; and as Google gives more importance to the title I have entered the same.</p>
<p><a href="http://techblissonline.com/platinum-seo-pack/" target="_blank">More about Platinum SEO pack. (A must have wordpress SEo plug-in.)</a></p>
<p><strong>Post Excerpt: Here is a simple tutorial that helps you to blog from MS Word. If you are searching for an alternative for WLW, then you can use Microsoft Word as your blog writer.</strong></p>
<p>This the post excerpt that the search engines see. If you look at the post excerpt on my blog homepage, it is different. The important point in this post excerpt is the keywords. &#8220;Blog from MS Word&#8221;, &#8220;Alternative for WLW&#8221;, &#8220;Microsoft as your Blog Writer&#8221;. People are likely to search these keywords. and if they do so, this would help me to rank high in the search position.</p>
<p>Also note that the excerpt just contains 165 characters. Most search engines just take 160 characters of the excerpt. So being brief in your explanations with keywords will help you to rank higher.</p>
<p><strong>Note</strong>: Google gives second position to the Excerpts after Post Titles.</p>
<p>Keywords: blog from MS word, blog from Microsoft Word, alternative for WLW, alternative for Windows Live Writer</p>
<p>These tell search engine to invoke our links when a query like the above ones are entered. People are likely to search using the following keywords.</p>
<p><strong>Image Optimization</strong>: I am still a novice in image optimization and still learning it. Any suggestions on optimizing images are welcome.</p>
<p><em><strong>An important note: Here, we are in no way fooling the Search Engines as many might think. This is just making our post much related to the search queries.</strong></em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.techmonk.com/post-articles-to-blog-using-ms-word/501/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Tips On Writing Review Of A Software Or An Application</title>
		<link>http://www.techmonk.com/tips-on-writing-review-of-a-software-or-an-application/454/</link>
		<comments>http://www.techmonk.com/tips-on-writing-review-of-a-software-or-an-application/454/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 07:12:28 +0000</pubDate>
		<dc:creator>Pramodh KP</dc:creator>
				<category><![CDATA[Tools & Tutorials]]></category>
		<category><![CDATA[analysis]]></category>
		<category><![CDATA[blogger]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[interent]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[traffic]]></category>

		<guid isPermaLink="false">http://www.techmonk.com/?p=454</guid>
		<description><![CDATA[If you are wondering what are the important aspects that one needs to keep in mind while writing a review on application, this is a must read tutorial for you. It deals with all the aspects of writing a review]]></description>
			<content:encoded><![CDATA[<p>There are many sites out there to make reviews of new software and applications that are launched. To stand a step ahead of them, you need to be creative in giving reviews of any software or application, in order to satisfy your readers.There are many aspects, a blogger has too keep in mind while reviewing a application.</p>
<p><a href="http://www.techmonk.com/wp-content/uploads/2009/07/bloggin-readers.jpg"><img class="size-medium wp-image-130 alignright" title="bloggin readers" src="http://www.techmonk.com/wp-content/uploads/2009/07/bloggin-readers-300x243.jpg" alt=" blog readers" width="300" height="243" /></a></p>
<h2>Why Do People Read Reviews In Blogs?</h2>
<p>This is an important question to be answered before continuing the talk on writing a review. Even though  there are lots of application reviewing sites on web such as Softpedia, FileHippo, Tucows and so on, people read reviews on blogs for many reasons. I have listed them here:</p>
<p>1) People trust reviews made on blogs as bloggers check them before reviewing it. However, not every blogger does this. So beware, readers!</p>
<p>2) It is neatly explained on blogs rather than  other sites that I mentioned above. So, readers can get an insight of what that application actually is, and whether they are in need of it or not.</p>
<p>3) Bloggers give a detailed tutorial of how to use an application, thus making the work of a reader easier.</p>
<p>These are some of the reasons why people wish to read reviews on blog. But, what I have seen on many blogs is that they just write  review in a short paragraph and end the post. If that is the matter, then readers would prefer on sites like Softpedia only as they update faster than you.</p>
<h2>Tips To Write  Review On a Application</h2>
<p>So, with above points in mind, we need to write such a post, so that it will be helpful to readers in all ways. Here are some points that you need to take care before writing a review post.</p>
<p><em><strong><span style="text-decoration: underline;">1) NEVER WRITE A POST WITHOUT TRYING THE APPLICATION</span></strong></em>. This is the most important point that has to be kept in mind before writing a review post. Remember, if you write a post on an application that doesn&#8217;t work or contains viruses, then you may get lot of teachers to teach you how to write a blogpost. More than that, if a software contains a virus you will be the cause for hacked PCs of your readers.</p>
<p>2) As far as you can, explain the features of the applcation through images. You can check <a href="http://www.techmonk.com/access-your-google-documents-through-microsoft-office-with-offisync/437/" target="_blank">this post of mine</a>, I had written recently for better understanding.</p>
<p>3) Add a special section in your post called <strong>THE STRIKING FEATURE</strong> to emphasize on the exact usefulness of the application.</p>
<p>4) If there are any complications in using the applications,  give a simple tutorial below the review of how to use it.</p>
<h2>My Usual Practice Of Writing Reviews On Applications</h2>
<p>I usually, at the beginning, explain briefly about what the application is all about. Then, I list all the places and situations where this application can be used. After this I move on with features through complete image tutorial. I mark the important features in the images so that readers can can understand them easily. Later, if I feel there is a real striking feature then I create a separate section, if otherwise I add it in the features section only. At the end I conclude with encouraging the users to test the application and discuss there experience.</p>
<h3>Features List: Bullets Or Paragraphs</h3>
<p>It is often  a common discussion  about how to write the features section. I would say, it all depends on the app. If there are so many features that needs lot of explanation, then it is better to write them in paragraphs. If the features do not require much explanation then  bullets would do.</p>
<p>For example, if you are writing the review of Google Wave, there are many features that you have to explain to readers like Tweeting from Wave, Sharing a Wave and so on. These features require explanation as to how it is useful and how to use it. So, it would be better to write paragraphs to explain its features.</p>
<p>However, if you are reviewing a simple application like Notepad + +, it would be enough if you write a list of features as shown below:</p>
<ul>
<li>WYSIWYG Editor</li>
<li>Multi-Viewing</li>
<li>Multi-documents&#8230;&#8230; and so on.</li>
</ul>
<p><em><strong>However, these are completely my point of view and there is no compulsion that you have to accept it.</strong></em></p>
<p>So, what do you think of my practice of writing reviews? Did you find this post useful? Please share your opinions through comments below.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techmonk.com/tips-on-writing-review-of-a-software-or-an-application/454/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How To Write Good Posts That Are Readable? [Test Readability In MS Word]</title>
		<link>http://www.techmonk.com/writing-readable-understandable-good-posts/376/</link>
		<comments>http://www.techmonk.com/writing-readable-understandable-good-posts/376/#comments</comments>
		<pubDate>Fri, 02 Oct 2009 12:59:39 +0000</pubDate>
		<dc:creator>Pramodh KP</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Tools & Tutorials]]></category>
		<category><![CDATA[analysis]]></category>
		<category><![CDATA[blogger]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.techmonk.com/?p=376</guid>
		<description><![CDATA[Writing good content helpful for people is the key factor for a blog to become famous. However, apart from that there are many other factors which influence the popularity of a blog. One such factor is readability of a post. Today, in this post, I am going to share few tips that would be helpful for any blogger]]></description>
			<content:encoded><![CDATA[<p>Writing good content helpful for people is the key factor for a blog to become famous. However, apart from that there are many other factors, which influence the popularity of a blog. One such factor is readability of a post. Today, in this post, I am going to share few tips that would be helpful for any blogger.</p>
<p><strong>BTW, What exactly is readability?</strong></p>
<p>Readability of a post, in a layman&#8217;s language, is how well can a post or an article be understood by others. However, if you go deeper you will find that readability of an article is calculated based on different factors in an article. Flesch-Kincaid Readability is a method of finding out the percentage of readability of a paragraph.</p>
<p>According to the Flesch-Kincaid Readability formula mentioned in the Wikipedia, scores of the articles are calculated. Here is a table that will tell you the range of scores you must try to achieve depending on your audience.</p>
<table style="height: 109px;" border="1" cellpadding="0" width="528">
<tbody>
<tr>
<td>
<p align="center"><strong>Score</strong></p>
</td>
<td>
<p align="center"><strong>Notes</strong></p>
</td>
</tr>
<tr>
<td>90.0–100.0</td>
<td>easily understandable by an   average 11-year-old student</td>
</tr>
<tr>
<td>60.0–70.0</td>
<td>easily understandable by 13- to   15-year-old students</td>
</tr>
<tr>
<td>0.0–30.0</td>
<td>best understood by university   graduates</td>
</tr>
</tbody>
</table>
<p>90-100: Very Easy<br />
80-89: Easy<br />
70-79: Fairly Easy<br />
60-69: Standard<br />
50-59: Fairly Difficult<br />
30-49: Difficult<br />
0-29: Very Confusing</p>
<p>As the topic under discussion here is blogging, it would be ideal to get a score of readability between 60-70, as most blog readers are neither professionals in English nor too weak.</p>
<p>Now after defining, the score you want your posts to have, it is time to concentrate on achieving it.</p>
<p><strong>How To Test The Readability Of A Post?</strong></p>
<p>This important question is worth answering here. After knowing so much about the need of maintaining readability of a post, there is a need to implement them in your writings.</p>
<p>Coming to the tool, MS word is itself a best tool for checking the readability of a post. It actually tests the Flesch-Kincaid Readability I had discussed. Here is a brief tutorial to enable that option:</p>
<ul>
<li>Go to MS Word 2007, Click on the review tab.</li>
<li>Click the Spelling &amp; Grammar option.</li>
<li>Click on the Options in the opened dialog box.</li>
<li>Check the Readability statistics option.<a href="http://www.techmonk.com/wp-content/uploads/2009/10/readable-posts.png"><img class="aligncenter size-medium wp-image-379" title="readable posts" src="http://www.techmonk.com/wp-content/uploads/2009/10/readable-posts-580x283.png" alt="readable posts" width="580" height="283" /></a></li>
</ul>
<p>After this, you would be getting the readability statistics in the percentage. Try to maintain the percentage between 60 and 70 as I had said above.</p>
<p><strong>Tips To Increase The Readability</strong></p>
<ul>
<li>Try to keep your sentences brief and easily readable to      others.</li>
<li>Do not combine too many sentences and make it a single      sentence. At the maximum, combine two sentences with all the required      punctuations at the correct places.</li>
<li>Use the punctuation marks at the proper places, so that      they are easy to read for your readers.</li>
<li>Try to avoid as many miss-spells as possible.</li>
<li>Use blog writers such as Windows Live Writer and Word,      so that it would be easy to do spell check etc.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.techmonk.com/writing-readable-understandable-good-posts/376/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How To Find Out Where You Stand On Google For A Search Query</title>
		<link>http://www.techmonk.com/how-to-find-out-where-you-stand-on-google-for-a-search-query/338/</link>
		<comments>http://www.techmonk.com/how-to-find-out-where-you-stand-on-google-for-a-search-query/338/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 06:58:11 +0000</pubDate>
		<dc:creator>Pramodh KP</dc:creator>
				<category><![CDATA[Tools & Tutorials]]></category>
		<category><![CDATA[analysis]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[utilities]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.techmonk.com/?p=338</guid>
		<description><![CDATA[Here is a tool that helps you to check out the position of your blog on a search engine for the relevant keywords that you enter. ]]></description>
			<content:encoded><![CDATA[<p>The number of people entering the blogosphere is increasing exponentially nowadays. So, how does one become famous in blogging? There are many factors that are to be concentrated while becoming a successful blogger. Among those, one is the rank you get on search engine for a particular search query. (I would like to warn you at the beginning itself, this is not the Google PR I am talking about.)</p>
<p>For a blogger to become famous, he must write posts which are needed for people and also not written by anyone. By my experience of about 5 months of blogging, I have come to know that most people quit their search for a single page. Thus it becomes important to track your position in the Google search query.</p>
<p>Take for example, this post, &#8220;<a href="http://www.techmonk.com/add-bing-search-in-opera-10-opera-10-tweak/43/" target="_blank">Add Bing Search In Opera 10</a>&#8220;. I get lot of traffic for this post. This is because of two reasons. One is that people search for such things and the second reason is that it stands at a good position on Google search query. (You can check the<a href="http://www.google.co.in/search?q=add+bing+in+opera&amp;ie=utf-8&amp;oe=utf-8&amp;aq=t&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a" target="_blank"> position here</a>). Thus, I hope you got the idea of positions in Google Queries.</p>
<p>Here is a tool that helps you to find where you stand on the search engine query for keywords you enter. Just enter the keywords for which you want to know the position of your blog. Here is a small example:</p>
<p><a href="http://www.techmonk.com/wp-content/uploads/2009/09/seaarch-position.png"><img class="aligncenter size-medium wp-image-339" title="search position" src="http://www.techmonk.com/wp-content/uploads/2009/09/seaarch-position-580x221.png" alt="search position" width="580" height="221" /></a>Here, I have entered the keywords for the post I had said earlier and I get my position at No.4. Thus, it&#8217;s important for you to check out where you stand on the search engine. <a href="http://www.forumtoolz.com/searchengineposition.php" target="_blank">Try out this software here</a>. And don&#8217;t forget to <a href="http://feeds.feedburner.com/TechMonk">subscribe to my blog</a> if you like the post.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techmonk.com/how-to-find-out-where-you-stand-on-google-for-a-search-query/338/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How To Embed Ad Codes That Are Not Compatible In Blogger</title>
		<link>http://www.techmonk.com/how-to-embed-ad-codes-that-are-not-compatible-in-blogger/269/</link>
		<comments>http://www.techmonk.com/how-to-embed-ad-codes-that-are-not-compatible-in-blogger/269/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 12:55:54 +0000</pubDate>
		<dc:creator>Pramodh KP</dc:creator>
				<category><![CDATA[Tools & Tutorials]]></category>
		<category><![CDATA[blogger]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[interent]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://www.techmonk.com/?p=269</guid>
		<description><![CDATA[Make incompatible ad codes compatible for blogger with just a single click. Blogger Adsense Code Converter is a tool that helps you to do this in a jiffy]]></description>
			<content:encoded><![CDATA[<p>Blogger and WordPress are two great option for anybody who wants to blog on the internet. As I have seen many bloggers use blogger as their platform as WordPress is good only for self-hosted blogs. Blogger is not integrated with as much options as wordpress and this makes it difficult to edit templates, scripts, codes etc. in blogger unless you are atleast an average programmer.</p>
<p>There are many ad codes out there which are not compatible for blogger as it  has only XML compatibility. Many java-scripts are very hard to embed in blogger and many end up in getting errors editing it.</p>
<p>Now, here is a online tool that helps you to convert ad codes compatible for blogger. This is called <strong>Blogger Adsense Code Converter</strong>. It is a service that gives you the blogger compatible script of any ad code. You may also note that you can convert any ad code like Chitika, Adsense, Adbrite etc. This is hosted on <a href="http://www.eblogtemplates.com/" target="_blank">eblogtemplates</a>, a site for very good blogger and wordpress templates.</p>
<p><a href="http://www.techmonk.com/wp-content/uploads/2009/08/ad-code-converter.jpg"><img class="aligncenter size-full wp-image-270" title="ad code converter" src="http://www.techmonk.com/wp-content/uploads/2009/08/ad-code-converter.jpg" alt="ad code converter" width="450" height="200" /></a></p>
<p>You can check out this service<a href="http://www.eblogtemplates.com/blogger-ad-code-converter/" target="_blank"> here</a>. <span style="text-decoration: underline;"><em><strong>If you liked this post <a href="http://feeds.feedburner.com/TechMonk" target="_blank">get subscribed here</a> for more of posts like this. </strong></em></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.techmonk.com/how-to-embed-ad-codes-that-are-not-compatible-in-blogger/269/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

