<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>The Vince Files</title>
	
	<link>http://www.thevincefiles.net</link>
	<description>My rants, ramblings, and reflections</description>
	<lastBuildDate>Sun, 28 Jun 2009 22:37:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/TheVinceFiles" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Finding files: Recursion vs Stack…FIGHT!</title>
		<link>http://feedproxy.google.com/~r/TheVinceFiles/~3/H0T2m2caChw/finding-files-recursion-vs-stackfight</link>
		<comments>http://www.thevincefiles.net/2009/06/07/finding-files-recursion-vs-stackfight#comments</comments>
		<pubDate>Sun, 07 Jun 2009 07:22:57 +0000</pubDate>
		<dc:creator>Vince</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://www.thevincefiles.net/?p=196</guid>
		<description><![CDATA[I was just poking around the Internet and came across a blog post highlighting a solution to a common problem: find all files matching a criteria (e.g. *.dll) from a folder and all its subfolders (e.g. c:\windows and all subdirectories).  In this post, I compare the speed of two methods using code in C#.
Method [...]<p>a</p>
]]></description>
			<content:encoded><![CDATA[<p>I was just poking around the Internet and came across a blog post highlighting a solution to a common problem: find all files matching a criteria (e.g. *.dll) from a folder and all its subfolders (e.g. c:\windows and all subdirectories).  In this post, I compare the speed of two methods using code in C#.<span id="more-196"></span></p>
<p>Method 1 involves recursion. I saw a sample at <a href="http://www.gfilter.net/default.aspx?Post=Code-Snippet-of-the-Day%3a-Recursive-File-Finder" target="_blank">http://www.gfilter.net/default.aspx?Post=Code-Snippet-of-the-Day%3a-Recursive-File-Finder</a> and <a href="http://support.microsoft.com/kb/303974" target="_blank">MSDN</a>.</p>
<p>Method 2 involves using a stack to process subdirectories in a Last in, first out manner.  I saw this from <a href="http://dotnetperls.com/Content/Recursively-Find-Files.aspx" target="_blank">http://dotnetperls.com/Content/Recursively-Find-Files.aspx</a>.</p>
<p>The result from finding all 13,300+ DLLs in c:\windows and all subdirectories:</p>
<p>FileFinderRecursive Elapsed: 6876ms.<br />
FileFinderStack Elapsed: 5725ms.</p>
<p>The stack method was almost 20% faster.</p>
<p>Here&#8217;s some code from a quick C# console app I just wrote to compare the two:</p>
<pre name="code" class="c-sharp">
class Program
{
    static void Main(string[] args)
    {
        Stopwatch s;
        IFinder finder;
        string startDir = @"c:\windows";
        string matchType = "*.dll";

        //Test Recursion method
        s = Stopwatch.StartNew();
        finder = new FileFinderRecursive();
        var filesRecursive = finder.Find(startDir, matchType);
        s.Stop();
        Console.WriteLine("FileFinderRecursive Elapsed: " + s.ElapsedMilliseconds + "ms.");

        //Test Stack method
        s = Stopwatch.StartNew();
        finder = new FileFinderStack();
        var filesStack = finder.Find(startDir, matchType);
        s.Stop();
        Console.WriteLine("FileFinderStack Elapsed: " + s.ElapsedMilliseconds + "ms.");    

        Console.Read();
    }
}
public interface IFinder
{
    List&lt;FileInfo&gt; Find(string startDir, string matchType);
}

/// &lt;summary&gt;
/// Recursively finds a list of files that match the specified critiria
/// &lt;/summary&gt;
public class FileFinderRecursive : IFinder
{
    private Dictionary&lt;FileInfo, int&gt; files;

    public List&lt;FileInfo&gt; Find(string startDir, string matchType)
    {
        files = new Dictionary&lt;FileInfo, int&gt;();
        findFiles(startDir, matchType);

        return files.Keys.ToList();
    }

    private void findFiles(string startDir, string matchType)
    {
        DirectoryInfo d = new DirectoryInfo(startDir);
        FileInfo[] fileInfos;
        try
        {
            fileInfos = d.GetFiles(matchType);
        }
        catch
        {
            return; //most likely Access Exception.  BAIL!
        }
        foreach (FileInfo f in fileInfos)
        {
            if (!files.ContainsKey(f))
            {
                files.Add(f, 0);
            }
        }

        if (d.GetDirectories().Length &gt; 0)
        {
            foreach (DirectoryInfo subD in d.GetDirectories())
            {
                findFiles(subD.FullName, matchType);
            }
        }
    }
}

/// &lt;summary&gt;
/// Finds a list of files that match the specified criteria using a stack
/// &lt;/summary&gt;
public class FileFinderStack : IFinder
{
    public List&lt;FileInfo&gt; Find(string startDir, string matchType)
    {
        DirectoryInfo dirStart = new DirectoryInfo(startDir);
        List&lt;FileInfo&gt; result = new List&lt;FileInfo&gt;();
        Stack&lt;DirectoryInfo&gt; stack = new Stack&lt;DirectoryInfo&gt;();
        stack.Push(dirStart);
        while (stack.Count &gt; 0)
        {
            DirectoryInfo dir = stack.Pop();
            try
            {
                result.AddRange(dir.GetFiles(matchType));
                DirectoryInfo[] subDirs = dir.GetDirectories();
                foreach (DirectoryInfo dn in subDirs)
                {
                    stack.Push(dn);
                }
            }
            catch { }
        }
        return result;
    }
}
</pre>
<p>a</p>

<p><a href="http://feedads.g.doubleclick.net/~a/tqNqorCLgs2SWHfzfttyilOFtuw/0/da"><img src="http://feedads.g.doubleclick.net/~a/tqNqorCLgs2SWHfzfttyilOFtuw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/tqNqorCLgs2SWHfzfttyilOFtuw/1/da"><img src="http://feedads.g.doubleclick.net/~a/tqNqorCLgs2SWHfzfttyilOFtuw/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/TheVinceFiles/~4/H0T2m2caChw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.thevincefiles.net/2009/06/07/finding-files-recursion-vs-stackfight/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.thevincefiles.net/2009/06/07/finding-files-recursion-vs-stackfight</feedburner:origLink></item>
		<item>
		<title>Watch UFC 98 Online Live Streaming Replay</title>
		<link>http://feedproxy.google.com/~r/TheVinceFiles/~3/lCzUylSY2OQ/watch-ufc-98-online-live-streaming-replay</link>
		<comments>http://www.thevincefiles.net/2009/05/18/watch-ufc-98-online-live-streaming-replay#comments</comments>
		<pubDate>Tue, 19 May 2009 06:58:42 +0000</pubDate>
		<dc:creator>Vince</dc:creator>
				<category><![CDATA[Interests]]></category>
		<category><![CDATA[MMA]]></category>
		<category><![CDATA[UFC]]></category>

		<guid isPermaLink="false">http://www.thevincefiles.net/?p=182</guid>
		<description><![CDATA[UFC 98 Evans vs Machida fight event, billed as THE UNBEATEN, is scheduled on May 23, 2009 Saturday 7pm PT/10pm ET live on Pay-Per-View (PPV) from the 
MGM Grand Garden Arena in Las Vegas, Nevada.
Main Card:

Rashad Evans (18-0-1) Vs. Lyoto Machida (14-0)

Preliminary Card:

Matt Hughes Vs. Matt Serra
James Irvin Vs. Drew McFedries
Yushin Okami Vs. Dan Miller
Sean [...]<p>a</p>
]]></description>
			<content:encoded><![CDATA[<p><strong><span><span class="IL_SPAN">UFC</span> 98 Evans vs Machida</span></strong> fight event, billed as <strong>THE UNBEATEN,</strong> is scheduled on <strong>May 23, 2009</strong><span> Saturday 7pm PT/10pm ET live on Pay-Per-View (PPV) from the </span></p>
<input name="IL_MARKER" type="hidden" />MGM Grand Garden Arena in Las Vegas, Nevada.</p>
<p style="text-align: justify;"><strong>Main Card</strong>:</p>
<ul>
<li>Rashad Evans (18-0-1) Vs. Lyoto Machida (14-0)</li>
</ul>
<p style="text-align: justify;"><strong>Preliminary Card</strong>:</p>
<ul>
<li>Matt Hughes Vs. Matt Serra</li>
<li>James Irvin Vs. Drew McFedries</li>
<li>Yushin Okami Vs. Dan Miller</li>
<li>Sean Sherk Vs. Frank Edgar</li>
</ul>
<p style="text-align: justify;"><strong>Undercard</strong>:</p>
<ul>
<li>Brock Larson Vs. Chris Wilson</li>
<li>Pat Barry Vs. Tim Hague</li>
<li>Phillipe Nover Vs. Kyle Bradley</li>
<li>Houston Alexander Vs. Andre Gusmao</li>
<li>Yoshiyuki Yoshida Vs. Brandon Wolff</li>
<li>Dave Kaplan Vs. George Roop</li>
</ul>
<p><object type="application/x-shockwave-flash" height="338" width="450" id="jtv_player_flash" data="http://www.justin.tv/widgets/jtv_player.swf?channel=emmatv7" bgcolor="#000000"><param name="allowFullScreen" value="true" /><param name="movie" value="http://www.justin.tv/widgets/jtv_player.swf" /><param name="flashvars" value="channel=emmatv7&#038;auto_play=false&#038;start_volume=25" /></object></p>
<p><object width="425" height="350" data="http://www.youtube.com/v/K_XHMtOlhSs&amp;feature" type="application/x-shockwave-flash"><param name="src" value="http://www.youtube.com/v/K_XHMtOlhSs&amp;feature" /></object></p>
<p><object width="425" height="350" data="http://www.youtube.com/v/ZaMBI2OnYKQ&amp;feature" type="application/x-shockwave-flash"><param name="src" value="http://www.youtube.com/v/ZaMBI2OnYKQ&amp;feature" /></object></p>
<p>When I find a site hosting a live streaming feed, I&#8217;ll make sure to update this post.</p>
<p>a</p>

<p><a href="http://feedads.g.doubleclick.net/~a/0eou3eoKl_295cRk4hjqQdE2R-4/0/da"><img src="http://feedads.g.doubleclick.net/~a/0eou3eoKl_295cRk4hjqQdE2R-4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/0eou3eoKl_295cRk4hjqQdE2R-4/1/da"><img src="http://feedads.g.doubleclick.net/~a/0eou3eoKl_295cRk4hjqQdE2R-4/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/TheVinceFiles/~4/lCzUylSY2OQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.thevincefiles.net/2009/05/18/watch-ufc-98-online-live-streaming-replay/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.thevincefiles.net/2009/05/18/watch-ufc-98-online-live-streaming-replay</feedburner:origLink></item>
		<item>
		<title>ASP.NET Bundle from TypeMock</title>
		<link>http://feedproxy.google.com/~r/TheVinceFiles/~3/sI97wgNeKYQ/aspnet-bundle-from-typemock</link>
		<comments>http://www.thevincefiles.net/2009/05/18/aspnet-bundle-from-typemock#comments</comments>
		<pubDate>Tue, 19 May 2009 00:36:18 +0000</pubDate>
		<dc:creator>Vince</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[typemock]]></category>

		<guid isPermaLink="false">http://www.thevincefiles.net/?p=180</guid>
		<description><![CDATA[Unit Testing ASP.NET? ASP.NET unit testing has never been this easy.
Typemock is launching a new product for ASP.NET developers – the ASP.NET Bundle &#8211; and for the launch will be giving out FREE licenses to bloggers and their readers.
The ASP.NET Bundle is the ultimate ASP.NET unit testing solution, and offers both Typemock Isolator, a unit [...]<p>a</p>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.typemock.com/">Unit Testing</a> ASP.NET? <a href="http://www.typemock.com/ASP.NET_unit_testing_page.php">ASP.NET unit testing</a> has never been this easy.</p>
<p>Typemock is launching a new product for ASP.NET developers – the <strong>ASP.NET Bundle</strong> &#8211; and for the launch will be giving out <span style="color: #006600;"><strong>FREE licenses</strong></span> to bloggers and their readers.</p>
<p>The ASP.NET Bundle is the ultimate ASP.NET unit testing solution, and offers both <a href="http://www.typemock.com/">Typemock Isolator</a>, a <a href="http://www.typemock.com/">unit test</a> tool and <a href="http://sm-art.biz/Ivonna.aspx">Ivonna</a>, the Isolator add-on for <a href="http://sm-art.biz/Ivonna.aspx">ASP.NET unit testing</a>, for a bargain price.</p>
<p>Typemock Isolator is a leading <a href="http://www.typemock.com/">.NET unit testing</a> tool (C# and VB.NET) for many ‘hard to test’ technologies such as <a href="http://typemock.com/sharepointpage.php">SharePoint</a>, <a href="http://www.typemock.com/ASP.NET_unit_testing_page.php">ASP.NET</a>, <a href="http://www.typemock.com/ASP.NET_unit_testing_page.php">MVC</a>, <a href="http://www.typemock.com/wcfpage.php">WCF</a>, WPF, <a href="http://www.typemock.com/Silverlight_unit_testing_page.php">Silverlight</a> and more. Note that for <a href="http://www.typemock.com/Silverlight_unit_testing_page.php">unit testing Silverlight</a> there is an open source Isolator add-on called <a href="http://www.typemock.com/Silverlight_unit_testing_page.php">SilverUnit</a>.</p>
<p>The first 60 bloggers who will blog this text in their blog and <a href="http://blog.typemock.com/2009/05/get-free-typemock-licenses-aspnet.html">tell us about it</a>, will get a Free Isolator ASP.NET Bundle license (Typemock Isolator + Ivonna). If you post this in an ASP.NET <strong>dedicated</strong> blog, you&#8217;ll get a license automatically (even if more than 60 submit) during the first week of this announcement.</p>
<p>Also 8 bloggers will get an <strong>additional 2 licenses</strong> (each) to give away to their readers / friends.</p>
<p>Go ahead, click the following link for <a href="http://blog.typemock.com/2009/05/get-free-typemock-licenses-aspnet.html">more information </a>on how to get your free license.</p>
<p>a</p>

<p><a href="http://feedads.g.doubleclick.net/~a/c3iq6WuJ91zcdZNT02ioTrewTzE/0/da"><img src="http://feedads.g.doubleclick.net/~a/c3iq6WuJ91zcdZNT02ioTrewTzE/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/c3iq6WuJ91zcdZNT02ioTrewTzE/1/da"><img src="http://feedads.g.doubleclick.net/~a/c3iq6WuJ91zcdZNT02ioTrewTzE/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/TheVinceFiles/~4/sI97wgNeKYQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.thevincefiles.net/2009/05/18/aspnet-bundle-from-typemock/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.thevincefiles.net/2009/05/18/aspnet-bundle-from-typemock</feedburner:origLink></item>
		<item>
		<title>Karen Zalamea wins Sylvie and Simon Blais Award for Emerging Visual Artists</title>
		<link>http://feedproxy.google.com/~r/TheVinceFiles/~3/J592jWAj1QQ/karen-zalamea-wins-sylvie-and-simon-blais-award-for-emerging-visual-artists</link>
		<comments>http://www.thevincefiles.net/2009/05/17/karen-zalamea-wins-sylvie-and-simon-blais-award-for-emerging-visual-artists#comments</comments>
		<pubDate>Mon, 18 May 2009 04:27:03 +0000</pubDate>
		<dc:creator>Vince</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Karen Zalamea]]></category>

		<guid isPermaLink="false">http://www.thevincefiles.net/?p=176</guid>
		<description><![CDATA[My cousin Karen just won the first ever Sylvie and Simon Blais Award for Emerging Visual Artists.  Way to go, Karen!
She also has a website and blog.  Check them out at http://www.KarenZalamea.Com and http://karenzalamea.blogspot.com/
Here&#8217;s the Press Release:
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;
Montréal,  Wednesday, May 6, 2009 – The Sylvie and Simon Blais Foundation is  pleased to announce the [...]<p>a</p>
]]></description>
			<content:encoded><![CDATA[<p align="justify">My cousin Karen just won the first ever Sylvie and Simon Blais Award for Emerging Visual Artists.  Way to go, Karen!</p>
<p align="justify">She also has a website and blog.  Check them out at <a title="Karen Zalamea" href="http://www.karenzalamea.com" target="_blank">http://www.KarenZalamea.Com</a> and <a href="http://karenzalamea.blogspot.com/" target="_blank">http://karenzalamea.blogspot.com/</a></p>
<p align="justify">Here&#8217;s the Press Release:</p>
<p align="justify">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p align="justify"><span style="font-family: Times New Roman; font-size: small;">Montréal,  Wednesday, May 6, 2009 – The Sylvie and Simon Blais Foundation is  pleased to announce the name of the first recipient of the <strong>Sylvie  and Simon Blais Award for Emerging Visual Artists.</strong> <strong>Karen Zalamea</strong>,  currently at work on an MFA with a concentration in Photography at Concordia  University, has the honour of receiving this award. The Foundation would  also like to salute <strong>Meghan Price </strong> (Concordia University) and <strong>Stéphane Dionne</strong> (UQÀM), who were  among the three finalists for the award. We were very happy with the  high quality of the seventeen applications received, which made the  jury’s final decision an extremely difficult one.</span></p>
<p align="justify"><span style="font-family: Times New Roman; font-size: small;">First and foremost  a photographer, <strong>Karen Zalamea </strong> has broadened her practice to include video, performance and installations.  This young artist explores the notion of work—which she depicts as  a physical experience involving repeated gestures and exertions—as  it defines men and women’s relationships with others and with the  world around them. </span></p>
<p align="justify"><span style="font-family: Times New Roman; font-size: small;">The members  of the jury, John R. Porter, Honorary Director of the Musée national  des beaux-arts du Québec, Lise Lamarche, art historian, Josée Drouin-Brisebois,  Curator of Contemporay Art at the National Gallery of Canada, Éliane  Excoffier, photographer and Simon Blais, met to select the recipient  of the award on April 23. An exhibition of works by <strong>Karen Zalamea</strong> will be held at Galerie Simon Blais from August 5 to September 5 of  this year. </span></p>
<p align="justify"><span style="font-family: Times New Roman; font-size: small;">Sylvie and  Simon Blais wanted to commemorate their gallery’s 20th anniversary  by making a direct contribution to the community. This led to the creation  of the Sylvie and Simon Blais Foundation and the establishment of the <strong> Sylvie and Simon Blais Award for Emerging Visual Artists.</strong> This award—the  only one of its kind in Québec—aims to promote and publicize the  work of young artists by providing a student in a Master of Fine Arts  program at a Québec university with a scholarship and a professional-level  solo exhibition at Galerie Simon Blais during the month of August 2009. <em> We are proud to have been able to put together a jury made up of very  distinguished members of the art scene, who determined the recipient  of the award from among the seventeen applications we received, </em> declared Simon Blais, President of the Foundation.</span></p>
<p align="center"><span style="font-family: Times New Roman; font-size: small;">– 30 –</span></p>
<p align="justify"><span style="font-family: Times New Roman; font-size: small;">For further  information:  Simon Blais, 514 849-1165</span></p>
<ul>
<li>
<ul>
<li>
<ul>
<p align="justify"><span style="font-family: Times New Roman; font-size: small;">Galerie  Simon Blais, 5420 Saint-Laurent Boulevard (north of Fairmount),<br />
Montréal</span></ul>
</li>
</ul>
</li>
</ul>
<ul>
<li>
<ul>
<li>
<ul>
<p align="justify"><span style="font-family: Times New Roman; font-size: small;">Tuesday–Friday,  10 a.m. to 6 p.m., Saturday, 10 a.m. to 5 p.m. </span></p>
</ul>
</li>
</ul>
</li>
</ul>
<p>a</p>

<p><a href="http://feedads.g.doubleclick.net/~a/PS_0ML_3z1wGf2RuIY_vbyjYmzo/0/da"><img src="http://feedads.g.doubleclick.net/~a/PS_0ML_3z1wGf2RuIY_vbyjYmzo/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/PS_0ML_3z1wGf2RuIY_vbyjYmzo/1/da"><img src="http://feedads.g.doubleclick.net/~a/PS_0ML_3z1wGf2RuIY_vbyjYmzo/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/TheVinceFiles/~4/J592jWAj1QQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.thevincefiles.net/2009/05/17/karen-zalamea-wins-sylvie-and-simon-blais-award-for-emerging-visual-artists/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.thevincefiles.net/2009/05/17/karen-zalamea-wins-sylvie-and-simon-blais-award-for-emerging-visual-artists</feedburner:origLink></item>
		<item>
		<title>Watch Pacquiao vs. Hatton Live Online Streaming Replay</title>
		<link>http://feedproxy.google.com/~r/TheVinceFiles/~3/Gs5TJC2TGmo/watch-pacquiao-vs-hatton-live-online-streaming-replay</link>
		<comments>http://www.thevincefiles.net/2009/04/13/watch-pacquiao-vs-hatton-live-online-streaming-replay#comments</comments>
		<pubDate>Tue, 14 Apr 2009 06:27:08 +0000</pubDate>
		<dc:creator>Vince</dc:creator>
				<category><![CDATA[Interests]]></category>
		<category><![CDATA[Hatton]]></category>
		<category><![CDATA[Pacquiao]]></category>

		<guid isPermaLink="false">http://www.thevincefiles.net/?p=172</guid>
		<description><![CDATA[Manny &#8220;Pacman&#8221; Pacquiao Vs Ricky &#8220;The Hitman&#8221; Hatton will be held on May 2, 2009 at MGM Grand Garden Arena. This boxing match is entitled &#8220;Battle of East and West,&#8221; IBO AND RING MAGAZINE LIGHT WELTERWEIGHT 140 LBS. CHAMPIONSHIP.
Part 1:

Part 2:

Part 3:

a
<p>a</p>
]]></description>
			<content:encoded><![CDATA[<p>Manny &#8220;Pacman&#8221; Pacquiao Vs Ricky &#8220;The Hitman&#8221; Hatton will be held on May 2, 2009 at MGM Grand Garden Arena. This boxing match is entitled &#8220;Battle of East and West,&#8221; IBO AND RING MAGAZINE LIGHT WELTERWEIGHT 140 LBS. CHAMPIONSHIP.</p>
<p>Part 1:</p>
<p><object width="425" height="350" data="http://www.youtube.com/v/jh16aFZHPvE" type="application/x-shockwave-flash"><param name="src" value="http://www.youtube.com/v/jh16aFZHPvE" /></object></p>
<p>Part 2:</p>
<p><object width="425" height="350" data="http://www.youtube.com/v/3jNgIwUW3s4" type="application/x-shockwave-flash"><param name="src" value="http://www.youtube.com/v/3jNgIwUW3s4" /></object></p>
<p>Part 3:</p>
<p><object width="425" height="350" data="http://www.youtube.com/v/aVCLR4U5tgY" type="application/x-shockwave-flash"><param name="src" value="http://www.youtube.com/v/aVCLR4U5tgY" /></object></p>
<p>a</p>

<p><a href="http://feedads.g.doubleclick.net/~a/NcyHA-OBTQMnVgm6_xOituq9MiI/0/da"><img src="http://feedads.g.doubleclick.net/~a/NcyHA-OBTQMnVgm6_xOituq9MiI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/NcyHA-OBTQMnVgm6_xOituq9MiI/1/da"><img src="http://feedads.g.doubleclick.net/~a/NcyHA-OBTQMnVgm6_xOituq9MiI/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/TheVinceFiles/~4/Gs5TJC2TGmo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.thevincefiles.net/2009/04/13/watch-pacquiao-vs-hatton-live-online-streaming-replay/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.thevincefiles.net/2009/04/13/watch-pacquiao-vs-hatton-live-online-streaming-replay</feedburner:origLink></item>
	</channel>
</rss>
