<?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 Daniele Demichelis</title>
	<atom:link href="http://www.danidemi.com/mainwww/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.danidemi.com/mainwww</link>
	<description>There are 10 types of people in the world: Those who understand binary, and those who don&#039;t...</description>
	<lastBuildDate>Sun, 05 Feb 2012 16:15:19 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on What a Project Manager would like to know about unit testing by danidemi</title>
		<link>http://www.danidemi.com/mainwww/2011/04/what-a-project-manager-would-like-to-know-about-unit-testing/comment-page-1/#comment-6677</link>
		<dc:creator>danidemi</dc:creator>
		<pubDate>Sun, 05 Feb 2012 16:15:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.danidemi.com/mainwww/?p=212#comment-6677</guid>
		<description>I&#039;ll give them a look for sure!</description>
		<content:encoded><![CDATA[<p>I&#8217;ll give them a look for sure!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What a Project Manager would like to know about unit testing by {Vinoth&#124;om39a&#124;Maria&#124;Wills&#124;Andy Eves&#124;Steffy}</title>
		<link>http://www.danidemi.com/mainwww/2011/04/what-a-project-manager-would-like-to-know-about-unit-testing/comment-page-1/#comment-6256</link>
		<dc:creator>{Vinoth&#124;om39a&#124;Maria&#124;Wills&#124;Andy Eves&#124;Steffy}</dc:creator>
		<pubDate>Sun, 22 Jan 2012 17:54:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.danidemi.com/mainwww/?p=212#comment-6256</guid>
		<description>Thanks for your post. It is really good. If you could explain about Mockito and PowerMocito Testing frameworks in detail, that will really help. There is also a forum &lt;a href=&quot;www.mockito-mock.com&quot; rel=&quot;nofollow&quot;&gt;Mockito Mock&lt;/a&gt; which is exclusive for Testing frameworks. You can also check it out.</description>
		<content:encoded><![CDATA[<p>Thanks for your post. It is really good. If you could explain about Mockito and PowerMocito Testing frameworks in detail, that will really help. There is also a forum <a href="www.mockito-mock.com" rel="nofollow">Mockito Mock</a> which is exclusive for Testing frameworks. You can also check it out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Obtain the root logger programmatically in log4net by hematic</title>
		<link>http://www.danidemi.com/mainwww/2010/03/obtain-the-root-logger-programmatically-in-log4net/comment-page-1/#comment-4897</link>
		<dc:creator>hematic</dc:creator>
		<pubDate>Thu, 24 Nov 2011 14:41:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.danidemi.com/mainwww/?p=113#comment-4897</guid>
		<description>Many usefull information along with motivation, both of which every one of us have to have, appreciate that.</description>
		<content:encoded><![CDATA[<p>Many usefull information along with motivation, both of which every one of us have to have, appreciate that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FormFramework for iPhone by danidemi</title>
		<link>http://www.danidemi.com/mainwww/2010/11/formframework-for-iphone/comment-page-1/#comment-595</link>
		<dc:creator>danidemi</dc:creator>
		<pubDate>Fri, 03 Dec 2010 11:04:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.danidemi.com/mainwww/?p=184#comment-595</guid>
		<description>Thank you for your feedback Patrick. I&#039;ll check your patch as soon as possible. I&#039;m glad you found the FormFramework useful.</description>
		<content:encoded><![CDATA[<p>Thank you for your feedback Patrick. I&#8217;ll check your patch as soon as possible. I&#8217;m glad you found the FormFramework useful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FormFramework for iPhone by Patrick</title>
		<link>http://www.danidemi.com/mainwww/2010/11/formframework-for-iphone/comment-page-1/#comment-590</link>
		<dc:creator>Patrick</dc:creator>
		<pubDate>Fri, 03 Dec 2010 07:30:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.danidemi.com/mainwww/?p=184#comment-590</guid>
		<description>Hi Dani

First of all, your FormFramework is really powerful, well designed, and easy to use.
Many thanks to share the sources on github.

However, I have found a mistake in the FormDatePickerCell.m module on line 52 and I have corrected it:
here is your code :

-(void)startEditing{
	if(!picker){
		picker = [UIDatePicker new];
		picker.datePickerMode = UIDatePickerModeDate;
		
		[picker addTarget:self action:@selector(dateChanged) forControlEvents:UIControlEventValueChanged];
	}
	
	if(!picker.superview){
		
		[self showToolbar];
		
		UIView* inputPanel = [self panel];
		[inputPanel addSubview:picker];
		
		CGSize pickerSize = [picker sizeThatFits:CGSizeZero];
		CGRect pickerRect = CGRectMake(0.0,
									  44.0,
									  pickerSize.width,
									  pickerSize.height);		
		picker.frame = pickerRect;			
	}
	
}

I have replaced UIView* inputPanel = [self panel] by UIView* inputPanel = [formController panel]

I hope I am not wrong, and this could help for future users.

Many thanks again

Patrick</description>
		<content:encoded><![CDATA[<p>Hi Dani</p>
<p>First of all, your FormFramework is really powerful, well designed, and easy to use.<br />
Many thanks to share the sources on github.</p>
<p>However, I have found a mistake in the FormDatePickerCell.m module on line 52 and I have corrected it:<br />
here is your code :</p>
<p>-(void)startEditing{<br />
	if(!picker){<br />
		picker = [UIDatePicker new];<br />
		picker.datePickerMode = UIDatePickerModeDate;</p>
<p>		[picker addTarget:self action:@selector(dateChanged) forControlEvents:UIControlEventValueChanged];<br />
	}</p>
<p>	if(!picker.superview){</p>
<p>		[self showToolbar];</p>
<p>		UIView* inputPanel = [self panel];<br />
		[inputPanel addSubview:picker];</p>
<p>		CGSize pickerSize = [picker sizeThatFits:CGSizeZero];<br />
		CGRect pickerRect = CGRectMake(0.0,<br />
									  44.0,<br />
									  pickerSize.width,<br />
									  pickerSize.height);<br />
		picker.frame = pickerRect;<br />
	}</p>
<p>}</p>
<p>I have replaced UIView* inputPanel = [self panel] by UIView* inputPanel = [formController panel]</p>
<p>I hope I am not wrong, and this could help for future users.</p>
<p>Many thanks again</p>
<p>Patrick</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Database testing with Mono and NUnit by stan</title>
		<link>http://www.danidemi.com/mainwww/2010/03/database-testing-with-mono-and-nunit/comment-page-1/#comment-47</link>
		<dc:creator>stan</dc:creator>
		<pubDate>Wed, 18 Aug 2010 01:29:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.danidemi.com/mainwww/?p=107#comment-47</guid>
		<description>EffiProz Embedded Database now supports Mono http://www.effiproz.com/product_mo.aspx</description>
		<content:encoded><![CDATA[<p>EffiProz Embedded Database now supports Mono <a href="http://www.effiproz.com/product_mo.aspx" rel="nofollow">http://www.effiproz.com/product_mo.aspx</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Assert statement in Objective C by PiterJankovich</title>
		<link>http://www.danidemi.com/mainwww/2010/03/assert-statement-in-objective-c/comment-page-1/#comment-30</link>
		<dc:creator>PiterJankovich</dc:creator>
		<pubDate>Tue, 30 Mar 2010 14:54:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.danidemi.com/mainwww/?p=147#comment-30</guid>
		<description>My name is Piter Jankovich. oOnly want to tell, that your blog is really cool
And want to ask you: is this blog your hobby?
P.S. Sorry for my bad english</description>
		<content:encoded><![CDATA[<p>My name is Piter Jankovich. oOnly want to tell, that your blog is really cool<br />
And want to ask you: is this blog your hobby?<br />
P.S. Sorry for my bad english</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ruby on CentOS by Cristian Livadaru</title>
		<link>http://www.danidemi.com/mainwww/2010/03/ruby-on-centos/comment-page-1/#comment-29</link>
		<dc:creator>Cristian Livadaru</dc:creator>
		<pubDate>Wed, 17 Mar 2010 17:57:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.danidemi.com/mainwww/?p=121#comment-29</guid>
		<description>Hi, thanks for the backlink.
I think it&#039;s a better solution to add /opt/ruby-enterprise/ in the path. and in /opt/ create a symlink from ruby-enterprise to ruby-enterprise-1.8.7.... 
This way all you have to fix when upgrading ruby-enterprise is the link in /opt/</description>
		<content:encoded><![CDATA[<p>Hi, thanks for the backlink.<br />
I think it&#8217;s a better solution to add /opt/ruby-enterprise/ in the path. and in /opt/ create a symlink from ruby-enterprise to ruby-enterprise-1.8.7&#8230;.<br />
This way all you have to fix when upgrading ruby-enterprise is the link in /opt/</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPhone: how to select a UITabBarItem programmatically by danidemi</title>
		<link>http://www.danidemi.com/mainwww/2009/11/iphone-how-to-select-a-uitabbaritem-programmatically/comment-page-1/#comment-6</link>
		<dc:creator>danidemi</dc:creator>
		<pubDate>Thu, 07 Jan 2010 22:32:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.danidemi.com/mainwww/?p=61#comment-6</guid>
		<description>Yes, please, feel free to quote it.</description>
		<content:encoded><![CDATA[<p>Yes, please, feel free to quote it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPhone: how to select a UITabBarItem programmatically by Chiffenok</title>
		<link>http://www.danidemi.com/mainwww/2009/11/iphone-how-to-select-a-uitabbaritem-programmatically/comment-page-1/#comment-5</link>
		<dc:creator>Chiffenok</dc:creator>
		<pubDate>Thu, 07 Jan 2010 18:03:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.danidemi.com/mainwww/?p=61#comment-5</guid>
		<description>I want to quote your post in my blog. It can?
And you et an account on Twitter?</description>
		<content:encoded><![CDATA[<p>I want to quote your post in my blog. It can?<br />
And you et an account on Twitter?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

