<?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 on: What&#8217;s In Chris&#8217; Brain: November 2007 Edition</title>
	<atom:link href="http://www.littlehart.net/atthekeyboard/2007/11/07/whats-in-chris-brain-november-2007-edition/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.littlehart.net/atthekeyboard/2007/11/07/whats-in-chris-brain-november-2007-edition/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss</link>
	<description>Facebook should&#039;ve be written in unicornSchemaLang, because everyone *knows* that PHP is no good for anything, right?</description>
	<lastBuildDate>Tue, 16 Mar 2010 15:56:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<atom:link rel="hub" href="http://pubsubhubbub.appspot.com" />
		<item>
		<title>By: Todd</title>
		<link>http://www.littlehart.net/atthekeyboard/2007/11/07/whats-in-chris-brain-november-2007-edition/comment-page-1/#comment-7880</link>
		<dc:creator>Todd</dc:creator>
		<pubDate>Thu, 08 Nov 2007 19:48:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.littlehart.net/atthekeyboard/2007/11/07/whats-in-chris-brain-november-2007-edition/#comment-7880</guid>
		<description>Matt: For CakePHP specific code completions, you&#039;ll need to add the cake library directory to Komodo&#039;s list of known PHP library references, see:
http://community.activestate.com/forum-topic/komodo-and-cakephp#comment-3405</description>
		<content:encoded><![CDATA[<p>Matt: For CakePHP specific code completions, you&#8217;ll need to add the cake library directory to Komodo&#8217;s list of known PHP library references, see:<br />
<a href="http://community.activestate.com/forum-topic/komodo-and-cakephp#comment-3405" rel="nofollow">http://community.activestate.com/forum-topic/komodo-and-cakephp#comment-3405</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Hartjes</title>
		<link>http://www.littlehart.net/atthekeyboard/2007/11/07/whats-in-chris-brain-november-2007-edition/comment-page-1/#comment-7877</link>
		<dc:creator>Chris Hartjes</dc:creator>
		<pubDate>Thu, 08 Nov 2007 14:07:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.littlehart.net/atthekeyboard/2007/11/07/whats-in-chris-brain-november-2007-edition/#comment-7877</guid>
		<description>@Chris Meller
Yeah, I managed to figure out that you could use $this-&gt;load-&gt;view(...) in your templates after searching around some more.  

I will say this:  despite there being a very clear user guide for CI, it still took a lot of digging around to find what I felt was a simple answer.  A very similar experience for people who are trying to find out info about CakePHP as well, but at least now there is a manual online for CakePHP 1.2.</description>
		<content:encoded><![CDATA[<p>@Chris Meller<br />
Yeah, I managed to figure out that you could use $this->load->view(&#8230;) in your templates after searching around some more.  </p>
<p>I will say this:  despite there being a very clear user guide for CI, it still took a lot of digging around to find what I felt was a simple answer.  A very similar experience for people who are trying to find out info about CakePHP as well, but at least now there is a manual online for CakePHP 1.2.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Travis Swicegood</title>
		<link>http://www.littlehart.net/atthekeyboard/2007/11/07/whats-in-chris-brain-november-2007-edition/comment-page-1/#comment-7875</link>
		<dc:creator>Travis Swicegood</dc:creator>
		<pubDate>Thu, 08 Nov 2007 03:55:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.littlehart.net/atthekeyboard/2007/11/07/whats-in-chris-brain-november-2007-edition/#comment-7875</guid>
		<description>Oh man - that DBGp in vim is awesome.  That&#039;s geekiness on steriods... :-D</description>
		<content:encoded><![CDATA[<p>Oh man &#8211; that DBGp in vim is awesome.  That&#8217;s geekiness on steriods&#8230; <img src='http://www.littlehart.net/atthekeyboard/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Meller</title>
		<link>http://www.littlehart.net/atthekeyboard/2007/11/07/whats-in-chris-brain-november-2007-edition/comment-page-1/#comment-7873</link>
		<dc:creator>Chris Meller</dc:creator>
		<pubDate>Wed, 07 Nov 2007 23:51:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.littlehart.net/atthekeyboard/2007/11/07/whats-in-chris-brain-november-2007-edition/#comment-7873</guid>
		<description>I use Code Igniter frequently, along with what you apparently refer to as &quot;reusable views&quot;.

For example, I have a header and a footer view that contain my basic HTML that will be included on every page. So I call my normal view:
&lt;code&gt;$this-&gt;load-&gt;view(&#039;user/login&#039;);&lt;/code&gt;

In that view, I have load two other views (the header and footer):

&lt;code&gt;
$headers[&#039;title&#039;] = &#039;Login Page&#039;;
$this-&gt;load-&gt;view(&#039;header&#039;, $headers);

&lt;login form code&gt;

$this-&gt;load-&gt;view(&#039;footer&#039;);
&lt;/code&gt;

So the &quot;reusable views&quot; are really no different than any other view. While CakePHP splits them out specifically into &#039;elements&#039; (IIRC), Code Igniter doesn&#039;t do any special abstraction.

Hopefully my code didn&#039;t get mangled...</description>
		<content:encoded><![CDATA[<p>I use Code Igniter frequently, along with what you apparently refer to as &#8220;reusable views&#8221;.</p>
<p>For example, I have a header and a footer view that contain my basic HTML that will be included on every page. So I call my normal view:<br />
<code>$this-&gt;load-&gt;view('user/login');</code></p>
<p>In that view, I have load two other views (the header and footer):</p>
<p><code><br />
$headers['title'] = 'Login Page';<br />
$this-&gt;load-&gt;view('header', $headers);</p>
<p>&lt;login form code&gt;</p>
<p>$this-&gt;load-&gt;view('footer');<br />
</code></p>
<p>So the &#8220;reusable views&#8221; are really no different than any other view. While CakePHP splits them out specifically into &#8216;elements&#8217; (IIRC), Code Igniter doesn&#8217;t do any special abstraction.</p>
<p>Hopefully my code didn&#8217;t get mangled&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt Curry</title>
		<link>http://www.littlehart.net/atthekeyboard/2007/11/07/whats-in-chris-brain-november-2007-edition/comment-page-1/#comment-7871</link>
		<dc:creator>Matt Curry</dc:creator>
		<pubDate>Wed, 07 Nov 2007 22:22:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.littlehart.net/atthekeyboard/2007/11/07/whats-in-chris-brain-november-2007-edition/#comment-7871</guid>
		<description>Hey Chris,
I use the free version of Komodo to develope CakePHP apps.  Generally I have no complaints, except for the occasional hard crash.  

The one feature I wish I had was CakePHP specific code completion.  There was a thread in the Google Group a few weeks ago about getting this to work in Eclipse by adding a fake include file to your project.  One of these days when I get the time I was going to try something similar with Komodo.

-Matt</description>
		<content:encoded><![CDATA[<p>Hey Chris,<br />
I use the free version of Komodo to develope CakePHP apps.  Generally I have no complaints, except for the occasional hard crash.  </p>
<p>The one feature I wish I had was CakePHP specific code completion.  There was a thread in the Google Group a few weeks ago about getting this to work in Eclipse by adding a fake include file to your project.  One of these days when I get the time I was going to try something similar with Komodo.</p>
<p>-Matt</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Georgi Momchilov</title>
		<link>http://www.littlehart.net/atthekeyboard/2007/11/07/whats-in-chris-brain-november-2007-edition/comment-page-1/#comment-7870</link>
		<dc:creator>Georgi Momchilov</dc:creator>
		<pubDate>Wed, 07 Nov 2007 21:45:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.littlehart.net/atthekeyboard/2007/11/07/whats-in-chris-brain-november-2007-edition/#comment-7870</guid>
		<description>&quot;Man, how much time should someone spend refactoring code they’ve inherited? Is it really true that people think everyone else’s code is ugly and theirs is a paragon a beauty?&quot;

Absolutely... I guess programmers are quite a haughty tribe :)</description>
		<content:encoded><![CDATA[<p>&#8220;Man, how much time should someone spend refactoring code they’ve inherited? Is it really true that people think everyone else’s code is ugly and theirs is a paragon a beauty?&#8221;</p>
<p>Absolutely&#8230; I guess programmers are quite a haughty tribe <img src='http://www.littlehart.net/atthekeyboard/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->