<?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"
	>

<channel>
	<title>Kevin Old</title>
	<atom:link href="http://www.kevinold.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kevinold.com</link>
	<description>my take on life as a geek</description>
	<pubDate>Fri, 25 Jul 2008 23:30:06 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
	<language>en</language>
			<item>
		<title>Why I Git It</title>
		<link>http://www.kevinold.com/2008/07/25/why-i-git-it/</link>
		<comments>http://www.kevinold.com/2008/07/25/why-i-git-it/#comments</comments>
		<pubDate>Fri, 25 Jul 2008 23:30:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Git]]></category>

		<category><![CDATA[revision control]]></category>

		<category><![CDATA[subversion]]></category>

		<guid isPermaLink="false">http://www.kevinold.com/?p=14</guid>
		<description><![CDATA[Yeah, I know.  Cheesy title.  But, it&#8217;s true.  I&#8217;ve been using Git for the past several months and am amazed at it&#8217;s powerful simplicity.  The concepts are easy to grasp thanks to great documentation and real world examples.
I&#8217;d heard all the rage about the other SCM&#8217;s.  I&#8217;ve looked into Mercurial and [...]]]></description>
			<content:encoded><![CDATA[<p>Yeah, I know.  Cheesy title.  But, it&#8217;s true.  I&#8217;ve been using <a href="http://git.or.cz">Git</a> for the past several months and am amazed at it&#8217;s powerful simplicity.  The concepts are easy to grasp thanks to great <a href="http://git.or.cz/gitwiki/GitDocumentation">documentation</a> and <a href="http://www.kernel.org/pub/software/scm/git/docs/everyday.html">real world</a> <a href="http://git.or.cz/course/">examples</a>.</p>
<p>I&#8217;d heard all the rage about the other <a href="http://en.wikipedia.org/wiki/Software_configuration_management">SCM</a>&#8217;s.  I&#8217;ve looked into <a href="http://www.selenic.com/mercurial/">Mercurial</a> and <a href="http://bazaar-vcs.org/">Bazaar</a>, but wasn&#8217;t as impressed with them as I was with Git.  After following <a href="http://kerneltrap.org/node/4982">the timeline of emails as Linus wrote</a> and shared his new creation and watching <a href="http://www.youtube.com/watch?v=4XpnKHJAok8">his visit to Google</a>, I gained a whole new respect for <a href="http://en.wikipedia.org/wiki/Distributed_revision_control">distributed revision control (DRC)</a>.</p>
<p>It&#8217;d been hard to miss all the talk around DRC, but thought it&#8217;s only benefits were to interact with my repository when I didn&#8217;t have connectivity.  I was almost always connected, so my Subversion repository was all I needed - so I thought.  Having <a href="http://use.perl.org/~rjbs/journal/36184">read a post</a> about cloning repositories, I decided to investigate why so many people were now using Git.  While researching Git, <a href="http://blog.labnotes.org/2008/04/30/git-forking-for-fun-and-profit/">another article about &#8220;forking&#8221;</a> caught my attention and slowly I started to see all of the wonderful benefits I&#8217;d been missing by not using a DRC - specifically Git.</p>
<p>Most notably:</p>
<ul>
<li><a href="http://www.kernel.org/pub/software/scm/git/docs/git-branch.html">Branching</a> - the way it&#8217;s suppose to work!  This is &#8220;throw away&#8221; branching at it&#8217;s best!</li>
<li><a href="http://www.kernel.org/pub/software/scm/git/docs/git-clone.html">Cloning</a> - This is extremely useful when stumbling across projects on services like <a href="http://www.github.com">Github</a>.  Instead of the traditionally checking out a copy of the trunk or a branch in CVS and Subversion, Git clones the entire repository into a local directory for you and &#8220;&#8230;creates remote-tracking branches for each branch in the cloned repository&#8221;.  A great example is <a href="http://code.reddit.com/">Reddit</a>.  When they released the code, I cloned the repository and every few days I can run &#8220;git fetch&#8221; to update the remote-tracking branches.  I can run &#8220;git pull&#8221; to update the remote-tracking branches as well as &#8220;merge the remote master branch into the current master branch, if any&#8221;.</li>
<li><a href="www.kernel.org/pub/software/scm/git/docs/git-svn.html">git-svn</a> - Simply put, this is brilliant!!!  Having all of my repositories in Subversion this allowed me to have a &#8220;trial run&#8221; with Git.  I was able to make a local &#8220;Git clone&#8221; of my Subversion repository, interact with it and &#8220;sync&#8221; the changes I truly wanted committed to the Subversion repository.  I could create as many throw away branches as I liked and the Subversion repository never knew anything about them.  Needless to say, <strong>the VERY DAY I started playing with Git, I made my last commit to my Subversion repository</strong> and haven&#8217;t looked back since.</li>
<li><a href="www.kernel.org/pub/software/scm/git/docs/git-stash.html">git-stash</a> - Again, BRILLIANT!!!  Stash &#8220;saves your local modifications away and reverts the working directory to match the HEAD commit&#8221;.  Every developer I&#8217;ve talked to about this with has the same reaction - (AWESOME!!!!) - as we&#8217;ve all been in the situation where they were working on a new feature and they need to fix a bug.  Most of us have a &#8220;fixes&#8221; version of trunk in a separate directory for just this purpose.  But with git-stash, you can have this freedom with a single working copy!</li>
<li><a href="http://www.kernel.org/pub/software/scm/git/docs/git-diff.html">git-diff</a> - Git tracks content, not files.  Each commit is tracked by it&#8217;s sha1sum, shown beside each when issuing a &#8220;git log&#8221;.</li>
</ul>
<p>I was also impressed with the <a href="http://del.icio.us/kevinold/git">wealth of information</a> and comparisons of Git with other SCM&#8217;s others had put together.</p>
<p><a href="http://www.techcrunch.com/2008/07/22/github-unites-version-control-with-the-pastie/">Recent news</a> about <a href="http://gist.github.com/">Gist</a> show the flexibility of Git repositories.  Thanks to services like <a href="http://www.github.com">Github</a> Git is gaining more respect and notoriety, almost like the movement when Subversion first came on the scene.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinold.com/2008/07/25/why-i-git-it/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Hope for Perl on App Engine</title>
		<link>http://www.kevinold.com/2008/07/23/hope-for-perl-on-app-engine/</link>
		<comments>http://www.kevinold.com/2008/07/23/hope-for-perl-on-app-engine/#comments</comments>
		<pubDate>Wed, 23 Jul 2008 23:00:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Catalyst]]></category>

		<category><![CDATA[Perl]]></category>

		<guid isPermaLink="false">http://www.kevinold.com/?p=19</guid>
		<description><![CDATA[Finally, after months of users begging Google to support Perl on Google App Engine (GAE), there looks to be a positive response as Brad explains.
The majority of the work will have to be done by the Perl community, but Google is giving Brad and other Google developers &#8220;20%&#8221; of their time to be devoted to [...]]]></description>
			<content:encoded><![CDATA[<p>Finally, after months of users begging Google to support Perl on Google App Engine (GAE), there looks to be a positive response as <a href="http://brad.livejournal.com/2388824.html">Brad explains</a>.</p>
<p>The majority of the work will have to be done by the Perl community, but Google is giving Brad and other Google developers &#8220;20%&#8221; of their time to be devoted to this &#8220;<a href="http://code.google.com/p/perl-appengine/">pet project</a>&#8220;.</p>
<p>When launched I played with GAE briefly and once I saw the <a href="http://code.google.com/appengine/articles/appengine_helper_for_django.html">support for Django</a> I took another look.  Since I don&#8217;t program daily in Python it takes me longer to the most basic things I as spend my time writing pseudo code when unsure and looking up syntax later.  I&#8217;ve yet to test the sample Django app out on GAE, but hope to someday soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinold.com/2008/07/23/hope-for-perl-on-app-engine/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Catalyst moves away from YAML</title>
		<link>http://www.kevinold.com/2008/07/10/catalyst-moves-away-from-yaml/</link>
		<comments>http://www.kevinold.com/2008/07/10/catalyst-moves-away-from-yaml/#comments</comments>
		<pubDate>Thu, 10 Jul 2008 23:33:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Catalyst]]></category>

		<category><![CDATA[Perl]]></category>

		<category><![CDATA[yaml]]></category>

		<guid isPermaLink="false">http://www.kevinold.com/?p=15</guid>
		<description><![CDATA[It appears that to the Catalyst community  YAML isn&#8217;t the best config file format any longer as they&#8217;ve chosen to switch in favor of Config::General - which defaults to the &#34;apache config format&#34;
From Config::General&#8217;s POD:
The format of config files supported by Config::General is inspired by the well known apache config format, in fact, this [...]]]></description>
			<content:encoded><![CDATA[<p>It appears that to the Catalyst community  <a href="http://lists.scsys.co.uk/pipermail/catalyst/2008-June/018826.html">YAML isn&#8217;t the best</a> config file format any longer as they&#8217;ve chosen to switch in favor of Config::General - which defaults to the &quot;apache config format&quot;</p>
<p>From Config::General&#8217;s POD:</p>
<blockquote><p>The format of config files supported by <strong>Config::General</strong> is inspired by the well known apache config format, in fact, this module is 100% compatible to apache configs, but you can also just use simple name/value pairs in your config files.</p></blockquote>
<p><a href="http://search.cpan.org/~jgoulah/Catalyst-Plugin-DebugCookie-0.999001/lib/Catalyst/Plugin/DebugCookie.pm#SYNOPSIS">Catalyst::Plugin::DebugCookie</a> even provides the updated configuration style in it&#8217;s POD:</p>
<pre> &lt;Plugin::DebugCookie&gt;
    secret_key 001A4B28EE3936
    cookie_name my_secure_debug_cookie
 &lt;/Plugin::DebugCookie&gt;</pre>
<p>The following command can be used to dump an existing Catalyst app&#8217;s config into an Apache style conf file.  You&#8217;ll definitely have to edit the resulting file, but at least it&#8217;s a start.</p>
<pre>perl -Ilib -e 'use MyApp; use Config::General; Config::General-&gt;new-&gt;save_file(&quot;myapp.conf&quot;, MyApp-&gt;config);'</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinold.com/2008/07/10/catalyst-moves-away-from-yaml/feed/</wfw:commentRss>
		</item>
		<item>
		<title>An incredible motivational tool - Resilience</title>
		<link>http://www.kevinold.com/2008/07/02/an-incredible-motivational-tool-resilience/</link>
		<comments>http://www.kevinold.com/2008/07/02/an-incredible-motivational-tool-resilience/#comments</comments>
		<pubDate>Thu, 03 Jul 2008 01:40:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Life Experience]]></category>

		<category><![CDATA[Motivation]]></category>

		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.kevinold.com/?p=17</guid>
		<description><![CDATA[I&#8217;m a fan of The Big Idea with Donny Deutsch watched a show I&#8217;d DVR&#8217;d the other day.  The show was about the &#34;Comeback&#34; mindset.  Most of us know that our dreams don&#8217;t come true overnight and that on the way to our dreams we often have a hard road and sometimes get [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a fan of <a href="http://bigidea.cnbc.com">The Big Idea with Donny Deutsch</a> watched a show I&#8217;d DVR&#8217;d the other day.  <a href="http://www.cnbc.com/id/25464724">The show</a> was about the &quot;Comeback&quot; mindset.  Most of us know that our dreams don&#8217;t come true overnight and that on the way to our dreams we often have a hard road and sometimes get discouraged.  The show featured people who had been knocked down, but came back.</p>
<p>Of the <a href="http://www.cnbc.com/id/25416520/site/14081545/">guests on the show</a> the following quote by Dr. Karen Reivich made the most impact on me:</p>
<blockquote><p>Resilience. It&#8217;s learnable. The heart of resilience is believing that <strong>you can affect change</strong>. [It] might not affect the whole situation, but there <strong>is</strong> an aspect of the situation <strong>you can control.</strong></p></blockquote>
<p>Excellent advice not only when times are tough, but as motivation when solving even the most difficult day-to-day problems.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinold.com/2008/07/02/an-incredible-motivational-tool-resilience/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Colorful grep</title>
		<link>http://www.kevinold.com/2008/07/01/colorful-grep/</link>
		<comments>http://www.kevinold.com/2008/07/01/colorful-grep/#comments</comments>
		<pubDate>Tue, 01 Jul 2008 16:15:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[bash]]></category>

		<guid isPermaLink="false">http://www.kevinold.com/?p=16</guid>
		<description><![CDATA[I&#8217;m not sure how I&#8217;ve made it this far in my career and never knew that grep had a color option to highlight the term you&#8217;re searching for in the results.  Guess I&#8217;ve never really needed it that bad, but since stumbling across this, it&#8217;s made things a lot easier to view.
To make this seamless [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not sure how I&#8217;ve made it this far in my career and never knew that grep had a color option to highlight the term you&#8217;re searching for in the results.  Guess I&#8217;ve never really needed it that bad, but since stumbling across this, it&#8217;s made things a lot easier to view.</p>
<p>To make this seamless you can add this to your .bash_rc or .bash_profile:</p>
<pre>alias grep=&quot;grep --color=auto&quot;</pre>
<p>Thanks to <a href="http://dotfiles.org/~asommer/.bashrc">asommer&#8217;s .bash_rc</a> for pointing this out.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinold.com/2008/07/01/colorful-grep/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Transform password into digest inside a DBIx::Class model</title>
		<link>http://www.kevinold.com/2008/05/28/transform-password-into-digest-inside-a-dbixclass-model/</link>
		<comments>http://www.kevinold.com/2008/05/28/transform-password-into-digest-inside-a-dbixclass-model/#comments</comments>
		<pubDate>Wed, 28 May 2008 18:49:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Catalyst]]></category>

		<category><![CDATA[Perl]]></category>

		<category><![CDATA[catalyst dbic perl]]></category>

		<guid isPermaLink="false">http://www.kevinold.com/?p=13</guid>
		<description><![CDATA[I&#8217;m working on a project using Catalyst , and I initially coded the password hashing (compare the passwords then build the digest, used during the signup and change password processes) directly into my controller (could be placed in a Utils package) and passed the digest to the create/update like so:
my $pass = $c-&#62;req-&#62;param(&#34;password&#34;);
my $digest = [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m working on a project using <a href="http://www.catalystframework.org">Catalyst</a> , and I initially coded the password hashing (compare the passwords then build the digest, used during the signup and change password processes) directly into my controller (could be placed in a Utils package) and passed the digest to the create/update like so:</p>
<pre>my $pass = $c-&gt;req-&gt;param(&quot;password&quot;);
my $digest = Digest-&gt;new('MD5')-&gt;add($pass)-&gt;digest;
...
$c-&gt;user-&gt;password($digest);</pre>
<p>Reading the Catalyst mailing list I learned about store_column(), part of <a href="http://search.cpan.org/~ash/DBIx-Class-0.08010/lib/DBIx/Class/Row.pm">DBIx::Class::Row</a> .</p>
<p>Upon storage of a row (an update or create), it allows you to override the default &quot;store this value&quot; and manipulate the value into whatever you&#8217;d like.</p>
<p>Using the code below I was able to move this logic out of the controller/Utils package and into the model where it belongs.</p>
<pre>sub store_column {
    my( $self, $col, $val ) = @_;
    $val = Digest-&gt;new('MD5')-&gt;add($val)-&gt;digest
              if $col eq 'password';
    return $self-&gt;next::method( $col, $val );
}</pre>
<p>This technique can also be used to <a href="http://search.cpan.org/~ash/DBIx-Class-0.08010/lib/DBIx/Class/Manual/Cookbook.pod#Changing_one_field_whenever_another_changes">perform calculations</a> .</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinold.com/2008/05/28/transform-password-into-digest-inside-a-dbixclass-model/feed/</wfw:commentRss>
		</item>
		<item>
		<title>CPAN via a Pipe</title>
		<link>http://www.kevinold.com/2008/03/30/cpan-via-a-pipe/</link>
		<comments>http://www.kevinold.com/2008/03/30/cpan-via-a-pipe/#comments</comments>
		<pubDate>Sun, 30 Mar 2008 20:51:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Perl]]></category>

		<category><![CDATA[cpan]]></category>

		<category><![CDATA[pipes]]></category>

		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://www.kevinold.com/?p=12</guid>
		<description><![CDATA[I&#8217;ve tried to monitor the CPAN recent feed to keep up with updates to modules I use and find other useful modules, but the volume of updates has gotten to much to handle.  While it&#8217;s great to see so many updates, I simply don&#8217;t have the time to look through them all.
Apparently, I&#8217;m not [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve tried to monitor the <a href="http://search.cpan.org/recent">CPAN recent</a> feed to keep up with updates to modules I use and find other useful modules, but the volume of updates has gotten to much to handle.  While it&#8217;s great to see so many updates, I simply don&#8217;t have the time to look through them all.</p>
<p>Apparently, I&#8217;m not the only one with the problem as a while back <a href="http://www.noticpan.org">NotiCPAN</a> was created to notify users of updates to specific modules.  Problem is you must select each individual module you&#8217;d like to watch.</p>
<p>In the sprit of being lazy, I thought up a way to monitor what I&#8217;d like via <a href="http://pipes.yahoo.com/pipes/person.info?eyuid=vAyzRGE4rXVHSsW.nJlL0A1YnA--">a Yahoo Pipe</a>.  With it I&#8217;m able to enter the types of modules I&#8217;m interested in and subscribe to it in Google Reader.  I like the fact that I can watch all Catalyst modules by simply specifying that I want &#8220;Catalyst&#8221; in the title or if I specify &#8220;YAML::Tiny&#8221; it&#8217;ll watch that one module for now and if others enter that namespace it&#8217;ll automatically pick those up.</p>
<p>It&#8217;s a very simple concept, but has helped me a great deal.</p>
<p>Feel free to check out the pipe and I&#8217;d love to hear of other uses.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinold.com/2008/03/30/cpan-via-a-pipe/feed/</wfw:commentRss>
		</item>
		<item>
		<title>jQuery and hidden items</title>
		<link>http://www.kevinold.com/2008/03/29/jquery-and-hidden-items/</link>
		<comments>http://www.kevinold.com/2008/03/29/jquery-and-hidden-items/#comments</comments>
		<pubDate>Sat, 29 Mar 2008 23:25:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.kevinold.com/?p=11</guid>
		<description><![CDATA[Doing some resent work with jQuery a div that is initially hidden from the user, I went round in cirlces when I kept getting nothing when trying to get the div&#8217;s margin information via:
$('#myitem').offset()
I kept getting zero returned for the top and left margins.  What I needed to do was to show() the div:
$('#myitem').show().offset().hide()
This [...]]]></description>
			<content:encoded><![CDATA[<p>Doing some resent work with jQuery a div that is initially hidden from the user, I went round in cirlces when I kept getting nothing when trying to get the div&#8217;s margin information via:</p>
<p><code>$('#myitem').offset()</code></p>
<p>I kept getting zero returned for the top and left margins.  What I needed to do was to show() the div:</p>
<p><code>$('#myitem').show().offset().hide()</code></p>
<p>This allows me to get the margins, but ultimately keeps the div hidden from the user.</p>
<p>Hopefully, documenting this here will help someone if they run into in the future, or it&#8217;ll help me the future me if I ever forget.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinold.com/2008/03/29/jquery-and-hidden-items/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Charting and Graphing with Javascript, Flash or API</title>
		<link>http://www.kevinold.com/2007/12/13/charting-and-graphing-with-javascript-flash-or-api/</link>
		<comments>http://www.kevinold.com/2007/12/13/charting-and-graphing-with-javascript-flash-or-api/#comments</comments>
		<pubDate>Thu, 13 Dec 2007 16:11:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[APIs]]></category>

		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[jQuery]]></category>

		<category><![CDATA[Catalyst]]></category>

		<category><![CDATA[flash]]></category>

		<category><![CDATA[Perl]]></category>

		<category><![CDATA[REST]]></category>

		<guid isPermaLink="false">http://www.kevinold.com/2007/12/13/charting-and-graphing-with-javascript-flash-or-api/</guid>
		<description><![CDATA[There seems to be a lot of work around generating Charts and Graphs as over the past few months there have been several major graphing/charting projects to come to my attention.
Google Chart API - Most recently Google jumped into the graphing and charting arena by providing a REST API.  This is another good move [...]]]></description>
			<content:encoded><![CDATA[<p>There seems to be a lot of work around generating Charts and Graphs as over the past few months there have been several major graphing/charting projects to come to my attention.</p>
<p><a href="http://code.google.com/apis/chart/">Google Chart API</a> - Most recently Google jumped into the graphing and charting arena by providing a REST API.  This is another good move for Google and looks to be a solid first release, providing more initial documentation that I&#8217;ve seen in any of the Google API&#8217;s.</p>
<p><a href="http://teethgrinder.co.uk/open-flash-chart/">Open Flash Chart</a> - <strong>These are really slick graphs and charts!</strong>  Want interactive, easy to implement, and (yes, I&#8217;ll say it again) slick looking graphs and charts?  Then have a look at Open Flash Chart (OFC) and you&#8217;ll quickly understand why I think it&#8217;s one of the best of the bunch.  They have every type of graph or chart you&#8217;d need and make getting your data to the SWF file a snap.  Just provide it with a data structure by using one of the many helpers for just about any language and you&#8217;ll have impressive graphs and charts in minutes.  It&#8217;s gonna be interesting to see which major companies will come to use these graphs and charts.</p>
<p><a href="http://code.google.com/p/flot/">Flot</a> - Uses <a href="http://www.jquery.com">jQuery</a> to produce some very nice graphs and charts.  This is definitely a project to watch in the future.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinold.com/2007/12/13/charting-and-graphing-with-javascript-flash-or-api/feed/</wfw:commentRss>
		</item>
		<item>
		<title>A key concept for design</title>
		<link>http://www.kevinold.com/2007/11/26/a-key-concept-for-design/</link>
		<comments>http://www.kevinold.com/2007/11/26/a-key-concept-for-design/#comments</comments>
		<pubDate>Tue, 27 Nov 2007 03:32:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Design]]></category>

		<category><![CDATA[design IA]]></category>

		<guid isPermaLink="false">http://www.kevinold.com/2007/11/26/a-key-concept-for-design/</guid>
		<description><![CDATA[Never be afraid to make decisions. All decisions are temporary. Make them, and be willing to be wrong. The only way to get better is to learn from your mistakes and accept that you’re only as good as you can be in any given moment.
This is the third item in a list of six tenets [...]]]></description>
			<content:encoded><![CDATA[<blockquote>Never be afraid to make decisions. All decisions are temporary. Make them, and be willing to be wrong. The only way to get better is to learn from your mistakes and accept that you’re only as good as you can be in any given moment.</p></blockquote>
<p>This is the third item in a list of six <a href="http://rhjr.net/theblog/2007/11/13/the-tenets-of-design/">tenets of design</a>, but in my opinion should be number one.  Why? It&#8217;s a primary concept of programming (and life) - <strong>trial and error</strong> - and might be the key concept that helps bridge the gap between programming and design.</p>
<p>I am a programmer.  When I make a mistake with code I have a compiler to tell me that it&#8217;s wrong.  I make an attempt at a fix.  Wrong again.  Rinse and repeat.  Until it&#8217;s right.</p>
<p>Who knew the concept could be that simple for design?</p>
<p>While I am in no way a designer, I&#8217;ve learned several techniques to structure information so that users can quickly find what they are looking for.  I didn&#8217;t learn it overnight (just like programming).  Nor have I learned it all.  I&#8217;ve <a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&amp;location=http%3A%2F%2Fwww.amazon.com%2FWeb-Standards-Solutions-Handbook-Pioneering%2Fdp%2F1590593812%3Fie%3DUTF8%26s%3Dbooks%26qid%3D1196130987%26sr%3D8-3&amp;tag=kevold-20&amp;linkCode=ur2&amp;camp=1789&amp;creative=9325">read</a><img src="http://www.assoc-amazon.com/e/ir?t=kevold-20&amp;l=ur2&amp;o=1" style="border: medium none  ! important; margin: 0px ! important; display: none" border="0" height="1" width="1" /> <a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&amp;location=http%3A%2F%2Fwww.amazon.com%2FDesigning-Web-Standards-Jeffrey-Zeldman%2Fdp%2F0321385551%3Fie%3DUTF8%26s%3Dbooks%26qid%3D1196130987%26sr%3D8-1&amp;tag=kevold-20&amp;linkCode=ur2&amp;camp=1789&amp;creative=9325">a</a><img src="http://www.assoc-amazon.com/e/ir?t=kevold-20&amp;l=ur2&amp;o=1" style="border: medium none  ! important; margin: 0px ! important; display: none" border="0" height="1" width="1" /> <a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&amp;location=http%3A%2F%2Fwww.amazon.com%2FDesigning-Obvious-Common-Approach-Application%2Fdp%2F032145345X%3Fie%3DUTF8%26s%3Dbooks%26qid%3D1196132138%26sr%3D8-1&amp;tag=kevold-20&amp;linkCode=ur2&amp;camp=1789&amp;creative=9325">few</a><img src="http://www.assoc-amazon.com/e/ir?t=kevold-20&amp;l=ur2&amp;o=1" style="border: medium none  ! important; margin: 0px ! important; display: none" border="0" height="1" width="1" /> <a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&amp;location=http%3A%2F%2Fwww.amazon.com%2FCSS-Mastery-Advanced-Standards-Solutions%2Fdp%2F1590596145%2F&amp;tag=kevold-20&amp;linkCode=ur2&amp;camp=1789&amp;creative=9325">books</a><img src="http://www.assoc-amazon.com/e/ir?t=kevold-20&amp;l=ur2&amp;o=1" style="border: medium none  ! important; margin: 0px ! important; display: none" border="0" height="1" width="1" />, <a href="http://www.alistapart.com/">blogs</a> and studied <a href="http://www.rikcatindustries.com">great</a> <a href="http://www.simplebits.com">designs</a>.   They all make it look so easy!  But, it&#8217;s just like programming - they rinsed and repeated until they got it right.</p>
<p>I&#8217;ve been through several iterations when coding the design for this blog, but until now I can say that I haven&#8217;t truly thought of designing in the same way I do programming.  I guess I just expect to magically be able to create the perfect design in the first sitting, rather than let it evolve.</p>
<p>What makes designing different than programming is that there is no right answer.  It&#8217;s how I view it that makes it good or not.  Maybe this shift in thinking will help me to take risks - temporary risks - with my designs, until I get it good enough - for me.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinold.com/2007/11/26/a-key-concept-for-design/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
