<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    <title>Binary Frost</title>
    <link>http://www.binaryfrost.com/</link>
    <description>bits of binary from icenfrosty</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 1.4.1 - http://www.s9y.org/</generator>
    <pubDate>Sun, 23 Aug 2009 02:58:02 GMT</pubDate>

    <image>
        <url>http://www.binaryfrost.com/templates/default/img/s9y_banner_small.png</url>
        <title>RSS: Binary Frost - bits of binary from icenfrosty</title>
        <link>http://www.binaryfrost.com/</link>
        <width>100</width>
        <height>21</height>
    </image>

<item>
    <title>OSX and ProcessBuilder</title>
    <link>http://www.binaryfrost.com/index.php?/archives/234-OSX-and-ProcessBuilder.html</link>
            <category>Java</category>
    
    <comments>http://www.binaryfrost.com/index.php?/archives/234-OSX-and-ProcessBuilder.html#comments</comments>
    <wfw:comment>http://www.binaryfrost.com/wfwcomment.php?cid=234</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.binaryfrost.com/rss.php?version=2.0&amp;type=comments&amp;cid=234</wfw:commentRss>
    

    <author>nospam@example.com (cfrostrun)</author>
    <content:encoded>
    getting this in osx?&lt;br /&gt;
&lt;br /&gt;
java.io.IOException: Cannot run program &quot; &quot;: error=2, No such file or directory&lt;br /&gt;
&lt;br /&gt;
your code looks like this?&lt;br /&gt;
&lt;br /&gt;
			ProcessBuilder processBuilder = new ProcessBuilder(command);&lt;br /&gt;
			final Process process = processBuilder.start();&lt;br /&gt;
			InputStream is = process.getInputStream();&lt;br /&gt;
			InputStreamReader isr = new InputStreamReader(is);&lt;br /&gt;
			BufferedReader br = new BufferedReader(isr);&lt;br /&gt;
			String line;&lt;br /&gt;
			while ((line = br.readLine()) != null) {&lt;br /&gt;
				builder.append(line).append(newLine);&lt;br /&gt;
			}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
command will need to be a String[] separated out.&lt;br /&gt;
&lt;br /&gt;
so for example:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
String[]{&quot;ls&quot;, &quot;-lrt&quot;}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
hope this helps.&lt;br /&gt;
&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Sat, 22 Aug 2009 19:58:02 -0700</pubDate>
    <guid isPermaLink="false">http://www.binaryfrost.com/index.php?/archives/234-guid.html</guid>
    
</item>
<item>
    <title>Mail migration program.</title>
    <link>http://www.binaryfrost.com/index.php?/archives/233-Mail-migration-program..html</link>
            <category>Java</category>
    
    <comments>http://www.binaryfrost.com/index.php?/archives/233-Mail-migration-program..html#comments</comments>
    <wfw:comment>http://www.binaryfrost.com/wfwcomment.php?cid=233</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.binaryfrost.com/rss.php?version=2.0&amp;type=comments&amp;cid=233</wfw:commentRss>
    

    <author>nospam@example.com (cfrostrun)</author>
    <content:encoded>
    Recently I needed a program to move the mail from one mail box to another.  I wrote the following program to accomplish this.. Hopefully someone will find it useful.  I whipped this program together pretty quickly, so it&#039;s a little raw.  But it&#039;ll log any error mesages to standard out.  &lt;br /&gt;
&lt;verbatim&gt;&lt;br /&gt;
                                          &lt;br /&gt;
