<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet href="/templates/default/atom.css" type="text/css" ?>

<feed 
   xmlns="http://www.w3.org/2005/Atom"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/">
    <link href="http://www.binaryfrost.com/index.php?/feeds/atom.xml" rel="self" title="Binary Frost" type="application/atom+xml" />
    <link href="http://www.binaryfrost.com/"                        rel="alternate"    title="Binary Frost" type="text/html" />
    <link href="http://www.binaryfrost.com/rss.php?version=2.0"     rel="alternate"    title="Binary Frost" type="application/rss+xml" />
    <title type="html">Binary Frost</title>
    <subtitle type="html">bits of binary from icenfrosty</subtitle>
    <icon>http://www.binaryfrost.com/templates/default/img/s9y_banner_small.png</icon>
    <id>http://www.binaryfrost.com/</id>
    <updated>2009-08-23T02:58:02Z</updated>
    <generator uri="http://www.s9y.org/" version="1.4.1">Serendipity 1.4.1 - http://www.s9y.org/</generator>
    <dc:language>en</dc:language>

    <entry>
        <link href="http://www.binaryfrost.com/index.php?/archives/234-OSX-and-ProcessBuilder.html" rel="alternate" title="OSX and ProcessBuilder" />
        <author>
            <name>cfrostrun</name>
                    </author>
    
        <published>2009-08-23T02:58:02Z</published>
        <updated>2009-08-23T02:58:02Z</updated>
        <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=atom1.0&amp;type=comments&amp;cid=234</wfw:commentRss>
    
            <category scheme="http://www.binaryfrost.com/index.php?/categories/14-Java" label="Java" term="Java" />
    
        <id>http://www.binaryfrost.com/index.php?/archives/234-guid.html</id>
        <title type="html">OSX and ProcessBuilder</title>
        <content type="xhtml" xml:base="http://www.binaryfrost.com/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                getting this in osx?<br />
<br />
java.io.IOException: Cannot run program " ": error=2, No such file or directory<br />
<br />
your code looks like this?<br />
<br />
			ProcessBuilder processBuilder = new ProcessBuilder(command);<br />
			final Process process = processBuilder.start();<br />
			InputStream is = process.getInputStream();<br />
			InputStreamReader isr = new InputStreamReader(is);<br />
			BufferedReader br = new BufferedReader(isr);<br />
			String line;<br />
			while ((line = br.readLine()) != null) {<br />
				builder.append(line).append(newLine);<br />
			}<br />
<br />
<br />
command will need to be a String[] separated out.<br />
<br />
so for example:<br />
<br />
<br />
String[]{"ls", "-lrt"}<br />
<br />
<br />
hope this helps.<br />
<br />
 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.binaryfrost.com/index.php?/archives/233-Mail-migration-program..html" rel="alternate" title="Mail migration program." />
        <author>
            <name>cfrostrun</name>
                    </author>
    
        <published>2009-08-16T04:41:04Z</published>
        <updated>2009-08-16T04:58:56Z</updated>
        <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=atom1.0&amp;type=comments&amp;cid=233</wfw:commentRss>
    
            <category scheme="http://www.binaryfrost.com/index.php?/categories/14-Java" label="Java" term="Java" />
    
        <id>http://www.binaryfrost.com/index.php?/archives/233-guid.html</id>
        <title type="html">Mail migration program.</title>
        <content type="xhtml" xml:base="http://www.binaryfrost.com/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                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's a little raw.  But it'll log any error mesages to standard out.  <br />
<verbatim><br />
                                          <br />
