<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Mombly.com</title>
	<atom:link href="http://mombly.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://mombly.com</link>
	<description>Tech, more Tech, and some tidbits about Culture and Language.</description>
	<lastBuildDate>Sun, 03 Jan 2010 10:40:05 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on 7 Reasons You Should Build Your Own PC by 7 articles</title>
		<link>http://mombly.com/2009/01/31/7-reasons-you-should-build-your-own-pc/comment-page-1/#comment-3523</link>
		<dc:creator>7 articles</dc:creator>
		<pubDate>Sun, 03 Jan 2010 10:40:05 +0000</pubDate>
		<guid isPermaLink="false">http://mombly.com/?p=146#comment-3523</guid>
		<description>Nice post! Very complete and detail information. That</description>
		<content:encoded><![CDATA[<p>Nice post! Very complete and detail information. That</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mombly Review Rating Wordpress Plug-in Released by anty</title>
		<link>http://mombly.com/2009/01/26/mombly-review-rating-wordpress-plug-in-released/comment-page-1/#comment-2712</link>
		<dc:creator>anty</dc:creator>
		<pubDate>Mon, 16 Nov 2009 01:28:55 +0000</pubDate>
		<guid isPermaLink="false">http://mombly.com/?p=188#comment-2712</guid>
		<description>WP translates the HTML codes in my post above, so here are the real codes I wanted to post: &#9733; and &#9734;.</description>
		<content:encoded><![CDATA[<p>WP translates the HTML codes in my post above, so here are the real codes I wanted to post: &#9733; and &#9734;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mombly Review Rating Wordpress Plug-in Released by anty</title>
		<link>http://mombly.com/2009/01/26/mombly-review-rating-wordpress-plug-in-released/comment-page-1/#comment-2711</link>
		<dc:creator>anty</dc:creator>
		<pubDate>Mon, 16 Nov 2009 01:26:42 +0000</pubDate>
		<guid isPermaLink="false">http://mombly.com/?p=188#comment-2711</guid>
		<description>I made a small fix for your WP plugin &quot;Mombly Review Rating&quot;:
If your theme formats images in posts the review stars might have borders, margins or paddings. I&#039;ve fixed that with the following code. You are free to add it to your plugin:

&lt;code&gt;
add_action(&#039;wp_head&#039;, &#039;addHeader&#039;);
function addHeader() {
	?&gt;
	&lt;style type=&quot;text/css&quot;&gt;
		img.rating-star {
			border-width: 0;
			margin: 0;
			padding: 0;
		}
	&lt;/style&gt;
	&lt;?php
}
&lt;/code&gt;

In the function &quot;function mombly_rating_prepareImages($score, $total)&quot; you need to add the class-names to the img-tags like so:

&lt;code&gt;
while($i &lt; $score){
		$imageString .= &#039;&lt;img src=&quot;&#039;.$mombly_rating_dir . &#039;/images/&#039; .$starFilename_val. &#039;&quot; class=&quot;rating-star&quot; alt=&quot;. __( &#039;Star&#039;, $mombly_rating_optionsdomain ) .&quot;&gt;&#039;;
		$i++;
	}
	if($half === true){
		$imageString .= &#039;&lt;img src=&quot;&#039;.$mombly_rating_dir . &#039;/images/&#039; .$halfStarFilename_val. &#039;&quot; class=&quot;rating-star&quot; alt=&quot;. __( &#039;Half star&#039;, $mombly_rating_optionsdomain ) .&quot;&gt;&#039;;
	}
	$i = 0;
	while($i &lt; $emptyStars){
		$imageString .= &#039;&lt;img src=&quot;&#039;.$mombly_rating_dir . &#039;/images/&#039; .$emptyStarFilename_val. &#039;&quot; class=&quot;rating-star&quot; alt=&quot;. __( &#039;Empty star&#039;, $mombly_rating_optionsdomain ) .&quot;&gt;&#039;;
		$i++;
	}
&lt;/code&gt;

I added alt-tags since they are required for valid HTML. but I don&#039;t know what schema you use for the translation domain, so change them how you like.

BTW, there are font symbols for black and outlined stars: &#9733; and &#9734;. I don&#039;t know how supported they are in different fonts, but I use the black one in the following setting: ★★★½-.

Regards,
anty</description>
		<content:encoded><![CDATA[<p>I made a small fix for your WP plugin &#8220;Mombly Review Rating&#8221;:<br />
If your theme formats images in posts the review stars might have borders, margins or paddings. I&#8217;ve fixed that with the following code. You are free to add it to your plugin:</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">add_action('wp_head', 'addHeader');<br />
function addHeader() {<br />
&nbsp; &nbsp; ?&gt;<br />
&nbsp; &nbsp; &lt;style type=&quot;text/css&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; img.rating-star {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; border-width: 0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; margin: 0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; padding: 0;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &lt;/style&gt;<br />
&nbsp; &nbsp; &lt;?php<br />
}</div></td></tr></tbody></table></div>
<p>In the function &#8220;function mombly_rating_prepareImages($score, $total)&#8221; you need to add the class-names to the img-tags like so:</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">while($i &lt; $score){<br />
&nbsp; &nbsp; &nbsp; &nbsp; $imageString .= '&lt;img src=&quot;'.$mombly_rating_dir . '/images/' .$starFilename_val. '&quot; class=&quot;rating-star&quot; alt=&quot;. __( 'Star', $mombly_rating_optionsdomain ) .&quot;&gt;';<br />
&nbsp; &nbsp; &nbsp; &nbsp; $i++;<br />
&nbsp; &nbsp; }<br />
&nbsp; &nbsp; if($half === true){<br />
&nbsp; &nbsp; &nbsp; &nbsp; $imageString .= '&lt;img src=&quot;'.$mombly_rating_dir . '/images/' .$halfStarFilename_val. '&quot; class=&quot;rating-star&quot; alt=&quot;. __( 'Half star', $mombly_rating_optionsdomain ) .&quot;&gt;';<br />
&nbsp; &nbsp; }<br />
&nbsp; &nbsp; $i = 0;<br />
&nbsp; &nbsp; while($i &lt; $emptyStars){<br />
&nbsp; &nbsp; &nbsp; &nbsp; $imageString .= '&lt;img src=&quot;'.$mombly_rating_dir . '/images/' .$emptyStarFilename_val. '&quot; class=&quot;rating-star&quot; alt=&quot;. __( 'Empty star', $mombly_rating_optionsdomain ) .&quot;&gt;';<br />
&nbsp; &nbsp; &nbsp; &nbsp; $i++;<br />
&nbsp; &nbsp; }</div></td></tr></tbody></table></div>
<p>I added alt-tags since they are required for valid HTML. but I don&#8217;t know what schema you use for the translation domain, so change them how you like.</p>
<p>BTW, there are font symbols for black and outlined stars: &#9733; and &#9734;. I don&#8217;t know how supported they are in different fonts, but I use the black one in the following setting: ★★★½-.</p>
<p>Regards,<br />
anty</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 6 Reasons Why You Should Host Your Own Wordpress Blog by Ashish</title>
		<link>http://mombly.com/2009/02/03/5-reasons-why-you-should-host-your-own-wordpress-blog/comment-page-1/#comment-2398</link>
		<dc:creator>Ashish</dc:creator>
		<pubDate>Mon, 19 Oct 2009 13:40:40 +0000</pubDate>
		<guid isPermaLink="false">http://mombly.com/?p=197#comment-2398</guid>
		<description>Even better if u know a bit of Apache n SQL u can make your on PC into a webserver absolutely free n secured.</description>
		<content:encoded><![CDATA[<p>Even better if u know a bit of Apache n SQL u can make your on PC into a webserver absolutely free n secured.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on cForms II Wordpress Plug-in Not GPL by Doug Sovereign</title>
		<link>http://mombly.com/2009/01/26/cforms-ii-wordpress-plug-in-not-gpl/comment-page-1/#comment-1356</link>
		<dc:creator>Doug Sovereign</dc:creator>
		<pubDate>Sat, 22 Aug 2009 21:48:38 +0000</pubDate>
		<guid isPermaLink="false">http://mombly.com/?p=164#comment-1356</guid>
		<description>I agree - why should the author release the plugin under GPL?  Matt, the head Wordpress Nazi, has declared all plugins must be GPL but this is his ridiculous private crusade.  A crusade the lines his pockets, by the way, since he is the only person making any revenue from Wordpress.

Cforms Oliver seems to have spent (wasted?) 3000 hours on a plugin should be SELLING it, not giving it away free.  I would pay a few bucks for it without hesitation.  

It&#039;s just too bad Matt&#039;s too stupid to provide a way to do this - he actually spends more time trying to prevent it.  As a result, plugin authors have NO incentive to work on their &quot;product&quot; or support it.</description>
		<content:encoded><![CDATA[<p>I agree &#8211; why should the author release the plugin under GPL?  Matt, the head Wordpress Nazi, has declared all plugins must be GPL but this is his ridiculous private crusade.  A crusade the lines his pockets, by the way, since he is the only person making any revenue from Wordpress.</p>
<p>Cforms Oliver seems to have spent (wasted?) 3000 hours on a plugin should be SELLING it, not giving it away free.  I would pay a few bucks for it without hesitation.  </p>
<p>It&#8217;s just too bad Matt&#8217;s too stupid to provide a way to do this &#8211; he actually spends more time trying to prevent it.  As a result, plugin authors have NO incentive to work on their &#8220;product&#8221; or support it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing and Using Folder Size to Display the Sizes of Folders in Windows Explorer by Dawood</title>
		<link>http://mombly.com/2009/01/23/installing-and-using-folder-size-to-display-the-sizes-of-folders-in-windows-explorer/comment-page-1/#comment-1210</link>
		<dc:creator>Dawood</dc:creator>
		<pubDate>Thu, 13 Aug 2009 15:19:52 +0000</pubDate>
		<guid isPermaLink="false">http://mombly.com/?p=88#comment-1210</guid>
		<description>Here&#039;s how you may enable displaying folders size without installation of any additional software:

http://www.myhowtoos.com/en/windows-howtoos/91-how-to-display-folder-size-in-windows-explorer</description>
		<content:encoded><![CDATA[<p>Here&#8217;s how you may enable displaying folders size without installation of any additional software:</p>
<p><a href="http://www.myhowtoos.com/en/windows-howtoos/91-how-to-display-folder-size-in-windows-explorer" rel="nofollow">http://www.myhowtoos.com/en/windows-howtoos/91-how-to-display-folder-size-in-windows-explorer</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Open Source Alternatives by Open Source Alternatives Mombly com &#124; debt solutions</title>
		<link>http://mombly.com/2009/01/20/open-source-alternatives/comment-page-1/#comment-590</link>
		<dc:creator>Open Source Alternatives Mombly com &#124; debt solutions</dc:creator>
		<pubDate>Tue, 16 Jun 2009 00:28:55 +0000</pubDate>
		<guid isPermaLink="false">http://mombly.com/?p=43#comment-590</guid>
		<description>[...] Open Source Alternatives Mombly com   Posted by root 1 hour 12 minutes ago (http://mombly.com)        Jan 20 2009 for those of you who want to save money for those of you who want to try 6 reasons why you should host your own wordpress blog microsoft visual studio gt develop sharpdevelop source alternatives for any other program do drop a comment and 02 v        Discuss&#160;  &#124;&#160; Bury &#124;&#160;    News &#124; Open Source Alternatives Mombly com [...]</description>
		<content:encoded><![CDATA[<p>[...] Open Source Alternatives Mombly com   Posted by root 1 hour 12 minutes ago (<a href="http://mombly.com" rel="nofollow">http://mombly.com</a>)        Jan 20 2009 for those of you who want to save money for those of you who want to try 6 reasons why you should host your own wordpress blog microsoft visual studio gt develop sharpdevelop source alternatives for any other program do drop a comment and 02 v        Discuss&nbsp;  |&nbsp; Bury |&nbsp;    News | Open Source Alternatives Mombly com [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mombly Review Rating Wordpress Plug-in Released by joge</title>
		<link>http://mombly.com/2009/01/26/mombly-review-rating-wordpress-plug-in-released/comment-page-1/#comment-276</link>
		<dc:creator>joge</dc:creator>
		<pubDate>Tue, 21 Apr 2009 14:32:23 +0000</pubDate>
		<guid isPermaLink="false">http://mombly.com/?p=188#comment-276</guid>
		<description>Thanks for the plug-in. FYI: When I do the install form within the backend, the plug-in is installed into a folder named &quot;mombly-review-rating&quot;. I had to change the &#039;siteurl&#039; in the mombly_reviewrating.php file to that path in order to make the plug-in work. Maybe you should fix this.</description>
		<content:encoded><![CDATA[<p>Thanks for the plug-in. FYI: When I do the install form within the backend, the plug-in is installed into a folder named &#8220;mombly-review-rating&#8221;. I had to change the &#8217;siteurl&#8217; in the mombly_reviewrating.php file to that path in order to make the plug-in work. Maybe you should fix this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mombly Review Rating Wordpress Plug-in Released by admin</title>
		<link>http://mombly.com/2009/01/26/mombly-review-rating-wordpress-plug-in-released/comment-page-1/#comment-201</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Fri, 03 Apr 2009 14:58:28 +0000</pubDate>
		<guid isPermaLink="false">http://mombly.com/?p=188#comment-201</guid>
		<description>Ah yes I think I used some code that requires PHP 5. I will include that in the readme. Thanks for letting me know.</description>
		<content:encoded><![CDATA[<p>Ah yes I think I used some code that requires PHP 5. I will include that in the readme. Thanks for letting me know.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mombly Review Rating Wordpress Plug-in Released by Tom B.</title>
		<link>http://mombly.com/2009/01/26/mombly-review-rating-wordpress-plug-in-released/comment-page-1/#comment-200</link>
		<dc:creator>Tom B.</dc:creator>
		<pubDate>Fri, 03 Apr 2009 14:50:20 +0000</pubDate>
		<guid isPermaLink="false">http://mombly.com/?p=188#comment-200</guid>
		<description>I attempted to install this plugin and received this error message when trying activation. Does the plugin require PHP 5?

&lt;code&gt;Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or &#039;}&#039; in /homepages/30/d155136878/htdocs/brincefieldinfo/test/wp-content/plugins/mombly-review-rating/mombly_reviewrating.php on line 37&lt;/code&gt;

</description>
		<content:encoded><![CDATA[<p>I attempted to install this plugin and received this error message when trying activation. Does the plugin require PHP 5?</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border: 1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /homepages/30/d155136878/htdocs/brincefieldinfo/test/wp-content/plugins/mombly-review-rating/mombly_reviewrating.php on line 37</div></td></tr></tbody></table></div>
]]></content:encoded>
	</item>
</channel>
</rss>
