<?xml version="1.0" encoding="utf-8"?>

			<rss version="2.0" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://web.resource.org/cc/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">

			<channel>
			<title>Boyzoid&apos;s Blog &amp; Stuff - Ant Stuff</title>
			<link>http://www.boyzoid.com/blog/index.cfm</link>
			<description>The Ramblings of a ganius</description>
			<language>en-us</language>
			<pubDate>Tue, 07 Sep 2010 18:18:42 -0400</pubDate>
			<lastBuildDate>Mon, 04 Feb 2008 01:52:00 -0400</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>scott@boyzoid.com</managingEditor>
			<webMaster>scott@boyzoid.com</webMaster>
			<itunes:subtitle></itunes:subtitle>
			<itunes:summary></itunes:summary>
			<itunes:category text="Technology" />
			<itunes:category text="Technology">
				<itunes:category text="Podcasting" />
			</itunes:category>
			<itunes:category text="Technology">
				<itunes:category text="Tech News" />
			</itunes:category>
			<itunes:keywords></itunes:keywords>
			<itunes:author></itunes:author>
			<itunes:owner>
				<itunes:email>scott@boyzoid.com</itunes:email>
				<itunes:name></itunes:name>
			</itunes:owner>
			
			<itunes:explicit>no</itunes:explicit>
			
			<item>
				<title>18-1 = New York Giants Super Bowl Champs.</title>
				<link>http://www.boyzoid.com/blog/index.cfm/2008/2/4/181--New-York-Giants-Super-Bowl-Champs</link>
				<description>
				
				&lt;p&gt;I do not think there has even been a more satisfying win as a Giants fan (though, the Cowboys game a few weeks ago is close).&#xa0; No one gave the Giants a shot, all the hype was about 19-0 and Tom Brady.&#xa0; Today, during the pre-game, I heard several times that in order to win, the Giants had to play a perfect game, and they did just that. Holding the Pats to less than 50 yards rushing and 14 points (note, they did not even score the 17 Plaxico Buress said they would) was a phenomenal showing. The play where Eli got away from trouble and then connected with David Tyree was awesome, and should be one of the most memorable in Super Bowl history.&lt;br/&gt;&lt;/p&gt;
&lt;p&gt;After the Minnesota game and the 4 interceptions, I jumped off the Eli bus.&#xa0; I would like this post to stand as my official request for permission to get back on.&lt;/p&gt;
&lt;p&gt;What a great win!!!&lt;br/&gt;&lt;/p&gt; 
				</description>
				
				<category>Sports Stuff</category>
				
				<category>Rambling</category>
				
				<category>Ant Stuff</category>
				
				<category>Stuff About Me</category>
				
				<pubDate>Mon, 04 Feb 2008 01:52:00 -0400</pubDate>
				<guid>http://www.boyzoid.com/blog/index.cfm/2008/2/4/181--New-York-Giants-Super-Bowl-Champs</guid>
				
				
			</item>
			
			<item>
				<title>Ant  Can Mail Stuff</title>
				<link>http://www.boyzoid.com/blog/index.cfm/2007/7/23/Ant--Can-Mail-Stuff</link>
				<description>
				
				&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;On a project we are working on,one thing we needed to do was set up
some Ant tasks for deployment to staging and production environments.&#xa0;
For the most part, its pretty straightforward, grab latest from SVN
repo and then use Ant to replace some text in the main configuration
file.&lt;/p&gt;

&lt;p&gt;The entire process can take some time, so I looked for some sort of
an alert or notification that I could use to signal the job was done.&#xa0;
That is when I discovered the &lt;font face=&quot;Courier New, Courier, mono&quot;&gt;&amp;lt;mail&amp;gt;&lt;/font&gt; task in Ant.&lt;/p&gt;

&lt;p&gt;That&apos;s right, among all the cool things Ant can do, it can send
e-mails, even with attachments if you&apos;d like, and like most things in
Ant, once you understand the syntax, its pretty easy.&lt;/p&gt;

&lt;p&gt;First, you will need to download 2 .jar files from Sun and place
them in the lid directory of your Ant install.&#xa0; These files are &lt;a href=&quot;http://java.sun.com/products/javamail&quot;&gt;mail.jar&lt;/a&gt; and &lt;a href=&quot;http://java.sun.com/products/javabeans/jaf/index.jsp&quot;&gt;activation.jar&lt;/a&gt; . (&lt;span style=&quot;font-style: italic;&quot;&gt;These links will send you to the pages to download entire packages, but all you need are the 2 .jar files in &lt;font face=&quot;Courier New, Courier, mono&quot;&gt;{ANT_HOME}\lib&lt;/font&gt;&lt;/span&gt;)&lt;/p&gt;

&lt;p&gt;the syntax for the &lt;font face=&quot;Courier New, Courier, mono&quot;&gt;&amp;lt;mail&amp;gt;&lt;/font&gt; task is pretty straight forward.&lt;/p&gt;

&lt;p&gt;&lt;font face=&quot;Courier New, Courier, mono&quot;&gt;&amp;lt;mail mailhost=&amp;quot;your mail server&amp;quot; subject=&amp;quot;Subject&amp;quot; user=&amp;quot;username&amp;quot; password=&amp;quot;password&amp;quot;&amp;gt;&lt;br/&gt;&#xa0;&#xa0;&#xa0; &amp;lt;from address=&amp;quot;who its from&amp;quot; /&amp;gt;&lt;br/&gt;&#xa0;&#xa0;&#xa0; &amp;lt;to address=&amp;quot;who its to&amp;quot; /&amp;gt;&lt;br/&gt;&#xa0;&#xa0;&#xa0; &amp;lt;message&amp;gt;Your message goes here&amp;lt;/message&amp;gt;&lt;br/&gt;&amp;lt;/mail&amp;gt;&lt;/font&gt;&lt;/p&gt;

&lt;p&gt;If your mail server does not require SMTP authorization, you can leave out the &lt;font face=&quot;Courier New, Courier, mono&quot;&gt;user&lt;/font&gt; and &lt;font face=&quot;Courier New, Courier, mono&quot;&gt;password&lt;/font&gt; attributes of the mail tag,&lt;/p&gt;

&lt;p&gt;For more information on the mail task and it attributes, check out the documentation &lt;a href=&quot;http://ant.apache.org/manual/CoreTasks/mail.html&quot;&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;The more I play around with it, the more I like Ant.&lt;/p&gt; 
				</description>
				
				<category>ColdFusion Stuff</category>
				
				<category>Ant Stuff</category>
				
				<pubDate>Mon, 23 Jul 2007 14:31:00 -0400</pubDate>
				<guid>http://www.boyzoid.com/blog/index.cfm/2007/7/23/Ant--Can-Mail-Stuff</guid>
				
				
			</item>
			</channel></rss>