import javax.mail.*;<br />
import javax.mail.internet.*;<br />
import java.util.Properties;<br />
<br />
public class MigrateMail{<br />
<br />
public static void main(String[] args)throws Exception{<br />
<br />
String host = "";<br />
String username = "";<br />
String password = "";<br />
String migrationAddress;<br />
<br />
Properties props = new Properties();<br />
props.put("smtp.server.com", host);<br />
<br />
Session session = Session.getDefaultInstance(props, null);<br />
Store store = session.getStore("imap");<br />
store.connect(host, username, password);<br />
<br />
Folder folder = store.getFolder("INBOX"); <br />
folder.open(Folder.READ_ONLY);<br />
<br />
Message messages[] = folder.getMessages();<br />
<br />
for (int i=0; i < messages.length; i++) {<br />
        try{<br />
            	forward(session, messages[i], i, migrationAddress);<br />
                Thread.sleep(60000); // sleep 1 minute between emails.<br />
        }catch(Exception e){<br />
                System.out.println("Mail Failed for " + i + ", " + messages[i].getFrom()[0] + ",  subject = " + messages[i].getSubject());<br />
        }<br />
}<br />
folder.close(false);<br />
store.close();<br />
<br />
    }<br />
<br />
      public static void forward(Session session, Message oldMessage, int i, String migrationAddress)throws<br />
Exception{<br />
Message message = new MimeMessage(session);<br />
message.setSentDate(oldMessage.getSentDate());<br />
message.addFrom(oldMessage.getFrom());<br />
message.addRecipient(Message.RecipientType.TO,  new InternetAddress(migrationAddress));<br />
message.setSubject(oldMessage.getSubject());<br />
message.setContent(oldMessage.getContent(), oldMessage.getContentType());<br />
<br />
Transport.send(message);<br />
System.out.println("Message Send. " + i);<br />
<br />
        }<br />
}<br />
<br />
<br />
Here's the compile command<br />
<br />
javac -cp "mail.jar:activation.jar:." MigrateMail.java<br />
<br />
Here's the run command<br />
<br />
java -cp "mail.jar:activation.jar:." MigrateMail  >> mail.migration.txt<br />
<br />
then i command z'd it w/ a bg.<br />
<br />
</verbatim> 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.binaryfrost.com/index.php?/archives/232-mod-ajp-+-tomcat.html" rel="alternate" title="mod-ajp + tomcat" />
        <author>
            <name>cfrostrun</name>
                    </author>
    
        <published>2009-08-15T00:00:52Z</published>
        <updated>2009-08-15T00:06:16Z</updated>
        <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=atom1.0&amp;type=comments&amp;cid=232</wfw:commentRss>
    
            <category scheme="http://www.binaryfrost.com/index.php?/categories/14-Java" label="Java" term="Java" />
    
        <id>http://www.binaryfrost.com/index.php?/archives/232-guid.html</id>
        <title type="html">mod-ajp + tomcat</title>
        <content type="xhtml" xml:base="http://www.binaryfrost.com/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                getting these errors:<br />
<br />
[Thu Aug 13 16:18:34 2009] [error] ajp_read_header: ajp_ilink_receive failed<br />
[Thu Aug 13 16:18:34 2009] [error] (120006)APR does not understand this error code: proxy: read response failed from (null) (localhost)<br />
[Thu Aug 13 16:19:04 2009] [error] (70007)The timeout specified has expired: ajp_ilink_receive() can't receive header<br />
<br />
<br />
I was.  I fixed these by adding <br />
<br />
 maxThreads="256"<br />
<br />
 to the ajp connector:<br />
<verbatim><br />
 < Connector port="8009" address="${jboss.bind.address}" protocol="AJP/1.3"<br />
         emptySessionPath="true" enableLookups="false" redirectPort="8443"<br />
         maxThreads="256"<br />
        / ><br />
