<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	
	>
<channel>
	<title>
	Comments on: Cricket PowerGadget	</title>
	<atom:link href="https://lobsterpot.com.au/blog/2007/01/03/cricket-powergadget/feed/" rel="self" type="application/rss+xml" />
	<link>https://lobsterpot.com.au/blog/2007/01/03/cricket-powergadget/</link>
	<description></description>
	<lastBuildDate>Tue, 06 Mar 2007 23:13:11 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>
	<item>
		<title>
		By: robfarley		</title>
		<link>https://lobsterpot.com.au/blog/2007/01/03/cricket-powergadget/#comment-212</link>

		<dc:creator><![CDATA[robfarley]]></dc:creator>
		<pubDate>Tue, 06 Mar 2007 23:13:11 +0000</pubDate>
		<guid isPermaLink="false">/blogs/robfarley/archive/2007/01/03/cricket-powergadget.aspx#comment-212</guid>

					<description><![CDATA[This isn&#039;t VB.Net code. This is PowerShell to put into PowerGadgets. In VB.Net you could use a WebClient object to download the string from that location (altered to the right match), and then use a regular expression to get the score.

But I&#039;m not going to write the code for you - this was an exercise in PowerGadgets, not VB.Net]]></description>
			<content:encoded><![CDATA[<p>This isn&#8217;t VB.Net code. This is PowerShell to put into PowerGadgets. In VB.Net you could use a WebClient object to download the string from that location (altered to the right match), and then use a regular expression to get the score.</p>
<p>But I&#8217;m not going to write the code for you &#8211; this was an exercise in PowerGadgets, not VB.Net</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Jahangir Moin		</title>
		<link>https://lobsterpot.com.au/blog/2007/01/03/cricket-powergadget/#comment-211</link>

		<dc:creator><![CDATA[Jahangir Moin]]></dc:creator>
		<pubDate>Tue, 06 Mar 2007 22:43:29 +0000</pubDate>
		<guid isPermaLink="false">/blogs/robfarley/archive/2007/01/03/cricket-powergadget.aspx#comment-211</guid>

					<description><![CDATA[i think u done a great job for junior programmer ,but i can&#039;t understand these lines of code for grabing score board .please provide me these lines of code in vb.net b/c i also want to display live cricket score board in my website so i need your help or you can provide  resources in this regard 
thanks]]></description>
			<content:encoded><![CDATA[<p>i think u done a great job for junior programmer ,but i can&#8217;t understand these lines of code for grabing score board .please provide me these lines of code in vb.net b/c i also want to display live cricket score board in my website so i need your help or you can provide  resources in this regard<br />
thanks</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: robfarley		</title>
		<link>https://lobsterpot.com.au/blog/2007/01/03/cricket-powergadget/#comment-210</link>

		<dc:creator><![CDATA[robfarley]]></dc:creator>
		<pubDate>Tue, 09 Jan 2007 17:30:53 +0000</pubDate>
		<guid isPermaLink="false">/blogs/robfarley/archive/2007/01/03/cricket-powergadget.aspx#comment-210</guid>

					<description><![CDATA[Ah, so I guess then you don&#039;t even need a second line...

[Regex]::Match((new-object Net.WebClient).DownloadString(&quot;http://content-aus.cricinfo.com/ausveng/engine/current/match/249226.html?view=live;wrappertype=mainframe&quot;),&quot;&lt;title&gt;(.*)&lt;/title&gt;&quot;,&quot;IgnoreCase&quot;).Groups[1].Value]]></description>
			<content:encoded><![CDATA[<p>Ah, so I guess then you don&#8217;t even need a second line&#8230;</p>
<p>[Regex]::Match((new-object Net.WebClient).DownloadString(&#8220;http://content-aus.cricinfo.com/ausveng/engine/current/match/249226.html?view=live;wrappertype=mainframe&#8221;),&#8221;<title>(.*)</title>&#8220;,&#8221;IgnoreCase&#8221;).Groups[1].Value</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Lars Haupt-Hansen		</title>
		<link>https://lobsterpot.com.au/blog/2007/01/03/cricket-powergadget/#comment-209</link>

		<dc:creator><![CDATA[Lars Haupt-Hansen]]></dc:creator>
		<pubDate>Tue, 09 Jan 2007 08:17:33 +0000</pubDate>
		<guid isPermaLink="false">/blogs/robfarley/archive/2007/01/03/cricket-powergadget.aspx#comment-209</guid>

					<description><![CDATA[Using RegEx to then use substring is like crossing the river for water (not sure if thats a saying anywhere else than Denmark):

$ret = (new-object Net.WebClient).DownloadString(&quot;http://content-aus.cricinfo.com/ausveng/engine/current/match/249226.html?view=live;wrappertype=mainframe&quot;)
[Regex]::Match($ret,&quot;&lt;title&gt;(.*)&lt;/title&gt;&quot;,&quot;IgnoreCase&quot;).Groups[1].Value

]]></description>
			<content:encoded><![CDATA[<p>Using RegEx to then use substring is like crossing the river for water (not sure if thats a saying anywhere else than Denmark):</p>
<p>$ret = (new-object Net.WebClient).DownloadString(&#8220;http://content-aus.cricinfo.com/ausveng/engine/current/match/249226.html?view=live;wrappertype=mainframe&#8221;)<br />
[Regex]::Match($ret,&#8221;<title>(.*)</title>&#8220;,&#8221;IgnoreCase&#8221;).Groups[1].Value</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: robfarley		</title>
		<link>https://lobsterpot.com.au/blog/2007/01/03/cricket-powergadget/#comment-208</link>

		<dc:creator><![CDATA[robfarley]]></dc:creator>
		<pubDate>Fri, 05 Jan 2007 18:42:34 +0000</pubDate>
		<guid isPermaLink="false">/blogs/robfarley/archive/2007/01/03/cricket-powergadget.aspx#comment-208</guid>

					<description><![CDATA[You&#039;ll have to change the match number, but that&#039;s not hard to work out. :) Just replace the 249226 with whatever applies to the match you&#039;re interested in.]]></description>
			<content:encoded><![CDATA[<p>You&#8217;ll have to change the match number, but that&#8217;s not hard to work out. 🙂 Just replace the 249226 with whatever applies to the match you&#8217;re interested in.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Abhishek225		</title>
		<link>https://lobsterpot.com.au/blog/2007/01/03/cricket-powergadget/#comment-207</link>

		<dc:creator><![CDATA[Abhishek225]]></dc:creator>
		<pubDate>Fri, 05 Jan 2007 04:11:28 +0000</pubDate>
		<guid isPermaLink="false">/blogs/robfarley/archive/2007/01/03/cricket-powergadget.aspx#comment-207</guid>

					<description><![CDATA[Very cool! Congatulations on 5-0 sweep in the ashes. I will use your script as a basis to get India-SA scores!

-Abhishek]]></description>
			<content:encoded><![CDATA[<p>Very cool! Congatulations on 5-0 sweep in the ashes. I will use your script as a basis to get India-SA scores!</p>
<p>-Abhishek</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
