<?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 Ivan Bernat</title>
	<atom:link href="http://ivanbernat.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://ivanbernat.com</link>
	<description>Freelance web developer</description>
	<lastBuildDate>Tue, 16 Feb 2010 23:44:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on SeedCamp smells bad by Nikola Cvrtnjak</title>
		<link>http://ivanbernat.com/business/seedcamp-sucks/comment-page-1#comment-48</link>
		<dc:creator>Nikola Cvrtnjak</dc:creator>
		<pubDate>Tue, 16 Feb 2010 23:44:54 +0000</pubDate>
		<guid isPermaLink="false">http://ivanbernat.com/?p=104#comment-48</guid>
		<description>Harry Potter was rejected cca 20 times before they got the money to make a movie :)... And look at it now, one of the most successful movies ever made ;). So seedcamp is rly not that important because if you keep pushing im sure there will be results in that field (getting fund). Good luck mate ;).</description>
		<content:encoded><![CDATA[<p>Harry Potter was rejected cca 20 times before they got the money to make a movie <img src='http://ivanbernat.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> &#8230; And look at it now, one of the most successful movies ever made <img src='http://ivanbernat.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> . So seedcamp is rly not that important because if you keep pushing im sure there will be results in that field (getting fund). Good luck mate <img src='http://ivanbernat.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Reasons why the Zune Phone might suck by Reasons why the Zune Phone might suck &#124; Ivan Bernat &#124; Windows (7) Affinity</title>
		<link>http://ivanbernat.com/gadgets/reasons-why-the-zune-phone-might-suck/comment-page-1#comment-34</link>
		<dc:creator>Reasons why the Zune Phone might suck &#124; Ivan Bernat &#124; Windows (7) Affinity</dc:creator>
		<pubDate>Mon, 08 Feb 2010 23:19:23 +0000</pubDate>
		<guid isPermaLink="false">http://ivanbernat.com/?p=107#comment-34</guid>
		<description>[...] the rest here: Reasons why the Zune Phone might suck &#124; Ivan Bernat   No [...]</description>
		<content:encoded><![CDATA[<p>[...] the rest here: Reasons why the Zune Phone might suck | Ivan Bernat   No [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SeedCamp smells bad by Alex</title>
		<link>http://ivanbernat.com/business/seedcamp-sucks/comment-page-1#comment-32</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Sat, 06 Feb 2010 20:32:42 +0000</pubDate>
		<guid isPermaLink="false">http://ivanbernat.com/?p=104#comment-32</guid>
		<description>Same thoughts here dude ;) but hey, you know the adage - each no gets you closer to a yes if you know why there was a no in the first place!

I wish you luck with the launch, mate!
A.</description>
		<content:encoded><![CDATA[<p>Same thoughts here dude <img src='http://ivanbernat.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  but hey, you know the adage &#8211; each no gets you closer to a yes if you know why there was a no in the first place!</p>
<p>I wish you luck with the launch, mate!<br />
A.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The missing gems of Django in CakePHP by admin</title>
		<link>http://ivanbernat.com/programming/get_object_or_404-in-cakephp/comment-page-1#comment-26</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Mon, 04 Jan 2010 09:06:35 +0000</pubDate>
		<guid isPermaLink="false">http://ivanbernat.com/?p=61#comment-26</guid>
		<description>@dogmatic69 Yes, that also works, but I just went the way Django has it :-)</description>
		<content:encoded><![CDATA[<p>@dogmatic69 Yes, that also works, but I just went the way Django has it <img src='http://ivanbernat.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The missing gems of Django in CakePHP by dogmatic69</title>
		<link>http://ivanbernat.com/programming/get_object_or_404-in-cakephp/comment-page-1#comment-25</link>
		<dc:creator>dogmatic69</dc:creator>
		<pubDate>Mon, 04 Jan 2010 00:44:22 +0000</pubDate>
		<guid isPermaLink="false">http://ivanbernat.com/?p=61#comment-25</guid>
		<description>would it not be better to just do your own read method in app controller?


    class AppModel extends Model
    {
        function read( $fields = null, $id = null)
        {
            if( !$id )
            {
                // return a 404 if the ID wasn&#039;t supplied
                $this-&gt;cakeError( &#039;error404&#039; );
            }

            $data = parent::read(null, $id);

            if( empty( $data ) )
            {
                $this-&gt;cakeError(&#039;error404&#039;);
            }
            
            return $data;
        }
    }

this way you would not have to do and redo all your code.</description>
		<content:encoded><![CDATA[<p>would it not be better to just do your own read method in app controller?</p>
<p>    class AppModel extends Model<br />
    {<br />
        function read( $fields = null, $id = null)<br />
        {<br />
            if( !$id )<br />
            {<br />
                // return a 404 if the ID wasn&#8217;t supplied<br />
                $this-&gt;cakeError( &#8216;error404&#8242; );<br />
            }</p>
<p>            $data = parent::read(null, $id);</p>
<p>            if( empty( $data ) )<br />
            {<br />
                $this-&gt;cakeError(&#8216;error404&#8242;);<br />
            }</p>
<p>            return $data;<br />
        }<br />
    }</p>
<p>this way you would not have to do and redo all your code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Quick review &#8211; Acer Aspire 5542G by Twitted by samarthav</title>
		<link>http://ivanbernat.com/gadgets/quick-review-acer-aspire-5542g/comment-page-1#comment-14</link>
		<dc:creator>Twitted by samarthav</dc:creator>
		<pubDate>Sat, 26 Dec 2009 15:48:34 +0000</pubDate>
		<guid isPermaLink="false">http://ivanbernat.com/?p=47#comment-14</guid>
		<description>[...] This post was Twitted by samarthav [...]</description>
		<content:encoded><![CDATA[<p>[...] This post was Twitted by samarthav [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Quick review &#8211; Acer Aspire 5542G by Tweets that mention Quick review – Acer Aspire 5542G « Ivan Bernat -- Topsy.com</title>
		<link>http://ivanbernat.com/gadgets/quick-review-acer-aspire-5542g/comment-page-1#comment-12</link>
		<dc:creator>Tweets that mention Quick review – Acer Aspire 5542G « Ivan Bernat -- Topsy.com</dc:creator>
		<pubDate>Fri, 25 Dec 2009 03:40:12 +0000</pubDate>
		<guid isPermaLink="false">http://ivanbernat.com/?p=47#comment-12</guid>
		<description>[...] This post was mentioned on Twitter by Ivan Bernat, Lisa Cahone. Lisa Cahone said: LED Screen: Quick review – Acer Aspire 5542G « Ivan Bernat http://bit.ly/8CBlti [...]</description>
		<content:encoded><![CDATA[<p>[...] This post was mentioned on Twitter by Ivan Bernat, Lisa Cahone. Lisa Cahone said: LED Screen: Quick review – Acer Aspire 5542G « Ivan Bernat <a href="http://bit.ly/8CBlti" rel="nofollow" onclick="pageTracker._trackPageview('/outgoing/bit.ly/8CBlti?referer=');">http://bit.ly/8CBlti</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Setting up goals for 2010. by Ronny</title>
		<link>http://ivanbernat.com/personal/setting-up-goals-for-2010/comment-page-1#comment-4</link>
		<dc:creator>Ronny</dc:creator>
		<pubDate>Sat, 12 Dec 2009 18:10:24 +0000</pubDate>
		<guid isPermaLink="false">http://ivanbernat.com/?p=11#comment-4</guid>
		<description>I write my goals down in a &lt;a href=&quot;http://www.isetmygoals.com/goal-setting.html&quot; rel=&quot;nofollow&quot;&gt;2010 goals booklet&lt;/a&gt;. It is always in my wallet and I review it regularly. It keeps me focused on what really matters to me.

Enjoy and success!
Ronny</description>
		<content:encoded><![CDATA[<p>I write my goals down in a <a href="http://www.isetmygoals.com/goal-setting.html" rel="nofollow" onclick="pageTracker._trackPageview('/outgoing/www.isetmygoals.com/goal-setting.html?referer=');">2010 goals booklet</a>. It is always in my wallet and I review it regularly. It keeps me focused on what really matters to me.</p>
<p>Enjoy and success!<br />
Ronny</p>
]]></content:encoded>
	</item>
</channel>
</rss>