</verbatim><br />
<br />
Took me a long time to figure this out.  the 256 number was derived by what the MaxClients had set in the httpd.conf. <br />
<br />
Enjoy.<br />
 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.binaryfrost.com/index.php?/archives/231-PageRank-Sculpting..html" rel="alternate" title="PageRank Sculpting." />
        <author>
            <name>cfrostrun</name>
                    </author>
    
        <published>2009-06-16T22:39:19Z</published>
        <updated>2009-06-16T22:39:19Z</updated>
        <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=atom1.0&amp;type=comments&amp;cid=231</wfw:commentRss>
    
            <category scheme="http://www.binaryfrost.com/index.php?/categories/2-Blogs-Podcasts" label="Blogs &amp; Podcasts" term="Blogs &amp; Podcasts" />
    
        <id>http://www.binaryfrost.com/index.php?/archives/231-guid.html</id>
        <title type="html">PageRank Sculpting.</title>
        <content type="xhtml" xml:base="http://www.binaryfrost.com/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <a href="http://www.mattcutts.com/blog/pagerank-sculpting/">PageRank Sculpting</a> 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.binaryfrost.com/index.php?/archives/230-Dave-Matthews-philosphy-of-creating-music...html" rel="alternate" title="Dave Matthews philosphy of creating music.." />
        <author>
            <name>cfrostrun</name>
                    </author>
    
        <published>2009-05-21T23:42:06Z</published>
        <updated>2009-05-22T00:10:45Z</updated>
        <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=atom1.0&amp;type=comments&amp;cid=230</wfw:commentRss>
    
            <category scheme="http://www.binaryfrost.com/index.php?/categories/5-Dave-Matthews-Band" label="Dave Matthews Band" term="Dave Matthews Band" />
    
        <id>http://www.binaryfrost.com/index.php?/archives/230-guid.html</id>
        <title type="html">Dave Matthews philosphy of creating music..</title>
        <content type="xhtml" xml:base="http://www.binaryfrost.com/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <a href="http://www.biography.com/video.do?name=musicians&bcpid=1740037445&bclid=1753282639&bctid=1729299779">Bio Bits</a>, also got an email about <a href="http://tapulous.com/blog/2009/05/tap-shake-me-like-a-monkey/">Tap Tap Revenges DMB themed app</a>. 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.binaryfrost.com/index.php?/archives/229-Wolfram-Alpha.html" rel="alternate" title="Wolfram Alpha" />
        <author>
            <name>cfrostrun</name>
                    </author>
    
        <published>2009-05-15T23:52:14Z</published>
        <updated>2009-05-16T02:12:10Z</updated>
        <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=atom1.0&amp;type=comments&amp;cid=229</wfw:commentRss>
    
            <category scheme="http://www.binaryfrost.com/index.php?/categories/9-Technology" label="Technology" term="Technology" />
    
        <id>http://www.binaryfrost.com/index.php?/archives/229-guid.html</id>
        <title type="html">Wolfram Alpha</title>
        <content type="xhtml" xml:base="http://www.binaryfrost.com/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                I heard about this a few months back and have been curious about how well it'll answer questions.  <br />
<br />
<a href="http://www.wolframalpha.com/index.html">Wolfram Alpha</a> is going live in a few minutes CST.<br />
<br />
I think I'm going to ask it:<br />
<br />
How far is Saturn from Mars on June 1st, 2009?<br />
<br />
We'll see how well it performs.  (By the way, I have no idea what the answer is <img src="http://www.binaryfrost.com/templates/default/img/emoticons/smile.png" alt=":-)" style="display: inline; vertical-align: bottom;" class="emoticon" />)<br />
<br />
I don't think it understood exactly what i was asking, however it gave me an answer...<br />
<br />
<!-- s9ymdb:195 --><img class="serendipity_image_left"  style="float: left; border: 0px; padding-left: 5px; padding-right: 5px;" src="http://www.binaryfrost.com/uploads/my_first_wolfram_alpha_query.png" alt="" /> 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.binaryfrost.com/index.php?/archives/228-f-k.com.html" rel="alternate" title="f-k.com" />
        <author>
            <name>cfrostrun</name>
                    </author>
    
        <published>2009-04-28T00:21:26Z</published>
        <updated>2009-04-28T00:26:52Z</updated>
        <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=atom1.0&amp;type=comments&amp;cid=228</wfw:commentRss>
    
            <category scheme="http://www.binaryfrost.com/index.php?/categories/7-Travel" label="Travel" term="Travel" />
    
        <id>http://www.binaryfrost.com/index.php?/archives/228-guid.html</id>
        <title type="html">f-k.com</title>
        <content type="xhtml" xml:base="http://www.binaryfrost.com/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                So I'm in SF this week on some business, and today I had lunch down on the Embarcadero, and I got one of these "eco-friendly" cups.  I've never heard of them before so I thought I'd pass a link over to the <a href="http://f-k.com/">eco-friendly manufacturing company</a>.  Good for them.<br />
<br />
From there web-site:<br />
<br />
 	<br />
