<?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>JoshuaIsaac</title>
	<atom:link href="http://joshuaisaac.com/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://joshuaisaac.com/blog</link>
	<description></description>
	<pubDate>Thu, 20 Nov 2008 15:18:40 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>Drupal Search Files and Search Content</title>
		<link>http://joshuaisaac.com/blog/programming/123</link>
		<comments>http://joshuaisaac.com/blog/programming/123#comments</comments>
		<pubDate>Wed, 24 Sep 2008 20:07:48 +0000</pubDate>
		<dc:creator>Joshua</dc:creator>
		
		<category><![CDATA[programming]]></category>

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

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

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

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

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

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

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

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

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

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

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

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

		<guid isPermaLink="false">http://joshuaisaac.com/blog/?p=123</guid>
		<description><![CDATA[PDFtoText

Reference: http://en.wikipedia.org/wiki/Pdftotext
Reference: http://www.foolabs.com/xpdf/download.html (Precompiled binaries)
Download: ftp://ftp.foolabs.com/pub/xpdf/xpdf-3.02pl2-linux.tar.gz

catdoc, xls2csv, catppt

Reference: http://ftp.wagner.pp.ru/~vitus/software/catdoc/
Download: http://ftp.wagner.pp.ru/pub/catdoc/catdoc-0.94.2.tar.gz

unrtf

http://www.gnu.org/software/unrtf/unrtf.html
http://www.gnu.org/software/unrtf/unrtf-0.20.5.tar.gz

cat

Reference: http://www.oreillynet.com/linux/cmd/cmd.csp?path=c/cat
Download: Not necessary comes installed with Apache

]]></description>
			<content:encoded><![CDATA[<p><strong>PDFtoText</strong></p>
<ul>
<li>Reference: http://en.wikipedia.org/wiki/Pdftotext</li>
<li>Reference: http://www.foolabs.com/xpdf/download.html (Precompiled binaries)</li>
<li>Download: ftp://ftp.foolabs.com/pub/xpdf/xpdf-3.02pl2-linux.tar.gz</li>
</ul>
<p><strong>catdoc, xls2csv, catppt</strong></p>
<ul>
<li>Reference: http://ftp.wagner.pp.ru/~vitus/software/catdoc/</li>
<li>Download: http://ftp.wagner.pp.ru/pub/catdoc/catdoc-0.94.2.tar.gz</li>
</ul>
<p><strong>unrtf</strong></p>
<ul>
<li>http://www.gnu.org/software/unrtf/unrtf.html</li>
<li>http://www.gnu.org/software/unrtf/unrtf-0.20.5.tar.gz</li>
</ul>
<p><strong>cat</strong></p>
<ul>
<li>Reference: http://www.oreillynet.com/linux/cmd/cmd.csp?path=c/cat</li>
<li>Download: Not necessary comes installed with Apache</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://joshuaisaac.com/blog/programming/123/feed</wfw:commentRss>
		</item>
		<item>
		<title>How-to Un-TAR and Un-GZip Files From the Command Line</title>
		<link>http://joshuaisaac.com/blog/programming/120</link>
		<comments>http://joshuaisaac.com/blog/programming/120#comments</comments>
		<pubDate>Sun, 21 Sep 2008 00:46:30 +0000</pubDate>
		<dc:creator>Joshua</dc:creator>
		
		<category><![CDATA[programming]]></category>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

		<guid isPermaLink="false">http://joshuaisaac.com/blog/?p=120</guid>
		<description><![CDATA[Note: This article assumes that you have SSH access to a LAMP installation and are familiar or comfortable using the command line.
The command line is a tool that self taught developers often spend much energy avoiding as they first start to learn server side and database languages such as MySQL and PHP. At first I [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-size: 9px;"><strong>Note:</strong> This article assumes that you have SSH access to a LAMP installation and are familiar or comfortable using the command line.</span></p>
<p>The command line is a tool that self taught developers often spend much energy avoiding as they first start to learn server side and database languages such as MySQL and PHP. At first I was extremely intimidated by the Terminal window and skipped out on a lot of tutorials that told me to log into my server via SSH, based only on the SSH factor. </p>
<p>As I started to get more comfortable with the basics of the PHP and MySQL, I also became more interested in harnessing the power of the command line and learning how these things depend on a greater stack of code.</p>
<p>I started out with a few simple VIM editor commands, editing <code>php.ini</code> and <code>.htaccess</code> files directly on the server. Once I started to branch out a little more I found out that instead of downloading large frameworks such as Drupal or ZendFramework and then having to upload them back onto the server (which can often take 30-60 minutes), I could do a quick <code>wget http://ftp.drupal.org/files/projects/drupal-6.4.tar.gz</code> followed by a quick <code>tar -xvzf drupal-6.4.tar.gz</code>. Bam! There it is no waiting, no download and upload. </p>
<p><strong>TAR a file/folder</strong><em>(Foldername: drupal)</em><br />
Example: tar cvf <new filename/foldername>.tar <exisiting filename/foldername><br />
Usage: tar cvf drupal.tar drupal/</p>
<p><strong>UNTAR a file/folder</strong><em>(Foldername: drupal)</em><br />
Example: tar xvf <exisiting filename/foldername>.tar<br />
Usage: tar xvf drupal.tar</p>
<p><strong>GZIP a file/folder</strong><em>(Foldername: drupal.tar)</em><br />
Example: gzip <exisiting filename/foldername><br />
Usage: gzip drupal.tar</p>
<p><strong>UNTAR &#038; UNGZIP</strong><br />
tar -xvzf <filename></p>
]]></content:encoded>
			<wfw:commentRss>http://joshuaisaac.com/blog/programming/120/feed</wfw:commentRss>
		</item>
		<item>
		<title>How to make a book the old-fashioned way</title>
		<link>http://joshuaisaac.com/blog/design/118</link>
		<comments>http://joshuaisaac.com/blog/design/118#comments</comments>
		<pubDate>Fri, 19 Sep 2008 21:17:30 +0000</pubDate>
		<dc:creator>Joshua</dc:creator>
		
		<category><![CDATA[design]]></category>

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

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

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

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

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

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

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

		<guid isPermaLink="false">http://joshuaisaac.com/blog/design/118</guid>
		<description><![CDATA[Printing a Book, Old School from Armin Vit on Vimeo.
]]></description>
			<content:encoded><![CDATA[<p><object width="400" height="300"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=1063458&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=1063458&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="300"></embed></object><br /><a href="http://vimeo.com/1063458?pg=embed&amp;sec=1063458">Printing a Book, Old School</a> from <a href="http://vimeo.com/user481965?pg=embed&amp;sec=1063458">Armin Vit</a> on <a href="http://vimeo.com?pg=embed&amp;sec=1063458">Vimeo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://joshuaisaac.com/blog/design/118/feed</wfw:commentRss>
		</item>
		<item>
		<title>Switching Things Up</title>
		<link>http://joshuaisaac.com/blog/everyday-life/112</link>
		<comments>http://joshuaisaac.com/blog/everyday-life/112#comments</comments>
		<pubDate>Sun, 14 Sep 2008 01:12:14 +0000</pubDate>
		<dc:creator>Joshua</dc:creator>
		
		<category><![CDATA[art]]></category>

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

		<category><![CDATA[everyday life]]></category>

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

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

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

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

		<guid isPermaLink="false">http://joshuaisaac.com/blog/?p=112</guid>
		<description><![CDATA[Switch Creative is a Memphis based graphics studio sporting a fantastic identity and poster collection. I have a soft spot for posters, as I&#8217;ve said in the past. What really hooked me with Switch&#8217;s collection of posters is the non-standard sizing of their work. The Of Montreal poster, with the red maples leaves on a [...]]]></description>
			<content:encoded><![CDATA[<p>Switch Creative is a Memphis based graphics studio sporting a fantastic identity and poster collection. I have a soft spot for posters, as I&#8217;ve said in the past. What really hooked me with Switch&#8217;s collection of posters is the non-standard sizing of their work. The <em>Of Montreal</em> poster, with the red maples leaves on a velvet black background look amazing. However, my favorite of the collection was the <em>Don Caballero</em> poster with the necktie and pinstripes.</p>
<p><a href="http://www.switchcreative.com/" target="_blank">Visit Switch Creative</a><br />
<a href="http://www.switchcreative.com/" target="_blank"><img src="http://joshuaisaac.com/blog/wp-content/uploads/2008/09/switch-creative-don-caballe.gif" alt="" title="Switch Creative - Don Caballero Poster" width="227" height="193" class="alignnone size-medium wp-image-113" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://joshuaisaac.com/blog/everyday-life/112/feed</wfw:commentRss>
		</item>
		<item>
		<title>What week of the month is it?</title>
		<link>http://joshuaisaac.com/blog/programming/102</link>
		<comments>http://joshuaisaac.com/blog/programming/102#comments</comments>
		<pubDate>Fri, 12 Sep 2008 14:04:37 +0000</pubDate>
		<dc:creator>Joshua</dc:creator>
		
		<category><![CDATA[programming]]></category>

		<category><![CDATA[php programming day week number month getdate strtotime]]></category>

		<guid isPermaLink="false">http://joshuaisaac.com/blog/programming/102</guid>
		<description><![CDATA[I&#8217;ve been toiling over the course of the week with a date problem in an email subscription list for a client.
Scenario:
I would like for any site user to have the ability to subscribe to any taxonomy of the site and receive an email based on the users personal preference of frequency. They would have the [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been toiling over the course of the week with a date problem in an email subscription list for a client.</p>
<p><strong>Scenario:<br />
</strong>I would like for any site user to have the ability to subscribe to any taxonomy of the site and receive an email based on the users personal preference of frequency. They would have the option to receive an instant update everytime a post is made to their subscribed-to taxonomy(s) or they could receive the digest email daily, weekly or monthly. Lastly, I would like to be able to control when the daily, weekly or monthly emails are sent. I would like to be able to choose the week of the month (if applicable), day (if applicable), hour, and minute (quarter hours).</p>
<p>Everything is pretty straight-forward and pretty generic as far as email management or &#8220;<a href="http://en.wikipedia.org/wiki/Listserv" target="_blank">ListServ</a>&#8221; style solutions go. My only hang up has been figuring out which is the first Tuesday or the second Wednesday or the fourth Friday of the month.</p>
<p>After much searching and hours of trial and error I came acrossed <a href="http://mybroadband.co.za/vb/showpost.php?s=67458fa00ebb2acb27a00e08ecfd6df3&amp;p=946001&amp;postcount=14" target="_blank">this post</a> which gave the below solution. It takes the current day and returns which week of the month it is in.</p>

<div class="wp_syntax"><div class="code"><pre class="php php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> 
&nbsp;
<span style="color: #0000ff; font-style: italic;">/**
 * A brilliant one-liner, considering most of the solutions I've seen have been a minimum of 10-20 lines of code.
 */</span>
 <span style="color: #000088;">$week</span> <span style="color: #339933;">=</span> <span style="color: #990000;">date</span><span style="color: #009900;">&#40;</span><span style="">'W'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">-</span> <span style="color: #990000;">date</span><span style="color: #009900;">&#40;</span><span style="">'W'</span><span style="color: #339933;">,</span><span style="color: #990000;">strtotime</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">date</span><span style="color: #009900;">&#40;</span><span style="">'Y-m-01'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">+</span> <span style="color: #cc66cc;">1</span>;
&nbsp;
&nbsp;
<span style="color: #0000ff; font-style: italic;">/**
 * While the line above is short and to the point, the code below is a verbose example of how one could utilize the one-liner in a real world situation.
 */</span>
&nbsp;
&nbsp;
 <span style="color: #000000; font-weight: bold;">class</span> WeekNumber <span style="color: #009900;">&#123;</span>
&nbsp;
   <span style="color: #000000; font-weight: bold;">private</span> <span style="color: #000088;">$DateString</span><span style="color: #339933;">,</span> <span style="color: #000088;">$Day</span><span style="color: #339933;">,</span> <span style="color: #000088;">$DayName</span><span style="color: #339933;">,</span> <span style="color: #000088;">$MonthName</span><span style="color: #339933;">,</span> <span style="color: #000088;">$Number</span><span style="color: #339933;">,</span> <span style="color: #000088;">$Week</span>;
&nbsp;
  <span style="color: #0000ff; font-style: italic;">/**
   * Adds a suffix to a number (1-5)
   *
   * @return $DateString
   */</span>
   final <span style="color: #000000; font-weight: bold;">function</span> Display<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
     <span style="color: #000088;">$DayName</span> <span style="color: #339933;">=</span> <span style="color: #990000;">date</span><span style="color: #009900;">&#40;</span><span style="">'l'</span><span style="color: #009900;">&#41;</span>;
     <span style="color: #000088;">$MonthName</span> <span style="color: #339933;">=</span> <span style="color: #990000;">date</span><span style="color: #009900;">&#40;</span><span style="">'F'</span><span style="color: #009900;">&#41;</span>;
&nbsp;
     <span style="color: #000088;">$DateString</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;Today is the &quot;</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span>_get_week_number<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot; &quot;</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$DayName</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot; in &quot;</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$MonthName</span>;
&nbsp;
     <span style="color: #b1b100;">return</span> <span style="color: #000088;">$DateString</span>;
   <span style="color: #009900;">&#125;</span>
&nbsp;
  <span style="color: #0000ff; font-style: italic;">/**
   * Adds a suffix to a number (1-5)
   *
   * @return $Day
   */</span>
   <span style="color: #000000; font-weight: bold;">private</span> <span style="color: #000000; font-weight: bold;">function</span> _add_suffix<span style="color: #009900;">&#40;</span><span style="color: #000088;">$Number</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>   
     <span style="color: #b1b100;">switch</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$Number</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
       <span style="color: #b1b100;">case</span> <span style="color: #0000ff;">&quot;1&quot;</span><span style="color: #339933;">:</span>
         <span style="color: #000088;">$Day</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;1st&quot;</span>;
         <span style="color: #b1b100;">break</span>;
&nbsp;
       <span style="color: #b1b100;">case</span> <span style="color: #0000ff;">&quot;2&quot;</span><span style="color: #339933;">:</span>
         <span style="color: #000088;">$Day</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;2nd&quot;</span>;
         <span style="color: #b1b100;">break</span>;
&nbsp;
       <span style="color: #b1b100;">case</span> <span style="color: #0000ff;">&quot;3&quot;</span><span style="color: #339933;">:</span>
         <span style="color: #000088;">$Day</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;3rd&quot;</span>;
         <span style="color: #b1b100;">break</span>;
&nbsp;
       <span style="color: #b1b100;">case</span> <span style="color: #0000ff;">&quot;4&quot;</span><span style="color: #339933;">:</span>
         <span style="color: #000088;">$Day</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;4th&quot;</span>;
         <span style="color: #b1b100;">break</span>;
&nbsp;
       <span style="color: #b1b100;">case</span> <span style="color: #0000ff;">&quot;5&quot;</span><span style="color: #339933;">:</span>
         <span style="color: #000088;">$Day</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;5th&quot;</span>;
         <span style="color: #b1b100;">break</span>;
     <span style="color: #009900;">&#125;</span>
&nbsp;
     <span style="color: #b1b100;">return</span> <span style="color: #000088;">$Day</span>;
   <span style="color: #009900;">&#125;</span>
&nbsp;
&nbsp;
  <span style="color: #0000ff; font-style: italic;">/**
   * Return the week number of the current week day
   *
   * @return $Week
   */</span>
   <span style="color: #000000; font-weight: bold;">private</span> <span style="color: #000000; font-weight: bold;">function</span> _get_week_number<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
     <span style="color: #0000ff; font-style: italic;">/** Here's our one liner **/</span>
     <span style="color: #000088;">$Week</span> <span style="color: #339933;">=</span> <span style="color: #990000;">date</span><span style="color: #009900;">&#40;</span><span style="">'W'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">-</span> <span style="color: #990000;">date</span><span style="color: #009900;">&#40;</span><span style="">'W'</span><span style="color: #339933;">,</span><span style="color: #990000;">strtotime</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">date</span><span style="color: #009900;">&#40;</span><span style="">'Y-m-01'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">+</span> <span style="color: #cc66cc;">1</span>;
     <span style="color: #000088;">$Week</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span>_add_suffix<span style="color: #009900;">&#40;</span><span style="color: #000088;">$Week</span><span style="color: #009900;">&#41;</span>;
     <span style="color: #b1b100;">return</span> <span style="color: #000088;">$Week</span>;
   <span style="color: #009900;">&#125;</span>
&nbsp;
 <span style="color: #009900;">&#125;</span>
&nbsp;
 <span style="color: #000088;">$WeekNumber</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> WeekNumber<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>;
 <span style="color: #990000;">print</span> <span style="color: #000088;">$WeekNumber</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">Display</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>;
&nbsp;
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://joshuaisaac.com/blog/programming/102/feed</wfw:commentRss>
		</item>
		<item>
		<title>Good Sources for Design Inspiration</title>
		<link>http://joshuaisaac.com/blog/art/100</link>
		<comments>http://joshuaisaac.com/blog/art/100#comments</comments>
		<pubDate>Wed, 10 Sep 2008 02:50:54 +0000</pubDate>
		<dc:creator>Joshua</dc:creator>
		
		<category><![CDATA[art]]></category>

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

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

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

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

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

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

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

		<guid isPermaLink="false">http://joshuaisaac.com/blog/?p=100</guid>
		<description><![CDATA[Screen printed posters are my design weakness. I can&#8217;t help to be drawn in by them&#8230;that was one of my primary sources of interest when design was still new to me.

Studio (18) Hundred has a fantasitic collection of screen printed posters and other design works
Design is Kinky is pretty well known but still a great [...]]]></description>
			<content:encoded><![CDATA[<p>Screen printed posters are my design weakness. I can&#8217;t help to be drawn in by them&#8230;that was one of my primary sources of interest when design was still new to me.</p>
<ul>
<li><a href="http://www.studio18hundred.com/" target="_blank">Studio (18) Hundred</a> has a fantasitic collection of screen printed posters and other design works</li>
<li><a href="http://www.designiskinky.net/" target="_blank">Design is Kinky</a> is pretty well known but still a great design kick starter</li>
<li><a href="http://www.posttypography.com/" target="_blank">Post Typography</a> is a big favorite of mine, as well as <a href="http://aestheticapparatus.com/" target="_blank">Aesthetic Apparatus</a> and <a href="https://www.theheadsofstate.com/" target="_blank">The Heads of State</a></li>
<li><a href="http://www.chrisrubino.com/" target="_blank">Chris Rubino</a> is one of the talented desigers at Studio (18) Hundered listed above</li>
<li><a href="http://www.lifelounge.com/" target="_blank">Lifelounge</a> is a &#8220;newly found&#8221; website on my list</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://joshuaisaac.com/blog/art/100/feed</wfw:commentRss>
		</item>
		<item>
		<title>Objective-C and Cocoa Ported to the Web</title>
		<link>http://joshuaisaac.com/blog/programming/96</link>
		<comments>http://joshuaisaac.com/blog/programming/96#comments</comments>
		<pubDate>Fri, 05 Sep 2008 13:22:20 +0000</pubDate>
		<dc:creator>Joshua</dc:creator>
		
		<category><![CDATA[design]]></category>

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

		<category><![CDATA[web desktop applications development programming javasc]]></category>

		<guid isPermaLink="false">http://joshuaisaac.com/blog/programming/96</guid>
		<description><![CDATA[
The Cappuccino Framework 
An article about it on Carsonified
An example Keynote application
The people behind it

]]></description>
			<content:encoded><![CDATA[<ul>
<li><a href="http://cappuccino.org/" target="_blank">The Cappuccino Framework </a></li>
<li><a href="http://www.carsonified.com/web-apps/why-objective-j-cappuccino-and-sproutcore-are-completely-changing-the-web-app-industry" target="_blank">An article about it on Carsonified</a></li>
<li><a href="http://280slides.com/" target="_blank">An example Keynote application</a></li>
<li><a href="http://280north.com/blog/" target="_blank">The people behind it</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://joshuaisaac.com/blog/programming/96/feed</wfw:commentRss>
		</item>
		<item>
		<title>Bicycle Film Festival</title>
		<link>http://joshuaisaac.com/blog/everyday-life/92</link>
		<comments>http://joshuaisaac.com/blog/everyday-life/92#comments</comments>
		<pubDate>Fri, 05 Sep 2008 01:47:27 +0000</pubDate>
		<dc:creator>Joshua</dc:creator>
		
		<category><![CDATA[art]]></category>

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

		<category><![CDATA[everyday life]]></category>

		<category><![CDATA[bicycle film festival video art]]></category>

		<guid isPermaLink="false">http://joshuaisaac.com/blog/?p=92</guid>
		<description><![CDATA[Happening Worldwide September 5-7.
Check it out.
]]></description>
			<content:encoded><![CDATA[<p>Happening Worldwide September 5-7.</p>
<p><a href="http://bicyclefilmfestival.com/" target="_blank">Check it out.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://joshuaisaac.com/blog/everyday-life/92/feed</wfw:commentRss>
		</item>
		<item>
		<title>The Heads of State Redesign Site</title>
		<link>http://joshuaisaac.com/blog/programming/90</link>
		<comments>http://joshuaisaac.com/blog/programming/90#comments</comments>
		<pubDate>Sat, 30 Aug 2008 15:36:04 +0000</pubDate>
		<dc:creator>Joshua</dc:creator>
		
		<category><![CDATA[art]]></category>

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

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

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

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

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

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

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

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

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

		<guid isPermaLink="false">http://joshuaisaac.com/blog/?p=90</guid>
		<description><![CDATA[I was looking for sites that utilized the Javascript History/BackButton library SWFAddress, because the studio I work at was looking into similar solutions for a site we were working on EcoDrivingUSA. While searching I noticed that The Heads of State used it and had just released their newest web site redesign.
I&#8217;ve been a fan of [...]]]></description>
			<content:encoded><![CDATA[<p>I was looking for sites that utilized the Javascript History/BackButton library <a href="http://www.swfaddress.com/" target="_self">SWFAddress</a>, because the studio I work at was looking into similar solutions for a site we were working on <a href="http://www.ecodrivingusa.com/" target="_self">EcoDrivingUSA</a>. While searching I noticed that <strong>The Heads of State</strong> used it and had just released their <a href="https://www.theheadsofstate.com/" target="_blank">newest web site redesign</a>.</p>
<p>I&#8217;ve been a fan of <strong>The Heads of State </strong>since I saw there first entires <em>PRINT</em> and <em>HOW</em>. If you&#8217;re unfamiliar with them they&#8217;re an amazing two man studio formed by Jason Kernevich and Dustin Summers with offices in Brooklyn, NY and Seattle, WA that is probably best known for their poster work.</p>
]]></content:encoded>
			<wfw:commentRss>http://joshuaisaac.com/blog/programming/90/feed</wfw:commentRss>
		</item>
		<item>
		<title>Panic releases Coda 1.5</title>
		<link>http://joshuaisaac.com/blog/programming/88</link>
		<comments>http://joshuaisaac.com/blog/programming/88#comments</comments>
		<pubDate>Wed, 27 Aug 2008 01:33:01 +0000</pubDate>
		<dc:creator>Joshua</dc:creator>
		
		<category><![CDATA[design]]></category>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

		<guid isPermaLink="false">http://joshuaisaac.com/blog/programming/88</guid>
		<description><![CDATA[I&#8217;m so excited I just received an email from Panic. Coda 1.5 is now avaiable! YES!
Let&#8217;s do a quick feature run-down:

With the new version comes an amazing update that our Textmate-using, rival, developer friends have had for some time now. &#8220;Fully integrated source control with Subversion.&#8221;
Mixed-mode syntax highlighting (Javascript embedded in HTML)
Significant performance increases (Leopard [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m so excited I just received an email from Panic. Coda 1.5 is now avaiable! YES!</p>
<p>Let&#8217;s do a quick feature run-down:</p>
<ul>
<li>With the new version comes an amazing update that our Textmate-using, rival, developer friends have had for some time now. &#8220;Fully integrated source control with Subversion.&#8221;</li>
<li>Mixed-mode syntax highlighting (Javascript embedded in HTML)</li>
<li>Significant performance increases (Leopard only)</li>
<li>Search across multiple files locally</li>
<li>User customizable books</li>
<li>More AppleScript support</li>
<li>Web Preview now previews local PHP files</li>
</ul>
<div>Check out the <a href="http://www.panic.com/coda/releasenotes.html" target="_blank">full release notes here</a>.</div>
]]></content:encoded>
			<wfw:commentRss>http://joshuaisaac.com/blog/programming/88/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
