<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">

    <title type="text">Rockatee Blog</title>
    <subtitle type="text">Rockatee Blog:</subtitle>
    <link rel="alternate" type="text/html" href="http://www.rockatee.com/index/" />
    <link rel="self" type="application/atom+xml" href="http://www.rockatee.com/index.php/main/atom/" />
    <updated>2008-10-06T03:50:43Z</updated>
    <rights>Copyright (c) 2008, rockatee</rights>
    <generator uri="http://expressionengine.com/" version="1.6.4">ExpressionEngine</generator>
    <id>tag:rockatee.com,2008:10:06</id>


    <entry>
      <title>Highlighting menu items with ExpressionEngine</title>
      <link rel="alternate" type="text/html" href="http://www.rockatee.com/index.php/site/highlighting-menu-items-with-expressionengine/" />
      <id>tag:rockatee.com,2008:index/4.46</id>
      <published>2008-10-06T01:44:43Z</published>
      <updated>2008-10-06T03:50:43Z</updated>
      <author>
            <name>rockatee</name>
            <email>info@rockatee.com</email>
                  </author>

      <category term="ExpressionEngine"
        scheme="http://www.rockatee.com/index.php/site/category/expressionengine/"
        label="ExpressionEngine" />
      <content type="html"><![CDATA[
        <p>There are indeed are variety of means by which you can highlight a menu item of the current page you're on. One way would be to use ExpressionEngine's <a href="http://expressionengine.com/docs/templates/embedding_templates.html">embedded template</a> functionality which is very sophisticated. The downside in my view is that you have to &mdash; as the name implies &mdash embed a template which may not always be the optimal solution, depending on your amount of embedded templates and your general structure preferences. I usually try to not use too many embedded templates in order to allow for less performance overhead, but your preferences may vary and technically, there is nothing wrong with going that route. </p>

<p>So, to highlight your current navigation item, you would create an <strong>embed variable</strong>.</p>

<p>This is the standard structure of an embed variable:</p>

<ol class="code">
<li>&#123;embed="mytemplate" parameter name == "parameter value"&#125;</li>
</ol>

<p>Example:</p>

<ol class="code">
<li>&#123;embed="navigation" sausage == "frankfurter"&#125;</li>
</ol>

<p>In plain text this means your embed variable consists of the parameter name of <strong>sausage</strong> with a parameter value of <strong>frankfurter</strong>.</p>

<p>For my navigation, I would then create a parameter value for each navigational element within each template which would look like the following for my portfolio index page:</p>

<img src="http://rockatee.com/images/article_nav2.jpg" alt="">

<p>Rinse and repeat for each page you link to in your navigation.</p>

<p>Next, you will want to create the embedded template. I use a separate template group for my embedded templates and have assigned it the name <strong>inc</strong>. My navigation template is called <strong>_navi</strong>, hence, in order for EE to understand that we want to highlight the current navigation item, we have to tell it to do so by implementing conditional variables, in this case the <strong>if</strong> statement.</p>


<img src="http://rockatee.com/images/article_nav.jpg" alt="">

<p>Another really nifty way of having your current navigation item highlighted, is by using <a href="http://solspace.com/">Solspace's</a> <a href="http://www.solspace.com/software/detail/selected/c/plugins/">Selected</a> plugin. It's extremely easy to set up, and does not require any embedding or the use of conditionals for simple setups.</p>

<p>If, for example, you had a list of weblog entry links in your left column and the single entry in your right column and wanted to highlight the current item a user was on, then you would use something like this:</p>

<ol class="code">
<li>&lt;ul&gt;</li>
<li>&#123;exp:weblog:entries weblog="{my_weblog&#125;"}</li>
<li>&#123;exp:selected item="{segment_2&#125;" replace="class='selected'"}</li>
<li>&lt;li {selected_{url_title}}&gt;&lt;a href="{/comment_url_title_auto_path}" title="{title}"&gt;{title}&lt;/a&gt;&lt;/li&gt;</li>
<li>&#123;/exp:selected&#125;</li>
<li>&#123;/exp:weblog:entries&#125;</li>
<li>&lt;/ul&gt;</li>
</ol>

<p>(remove the slash in the <strong>comment_url_title_auto_path</strong> variable. EE automatically turns it into a link in my entries).</p>
<img src="http://rockatee.com/images/article_nav3.jpg" alt="">
<p>You can also use a static menu:</p>

<ol class="code">
<li>&lt;ul&gt;</li>
<li>&#123;exp:selected item="{segment_1&#125;" replace="class='selected'"}</li>
<li>&lt;li {selected_news}&gt;&lt;a href="/news/" title="Latest News"&gt;Latest News</a>&lt;/li&gt;</li>
<li>&lt;li {selected_about}&gt;&lt;a href="/about/" title="About"&gt;About</a>&lt;/li&gt;</li>
<li>&#123;/exp:selected&#125;</li>
<li>&lt;/ul&gt;</li>
</ol>

<p>Here, the second part of the parameter is your actual value, in this case it is the first segment (<strong>segment_1</strong>) that is replaced, so if you want to highlight a segment, you'd give the second part of the paramter the exact url title. In my example, the exact url title is <strong>news</strong> and <strong>about</strong> respectively.</p>

<p>There are many more uses for the <a href="http://solspace.com/">Solspace</a> plugin, but here I've highlighted two possibilities of its use.</p>



 {extended}
      ]]></content>
    </entry>

    <entry>
      <title>RSS and Atom Feeds now Working</title>
      <link rel="alternate" type="text/html" href="http://www.rockatee.com/index.php/site/rss-and-atom-feeds-now-working/" />
      <id>tag:rockatee.com,2008:index/4.44</id>
      <published>2008-08-14T12:38:26Z</published>
      <updated>2008-08-14T12:50:26Z</updated>
      <author>
            <name>rockatee</name>
            <email>info@rockatee.com</email>
                  </author>

      <category term="News"
        scheme="http://www.rockatee.com/index.php/site/category/News/"
        label="News" />
      <content type="html"><![CDATA[
        <p>I've been contacted by a few readers that neither my Atom feed nor my RSS feed were working. This is truly embarassing, I must admit to my shame. The past few weeks have been explosive (in a good way) and I've had little time to write articles and such due to the simple fact that I'm currently overwhelmed with client work.</p>
<p>There has also been quite a good amount of spam that paved its way through my comments and thus affected my readers as they received those wonderfully precise and eloquent trash in their mailbox. I have done away with that by implementing a captcha feature. I despise captchas with a passion, but at the moment, this seems the quickest and easiest, if not entirely accessible way of preventing the agressive spam of lately. Should you know of a wiser solution, do share.</p>
<p>Meanwhile, I am not in the least prepared to neglect cleaning up the rest of the few remaining quirks and minor technical issues and will attend to these bit by bit, and sooner rather than later.</p>
<p> On the writing aspect of things, quite a few articles are in the pipeline and waiting to be released, so do stay tuned and I'll do my best to not disappoint. </p> <img src="http://www.rockatee.com/images/smileys/smile.gif" width="19" height="19" alt="smile" style="border:0;" />

 {extended}
      ]]></content>
    </entry>

    <entry>
      <title>On the Perils of Poor Documentation</title>
      <link rel="alternate" type="text/html" href="http://www.rockatee.com/index.php/site/on-the-perils-of-poor-documentation/" />
      <id>tag:rockatee.com,2008:index/4.42</id>
      <published>2008-08-03T18:26:15Z</published>
      <updated>2008-08-03T19:41:15Z</updated>
      <author>
            <name>rockatee</name>
            <email>info@rockatee.com</email>
                  </author>

      <category term="Design"
        scheme="http://www.rockatee.com/index.php/site/category/design/"
        label="Design" />
      <content type="html"><![CDATA[
        <p>Whether you’re a high-school or University graduate, there’s one thing our mentors have tried to impregnate into our brains as a vital tool to comprehend and memorise the information we are taking in; making notes of what we read, see, and hear.
Granted, to some it may seem redundant or far too time-consuming to engage in exhaustive documentation of one’s reading and learning material. And there are indeed areas of learning where you don’t need it. </p>

<h4>If I do it with Books, why not do it with Websites?</h4>

<p>What do your books look like? Are they neat and clean? I don’t mean coffee marks or other unnescessary stains or speckles of dirt; I mean clear signs that a book is heavily used. My books mdash; for the most part mdash; are a complete mess. Why? Because they’re tools. They’re the hammer and chisel I use, sometimes abuse, excessively amd exhaustively. I write extensive notes on the sides of a page, sometimes a hundred words or more. I underline paragraphs, add questions or exclamation marks when I feel something is either right on the mark or when I’m uncertain of the meaning of certain paragraphs. I use a yellow neon-marker to mark passages that contain a thesis, mark passages in neon-pink that illustrate possible anti-thesis/counter-arguments, and finally use a green marker to highlight the thesis’ conclusion.
I place paper notes where adequate with bullet points to help me find the proper information I seek next time I need it.
In short, my books look used, torn, and often have very little resemblance in apperance to when I originally bought them.</p>
<p>
On the web, having a documentation habitus, is of even greater importance, unless you design solely for yourself.</p>

<p>Only recently, I’ve made it a habit to always document significant steps taken during the course of designing a web site for a client. 
While doing this may be considered a daunting and unnerving task, it can pay off in the end, and in more ways than one.</p>

<h4>The Benefits are not Limited to the Designer</h4>

<p>Firstly, I tend to experiment a lot when constructing and prototyping a new design. This is not only a fun task, but also a very challenging one many times.
Designing layouts that contain stylistic touches that are not overly common, usually require for my CSS to be extravagant as well. There is no way at all, I will remember what I did to client x’s design four years ago. Not remembering means lots of searching and guesswork. Lots of searching means lots of time wasted. I can’t tell you how many times I’ve had to revisit my own techniques because I had failed to document exactly why and how I coded something, relying on my memory entirely, which is not a very wise thing to do. 
</p>
<p>Secondly, documenting code and explaining why I have written a piece of code in such way or another, also tells me that I understand exactly what I’m doing. If I don’t know the whys and hows, or have quickly looked up a technique from a book without having learned the methods applied thoroughly, I won’t be able to explain it, right? Right.Therefore, documenting properly can be a good mirror to my current level of expertise.</p>

<p>Thirdly, the  most important benefit to documenting my code is to enable clients and developers to maintain the site independently from me, should they so choose, and doing it beautifully, without breaking the design, its aesthetics, and its accessible markup.</p>

<h4>Well-documented Code is more than a Memory Crutch</h4>

<p>What it really is, is a:</p>

<ul><li><strong> Accessibility Enabler</strong> - I am able to explain why I used non-semantic containers such as the span element, and slightly more semantic mdash; but still fairly neutral mdash; such as the div element to construct my contact form instead of using a list or table.Because opinions on Best Practices in the Web Standards world differ quite significantly in many areas, having good arguments for doing what I do and being able to explain why I chose what I chose, allows for insight, discussion, and enhancements. I can replace certain elements based on newly won cognition on how to best present specific information.</li>

<li><strong> Usability Enforcer</strong> - When having performed a re-design for Jane Doe’s company, I’ll have documented why I’ve done away with the poorly executed drop-down menu and instead applied a one-level navigation, and placed sub-menu items on the right-hand side. Shall a designer/developer mdash; at any given time mdash; seek to make changes to the navigation architecture, he’ll know and understand the reasoning behind my design decision.</li>

<li><strong> Efficiency Maker</strong> - Obviously, having documented my code will help save time. I can come back to a design I’ve made years ago and can quickly access the information and logic of the code applied.
I may just want to modify the colour scheme slightly. Perhaps I’d like to reduce the markup significantly, optimize, or enhance it to accomodate new browser-integrated CSS rules and the like. I can do this easily when I have my style-, and HTML documents well commented. It not only saves me a lot of time and headaches, and the client lots of money, but is simultaneously most beneficial to developers or teams who work on and maintain the same site.</li>
</ul>
<p>
So, making notes, writing good documentation is not a waste of time, not in the long run. I wish I had started out this way when creating websites and using the space I’m given in a HTML or style document, and mdash; for extensive documentation mdash; use separate documents to write down a table of contents, just like any good book does.</p>









 {extended}
      ]]></content>
    </entry>

    <entry>
      <title>Type Foundries &#45; Great Professional Fonts, and Free too!</title>
      <link rel="alternate" type="text/html" href="http://www.rockatee.com/index.php/site/type-foundries-great-professional-fonts-and-free-too/" />
      <id>tag:rockatee.com,2008:index/4.38</id>
      <published>2008-07-23T19:52:49Z</published>
      <updated>2008-07-23T21:03:49Z</updated>
      <author>
            <name>rockatee</name>
            <email>info@rockatee.com</email>
                  </author>

      <category term="Typography"
        scheme="http://www.rockatee.com/index.php/site/category/typography/"
        label="Typography" />
      <content type="html"><![CDATA[
        <p>In my pursuit of purchasing a new typefaces, I never do so without paying a short visit to a foundry's freebie area. While most quality typefaces need to be paid for, sometimes, free typefaces find their way into my font collection, either because they're marvelously beautiful &mdash; or, because they allow for me to experiment. </p><p>Anyway, I have selected a few fonts (it is a good idea to read the license agreements for each of these releases) that I really like and have put on display below. At the very bottom of the article, you'll find the links to some of these foundries as they offer quite a few fluffy typefaces for free that I have not listed.</p> 

<h3>Stylish &mdash; by Stefan Hattenbach</h3>
<p><img src="http://rockatee.com/images/uploads/font_stylish.gif" alt="" /></p>
<p><a href="http://www.macrhino.com/dox/0244.html" title="Stylish">Download Link</a> | Distributed by <a href="hhttp://www.macrhino.com/" title="Mac Rhino Fonts">MRF</a></p>
<h3>FF Nuovo &mdash; by Xavier Dupré and Martin Majoor</h3>
<p><img src="http://rockatee.com/images/uploads/font_nuovo.gif" alt="" /></p>
<p><a href="http://www.fontfont.com/downloads/" title="FF Nuovo">Download Link</a> | Distributed by <a href="http://www.fontfont.com" title="FontFont">FontFont</a></p>
<h3>FF MT &mdash; by Erik Spiekermann</h3>
<p><img src="http://rockatee.com/images/uploads/font_mt.gif" alt="" /></p>
<p><a href="http://www.macrhino.com/dox/0244.html" title="MT">Download Link</a> | Distributed by <a href="http://www.fontfont.com" title="FontFont">FontFont</a></p>
<h3>Lido STF &amp; Lido STF Condensed</h3>
<p><img src="http://rockatee.com/images/uploads/font_lido.gif" alt="" /></p>
<p><img src="http://rockatee.com/images/uploads/font_lido_con.gif" alt="" /></p>
<p><a href="http://www.stormtype.com/typefaces-fonts-shop/free.php?buy=T122#T122" title="Lido">Download Link</a> | Distributed by <a href="http://www.stormtype.com" title="Stormtype">Stormtype</a></p>
<h3>Gentium</h3>
<p><img src="http://rockatee.com/images/uploads/font_gentium.gif" alt="" /></p>
<p><a href="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&item_id=Gentium_basic" title="Gentium">Download Link</a> | Distributed by <a href="http://www.sil.org/" title="SIL">SIL</a></p>
<h3>Teaspoon &mdash; by Haley Fiege</h3>
<p><img src="http://rockatee.com/images/uploads/font_teaspoon.gif" alt="" /></p>
<p><a href="http://www.fontbros.com/free_fonts.php" title="Teaspoon">Download Link</a> | Distributed by <a href="http://www.fontbros.com/" title="Font Bros">Font Bros</a></p>
<h3>Sovereign</h3>
<p><img src="http://rockatee.com/images/uploads/font_sovereign.gif" alt="" /></p>
<p><a href="http://www.type.co.uk/index.php?p=FreeFonts" title="Sovereign">Download Link</a> | Distributed by <a href="http://www.type.co.uk/" title="Font Bros">type.co.uk</a></p>
<h3>And a few More</h3>
<ul>
<li><a href="http://www.josbuivenga.demon.nl/index.html" title="exljbris">exljbris</a></li>
<li><a href="http://www.macrhino.com" title="Mac Rhino Fonts">Mac Rhino Fonts</a></li>
<li><a href="http://www.dersven.de/select_category/7.html" title="DerSven">DerSven</a></li>
<a href="http://www.fontbros.com/free_fonts.php" title="Font Bros">Font Bros</a></li>
<li><a href="http://moorstation.org/typoasis/designers/klein03/index.htm" title="Manfred Klein">Manfred Klein</a></li>
<li><a href="http://moorstation.org/typoasis/designers/steffmann/index.htm#K" title="Dieter Steffmann">Dieter Steffmann</a></li>
<li><a href="http://www.stormtype.com/typefaces-fonts-shop/free.php?buy=T122#T122" title="Stormtype">Stormtype</a></li>
<li><a href="http://fontfont.com" title="FontFont">FontFont</a></li>
</ul>

 {extended}
      ]]></content>
    </entry>

    <entry>
      <title>New WordPress Theme Release for Smashing Magazine</title>
      <link rel="alternate" type="text/html" href="http://www.rockatee.com/index.php/site/new-wordpress-theme-release-for-smashing-magazine/" />
      <id>tag:rockatee.com,2008:index/4.7</id>
      <published>2008-07-16T01:30:24Z</published>
      <updated>2008-07-16T10:33:24Z</updated>
      <author>
            <name>rockatee</name>
            <email>info@rockatee.com</email>
                  </author>

      <category term="Design"
        scheme="http://www.rockatee.com/index.php/site/category/design/"
        label="Design" />
      <content type="html"><![CDATA[
        <p>While I'm a huge ExpressionEngine afficionado, I do also work with other CMSes and blogging platforms.
I know there are a plethora of options to choose from and while I do belive each CMS might probably be good in their own right &mdash; as long as the code isn't bloated and their markup practices not outdated &mdash; we would still be left with more choices we can possible master. One CMS or blogging platform &mdash; though I've never quite understood the difference and would rather label it simple CMS application &mdash; is WordPress.
I do like it a lot and I think it has its place, even in the professional world. What I like a lot about WordPress is that it's very easy to create themes. The templating system is easy to understand and the widget functionality allows for quick and convenient content placement.</p>

<p><a href="http://smashingmagazine.com/" title="Smashing Magazine">Smashing Magazine</a> &mdash; a magazine I've grown to love and visit quite often &mdash; is releasing one of my themes today, so a big hurrah is in order and I'm quite thrilled and honoured, I must admit.</p>

<p><img src="http://www.rockatee.com/images/uploads/wordpress_fun_theme.jpg" style="border: 0;" alt="image" width="450" height="300" /></p>

<p>If you do like fun eyecandy with not too much graphic overhead, head on to <a href="http://www.smashingmagazine.com/2008/07/16/wordpress-fun-a-free-wordpress-theme/" title="Smashing Magazine">Smashing Magazine</a> and download the theme!</p>




 {extended}
      ]]></content>
    </entry>

    <entry>
      <title>Internet Explorer 6: Last Character Duplication</title>
      <link rel="alternate" type="text/html" href="http://www.rockatee.com/index.php/site/internet-explorer-6-last-character-duplication/" />
      <id>tag:rockatee.com,2008:index/4.36</id>
      <published>2008-07-16T01:12:38Z</published>
      <updated>2008-07-16T03:39:38Z</updated>
      <author>
            <name>rockatee</name>
            <email>info@rockatee.com</email>
                  </author>

      <category term="CSS"
        scheme="http://www.rockatee.com/index.php/site/category/css/"
        label="CSS" />
      <content type="html"><![CDATA[
        <p>While I've been working with IE6's bugs for years, I had not encountered this curious CSS bug. At first I was in true wonderment whether it was my eyes or a solid overdose of caffeine. 
Alas, after a good night's sleep and plenty of bottled water to cleanse my cells, it turns out my eyes weren't betraying me after all.</p>

<p>The problem was that IE6 would duplicate the last character of the last list item of a floated element and place it on a new line.
Having never seen this error before, I was only slightly amused and rather baffled as to what might be causing this drop to the next line. </p>

<p><img src="http://www.rockatee.com/images/uploads/art_ie6_css_letter_bug_correct_display.jpg"  width="450" height="300" alt="Correct Display"></p>
<p><span class="caption"><strong>Image 1.1:</strong> This is how it should be displayed.</span></p>
<p><img src="http://www.rockatee.com/images/uploads/art_ie6_css_letter_bug.jpg"  width="450" height="300" alt="Internet Explorer 6 Last Character Duplication">
<p><span class="caption"><strong>Image 1.2:</strong> IE6's rendering bug. IE6 duplicates the last character of the last floated element and throws it onto the next line</span></p>
</p>

<p>The first thing I did was to go through my CSS rules, one by one, trying to see what might cause IE6 to have such a hiccup. So, I checked the widths for my child elements and re-calculated the total width and they matched the width of their parent element. </p>

<p>After some intense, albeit fruitless thinking, I went to my <a href="http://positioniseverything.net/" title="Position is Everything">favourite rescue</a> and found that this bug had been <a href="http://www.positioniseverything.net/explorer/dup-characters.html" title="Duplicate Characters">documented</a>. The culprit were the comments I had made in my code. I always comment my code, so the possibility of IE6 coughing blood over them in this case didn't cross my mind for a minute. This bug does not seem to occur as much as the other well-known IE rendering bugs. I still do not understand it. Perhaps there is no plausible explanation for it.</p>

<p> If anyone has figured it out, do shout.</p> {extended}
      ]]></content>
    </entry>

    <entry>
      <title>Creating a simple comment live preview to use with ExpressionEngine</title>
      <link rel="alternate" type="text/html" href="http://www.rockatee.com/index.php/site/creating-a-simple-comment-live-preview-to-use-with-expressionengine/" />
      <id>tag:rockatee.com,2008:index/4.32</id>
      <published>2008-07-15T02:56:57Z</published>
      <updated>2008-07-16T03:01:57Z</updated>
      <author>
            <name>rockatee</name>
            <email>info@rockatee.com</email>
                  </author>

      <category term="JavaScript"
        scheme="http://www.rockatee.com/index.php/site/category/javascript/"
        label="JavaScript" />
      <content type="html"><![CDATA[
        <p>There probably are a magnitude of techniques on how to customize and personalize comment previews. In ExpressionEngine, by default, the comment preview's functions are stored in a separate template. </p>
<p>For my design, I've decided to reduce the amount of templates used. For this very blog, I am using a single template to retrieve data. I have done away with the single article template (comments template by default), the categories template, the tags template (I use solspace's magnificient tag module) and will most likely use this single template for the search and archives as well. </p>

<p>As this design is very young and not completely done - you may have taken notice of the absence of a search feature and the lack of an archive - I have set out to complete the site by end of the week and iron out the few remaining bugs (such as incompatibility with IE6, oh the love of my life) and other quirks and hiccups that are currently present. </p>

<p>But anyway, onto the comment live preview. Being immensely taken by and favourable of Jason Santamaria's live comment preview, I decided that this is something I wanted, needed too. As I am using jQuery - And a sweet tool it is indeed - I went on a hunt on how to possibly accomplish this task with very few lines of code using jQuery. And, alas, I found a great resource that would help me in writing my tiny weeny little function for the live commenting feature.</p>

<p>Firstly, the code:</p>

<ol class="code">
    <li><code>// Live Comment Preview jQuery function</code></li>
    <li><code>$(function() {</code></li>
    <li><code>$('#comment').one('focus',function() {</code></li>
    <li><code>});</code></li>
    <li><code>var $comment = ''; </code></li>
    <li><code>$('#comment').keyup(function() {</code></li>
    <li><code>$comment = $(this).val();</code></li>
    <li><code>$comment = $comment.replace(/\n/g, "&lt;br /&gt;").replace(/\n\n+/g, '&lt;br &gt;&lt;br /&gt;').replace(/(<\/?)script/g,"$1noscript");</code></li>
    <li><code>$('p.live-preview').html($comment);</code></li>
    <li><code> });</code></li>

    <li><code>});</code></li>
</ol>

<p>As you can see, I have adapted the code provided by <a href="http://www.learningjquery.com/2006/11/really-simple-live-comment-preview">Karl Swedberg</a>, hence all credits go to him. I have merely tweaked the function to suit my needs.</p>

<p>Secondly, you will need to create the according markup for it, depending on where you'd like to have your live preview displayed. Here, I have simply used a floated div element and assigned it the class <code>.comment-preview</code>.  In this <code>div</code> tag, I tell jQuery to add a paragraph with the class of <code>.live-preview</code>.</p>

<p>I have placed the code inside the template that renders my single articles just below the comment form, so it would look something like this:</p>
<ol class="code">
    <li><code>&lt;div class="comment-preview"&gt;</code></li>
   <li><code>&lt;h3&gt;My Comment Preview&lt;/h3&gt;</code></li>
   <li><code>&lt;p class="live-preview"&gt;placeholder text&lt;/p&gt;</code></li>
   <li><code>&lt;/div&gt;</code></li>
</ol> {extended}
      ]]></content>
    </entry>

    <entry>
      <title>I say! Welcome, welcome!</title>
      <link rel="alternate" type="text/html" href="http://www.rockatee.com/index.php/site/i-say-welcome-welcome/" />
      <id>tag:rockatee.com,2008:index/4.31</id>
      <published>2008-07-14T00:12:01Z</published>
      <updated>2008-07-14T03:59:01Z</updated>
      <author>
            <name>rockatee</name>
            <email>info@rockatee.com</email>
                  </author>

      <category term="Rockatee"
        scheme="http://www.rockatee.com/index.php/site/category/rockatee/"
        label="Rockatee" />
      <content type="html"><![CDATA[
        <p>Phew, like probably every designer, you undergo such horrid pains creating a design and taking pleasure out of it. Nothing you produce ever seems good enough. </p>

<p>Thriving for perfection - a masochistic disease so many have. Oh, the attitude of mind. You know you cannot reach perfection as it would contradict every possible setting we carry in our genes, but what good does it do to dwell passively on our imperfections if we can at least attempt to reach the maximum of our capabilities, however small or large they might be? Being slightly delusional and hopelessly optimistic does help at times.
Putting oneself and one's abilities down every now and then also aids in wanting to progress and become better at what you do, having those fear-inducing, devilish demons in the back of your brain, whispering in most unflattering words, that you need to get on, do more, learn more, reflect more and never settle or be content with what you do believe to know.</p>

<p>Knowing nothing is good. Knowing nothing is tremendously healthy. Each time you've learned something new, you realise you know absolutely nothing. Over and over again. That's what motivates me. Wanting to know. And know more. And learn. I'll have enough sleep when I ... well, that does sound overly dramatic. Meanwhile, I've settled to be a Baccalaureus for life. I think that's a very rewarding position to be in.</p>

 {extended}
      ]]></content>
    </entry>


</feed>