<a href="http://www.f-k.com/component/option,com_content2/Itemid,74/task,view/id,185/cat,65/">Greenware® portion cups and lids</a> 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.<br />
 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.binaryfrost.com/index.php?/archives/223-some-devil-to-house.html" rel="alternate" title="some devil to house" />
        <author>
            <name>cfrostrun</name>
                    </author>
    
        <published>2009-04-17T02:25:00Z</published>
        <updated>2009-04-02T02:26:27Z</updated>
        <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=atom1.0&amp;type=comments&amp;cid=223</wfw:commentRss>
    
            <category scheme="http://www.binaryfrost.com/index.php?/categories/5-Dave-Matthews-Band" label="Dave Matthews Band" term="Dave Matthews Band" />
    
        <id>http://www.binaryfrost.com/index.php?/archives/223-guid.html</id>
        <title type="html">some devil to house</title>
        <content type="xhtml" xml:base="http://www.binaryfrost.com/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                This is what happens when you put <a href="http://www.youtube.com/watch?v=oXm3gCdhKf4">some devil to house</a>.. 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.binaryfrost.com/index.php?/archives/227-Road-to-Area-51.html" rel="alternate" title="Road to Area 51" />
        <author>
            <name>cfrostrun</name>
                    </author>
    
        <published>2009-04-14T02:33:46Z</published>
        <updated>2009-04-14T02:34:37Z</updated>
        <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=atom1.0&amp;type=comments&amp;cid=227</wfw:commentRss>
    
            <category scheme="http://www.binaryfrost.com/index.php?/categories/3-Binary-Bits" label="Binary Bits" term="Binary Bits" />
    
        <id>http://www.binaryfrost.com/index.php?/archives/227-guid.html</id>
        <title type="html">Road to Area 51</title>
        <content type="xhtml" xml:base="http://www.binaryfrost.com/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <a href="http://www.latimes.com/features/la-mag-april052009-backstory,0,3355162.story">Road to Area 51</a> was featured on <a href="http://news.slashdot.org/article.pl?sid=09/04/13/2240202&art_pos=4">slashdot today</a>. 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.binaryfrost.com/index.php?/archives/225-Behinds-the-scenes-for-Bartender...html" rel="alternate" title="Behinds the scenes for Bartender.." />
        <author>
            <name>cfrostrun</name>
                    </author>
    
        <published>2009-04-13T03:22:00Z</published>
        <updated>2009-04-02T03:22:39Z</updated>
        <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=atom1.0&amp;type=comments&amp;cid=225</wfw:commentRss>
    
            <category scheme="http://www.binaryfrost.com/index.php?/categories/5-Dave-Matthews-Band" label="Dave Matthews Band" term="Dave Matthews Band" />
    
        <id>http://www.binaryfrost.com/index.php?/archives/225-guid.html</id>
        <title type="html">Behinds the scenes for Bartender..</title>
        <content type="xhtml" xml:base="http://www.binaryfrost.com/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/eBW9Zu-K-RY&hl=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/eBW9Zu-K-RY&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object> 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.binaryfrost.com/index.php?/archives/224-DMB-2002-Winter-Olympics-Performing.html" rel="alternate" title="DMB @ 2002 Winter Olympics Performing " />
        <author>
            <name>cfrostrun</name>
                    </author>
    
        <published>2009-04-12T03:02:00Z</published>
        <updated>2009-04-02T03:18:48Z</updated>
        <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=atom1.0&amp;type=comments&amp;cid=224</wfw:commentRss>
    
            <category scheme="http://www.binaryfrost.com/index.php?/categories/5-Dave-Matthews-Band" label="Dave Matthews Band" term="Dave Matthews Band" />
    
        <id>http://www.binaryfrost.com/index.php?/archives/224-guid.html</id>
        <title type="html">DMB @ 2002 Winter Olympics Performing </title>
        <content type="xhtml" xml:base="http://www.binaryfrost.com/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                Ants Marching...<br />
