<?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>Kapusta Brothers &#187; Web Development &amp; Programming</title>
	<atom:link href="http://www.kapustabrothers.com/category/web-tech/web-development-programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kapustabrothers.com</link>
	<description></description>
	<lastBuildDate>Wed, 26 Oct 2011 12:13:02 +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>Custom Zend Filter: Excerpt</title>
		<link>http://www.kapustabrothers.com/2010/04/20/custom-zend-filter-excerpt/</link>
		<comments>http://www.kapustabrothers.com/2010/04/20/custom-zend-filter-excerpt/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 00:19:21 +0000</pubDate>
		<dc:creator>farrelley</dc:creator>
				<category><![CDATA[Web Development & Programming]]></category>
		<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[Excerpt]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Zend]]></category>
		<category><![CDATA[Zend_Filter]]></category>

		<guid isPermaLink="false">http://www.kapustabrothers.com/?p=1208</guid>
		<description><![CDATA[So you are familiar with the WordPress template tag called the_excert() right? If not the tag takes a post and trims it up to display 55 or so words and then adds ellipses to the end. I find this very &#8230; <a href="http://www.kapustabrothers.com/2010/04/20/custom-zend-filter-excerpt/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So you are familiar with the <a href="http://www.wordpress.com/">WordPress</a> template tag called <a href="http://codex.wordpress.org/Template_Tags/the_excerpt">the_excert()</a> right?  If not the tag takes a post and trims it up to display 55 or so words and then adds ellipses to the end.  I find this very useful when you just want to display a teaser.  In the current <a href="http://framework.zend.com/">Zend Framework</a> project then I am working on for a client I needed just this.  So I had to create the custom filter which is really easy.  You can find a vast amount of info for <a href="http://zendframework.com/manual/en/zend.filter.introduction.html">Zend Filters here</a>.  </p>
<p>Custom Filter &#8211; Excerpt</p>
<pre class="brush: php; title: ; notranslate">
// To call the filter use
$excerpt = new My_Filter_Excerpt();
$excerpt-&gt;filter($str); //$str is the string of text

//Put this in your library
class My_Filter_Excerpt implements Zend_Filter_Interface
{
	protected $_wordCount = 55;

	public function filter($data)
	{
		$sentance = explode(&quot; &quot;, $data);
		if (count($sentance) &amp;gt; $this-&amp;gt;_wordCount) {
			$sentance = array_splice($sentance, 0, $this-&amp;gt;_wordCount);
			$ellipsis = &quot;…&quot;;
		}
		$excerpt = implode(&quot; &quot;, $sentance);
		echo $excerpt . $ellipsis;
	}
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.kapustabrothers.com/2010/04/20/custom-zend-filter-excerpt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Buzz API</title>
		<link>http://www.kapustabrothers.com/2010/04/20/google-buzz-api/</link>
		<comments>http://www.kapustabrothers.com/2010/04/20/google-buzz-api/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 00:04:54 +0000</pubDate>
		<dc:creator>farrelley</dc:creator>
				<category><![CDATA[Web & Tech]]></category>
		<category><![CDATA[Web Development & Programming]]></category>
		<category><![CDATA[AddThis]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Buzz]]></category>

		<guid isPermaLink="false">http://www.kapustabrothers.com/?p=1206</guid>
		<description><![CDATA[Not sure if anyone has noticed but Google Buzz has an API out. However, our friends at AddThis.com have already added Google Buzz to the sharing menu.]]></description>
			<content:encoded><![CDATA[<p>Not sure if anyone has noticed but <a href="http://code.google.com/apis/buzz/">Google Buzz has an API out</a>.  However, our friends at A<a href="http://www.addthis.com/">ddThis.com</a> have already added <a href="http://buzz.google.com/">Google Buzz</a> to the sharing menu.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kapustabrothers.com/2010/04/20/google-buzz-api/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add Google Buzz to your Site!</title>
		<link>http://www.kapustabrothers.com/2010/02/18/add-google-buzz-to-your-site/</link>
		<comments>http://www.kapustabrothers.com/2010/02/18/add-google-buzz-to-your-site/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 13:56:10 +0000</pubDate>
		<dc:creator>farrelley</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Web & Tech]]></category>
		<category><![CDATA[Web Development & Programming]]></category>
		<category><![CDATA[Buzz]]></category>
		<category><![CDATA[Content]]></category>
		<category><![CDATA[Google Buzz]]></category>
		<category><![CDATA[Sharing Content]]></category>
		<category><![CDATA[Web2.0]]></category>

		<guid isPermaLink="false">http://www.kapustabrothers.com/?p=1191</guid>
		<description><![CDATA[So as everyone knows Google has released Buzz and by now most everyone has it. The number one question is how do I add it to my site so that people can share my content with their buzz friends. Well, &#8230; <a href="http://www.kapustabrothers.com/2010/02/18/add-google-buzz-to-your-site/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So as everyone knows <a href="http://www.google.com/">Google</a> has released <a href="http://buzz.google.com/">Buzz</a> and by now most everyone has it.  The number one question is how do I add it to my site so that people can share my content with their buzz friends.  Well, if you are running <a href="http://www.wordpress.org/">WordPress</a> it&#8217;s pretty easy.  Head on over to WordPress.org and search for the plugin called <a href="http://wordpress.org/extend/plugins/google-buzz-button-for-wordpress/">Google Buzz for WordPress</a>.  If you are not running WordPress you can just use this link and replace out the variables (designated by &lt;&lt;&gt;&gt;)</p>
<p>http://www.google.com/reader/link?url=&lt;&lt;URL&gt;&gt;&#038;title=&lt;&lt;TITLE&gt;&gt;&#038;srcURL=&lt;&lt;SRC&gt;&gt;&#038;srcTitle=&lt;&lt;SRCTITLE&gt;&gt;</p>
<p>Where<br />
<strong>URL</strong> = Url of the page you want to share<br />
<strong>TITLE</strong> = Title of the page that you are sharing<br />
<strong>SRC</strong> = Source of the page that you are sharing. for instance you may share <a href="http://www.kapustabrothers.com/">http://www.kapustabrothers.com/</a> to buzz but found the link and shared it from <a href="http://www.aol.com/">aol.com</a> so the SRC would be <a href="http://www.aol.com/">aol.com</a>.<br />
<strong>SRCTITLE</strong> = The title of the source.</p>
<p>It&#8217;s that simple.  A box will pop up you can add some tags and some comments and click post.  This will post directly to your buzz feed for all your buzzy friends to see.</p>
<p>Next are the icons.  What should you use for an icon?  Well you can search the net for them but I found some pretty cool simple ones from <a href="http://www.chethstudios.net/2010/02/google-buzz-social-icons-for-bloggers.html">http://www.chethstudios.net/</a></p>
<p>All you have to do is wrap the icon with the link and your all set.  I suggest setting a rel and a target too if applicable.</p>
<p><a href="http://www.google.com/reader/link?url=http://www.kapustabrothers.com/2010/02/18/add-google-buzz-to-your-site/&#038;title=Add Google Buzz to your Site!&#038;srcURL=http://www.kapustabrothers.com/&#038;srcTitle=KapustaBrothers.com" rel="" target="_blank"><br />
<img src="http://kapustabrothers.com/google-buzz-icons/gbuzz16.png" alt="Google Buzz"/></a></p>
<p><a href="http://www.google.com/reader/link?url=http://www.kapustabrothers.com/2010/02/18/add-google-buzz-to-your-site/&#038;title=Add Google Buzz to your Site!&#038;srcURL=http://www.kapustabrothers.com/&#038;srcTitle=KapustaBrothers.com" rel="" target="_blank"><br />
<img src="http://kapustabrothers.com/google-buzz-icons/gbuzz-s.png" alt="Google Buzz"/></a></p>
<p><a href="http://www.google.com/reader/link?url=http://www.kapustabrothers.com/2010/02/18/add-google-buzz-to-your-site/&#038;title=Add Google Buzz to your Site!&#038;srcURL=http://www.kapustabrothers.com/&#038;srcTitle=KapustaBrothers.com" rel=""  target="_blank"><br />
<img src="http://kapustabrothers.com/google-buzz-icons/gbuzz-sq16.png" alt="Google Buzz"/></a></p>
<p><a href="http://www.google.com/reader/link?url=http://www.kapustabrothers.com/2010/02/18/add-google-buzz-to-your-site/&#038;title=Add Google Buzz to your Site!&#038;srcURL=http://www.kapustabrothers.com/&#038;srcTitle=KapustaBrothers.com" rel=""  target="_blank"><br />
<img src="http://kapustabrothers.com/google-buzz-icons/gbuzz32.png" alt="Google Buzz"/></a></p>
<p><a href="http://www.google.com/reader/link?url=http://www.kapustabrothers.com/2010/02/18/add-google-buzz-to-your-site/&#038;title=Add Google Buzz to your Site!&#038;srcURL=http://www.kapustabrothers.com/&#038;srcTitle=KapustaBrothers.com" rel=""  target="_blank"><br />
<img src="http://kapustabrothers.com/google-buzz-icons/gbuzz32-s.png" alt="Google Buzz"/></a></p>
<p><a href="http://www.google.com/reader/link?url=http://www.kapustabrothers.com/2010/02/18/add-google-buzz-to-your-site/&#038;title=Add Google Buzz to your Site!&#038;srcURL=http://www.kapustabrothers.com/&#038;srcTitle=KapustaBrothers.com" rel=""  target="_blank"><br />
<img src="http://kapustabrothers.com/google-buzz-icons/gbuzz-sq32.png" alt="Google Buzz"/></a> </p>
<p><a href="http://www.google.com/reader/link?url=http://www.kapustabrothers.com/2010/02/18/add-google-buzz-to-your-site/&#038;title=Add Google Buzz to your Site!&#038;srcURL=http://www.kapustabrothers.com/&#038;srcTitle=KapustaBrothers.com" rel=""  target="_blank"><br />
<img src="http://kapustabrothers.com/google-buzz-icons/gbuzz64-s.png" alt="Google Buzz"/></a></p>
<p><a href="http://www.google.com/reader/link?url=http://www.kapustabrothers.com/2010/02/18/add-google-buzz-to-your-site/&#038;title=Add Google Buzz to your Site!&#038;srcURL=http://www.kapustabrothers.com/&#038;srcTitle=KapustaBrothers.com" rel=""  target="_blank"><br />
<img src="http://kapustabrothers.com/google-buzz-icons/gbuzz125-m.png" alt="Google Buzz"/></a></p>
<p>Update: Here is another icon that I found floating around on the interwebs.<br />
<a href="http://www.google.com/reader/link?url=http://www.kapustabrothers.com/2010/02/18/add-google-buzz-to-your-site/&#038;title=Add Google Buzz to your Site!&#038;srcURL=http://www.kapustabrothers.com/&#038;srcTitle=KapustaBrothers.com" rel=""  target="_blank"><br />
<img src="http://kapustabrothers.com/google-buzz-icons/google-buzz.png" alt="Google Buzz"/></a></p>
<p>Enjoy! </p>
]]></content:encoded>
			<wfw:commentRss>http://www.kapustabrothers.com/2010/02/18/add-google-buzz-to-your-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gravatar Zend Framework View Helper</title>
		<link>http://www.kapustabrothers.com/2009/12/18/gravatar-zend-framework-view-helper/</link>
		<comments>http://www.kapustabrothers.com/2009/12/18/gravatar-zend-framework-view-helper/#comments</comments>
		<pubDate>Sat, 19 Dec 2009 00:42:19 +0000</pubDate>
		<dc:creator>farrelley</dc:creator>
				<category><![CDATA[Web Development & Programming]]></category>
		<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[Automattic]]></category>
		<category><![CDATA[Framework]]></category>
		<category><![CDATA[Gravatar]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://www.kapustabrothers.com/?p=1172</guid>
		<description><![CDATA[I have worked on a Zend Framework these past couple of days and needed the ability to display a users avatar. This is easy by using Automattic&#8217;s gravatar project. The easiest way to add a users avatar is to use &#8230; <a href="http://www.kapustabrothers.com/2009/12/18/gravatar-zend-framework-view-helper/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have worked on a <a href="http://framework.zend.com/">Zend Framework</a> these past couple of days and needed the ability to display a users avatar.  This is easy by using <a href="http://www.automattic.com/">Automattic&#8217;s</a> <a href="http://en.gravatar.com/">gravatar project</a>.  The easiest way to add a users avatar is to use a (this) view helper.  Basically in your view you just pass the user&#8217;s email address and a desired size and your all set.  Make sure in the view helper you specify the default image if the user doesn&#8217;t have an avatar to display.</p>
<p><a href="http://kapustabrothers.com/code/Gravatar.php.txt">You can download the source here.</a>  Comments and improvements are always welcome.</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php
/**
 *
 * @author Shaun Farrell
 * @version 1.0
 */
require_once 'Zend/View/Interface.php';

/**
 * Gravatar helper
 *
 * @uses viewHelper Zend_View_Helper
 */
class Zend_View_Helper_Gravatar {

	/**
	 * @var Zend_View_Interface
	 */
	public $view;
	/**
	 *
	 * @var unknown_type
	 */
	protected $_gravatarUrl = &quot;http://www.gravatar.com/avatar.php?&quot;;
	/**
	 *
	 * @var unknown_type
	 */
	protected $_defaultImage = &quot;http://everquest.allakhazam.com/pgfx/item_576.png&quot;;

	/**
	 *
	 * @param $emailAddress
	 * @param $size
	 * @param $imgAlt
	 */
	public function gravatar($emailAddress, $size = &quot;40&quot;, $imgAlt = &quot;&quot;)
	{
		$gravatarId = &quot;gravatar_id=&quot; . md5(strtolower(trim($emailAddress)));
		$url = $this-&gt;_gravatarUrl . $gravatarId . &quot;&amp;default=&quot; . urlencode($this-&gt;_defaultImage) .
			&quot;&amp;size=&quot; . $size;

		echo &quot;&lt;img src=\&quot;$url\&quot; alt=\&quot;$imgAlt\&quot; /&gt;&quot;;
		return null;
	}

	/**
	 * Sets the view field
	 * @param $view Zend_View_Interface
	 */
	public function setView(Zend_View_Interface $view) {
		$this-&gt;view = $view;
	}
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.kapustabrothers.com/2009/12/18/gravatar-zend-framework-view-helper/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>After the Deadline (AtD)</title>
		<link>http://www.kapustabrothers.com/2009/12/10/after-the-deadline-atd/</link>
		<comments>http://www.kapustabrothers.com/2009/12/10/after-the-deadline-atd/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 12:59:16 +0000</pubDate>
		<dc:creator>farrelley</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web & Tech]]></category>
		<category><![CDATA[Web Development & Programming]]></category>
		<category><![CDATA[After the Deadline]]></category>
		<category><![CDATA[AtD]]></category>
		<category><![CDATA[Automattic]]></category>
		<category><![CDATA[DCPHP]]></category>
		<category><![CDATA[Raffi]]></category>
		<category><![CDATA[Spell Checker]]></category>
		<category><![CDATA[Washington]]></category>
		<category><![CDATA[Washington, DC]]></category>

		<guid isPermaLink="false">http://www.kapustabrothers.com/?p=1169</guid>
		<description><![CDATA[Yesterday I had the great opportunity to here Raphael Mudge the creator of AtD present After the Deadline at DC PHP.  Below is a recording of the talk.  I hope to write some more about AtD after I play around with it &#8230; <a href="http://www.kapustabrothers.com/2009/12/10/after-the-deadline-atd/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Yesterday I had the great opportunity to here <a title="Raffi" href="http://www.hick.org/~raffi/">Raphael Mudge</a> the creator of AtD present <a title="AtD" href="http://www.afterthedeadline.com/">After the Deadline</a> at <a title="DC PHP" href="http://dcphp.net/">DC PHP</a>.  Below is a recording of the talk.  I hope to write some more about AtD after I play around with it more.</p>
<p><a href="http://www.kapustabrothers.com/2009/12/10/after-the-deadline-atd/"><em>Click here to view the embedded video.</em></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kapustabrothers.com/2009/12/10/after-the-deadline-atd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Review: Zend Framework: Surviving The Deep End, Chapters 1 &amp; 2</title>
		<link>http://www.kapustabrothers.com/2009/01/05/review-zend-framework-surviving-the-deep-end-chapters-1-2/</link>
		<comments>http://www.kapustabrothers.com/2009/01/05/review-zend-framework-surviving-the-deep-end-chapters-1-2/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 01:28:47 +0000</pubDate>
		<dc:creator>farrelley</dc:creator>
				<category><![CDATA[Books Reviews]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Development & Programming]]></category>
		<category><![CDATA[Zend]]></category>
		<category><![CDATA[Book Review]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Free Book]]></category>
		<category><![CDATA[Surviving the Deep End]]></category>
		<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[ZF]]></category>

		<guid isPermaLink="false">http://www.kapustabrothers.com/?p=1088</guid>
		<description><![CDATA[If you are looking for a Zend Framework (ZF) book and don&#8217;t want to spend money then you should check out this new free ZF book called &#8220;Zend Framework: Surviving the Deep End&#8221; by Pádraic Brady. The book is free &#8230; <a href="http://www.kapustabrothers.com/2009/01/05/review-zend-framework-surviving-the-deep-end-chapters-1-2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you are looking for a <a title="Zend Framework" href="http://framework.zend.com/">Zend Framework (ZF) </a>book and don&#8217;t want to spend money then you should check out this new free ZF book called &#8220;<a title="ZF Book" href="http://www.survivethedeepend.com/">Zend Framework: Surviving the Deep End</a>&#8221; by Pádraic Brady.  The book is free distributed in PDF and HTML formats under creative commons at  <a title="http://www.survivethedeepend.com/" href="http://www.survivethedeepend.com/">http://www.survivethedeepend.com/</a>.  As of today there are only two chapters,  the <em>Introduction</em> and <em>The Architecture of Zend Framework Applications</em>.</p>
<p>Chapter one is pretty much an overview of frameworks including Zend Framework and 13 bullet points why you should consider Zend Framework.  Very informative and the bullets get right to the point.  Some minor tweaking and this chapter could possibly be a pretty good white paper for customers thinking about deploying ZF.</p>
<p>Chapter two get down to the nitty-gritty of frameworks and a little bit of history behind design patterns.  A topic that can be very confusing and controversial between developers.  Chapter two ends with a quick overview of the Model-View-Controller design pattern in which ZF uses.</p>
<p>Overall the two chapters were very informative.   I am looking forward to the rest of the chapters, including the full chapter about Models in MVC and some in depth ZF Code.  I suggest if you are looking to learn more about Zend Framework you add this to your list of bookmarks as it will be growing regularly.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kapustabrothers.com/2009/01/05/review-zend-framework-surviving-the-deep-end-chapters-1-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Park It DC iPhone Screen Shots</title>
		<link>http://www.kapustabrothers.com/2008/12/15/park-it-dc-iphone-screen-shots/</link>
		<comments>http://www.kapustabrothers.com/2008/12/15/park-it-dc-iphone-screen-shots/#comments</comments>
		<pubDate>Mon, 15 Dec 2008 13:30:38 +0000</pubDate>
		<dc:creator>farrelley</dc:creator>
				<category><![CDATA[Park It DC]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development & Programming]]></category>
		<category><![CDATA[Apps08]]></category>
		<category><![CDATA[DC Parking]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Washington DC]]></category>
		<category><![CDATA[Washington, DC]]></category>

		<guid isPermaLink="false">http://www.kapustabrothers.com/?p=1068</guid>
		<description><![CDATA[Here are the beginnings of the Park It DC iPhone Application. From left -&#62; Right Top: Home Screen, GPS Screen, Address Screen Bottom: Address Typing Screen, Settings Screen, About Screen]]></description>
			<content:encoded><![CDATA[<p>Here are the beginnings of the Park It DC iPhone Application.</p>
<p>From left -&gt; Right<br />
<strong>Top:</strong> Home Screen, GPS Screen, Address Screen<br />
<strong>Bottom: </strong>Address Typing Screen, Settings Screen, About Screen</p>
<p><a title="Park It DC iPhone app Comp by farrelley, on Flickr" href="http://www.flickr.com/photos/farrelley/3107082719/"><img src="http://farm4.static.flickr.com/3066/3107082719_d7395773c3_m.jpg" alt="Park It DC iPhone app Comp" width="125" height="240" /></a> <a title="Park It DC iPhone [GPS] by farrelley, on Flickr" href="http://www.flickr.com/photos/farrelley/3108475208/"><img src="http://farm4.static.flickr.com/3280/3108475208_d92a7f10de_m.jpg" alt="Park It DC iPhone [GPS]" width="125" height="240" /></a> <a title="Park It DC iPhone [Address] by farrelley, on Flickr" href="http://www.flickr.com/photos/farrelley/3107884761/"><img src="http://farm4.static.flickr.com/3175/3107884761_cfd3280806_m.jpg" alt="Park It DC iPhone [Address]" width="125" height="240" /></a></p>
<p><a title="Park It DC iPhone [Address] by farrelley, on Flickr" href="http://www.flickr.com/photos/farrelley/3107884799/"><img src="http://farm4.static.flickr.com/3114/3107884799_706652c0fe_m.jpg" alt="Park It DC iPhone [Address]" width="125" height="240" /></a> <a title="Park It DC iPhone [Settings] by farrelley, on Flickr" href="http://www.flickr.com/photos/farrelley/3108757517/"><img src="http://farm4.static.flickr.com/3075/3108757517_c8a2710a1c_m.jpg" alt="Park It DC iPhone [Settings]" width="125" height="240" /></a> <a title="Park It DC iPhone [About] by farrelley, on Flickr" href="http://www.flickr.com/photos/farrelley/3108757569/"><img src="http://farm4.static.flickr.com/3229/3108757569_62c63909e9_m.jpg" alt="Park It DC iPhone [About]" width="125" height="240" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kapustabrothers.com/2008/12/15/park-it-dc-iphone-screen-shots/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Washington Post Says WTF?</title>
		<link>http://www.kapustabrothers.com/2008/12/10/washington-post-says-wtf/</link>
		<comments>http://www.kapustabrothers.com/2008/12/10/washington-post-says-wtf/#comments</comments>
		<pubDate>Wed, 10 Dec 2008 16:42:31 +0000</pubDate>
		<dc:creator>farrelley</dc:creator>
				<category><![CDATA[Odds & Ends]]></category>
		<category><![CDATA[Washington, DC]]></category>
		<category><![CDATA[Web Development & Programming]]></category>
		<category><![CDATA[WaPO]]></category>
		<category><![CDATA[Washington]]></category>
		<category><![CDATA[Washington Post]]></category>
		<category><![CDATA[WTF Mate]]></category>
		<category><![CDATA[WTF?]]></category>

		<guid isPermaLink="false">http://www.kapustabrothers.com/?p=1047</guid>
		<description><![CDATA[Co-Worker found this while perusing the Washington Post today!]]></description>
			<content:encoded><![CDATA[<p>Co-Worker found this while perusing the <a href="http://www.washingtonpost.com/">Washington Post</a> today!</p>
<p><a title="WTF? Washington Post by farrelley, on Flickr" href="http://www.flickr.com/photos/farrelley/3097548381/"><img src="http://farm4.static.flickr.com/3189/3097548381_a6225814f8.jpg" alt="WTF? Washington Post" width="500" height="375" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kapustabrothers.com/2008/12/10/washington-post-says-wtf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Park It DC iPhone Application</title>
		<link>http://www.kapustabrothers.com/2008/12/07/park-it-dc-iphone-application/</link>
		<comments>http://www.kapustabrothers.com/2008/12/07/park-it-dc-iphone-application/#comments</comments>
		<pubDate>Mon, 08 Dec 2008 03:17:31 +0000</pubDate>
		<dc:creator>farrelley</dc:creator>
				<category><![CDATA[Park It DC]]></category>
		<category><![CDATA[Web Development & Programming]]></category>
		<category><![CDATA[Inauguration]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[PointAbout]]></category>

		<guid isPermaLink="false">http://www.kapustabrothers.com/?p=1036</guid>
		<description><![CDATA[I am working with PointAbout to get an iPhone Application for Park It DC out before the inauguration.  Here is the first mock up that I have come up with.]]></description>
			<content:encoded><![CDATA[<p>I am working with <a title="PointAbout" href="http://www.pointabout.com/">PointAbout</a> to get an iPhone Application for <a title="Park It DC" href="http://www.parkitdc.com/">Park It DC</a> out before the inauguration.  Here is the first mock up that I have come up with.<br />
<a title="Park It DC iPhone Mockup by farrelley, on Flickr" href="http://www.flickr.com/photos/farrelley/3091709394/"><img src="http://farm4.static.flickr.com/3277/3091709394_af345f4749.jpg" alt="Park It DC iPhone Mockup" width="363" height="500" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kapustabrothers.com/2008/12/07/park-it-dc-iphone-application/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Software Development LifeCycle &amp; Management Books</title>
		<link>http://www.kapustabrothers.com/2008/09/07/software-development-lifecycle-management-books/</link>
		<comments>http://www.kapustabrothers.com/2008/09/07/software-development-lifecycle-management-books/#comments</comments>
		<pubDate>Sun, 07 Sep 2008 18:47:42 +0000</pubDate>
		<dc:creator>farrelley</dc:creator>
				<category><![CDATA[Web Development & Programming]]></category>
		<category><![CDATA[Books]]></category>
		<category><![CDATA[More Joel on Software]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://www.kapustabrothers.com/?p=883</guid>
		<description><![CDATA[I was at the bookstore this week looking at software development lifecycle and management books and came across a book called &#8220;More Joel on Software.&#8221;  This is the second version of the book and I looked through it real quick &#8230; <a href="http://www.kapustabrothers.com/2008/09/07/software-development-lifecycle-management-books/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I was at the bookstore this week looking at software development lifecycle and management books and came across a book called &#8220;<a title="More Joel on Software" href="http://www.amazon.com/More-Joel-Software-Occasionally-Developers/dp/1430209879">More Joel on Software</a>.&#8221;  This is the second version of the book and I looked through it real quick but was wondering if anyone has read this and what they think about it?</p>
<p>What about recommending a good software development lifecycle and management book?</p>
<div class="wp-caption aligncenter" style="width: 510px"><img title="More Joel on Software" src="http://farm4.static.flickr.com/3004/2835492887_35f799185d.jpg?v=0" alt="More Joel on Software" width="500" height="375" /><p class="wp-caption-text">More Joel on Software</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.kapustabrothers.com/2008/09/07/software-development-lifecycle-management-books/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

