<?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>cakebaker &#187; framework</title>
	<atom:link href="http://cakebaker.42dh.com/tags/framework/feed/" rel="self" type="application/rss+xml" />
	<link>http://cakebaker.42dh.com</link>
	<description>baking cakes with CakePHP</description>
	<lastBuildDate>Tue, 20 Dec 2011 15:29:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>What&#8217;s needed to fall in love with a (web) framework?</title>
		<link>http://cakebaker.42dh.com/2009/01/19/whats-needed-to-fall-in-love-with-a-web-framework/</link>
		<comments>http://cakebaker.42dh.com/2009/01/19/whats-needed-to-fall-in-love-with-a-web-framework/#comments</comments>
		<pubDate>Mon, 19 Jan 2009 10:37:58 +0000</pubDate>
		<dc:creator>cakebaker</dc:creator>
				<category><![CDATA[framework]]></category>

		<guid isPermaLink="false">http://cakebaker.42dh.com/?p=1068</guid>
		<description><![CDATA[In a recent comment TheIdeaMan wrote: &#8220;I&#8217;d love to see a post from you on your top 10 “must haves” for the new framework.&#8221; I thought a while about this, and tried to come up with such a list. Without luck. Not because there are no &#8220;must haves&#8221;, there are, but because the most important [...]]]></description>
			<content:encoded><![CDATA[<p>In a <a href="http://cakebaker.42dh.com/2008/12/31/growing-by-eating-less-cake/#comment-116318">recent comment</a> <a href="http://bensfriends.com/theideaman/">TheIdeaMan</a> wrote: &#8220;I&#8217;d love to see a post from you on your top 10 “must haves” for the new framework.&#8221;</p>
<p>I thought a while about this, and tried to come up with such a list. Without luck. Not because there are no &#8220;must haves&#8221;, there are, but because the most important points are fuzzy and difficult to describe. </p>
<p>If I look back at the time when I decided to use CakePHP, it seems quite irrational that I have chosen CakePHP as my main framework. The only constraint was PHP4 support (though the only project that required it died shortly after the decision *g*). On the other hand, CakePHP contained only a fraction of today&#8217;s features, it was very buggy, there was no documentation beside the blog tutorial, and only a few people used it. And still, I liked it, and spent a lot of time with it.</p>
<p>Now, some years later, I&#8217;m more conscious about my own values, and so I want to use a framework that&#8217;s more aligned with those values. As I care about software design and good code, I want to see those things in the framework I use. And because details matter to me, the framework developers should also care about details and not only &#8220;make it work&#8221;. </p>
<p>So, in a nutshell, my top &#8220;must have&#8221; for a framework is a development philosophy that strives for the following topics:</p>
<ul>
<li>Good design</li>
<li>Good code</li>
<li>Caring about details</li>
</ul>
<p>However, there is one point which is even more important than what I listed above: you must like the framework. It&#8217;s that simple. The best framework is worthless if you don&#8217;t like it. Or do you really want to spend much time with something you don&#8217;t like?</p>
]]></content:encoded>
			<wfw:commentRss>http://cakebaker.42dh.com/2009/01/19/whats-needed-to-fall-in-love-with-a-web-framework/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Faster CSS development with the blueprint framework</title>
		<link>http://cakebaker.42dh.com/2007/08/13/faster-css-development-with-the-blueprint-framework/</link>
		<comments>http://cakebaker.42dh.com/2007/08/13/faster-css-development-with-the-blueprint-framework/#comments</comments>
		<pubDate>Mon, 13 Aug 2007 14:45:33 +0000</pubDate>
		<dc:creator>cakebaker</dc:creator>
				<category><![CDATA[cakephp]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[framework]]></category>

		<guid isPermaLink="false">http://cakebaker.42dh.com/2007/08/13/faster-css-development-with-the-blueprint-framework/</guid>
		<description><![CDATA[If I have to work with CSS, it is often a struggle for me and takes a lot of time. And so I always wondered if there is not a better way to work with CSS&#8230; Fortunately, some days ago a CSS framework called blueprint has been released. It defines sensible default values and provides [...]]]></description>
			<content:encoded><![CDATA[<p>If I have to work with CSS, it is often a struggle for me and takes a lot of time. And so I always wondered if there is not a better way to work with CSS&#8230;</p>
<p>Fortunately, some days ago a CSS framework called <a href="http://code.google.com/p/blueprintcss/">blueprint</a> has been released. It defines sensible default values and provides a grid to make layouting a breeze. </p>
<p>I don&#8217;t have used it for a complex layout yet, but creating a simple two-column layout with a header and a footer was pretty simple:</p>
<pre>
&lt;div class="container"&gt;
    &lt;div class="column span-14"&gt;
        &lt;h1&gt;Title&lt;/h1&gt;
    &lt;/div&gt;
    &lt;div class="column span-4 first"&gt;
        sidebar
    &lt;/div&gt;
    &lt;div class="column span-10 last"&gt;
        content
    &lt;/div&gt;
    &lt;div class="column span-14"&gt;
        footer
    &lt;/div&gt;
&lt;/div&gt;
</pre>
<p>I didn&#8217;t had to write any CSS myself for this example. The only thing I had to do was to include the blueprint CSS file with:</p>
<pre>
// screen.css is located in app/webroot/css
echo $html-&gt;css('screen');
</pre>
<p>I think with having such a framework, the days of writing all CSS myself are gone ;-)</p>
]]></content:encoded>
			<wfw:commentRss>http://cakebaker.42dh.com/2007/08/13/faster-css-development-with-the-blueprint-framework/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>