<br />
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/A9U8A5DB8rs&hl=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/A9U8A5DB8rs&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object><br />
<br />
<br />
Bartender ... <br />
<br />
<br />
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/5iwNR3Vk0rE&hl=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/5iwNR3Vk0rE&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object> 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.binaryfrost.com/index.php?/archives/222-DMB-on-60-Minutes.html" rel="alternate" title="DMB on 60 Minutes" />
        <author>
            <name>cfrostrun</name>
                    </author>
    
        <published>2009-04-11T01:06:00Z</published>
        <updated>2009-04-02T01:07:32Z</updated>
        <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=atom1.0&amp;type=comments&amp;cid=222</wfw:commentRss>
    
            <category scheme="http://www.binaryfrost.com/index.php?/categories/5-Dave-Matthews-Band" label="Dave Matthews Band" term="Dave Matthews Band" />
    
        <id>http://www.binaryfrost.com/index.php?/archives/222-guid.html</id>
        <title type="html">DMB on 60 Minutes</title>
        <content type="xhtml" xml:base="http://www.binaryfrost.com/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                Part 1...<br />
<br />
<br />
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/2fXofXsKGTc&hl=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/2fXofXsKGTc&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object><br />
<br />
<br />
Part 2...<br />
<br />
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/zcjUCjqz1aA&hl=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/zcjUCjqz1aA&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object> 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.binaryfrost.com/index.php?/archives/221-DMB-Interview.html" rel="alternate" title="DMB Interview" />
        <author>
            <name>cfrostrun</name>
                    </author>
    
        <published>2009-04-09T00:51:00Z</published>
        <updated>2009-04-02T01:04:28Z</updated>
        <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=atom1.0&amp;type=comments&amp;cid=221</wfw:commentRss>
    
            <category scheme="http://www.binaryfrost.com/index.php?/categories/5-Dave-Matthews-Band" label="Dave Matthews Band" term="Dave Matthews Band" />
    
        <id>http://www.binaryfrost.com/index.php?/archives/221-guid.html</id>
        <title type="html">DMB Interview</title>
        <content type="xhtml" xml:base="http://www.binaryfrost.com/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/lpV99DQfj0s&hl=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/lpV99DQfj0s&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object> 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.binaryfrost.com/index.php?/archives/226-Getting-crazy-busy-with-iPhone-development....html" rel="alternate" title="Getting crazy busy with iPhone development... " />
        <author>
            <name>cfrostrun</name>
                    </author>
    
        <published>2009-04-08T01:59:25Z</published>
        <updated>2009-04-08T02:05:21Z</updated>
        <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=atom1.0&amp;type=comments&amp;cid=226</wfw:commentRss>
    
            <category scheme="http://www.binaryfrost.com/index.php?/categories/17-How-do-you-like-them-Apples!" label="How do you like them Apples!?" term="How do you like them Apples!?" />
    
        <id>http://www.binaryfrost.com/index.php?/archives/226-guid.html</id>
        <title type="html">Getting crazy busy with iPhone development... </title>
        <content type="xhtml" xml:base="http://www.binaryfrost.com/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                Things have been crazy as of late.. We're getting close to wrapping up a 1.1.0 release on <a href="http://golf.heywhatsthescore.com">Hey, What's the Golf Score?</a> ... should be rolling it out in the coming weeks..  I've also have been contacted by a couple people about doing some iPhone development for them.  Meeting one person tomorrow night... I'm interested in seeing where that goes..  Worst case is I'll continue to develop the handful of apps I have in our <a href="http://www.frostylabs.com">labs</a>..   A couple are showing some real promise..  Oh yes, and then there's always my 9-5 gig... Needless to say.. I'm busy busy busy... <br />
<br />
peace all.. 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://www.binaryfrost.com/index.php?/archives/220-typical-Dave-with-Ants-Marching.html" rel="alternate" title="typical Dave with Ants Marching" />
        <author>
            <name>cfrostrun</name>
                    </author>
    
        <published>2009-04-07T00:50:00Z</published>
        <updated>2009-04-02T00:51:44Z</updated>
        <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=atom1.0&amp;type=comments&amp;cid=220</wfw:commentRss>
    
            <category scheme="http://www.binaryfrost.com/index.php?/categories/5-Dave-Matthews-Band" label="Dave Matthews Band" term="Dave Matthews Band" />
    
        <id>http://www.binaryfrost.com/index.php?/archives/220-guid.html</id>
        <title type="html">typical Dave with Ants Marching</title>
        <content type="xhtml" xml:base="http://www.binaryfrost.com/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/kUpec0kwCfo&hl=en&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/kUpec0kwCfo&hl=en&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object> 
            </div>
        </content>
        
    </entry>

</feed>