<?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>Robsta.id.au &#187; Code</title>
	<atom:link href="http://robsta.id.au/tags/code/feed/" rel="self" type="application/rss+xml" />
	<link>http://robsta.id.au</link>
	<description>Progressive Technology Playground of Rob Morgan</description>
	<lastBuildDate>Sat, 02 Jan 2010 21:32:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Developing with Apache Ant</title>
		<link>http://robsta.id.au/2007/11/08/developing-with-apache-ant/</link>
		<comments>http://robsta.id.au/2007/11/08/developing-with-apache-ant/#comments</comments>
		<pubDate>Thu, 08 Nov 2007 12:10:56 +0000</pubDate>
		<dc:creator>robsta</dc:creator>
				<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://robsta.id.au/2007/11/08/developing-with-apache-ant/</guid>
		<description><![CDATA[I recently discovered Apache Ant and it&#8217;s an absolute godsend! Ant is an automated build system written in Java. You write build(make) files in XML. This allows Ant to be cross-platform which is very handy in my line of work. Previously I used a combination of manual tasks, windows batch files and shell scripts on [...]]]></description>
			<content:encoded><![CDATA[<p>I recently discovered <a href="http://ant.apache.org">Apache Ant</a> and it&#8217;s an absolute godsend! Ant is an automated build system written in Java. You write build(make) files in XML. This allows Ant to be cross-platform which is very handy in my line of work. Previously I used a combination of manual tasks, windows batch files and shell scripts on linux to manage my builds.</p>
]]></content:encoded>
			<wfw:commentRss>http://robsta.id.au/2007/11/08/developing-with-apache-ant/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Using cURL to Post Updates to Twitter</title>
		<link>http://robsta.id.au/2007/04/08/using-curl-to-post-updates-to-twitter/</link>
		<comments>http://robsta.id.au/2007/04/08/using-curl-to-post-updates-to-twitter/#comments</comments>
		<pubDate>Sun, 08 Apr 2007 01:34:45 +0000</pubDate>
		<dc:creator>robsta</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[My Projects]]></category>

		<guid isPermaLink="false">http://robsta.id.au/2007/04/08/using-curl-to-post-updates-to-twitter/</guid>
		<description><![CDATA[Heres a small snippet of code I found that will successfully post updates to your Twitter account:
curl --basic --user username:password --data status="Having fun with cURL" http://twitter.com/statuses/update.xml

The command &#8216;curl&#8217; is normally present on most Linux distro&#8217;s these days. Windows users will need to Google and download it.  To use the code above simply replace &#8216;username:password&#8217; [...]]]></description>
			<content:encoded><![CDATA[<p>Heres a small snippet of code I found that will successfully post updates to your <a href="http://twitter.com">Twitter </a>account:</p>
<p><code>curl --basic --user username:password --data status="Having fun with cURL" http://twitter.com/statuses/update.xml<br />
</code></p>
<p>The command &#8216;curl&#8217; is normally present on most Linux distro&#8217;s these days. Windows users will need to Google and download it.  To use the code above simply replace &#8216;username:password&#8217; with your real &#8216;<em>username:password</em>&#8216;, the string of status in double quotes is the update that will actually appear on your Twitter page. The url present at the end of the code is the Twitter API endpoint.</p>
<p>Twitter will reply with a response similar to the following:</p>
<p><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt;<br />
&lt;status&gt;<br />
&lt;created_at&gt;Sun Apr 08 01:25:56 +0000 2007&lt;/created_at&gt;<br />
&lt;id&gt;12345xxx&lt;/id&gt;<br />
&lt;text&gt;Having fun with cURL&lt;/text&gt;<br />
&lt;user&gt;<br />
&lt;id&gt;xxxxxxx&lt;/id&gt;<br />
&lt;name&gt;Your Name&lt;/name&gt;<br />
&lt;screen_name&gt;your_username&lt;/screen_name&gt;<br />
&lt;location&gt;&lt;/location&gt;<br />
&lt;description&gt;&lt;/description&gt;<br />
&lt;profile_image_url&gt;[removed]&lt;/profile_image_url&gt;<br />
&lt;url&gt;&lt;/url&gt;<br />
&lt;protected&gt;true&lt;/protected&gt;<br />
&lt;/user&gt;<br />
&lt;/status&gt;<br />
</code><br />
Note: I have replaced specific numbers with &#8216;x&#8217;s.</p>
]]></content:encoded>
			<wfw:commentRss>http://robsta.id.au/2007/04/08/using-curl-to-post-updates-to-twitter/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Prototype 1.5</title>
		<link>http://robsta.id.au/2007/01/19/prototype-15/</link>
		<comments>http://robsta.id.au/2007/01/19/prototype-15/#comments</comments>
		<pubDate>Fri, 19 Jan 2007 12:42:59 +0000</pubDate>
		<dc:creator>robsta</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://robsta.id.au/2007/01/19/prototype-15/</guid>
		<description><![CDATA[Prototype 1.5 has finally been released as stable along with a new website. The team have also started a documentation effort to make life easier.
]]></description>
			<content:encoded><![CDATA[<p>Prototype 1.5 has finally been released as stable along with a <a title="Prototype Site" href="http://prototypejs.org/">new website</a>. The team have also started a documentation effort to make life easier.</p>
]]></content:encoded>
			<wfw:commentRss>http://robsta.id.au/2007/01/19/prototype-15/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sitemap Specification</title>
		<link>http://robsta.id.au/2006/11/21/sitemap-specification/</link>
		<comments>http://robsta.id.au/2006/11/21/sitemap-specification/#comments</comments>
		<pubDate>Tue, 21 Nov 2006 14:40:22 +0000</pubDate>
		<dc:creator>robsta</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://robsta.id.au/2006/11/21/sitemap-specification/</guid>
		<description><![CDATA[Google, Microsoft and Yahoo now all support the Sitemap 0.90 specification. This is great as it allows webmasters to inform search engines about pages on their sites that are available for crawling. Web Developers can also save time by using an adopted protocol.
]]></description>
			<content:encoded><![CDATA[<p>Google, Microsoft and Yahoo now all support the <a title="Protocol" href="http://www.sitemaps.org/protocol.html">Sitemap 0.90 specification</a>. This is great as it allows webmasters to inform search engines about pages on their sites that are available for crawling. Web Developers can also save time by using an adopted protocol.</p>
]]></content:encoded>
			<wfw:commentRss>http://robsta.id.au/2006/11/21/sitemap-specification/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend Framework</title>
		<link>http://robsta.id.au/2006/09/12/zend-framework/</link>
		<comments>http://robsta.id.au/2006/09/12/zend-framework/#comments</comments>
		<pubDate>Tue, 12 Sep 2006 07:16:03 +0000</pubDate>
		<dc:creator>robsta</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://robsta.id.au/2006/09/12/zend-framework/</guid>
		<description><![CDATA[This is looking promising.
]]></description>
			<content:encoded><![CDATA[<p><a title="Zend Framework" href="http://framework.zend.com/manual">This is looking promising</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://robsta.id.au/2006/09/12/zend-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello Ruby</title>
		<link>http://robsta.id.au/2005/11/30/hello-ruby/</link>
		<comments>http://robsta.id.au/2005/11/30/hello-ruby/#comments</comments>
		<pubDate>Wed, 30 Nov 2005 09:38:00 +0000</pubDate>
		<dc:creator>robsta</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://pc.robsta.id.au/?p=87</guid>
		<description><![CDATA[The Ruby programming language has recently become widely adopted with the advent of key web frameworks and applications. The big player, being Ruby on Rails has wide-spread it&#8217;s usage infectiously. I&#8217;ve always been a loyal PHP fan &#8211; having used it for five years now. I did not want to spend time learning another programming [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://en.wikipedia.org/wiki/Ruby_programming_language">Ruby</a> programming language has recently become widely adopted with the advent of key web frameworks and applications. The big player, being <a href="http://www.rubyonrails.org/">Ruby on Rails</a> has wide-spread it&#8217;s usage infectiously. I&#8217;ve always been a loyal PHP fan &#8211; having used it for five years now. I did not want to spend time learning another programming language again. I tried <a href="http://cakephp.org/">Cake</a> and other popular frameworks but they are still to immature to consider for a large-scale application.</p>
<p>Finally the <a href="http://digg.com/programming/Try_Ruby_-_Interactive_Tutorial_Demo">digg link</a>, (should be close to 1000 diggs) on the front page tempted me to try an <a href="http://tryruby.hobix.com/">interactive hands-on demo</a>. Its too simple, easy and fast. I&#8217;m going to test-drive rails soon on a small application and see whether it shapes up to the endless hype floating around. I might even end up hooked. Time is money, simple is good.</p>
]]></content:encoded>
			<wfw:commentRss>http://robsta.id.au/2005/11/30/hello-ruby/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Sveasoft Firmware</title>
		<link>http://robsta.id.au/2005/08/30/free-sveasoft-firmware/</link>
		<comments>http://robsta.id.au/2005/08/30/free-sveasoft-firmware/#comments</comments>
		<pubDate>Tue, 30 Aug 2005 02:15:13 +0000</pubDate>
		<dc:creator>robsta</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://pc.robsta.id.au/?p=78</guid>
		<description><![CDATA[This guy offers the Sveasoft firmware for download at no extra cost (free as in beer)!  He also talks about how he was abused by Sveasoft and how they are in violation of the GPL.
read more &#124; digg story
]]></description>
			<content:encoded><![CDATA[<p>This guy offers the Sveasoft firmware for download at no extra cost (free as in beer)!  He also talks about how he was abused by Sveasoft and how they are in violation of the GPL.</p>
<p><a href="http://wrt54g.thermoman.de/">read more</a> | <a href="http://digg.com/software/Free_Sveasoft_Firmware">digg story</a></p>
]]></content:encoded>
			<wfw:commentRss>http://robsta.id.au/2005/08/30/free-sveasoft-firmware/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Regular Expression Library</title>
		<link>http://robsta.id.au/2005/07/14/regular-expression-library/</link>
		<comments>http://robsta.id.au/2005/07/14/regular-expression-library/#comments</comments>
		<pubDate>Thu, 14 Jul 2005 05:58:31 +0000</pubDate>
		<dc:creator>robsta</dc:creator>
				<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://pc.robsta.id.au/?p=72</guid>
		<description><![CDATA[A library of pre-written regular expressions that you can plug into your code. Also, features a regular expression online testing engine against inputted text or a website text. Very handy resource!
read more &#124; digg story
]]></description>
			<content:encoded><![CDATA[<p>A library of pre-written regular expressions that you can plug into your code. Also, features a regular expression online testing engine against inputted text or a website text. Very handy resource!</p>
<p><a href="http://www.regexlib.com/">read more</a> | <a href="http://digg.com/programming/Regular_Expression_Library">digg story</a></p>
]]></content:encoded>
			<wfw:commentRss>http://robsta.id.au/2005/07/14/regular-expression-library/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Smack my Bitch Up!</title>
		<link>http://robsta.id.au/2005/07/02/112031857252701109/</link>
		<comments>http://robsta.id.au/2005/07/02/112031857252701109/#comments</comments>
		<pubDate>Sat, 02 Jul 2005 15:36:12 +0000</pubDate>
		<dc:creator>robsta</dc:creator>
				<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://pc.robsta.id.au/?p=70</guid>
		<description><![CDATA[I love this cool flash animation [link].
]]></description>
			<content:encoded><![CDATA[<p>I love this cool flash animation <a href="http://www.planetdan.net/pics/misc/tetka.html">[link]</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://robsta.id.au/2005/07/02/112031857252701109/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AJAX Dipping</title>
		<link>http://robsta.id.au/2005/06/20/ajax-dipping/</link>
		<comments>http://robsta.id.au/2005/06/20/ajax-dipping/#comments</comments>
		<pubDate>Mon, 20 Jun 2005 14:22:00 +0000</pubDate>
		<dc:creator>robsta</dc:creator>
				<category><![CDATA[Code]]></category>

		<guid isPermaLink="false">http://pc.robsta.id.au/?p=68</guid>
		<description><![CDATA[I have recently discovered the AJAX-hype out there on the internet. I wont explain what AJAX is, I&#8217;m sure that has been done many times. I wanted to get into it, so I read this helpful article and ajax-ed the digg feed on my sub menu.
]]></description>
			<content:encoded><![CDATA[<p>I have recently discovered the <a rel="ajax" href="http://www.adaptivepath.com/publications/essays/archives/000385.php">AJAX</a>-hype out there on the internet. I wont explain what AJAX is, I&#8217;m sure that has been done many times. I wanted to get into it, so I read this <a href="http://www.phpbuilder.com/columns/kassemi20050606.php3">helpful article</a> and ajax-ed the <a href="#subDigg">digg feed</a> on my sub menu.</p>
]]></content:encoded>
			<wfw:commentRss>http://robsta.id.au/2005/06/20/ajax-dipping/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