import javax.mail.*;&lt;br /&gt;
import javax.mail.internet.*;&lt;br /&gt;
import java.util.Properties;&lt;br /&gt;
&lt;br /&gt;
public class MigrateMail{&lt;br /&gt;
&lt;br /&gt;
public static void main(String[] args)throws Exception{&lt;br /&gt;
&lt;br /&gt;
String host = &quot;&quot;;&lt;br /&gt;
String username = &quot;&quot;;&lt;br /&gt;
String password = &quot;&quot;;&lt;br /&gt;
String migrationAddress;&lt;br /&gt;
&lt;br /&gt;
Properties props = new Properties();&lt;br /&gt;
props.put(&quot;smtp.server.com&quot;, host);&lt;br /&gt;
&lt;br /&gt;
Session session = Session.getDefaultInstance(props, null);&lt;br /&gt;
Store store = session.getStore(&quot;imap&quot;);&lt;br /&gt;
store.connect(host, username, password);&lt;br /&gt;
&lt;br /&gt;
Folder folder = store.getFolder(&quot;INBOX&quot;); &lt;br /&gt;
folder.open(Folder.READ_ONLY);&lt;br /&gt;
&lt;br /&gt;
Message messages[] = folder.getMessages();&lt;br /&gt;
&lt;br /&gt;
for (int i=0; i &lt; messages.length; i++) {&lt;br /&gt;
        try{&lt;br /&gt;
            	forward(session, messages[i], i, migrationAddress);&lt;br /&gt;
                Thread.sleep(60000); // sleep 1 minute between emails.&lt;br /&gt;
        }catch(Exception e){&lt;br /&gt;
                System.out.println(&quot;Mail Failed for &quot; + i + &quot;, &quot; + messages[i].getFrom()[0] + &quot;,  subject = &quot; + messages[i].getSubject());&lt;br /&gt;
        }&lt;br /&gt;
}&lt;br /&gt;
folder.close(false);&lt;br /&gt;
store.close();&lt;br /&gt;
&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
      public static void forward(Session session, Message oldMessage, int i, String migrationAddress)throws&lt;br /&gt;
Exception{&lt;br /&gt;
Message message = new MimeMessage(session);&lt;br /&gt;
message.setSentDate(oldMessage.getSentDate());&lt;br /&gt;
message.addFrom(oldMessage.getFrom());&lt;br /&gt;
message.addRecipient(Message.RecipientType.TO,  new InternetAddress(migrationAddress));&lt;br /&gt;
message.setSubject(oldMessage.getSubject());&lt;br /&gt;
message.setContent(oldMessage.getContent(), oldMessage.getContentType());&lt;br /&gt;
&lt;br /&gt;
Transport.send(message);&lt;br /&gt;
System.out.println(&quot;Message Send. &quot; + i);&lt;br /&gt;
&lt;br /&gt;
        }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Here&#039;s the compile command&lt;br /&gt;
&lt;br /&gt;
javac -cp &quot;mail.jar:activation.jar:.&quot; MigrateMail.java&lt;br /&gt;
&lt;br /&gt;
Here&#039;s the run command&lt;br /&gt;
&lt;br /&gt;
java -cp &quot;mail.jar:activation.jar:.&quot; MigrateMail  &gt;&gt; mail.migration.txt&lt;br /&gt;
&lt;br /&gt;
then i command z&#039;d it w/ a bg.&lt;br /&gt;
&lt;br /&gt;
&lt;/verbatim&gt; 
    </content:encoded>

    <pubDate>Sat, 15 Aug 2009 21:41:04 -0700</pubDate>
    <guid isPermaLink="false">http://www.binaryfrost.com/index.php?/archives/233-guid.html</guid>
    
</item>
<item>
    <title>mod-ajp + tomcat</title>
    <link>http://www.binaryfrost.com/index.php?/archives/232-mod-ajp-+-tomcat.html</link>
            <category>Java</category>
    
    <comments>http://www.binaryfrost.com/index.php?/archives/232-mod-ajp-+-tomcat.html#comments</comments>
    <wfw:comment>http://www.binaryfrost.com/wfwcomment.php?cid=232</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.binaryfrost.com/rss.php?version=2.0&amp;type=comments&amp;cid=232</wfw:commentRss>
    

    <author>nospam@example.com (cfrostrun)</author>
    <content:encoded>
    getting these errors:&lt;br /&gt;
&lt;br /&gt;
[Thu Aug 13 16:18:34 2009] [error] ajp_read_header: ajp_ilink_receive failed&lt;br /&gt;
[Thu Aug 13 16:18:34 2009] [error] (120006)APR does not understand this error code: proxy: read response failed from (null) (localhost)&lt;br /&gt;
[Thu Aug 13 16:19:04 2009] [error] (70007)The timeout specified has expired: ajp_ilink_receive() can&#039;t receive header&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I was.  I fixed these by adding &lt;br /&gt;
&lt;br /&gt;
 maxThreads=&quot;256&quot;&lt;br /&gt;
&lt;br /&gt;
 to the ajp connector:&lt;br /&gt;
&lt;verbatim&gt;&lt;br /&gt;
 &lt; Connector port=&quot;8009&quot; address=&quot;${jboss.bind.address}&quot; protocol=&quot;AJP/1.3&quot;&lt;br /&gt;
         emptySessionPath=&quot;true&quot; enableLookups=&quot;false&quot; redirectPort=&quot;8443&quot;&lt;br /&gt;
         maxThreads=&quot;256&quot;&lt;br /&gt;
        / &gt;&lt;br /&gt;
&lt;/verbatim&gt;&lt;br /&gt;
&lt;br /&gt;
Took me a long time to figure this out.  the 256 number was derived by what the MaxClients had set in the httpd.conf. &lt;br /&gt;
&lt;br /&gt;
Enjoy.&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Fri, 14 Aug 2009 17:00:52 -0700</pubDate>
    <guid isPermaLink="false">http://www.binaryfrost.com/index.php?/archives/232-guid.html</guid>
    
</item>
<item>
    <title>PageRank Sculpting.</title>
    <link>http://www.binaryfrost.com/index.php?/archives/231-PageRank-Sculpting..html</link>
            <category>Blogs &amp; Podcasts</category>
    
    <comments>http://www.binaryfrost.com/index.php?/archives/231-PageRank-Sculpting..html#comments</comments>
    <wfw:comment>http://www.binaryfrost.com/wfwcomment.php?cid=231</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.binaryfrost.com/rss.php?version=2.0&amp;type=comments&amp;cid=231</wfw:commentRss>
    

    <author>nospam@example.com (cfrostrun)</author>
    <content:encoded>
    &lt;a href=&quot;http://www.mattcutts.com/blog/pagerank-sculpting/&quot;&gt;PageRank Sculpting&lt;/a&gt; 
    </content:encoded>

    <pubDate>Tue, 16 Jun 2009 15:39:19 -0700</pubDate>
    <guid isPermaLink="false">http://www.binaryfrost.com/index.php?/archives/231-guid.html</guid>
    
</item>
<item>
    <title>Dave Matthews philosphy of creating music..</title>
    <link>http://www.binaryfrost.com/index.php?/archives/230-Dave-Matthews-philosphy-of-creating-music...html</link>
            <category>Dave Matthews Band</category>
    
    <comments>http://www.binaryfrost.com/index.php?/archives/230-Dave-Matthews-philosphy-of-creating-music...html#comments</comments>
    <wfw:comment>http://www.binaryfrost.com/wfwcomment.php?cid=230</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.binaryfrost.com/rss.php?version=2.0&amp;type=comments&amp;cid=230</wfw:commentRss>
    

    <author>nospam@example.com (cfrostrun)</author>
    <content:encoded>
    &lt;a href=&quot;http://www.biography.com/video.do?name=musicians&amp;bcpid=1740037445&amp;bclid=1753282639&amp;bctid=1729299779&quot;&gt;Bio Bits&lt;/a&gt;, also got an email about &lt;a href=&quot;http://tapulous.com/blog/2009/05/tap-shake-me-like-a-monkey/&quot;&gt;Tap Tap Revenges DMB themed app&lt;/a&gt;. 
    </content:encoded>

    <pubDate>Thu, 21 May 2009 16:42:06 -0700</pubDate>
    <guid isPermaLink="false">http://www.binaryfrost.com/index.php?/archives/230-guid.html</guid>
    
</item>
<item>
    <title>Wolfram Alpha</title>
    <link>http://www.binaryfrost.com/index.php?/archives/229-Wolfram-Alpha.html</link>
            <category>Technology</category>
    
    <comments>http://www.binaryfrost.com/index.php?/archives/229-Wolfram-Alpha.html#comments</comments>
    <wfw:comment>http://www.binaryfrost.com/wfwcomment.php?cid=229</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.binaryfrost.com/rss.php?version=2.0&amp;type=comments&amp;cid=229</wfw:commentRss>
    

    <author>nospam@example.com (cfrostrun)</author>
    <content:encoded>
    I heard about this a few months back and have been curious about how well it&#039;ll answer questions.  &lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.wolframalpha.com/index.html&quot;&gt;Wolfram Alpha&lt;/a&gt; is going live in a few minutes CST.&lt;br /&gt;
&lt;br /&gt;
I think I&#039;m going to ask it:&lt;br /&gt;
&lt;br /&gt;
How far is Saturn from Mars on June 1st, 2009?&lt;br /&gt;
&lt;br /&gt;
We&#039;ll see how well it performs.  (By the way, I have no idea what the answer is &lt;img src=&quot;http://www.binaryfrost.com/templates/default/img/emoticons/smile.png&quot; alt=&quot;:-)&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt;)&lt;br /&gt;
&lt;br /&gt;
I don&#039;t think it understood exactly what i was asking, however it gave me an answer...&lt;br /&gt;
&lt;br /&gt;
&lt;!-- s9ymdb:195 --&gt;&lt;img class=&quot;serendipity_image_left&quot;  style=&quot;float: left; border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;http://www.binaryfrost.com/uploads/my_first_wolfram_alpha_query.png&quot; alt=&quot;&quot; /&gt; 
    </content:encoded>

    <pubDate>Fri, 15 May 2009 16:52:14 -0700</pubDate>
    <guid isPermaLink="false">http://www.binaryfrost.com/index.php?/archives/229-guid.html</guid>
    
</item>
<item>
    <title>f-k.com</title>
    <link>http://www.binaryfrost.com/index.php?/archives/228-f-k.com.html</link>
            <category>Travel</category>
    
    <comments>http://www.binaryfrost.com/index.php?/archives/228-f-k.com.html#comments</comments>
    <wfw:comment>http://www.binaryfrost.com/wfwcomment.php?cid=228</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.binaryfrost.com/rss.php?version=2.0&amp;type=comments&amp;cid=228</wfw:commentRss>
    

    <author>nospam@example.com (cfrostrun)</author>
    <content:encoded>
    So I&#039;m in SF this week on some business, and today I had lunch down on the Embarcadero, and I got one of these &quot;eco-friendly&quot; cups.  I&#039;ve never heard of them before so I thought I&#039;d pass a link over to the &lt;a href=&quot;http://f-k.com/&quot;&gt;eco-friendly manufacturing company&lt;/a&gt;.  Good for them.&lt;br /&gt;
&lt;br /&gt;
From there web-site:&lt;br /&gt;
&lt;br /&gt;
 	&lt;br /&gt;
&lt;a href=&quot;http://www.f-k.com/component/option,com_content2/Itemid,74/task,view/id,185/cat,65/&quot;&gt;Greenware® portion cups and lids&lt;/a&gt; are a line of crystal clear, American made premium portion cups manufactured from NatureWorks® biopolymer, a polylactic acid (PLA) resin derived entirely from plants instead of oil.  Greenware portion cups feature a rolled rim for leak-resistant lid application are are crystal clear to highlight any food or beverage.  Available in three popular sizes, Greenware portion cups are a sustainable solution in foodservice packaging.&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Mon, 27 Apr 2009 17:21:26 -0700</pubDate>
    <guid isPermaLink="false">http://www.binaryfrost.com/index.php?/archives/228-guid.html</guid>
    
</item>
<item>
    <title>some devil to house</title>
    <link>http://www.binaryfrost.com/index.php?/archives/223-some-devil-to-house.html</link>
            <category>Dave Matthews Band</category>
    
    <comments>http://www.binaryfrost.com/index.php?/archives/223-some-devil-to-house.html#comments</comments>
    <wfw:comment>http://www.binaryfrost.com/wfwcomment.php?cid=223</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.binaryfrost.com/rss.php?version=2.0&amp;type=comments&amp;cid=223</wfw:commentRss>
    

    <author>nospam@example.com (cfrostrun)</author>
    <content:encoded>
    This is what happens when you put &lt;a href=&quot;http://www.youtube.com/watch?v=oXm3gCdhKf4&quot;&gt;some devil to house&lt;/a&gt;.. 
    </content:encoded>

    <pubDate>Thu, 16 Apr 2009 19:25:00 -0700</pubDate>
    <guid isPermaLink="false">http://www.binaryfrost.com/index.php?/archives/223-guid.html</guid>
    
</item>
<item>
    <title>Road to Area 51</title>
    <link>http://www.binaryfrost.com/index.php?/archives/227-Road-to-Area-51.html</link>
            <category>Binary Bits</category>
    
    <comments>http://www.binaryfrost.com/index.php?/archives/227-Road-to-Area-51.html#comments</comments>
    <wfw:comment>http://www.binaryfrost.com/wfwcomment.php?cid=227</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.binaryfrost.com/rss.php?version=2.0&amp;type=comments&amp;cid=227</wfw:commentRss>
    

    <author>nospam@example.com (cfrostrun)</author>
    <content:encoded>
    &lt;a href=&quot;http://www.latimes.com/features/la-mag-april052009-backstory,0,3355162.story&quot;&gt;Road to Area 51&lt;/a&gt; was featured on &lt;a href=&quot;http://news.slashdot.org/article.pl?sid=09/04/13/2240202&amp;art_pos=4&quot;&gt;slashdot today&lt;/a&gt;. 
    </content:encoded>

    <pubDate>Mon, 13 Apr 2009 19:33:46 -0700</pubDate>
    <guid isPermaLink="false">http://www.binaryfrost.com/index.php?/archives/227-guid.html</guid>
    
</item>
<item>
    <title>Behinds the scenes for Bartender..</title>
    <link>http://www.binaryfrost.com/index.php?/archives/225-Behinds-the-scenes-for-Bartender...html</link>
            <category>Dave Matthews Band</category>
    
    <comments>http://www.binaryfrost.com/index.php?/archives/225-Behinds-the-scenes-for-Bartender...html#comments</comments>
    <wfw:comment>http://www.binaryfrost.com/wfwcomment.php?cid=225</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.binaryfrost.com/rss.php?version=2.0&amp;type=comments&amp;cid=225</wfw:commentRss>
    

    <author>nospam@example.com (cfrostrun)</author>
    <content:encoded>
    &lt;object width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/eBW9Zu-K-RY&amp;hl=en&amp;fs=1&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/eBW9Zu-K-RY&amp;hl=en&amp;fs=1&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;/embed&gt;&lt;/object&gt; 
    </content:encoded>

    <pubDate>Sun, 12 Apr 2009 20:22:00 -0700</pubDate>
    <guid isPermaLink="false">http://www.binaryfrost.com/index.php?/archives/225-guid.html</guid>
    
</item>
<item>
    <title>DMB @ 2002 Winter Olympics Performing </title>
    <link>http://www.binaryfrost.com/index.php?/archives/224-DMB-2002-Winter-Olympics-Performing.html</link>
            <category>Dave Matthews Band</category>
    
    <comments>http://www.binaryfrost.com/index.php?/archives/224-DMB-2002-Winter-Olympics-Performing.html#comments</comments>
    <wfw:comment>http://www.binaryfrost.com/wfwcomment.php?cid=224</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.binaryfrost.com/rss.php?version=2.0&amp;type=comments&amp;cid=224</wfw:commentRss>
    

    <author>nospam@example.com (cfrostrun)</author>
    <content:encoded>
    Ants Marching...&lt;br /&gt;
&lt;br /&gt;
&lt;object width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/A9U8A5DB8rs&amp;hl=en&amp;fs=1&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/A9U8A5DB8rs&amp;hl=en&amp;fs=1&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Bartender ... &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;object width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/5iwNR3Vk0rE&amp;hl=en&amp;fs=1&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/5iwNR3Vk0rE&amp;hl=en&amp;fs=1&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;/embed&gt;&lt;/object&gt; 
    </content:encoded>

    <pubDate>Sat, 11 Apr 2009 20:02:00 -0700</pubDate>
    <guid isPermaLink="false">http://www.binaryfrost.com/index.php?/archives/224-guid.html</guid>
    
</item>
<item>
    <title>DMB on 60 Minutes</title>
    <link>http://www.binaryfrost.com/index.php?/archives/222-DMB-on-60-Minutes.html</link>
            <category>Dave Matthews Band</category>
    
    <comments>http://www.binaryfrost.com/index.php?/archives/222-DMB-on-60-Minutes.html#comments</comments>
    <wfw:comment>http://www.binaryfrost.com/wfwcomment.php?cid=222</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.binaryfrost.com/rss.php?version=2.0&amp;type=comments&amp;cid=222</wfw:commentRss>
    

    <author>nospam@example.com (cfrostrun)</author>
    <content:encoded>
    Part 1...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;object width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/2fXofXsKGTc&amp;hl=en&amp;fs=1&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/2fXofXsKGTc&amp;hl=en&amp;fs=1&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Part 2...&lt;br /&gt;
&lt;br /&gt;
&lt;object width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/zcjUCjqz1aA&amp;hl=en&amp;fs=1&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/zcjUCjqz1aA&amp;hl=en&amp;fs=1&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;/embed&gt;&lt;/object&gt; 
    </content:encoded>

    <pubDate>Fri, 10 Apr 2009 18:06:00 -0700</pubDate>
    <guid isPermaLink="false">http://www.binaryfrost.com/index.php?/archives/222-guid.html</guid>
    
</item>
<item>
    <title>DMB Interview</title>
    <link>http://www.binaryfrost.com/index.php?/archives/221-DMB-Interview.html</link>
            <category>Dave Matthews Band</category>
    
    <comments>http://www.binaryfrost.com/index.php?/archives/221-DMB-Interview.html#comments</comments>
    <wfw:comment>http://www.binaryfrost.com/wfwcomment.php?cid=221</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.binaryfrost.com/rss.php?version=2.0&amp;type=comments&amp;cid=221</wfw:commentRss>
    

    <author>nospam@example.com (cfrostrun)</author>
    <content:encoded>
    &lt;object width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/lpV99DQfj0s&amp;hl=en&amp;fs=1&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/lpV99DQfj0s&amp;hl=en&amp;fs=1&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;/embed&gt;&lt;/object&gt; 
    </content:encoded>

    <pubDate>Wed, 08 Apr 2009 17:51:00 -0700</pubDate>
    <guid isPermaLink="false">http://www.binaryfrost.com/index.php?/archives/221-guid.html</guid>
    
</item>
<item>
    <title>Getting crazy busy with iPhone development... </title>
    <link>http://www.binaryfrost.com/index.php?/archives/226-Getting-crazy-busy-with-iPhone-development....html</link>
            <category>How do you like them Apples!?</category>
    
    <comments>http://www.binaryfrost.com/index.php?/archives/226-Getting-crazy-busy-with-iPhone-development....html#comments</comments>
    <wfw:comment>http://www.binaryfrost.com/wfwcomment.php?cid=226</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.binaryfrost.com/rss.php?version=2.0&amp;type=comments&amp;cid=226</wfw:commentRss>
    

    <author>nospam@example.com (cfrostrun)</author>
    <content:encoded>
    Things have been crazy as of late.. We&#039;re getting close to wrapping up a 1.1.0 release on &lt;a href=&quot;http://golf.heywhatsthescore.com&quot;&gt;Hey, What&#039;s the Golf Score?&lt;/a&gt; ... should be rolling it out in the coming weeks..  I&#039;ve also have been contacted by a couple people about doing some iPhone development for them.  Meeting one person tomorrow night... I&#039;m interested in seeing where that goes..  Worst case is I&#039;ll continue to develop the handful of apps I have in our &lt;a href=&quot;http://www.frostylabs.com&quot;&gt;labs&lt;/a&gt;..   A couple are showing some real promise..  Oh yes, and then there&#039;s always my 9-5 gig... Needless to say.. I&#039;m busy busy busy... &lt;br /&gt;
&lt;br /&gt;
peace all.. 
    </content:encoded>

    <pubDate>Tue, 07 Apr 2009 18:59:25 -0700</pubDate>
    <guid isPermaLink="false">http://www.binaryfrost.com/index.php?/archives/226-guid.html</guid>
    
</item>
<item>
    <title>typical Dave with Ants Marching</title>
    <link>http://www.binaryfrost.com/index.php?/archives/220-typical-Dave-with-Ants-Marching.html</link>
            <category>Dave Matthews Band</category>
    
    <comments>http://www.binaryfrost.com/index.php?/archives/220-typical-Dave-with-Ants-Marching.html#comments</comments>
    <wfw:comment>http://www.binaryfrost.com/wfwcomment.php?cid=220</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.binaryfrost.com/rss.php?version=2.0&amp;type=comments&amp;cid=220</wfw:commentRss>
    

    <author>nospam@example.com (cfrostrun)</author>
    <content:encoded>
    &lt;object width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/kUpec0kwCfo&amp;hl=en&amp;fs=1&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/kUpec0kwCfo&amp;hl=en&amp;fs=1&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;/embed&gt;&lt;/object&gt; 
    </content:encoded>

    <pubDate>Mon, 06 Apr 2009 17:50:00 -0700</pubDate>
    <guid isPermaLink="false">http://www.binaryfrost.com/index.php?/archives/220-guid.html</guid>
    
</item>

</channel>
</rss>