<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>code</title>
	<atom:link href="http://tonynorcross.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://tonynorcross.wordpress.com</link>
	<description></description>
	<lastBuildDate>Mon, 24 Oct 2011 21:31:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='tonynorcross.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>code</title>
		<link>http://tonynorcross.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://tonynorcross.wordpress.com/osd.xml" title="code" />
	<atom:link rel='hub' href='http://tonynorcross.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Automatically get the max file size upload in .NET</title>
		<link>http://tonynorcross.wordpress.com/2011/05/23/automatically-get-the-max-file-size-upload-in-net/</link>
		<comments>http://tonynorcross.wordpress.com/2011/05/23/automatically-get-the-max-file-size-upload-in-net/#comments</comments>
		<pubDate>Mon, 23 May 2011 11:01:32 +0000</pubDate>
		<dc:creator>tone</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[max]]></category>
		<category><![CDATA[size]]></category>
		<category><![CDATA[upload]]></category>
		<category><![CDATA[web.config]]></category>

		<guid isPermaLink="false">http://www.tonynorcross.com/?p=516</guid>
		<description><![CDATA[Just a quick note about automatically displaying your maximum file size setting as prescribed in the web.config file (in this case 50MB)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tonynorcross.wordpress.com&amp;blog=9354617&amp;post=516&amp;subd=tonynorcross&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Just a quick note about automatically displaying your maximum file size setting as prescribed in the web.config file (in this case 50MB)<br />
<pre class="brush: plain;">
  httpRuntime maxRequestLength=&quot;51200&quot; executionTimeout=&quot;60&quot;
</pre></p>
<p><pre class="brush: plain;">
  Configuration config =
      WebConfigurationManager.OpenWebConfiguration(&quot;~&quot;);
  HttpRuntimeSection section =
      config.GetSection(&quot;system.web/httpRuntime&quot;) as HttpRuntimeSection;
  double maxFileSize =
      Math.Round(section.MaxRequestLength / 1024.0, 1); //
  Upload.Text +=
      &quot;Max &quot; + string.Format(&quot;{0:0.#} MB&quot;, maxFileSize);
</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tonynorcross.wordpress.com/516/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tonynorcross.wordpress.com/516/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tonynorcross.wordpress.com/516/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tonynorcross.wordpress.com/516/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tonynorcross.wordpress.com/516/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tonynorcross.wordpress.com/516/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tonynorcross.wordpress.com/516/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tonynorcross.wordpress.com/516/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tonynorcross.wordpress.com/516/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tonynorcross.wordpress.com/516/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tonynorcross.wordpress.com/516/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tonynorcross.wordpress.com/516/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tonynorcross.wordpress.com/516/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tonynorcross.wordpress.com/516/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tonynorcross.wordpress.com&amp;blog=9354617&amp;post=516&amp;subd=tonynorcross&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tonynorcross.wordpress.com/2011/05/23/automatically-get-the-max-file-size-upload-in-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a8313ec9f917a2432996ceaacbfa711?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tone</media:title>
		</media:content>
	</item>
		<item>
		<title>Google Maps and Streetview</title>
		<link>http://tonynorcross.wordpress.com/2011/05/22/google-maps-and-streetview/</link>
		<comments>http://tonynorcross.wordpress.com/2011/05/22/google-maps-and-streetview/#comments</comments>
		<pubDate>Sun, 22 May 2011 22:20:24 +0000</pubDate>
		<dc:creator>tone</dc:creator>
				<category><![CDATA[APIs]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[google maps]]></category>
		<category><![CDATA[google. map]]></category>
		<category><![CDATA[location]]></category>
		<category><![CDATA[streetview]]></category>
		<category><![CDATA[v3]]></category>

		<guid isPermaLink="false">http://www.tonynorcross.com/?p=511</guid>
		<description><![CDATA[Imagine you have an admin area in which your client could specify several outlets, this could be a way to grab the locations and streetviews for these outlets ready to be reused later on the front end of the site. In this example, if you have made your location available through your browser, then the &#8230;<p><a href="http://tonynorcross.wordpress.com/2011/05/22/google-maps-and-streetview/" class="more-link">Read More</a></p><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tonynorcross.wordpress.com&amp;blog=9354617&amp;post=511&amp;subd=tonynorcross&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Imagine you have an admin area in which your client could specify several outlets, this could be a way to grab the locations and streetviews for these outlets ready to be reused later on the front end of the site. In this example, if you have made your location available through your browser, then the application will try to automatically find you. Failing this, just enter a postcode. You are then able to move the marker and also the Google Pegman to point at your location, thus initiating the Streetview. On the right you will see the information for the Marker (Location) and the Streetview position. This information could be used later for customers looking for outlets <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
To start just enter a UK postcode and click search.<br />
<a href="http://www.tonynorcross.com/lab/js/googlemapapi/street.htm">http://www.tonynorcross.com/lab/js/googlemapapi/street.htm</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tonynorcross.wordpress.com/511/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tonynorcross.wordpress.com/511/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tonynorcross.wordpress.com/511/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tonynorcross.wordpress.com/511/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tonynorcross.wordpress.com/511/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tonynorcross.wordpress.com/511/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tonynorcross.wordpress.com/511/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tonynorcross.wordpress.com/511/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tonynorcross.wordpress.com/511/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tonynorcross.wordpress.com/511/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tonynorcross.wordpress.com/511/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tonynorcross.wordpress.com/511/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tonynorcross.wordpress.com/511/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tonynorcross.wordpress.com/511/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tonynorcross.wordpress.com&amp;blog=9354617&amp;post=511&amp;subd=tonynorcross&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tonynorcross.wordpress.com/2011/05/22/google-maps-and-streetview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a8313ec9f917a2432996ceaacbfa711?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tone</media:title>
		</media:content>
	</item>
		<item>
		<title>Scraping pages with ASP.NET</title>
		<link>http://tonynorcross.wordpress.com/2011/05/15/scraping-pages-with-asp-net/</link>
		<comments>http://tonynorcross.wordpress.com/2011/05/15/scraping-pages-with-asp-net/#comments</comments>
		<pubDate>Sun, 15 May 2011 20:30:21 +0000</pubDate>
		<dc:creator>tone</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[crossdomain]]></category>
		<category><![CDATA[handler]]></category>
		<category><![CDATA[policy]]></category>
		<category><![CDATA[scrape]]></category>
		<category><![CDATA[url]]></category>

		<guid isPermaLink="false">http://www.tonynorcross.com/?p=491</guid>
		<description><![CDATA[From time to time I need to grab data from web pages or XML where there is no &#8220;crossdomain.xml&#8221; policy available, but obviously with the permission of the website owner. To do this I use the WebClient object in the following way: The result of this can be demonstrated below: http://www.tonynorcross.com/lab/aspnet/handler/pagescrapedemo.htm<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tonynorcross.wordpress.com&amp;blog=9354617&amp;post=491&amp;subd=tonynorcross&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>From time to time I need to grab data from web pages or XML where there is no &#8220;crossdomain.xml&#8221; policy available, but obviously with the permission of the website owner. To do this I use the WebClient object in the following way:<br />
<pre class="brush: plain;">
using System;
using System.Web;
using System.Net;
using System.Text;
public class TextGrab : IHttpHandler {
  public void ProcessRequest (HttpContext context) {
    if (context.Request.QueryString[&quot;i&quot;] != null){
      string url = context.Request.QueryString[&quot;i&quot;];
      WebClient wc = new WebClient();
      try {
        string scrape = UTF8Encoding.Default.GetString(wc.DownloadData(url));
        context.Response.Write(scrape);
      }
      catch (Exception ex) {
        context.Response.Write(&quot;Please check the URL supplied is correct.&quot;);
      }
    }
  }
  public bool IsReusable {
    get {return true;}
  }
}
</pre><br />
The result of this can be demonstrated below:</p>
<p><a href="http://www.tonynorcross.com/lab/aspnet/handler/pagescrapedemo.htm">http://www.tonynorcross.com/lab/aspnet/handler/pagescrapedemo.htm</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tonynorcross.wordpress.com/491/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tonynorcross.wordpress.com/491/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tonynorcross.wordpress.com/491/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tonynorcross.wordpress.com/491/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tonynorcross.wordpress.com/491/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tonynorcross.wordpress.com/491/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tonynorcross.wordpress.com/491/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tonynorcross.wordpress.com/491/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tonynorcross.wordpress.com/491/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tonynorcross.wordpress.com/491/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tonynorcross.wordpress.com/491/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tonynorcross.wordpress.com/491/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tonynorcross.wordpress.com/491/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tonynorcross.wordpress.com/491/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tonynorcross.wordpress.com&amp;blog=9354617&amp;post=491&amp;subd=tonynorcross&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tonynorcross.wordpress.com/2011/05/15/scraping-pages-with-asp-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a8313ec9f917a2432996ceaacbfa711?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tone</media:title>
		</media:content>
	</item>
		<item>
		<title>Twitter Followers with JavaScript</title>
		<link>http://tonynorcross.wordpress.com/2011/05/08/twitter-followers-with-javascript/</link>
		<comments>http://tonynorcross.wordpress.com/2011/05/08/twitter-followers-with-javascript/#comments</comments>
		<pubDate>Sun, 08 May 2011 20:35:51 +0000</pubDate>
		<dc:creator>tone</dc:creator>
				<category><![CDATA[APIs]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[followers]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.tonynorcross.com/?p=483</guid>
		<description><![CDATA[Okay, after doing the Facebook Fans post, I thought I should do the same for Twitter Followers. And here it is &#8211; but there is a restriction of 150 requests per hour. So if it stops updating you know why. http://www.tonynorcross.com/lab/js/twitter/twitter-followers.htm<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tonynorcross.wordpress.com&amp;blog=9354617&amp;post=483&amp;subd=tonynorcross&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Okay, after doing the Facebook Fans post, I thought I should do the same for Twitter Followers. And here it is &#8211; but there is a restriction of 150 requests per hour. So if it stops updating you know why.<br />
<a href="http://www.tonynorcross.com/lab/js/twitter/twitter-followers.htm">http://www.tonynorcross.com/lab/js/twitter/twitter-followers.htm</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tonynorcross.wordpress.com/483/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tonynorcross.wordpress.com/483/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tonynorcross.wordpress.com/483/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tonynorcross.wordpress.com/483/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tonynorcross.wordpress.com/483/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tonynorcross.wordpress.com/483/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tonynorcross.wordpress.com/483/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tonynorcross.wordpress.com/483/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tonynorcross.wordpress.com/483/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tonynorcross.wordpress.com/483/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tonynorcross.wordpress.com/483/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tonynorcross.wordpress.com/483/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tonynorcross.wordpress.com/483/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tonynorcross.wordpress.com/483/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tonynorcross.wordpress.com&amp;blog=9354617&amp;post=483&amp;subd=tonynorcross&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tonynorcross.wordpress.com/2011/05/08/twitter-followers-with-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a8313ec9f917a2432996ceaacbfa711?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tone</media:title>
		</media:content>
	</item>
		<item>
		<title>Facebook Fans with JavaScript</title>
		<link>http://tonynorcross.wordpress.com/2011/05/08/facebook-fans/</link>
		<comments>http://tonynorcross.wordpress.com/2011/05/08/facebook-fans/#comments</comments>
		<pubDate>Sun, 08 May 2011 00:41:41 +0000</pubDate>
		<dc:creator>tone</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[fans]]></category>

		<guid isPermaLink="false">http://www.tonynorcross.com/?p=471</guid>
		<description><![CDATA[Just wanted to do a Facebook Fans scraper in JavaScript while I felt the urge. http://www.tonynorcross.com/lab/js/facebook-graph/facebook-fans.htm This shows 10 of the more popular Facebook Fan pages with the live number of fans being constantly refreshed.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tonynorcross.wordpress.com&amp;blog=9354617&amp;post=471&amp;subd=tonynorcross&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Just wanted to do a Facebook Fans scraper in JavaScript while I felt the urge.<br />
<a href="http://www.tonynorcross.com/lab/js/facebook-graph/facebook-fans.htm">http://www.tonynorcross.com/lab/js/facebook-graph/facebook-fans.htm</a><br />
This shows 10 of the more popular Facebook Fan pages with the live number of fans being constantly refreshed.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tonynorcross.wordpress.com/471/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tonynorcross.wordpress.com/471/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tonynorcross.wordpress.com/471/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tonynorcross.wordpress.com/471/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tonynorcross.wordpress.com/471/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tonynorcross.wordpress.com/471/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tonynorcross.wordpress.com/471/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tonynorcross.wordpress.com/471/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tonynorcross.wordpress.com/471/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tonynorcross.wordpress.com/471/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tonynorcross.wordpress.com/471/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tonynorcross.wordpress.com/471/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tonynorcross.wordpress.com/471/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tonynorcross.wordpress.com/471/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tonynorcross.wordpress.com&amp;blog=9354617&amp;post=471&amp;subd=tonynorcross&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tonynorcross.wordpress.com/2011/05/08/facebook-fans/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a8313ec9f917a2432996ceaacbfa711?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tone</media:title>
		</media:content>
	</item>
		<item>
		<title>Call a webpage with VBScript for Scheduled Task</title>
		<link>http://tonynorcross.wordpress.com/2011/05/06/call-a-webpage-with-vbscript-for-scheduled-task/</link>
		<comments>http://tonynorcross.wordpress.com/2011/05/06/call-a-webpage-with-vbscript-for-scheduled-task/#comments</comments>
		<pubDate>Fri, 06 May 2011 15:07:07 +0000</pubDate>
		<dc:creator>tone</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[vbsript]]></category>
		<category><![CDATA[call]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[schedule]]></category>
		<category><![CDATA[task]]></category>
		<category><![CDATA[url]]></category>
		<category><![CDATA[Vbscript]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.tonynorcross.com/?p=458</guid>
		<description><![CDATA[I did use a custom app which read a text file containing a list of URLs, but for some reason this didn&#8217;t work as a Scheduled Task despite setting the work directory. So I resorted to this handy vbscript which worked a treat. Just save this code in a .vbs file &#8220;mytask.vbs&#8221;. Navigate to &#8220;Task &#8230;<p><a href="http://tonynorcross.wordpress.com/2011/05/06/call-a-webpage-with-vbscript-for-scheduled-task/" class="more-link">Read More</a></p><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tonynorcross.wordpress.com&amp;blog=9354617&amp;post=458&amp;subd=tonynorcross&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I did use a custom app which read a text file containing a list of URLs, but for some reason this didn&#8217;t work as a Scheduled Task despite setting the work directory. So I resorted to this handy vbscript which worked a treat.<br />
<pre class="brush: plain;">
Call ViewURL()
Sub ViewURL()
        On Error Resume Next
        Dim objReq
        Dim URL
        Set objReq = CreateObject(&quot;Microsoft.XMLHTTP&quot;)
        URL = &quot;http://www.google.com&quot; 'Change this as required
        objReq.open &quot;POST&quot;, URL , false
        objReq.Send
        Set objReq = Nothing
End Sub
</pre><br />
Just save this code in a .vbs file &#8220;mytask.vbs&#8221;. Navigate to &#8220;Task Scheduler&#8221; in<br />
Program Files&gt;Accessories&gt;System Tools&gt;<br />
and follow the on screen instructions.</p>
<p>If you want the task to run even when the user is not logged in, then make sure you check the &#8220;Run whether the user is logged in or not&#8221; option and the user account running the task has sufficient privileges &#8211; ideally don&#8217;t just use the admin account.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tonynorcross.wordpress.com/458/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tonynorcross.wordpress.com/458/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tonynorcross.wordpress.com/458/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tonynorcross.wordpress.com/458/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tonynorcross.wordpress.com/458/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tonynorcross.wordpress.com/458/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tonynorcross.wordpress.com/458/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tonynorcross.wordpress.com/458/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tonynorcross.wordpress.com/458/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tonynorcross.wordpress.com/458/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tonynorcross.wordpress.com/458/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tonynorcross.wordpress.com/458/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tonynorcross.wordpress.com/458/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tonynorcross.wordpress.com/458/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tonynorcross.wordpress.com&amp;blog=9354617&amp;post=458&amp;subd=tonynorcross&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tonynorcross.wordpress.com/2011/05/06/call-a-webpage-with-vbscript-for-scheduled-task/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a8313ec9f917a2432996ceaacbfa711?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tone</media:title>
		</media:content>
	</item>
		<item>
		<title>Backup or copy table with SQL</title>
		<link>http://tonynorcross.wordpress.com/2011/05/06/t-sql-backup-or-copy-table-with-code/</link>
		<comments>http://tonynorcross.wordpress.com/2011/05/06/t-sql-backup-or-copy-table-with-code/#comments</comments>
		<pubDate>Fri, 06 May 2011 11:47:23 +0000</pubDate>
		<dc:creator>tone</dc:creator>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[copy]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[t-sql]]></category>
		<category><![CDATA[table]]></category>

		<guid isPermaLink="false">http://www.tonynorcross.com/?p=454</guid>
		<description><![CDATA[To backup/copy a table, in this case a table called &#8220;MyTable&#8221; in SQL you can do this: If you just want an empty table, but with the same headings and data types then do this: Note the name of the new table, this is so when the tables are sorted by name, then they will &#8230;<p><a href="http://tonynorcross.wordpress.com/2011/05/06/t-sql-backup-or-copy-table-with-code/" class="more-link">Read More</a></p><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tonynorcross.wordpress.com&amp;blog=9354617&amp;post=454&amp;subd=tonynorcross&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>To backup/copy a table, in this case a table called &#8220;MyTable&#8221; in SQL you can do this:<br />
<pre class="brush: plain;">
SELECT * INTO [dbo].[MyTable_20110506] FROM [dbo].[MyTable]
</pre></p>
<p>If you just want an empty table, but with the same headings and data types then do this:<br />
<pre class="brush: plain;">
SELECT * INTO [dbo].[MyTable_20110506] FROM [dbo].[MyTable] WHERE 1 = -1
</pre><br />
Note the name of the new table, this is so when the tables are sorted by name, then they will be listed in order of creation and associated with the corresponding table.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tonynorcross.wordpress.com/454/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tonynorcross.wordpress.com/454/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tonynorcross.wordpress.com/454/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tonynorcross.wordpress.com/454/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tonynorcross.wordpress.com/454/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tonynorcross.wordpress.com/454/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tonynorcross.wordpress.com/454/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tonynorcross.wordpress.com/454/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tonynorcross.wordpress.com/454/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tonynorcross.wordpress.com/454/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tonynorcross.wordpress.com/454/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tonynorcross.wordpress.com/454/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tonynorcross.wordpress.com/454/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tonynorcross.wordpress.com/454/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tonynorcross.wordpress.com&amp;blog=9354617&amp;post=454&amp;subd=tonynorcross&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tonynorcross.wordpress.com/2011/05/06/t-sql-backup-or-copy-table-with-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a8313ec9f917a2432996ceaacbfa711?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tone</media:title>
		</media:content>
	</item>
		<item>
		<title>Promotional codes generator in T-SQL</title>
		<link>http://tonynorcross.wordpress.com/2011/05/06/t-sql-on-pack-code-generator/</link>
		<comments>http://tonynorcross.wordpress.com/2011/05/06/t-sql-on-pack-code-generator/#comments</comments>
		<pubDate>Fri, 06 May 2011 10:38:04 +0000</pubDate>
		<dc:creator>tone</dc:creator>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[code generate]]></category>
		<category><![CDATA[random]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[t-sql]]></category>
		<category><![CDATA[unique]]></category>

		<guid isPermaLink="false">http://www.tonynorcross.com/?p=450</guid>
		<description><![CDATA[Recently asked to generate codes for an on pack promotion. As I frequently forget how to do these type of SQL things. I thought I would record this. Firstly, create a table to hold you codes and set an index on the code column, also make it a primary key &#8211; so there is no &#8230;<p><a href="http://tonynorcross.wordpress.com/2011/05/06/t-sql-on-pack-code-generator/" class="more-link">Read More</a></p><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tonynorcross.wordpress.com&amp;blog=9354617&amp;post=450&amp;subd=tonynorcross&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Recently asked to generate codes for an on pack promotion. As I frequently forget how to do these type of SQL things. I thought I would record this.<br />
Firstly, create  a table to hold you codes and set an index on the code column, also make it a primary key &#8211; so there is no way we can have multiple entries with the same value.<br />
<pre class="brush: plain;">
CREATE TABLE [dbo].[Codes](
	 [nvarchar](10) NOT NULL,
 CONSTRAINT [PK_Code] PRIMARY KEY CLUSTERED
(
	 ASC
)WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF,
           IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON,
           ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
) ON [PRIMARY]
</pre></p>
<p>Once done, create and run the following stored procedure &#8211; this is for 100000 codes of 10 alpha-numeric characters, just adjust as required.<br />
<pre class="brush: plain;">
CREATE PROCEDURE [dbo].[uspCodeGenerate]
AS
BEGIN
	SET NOCOUNT ON;
	DECLARE @ui uniqueidentifier
	DECLARE @longcode nvarchar(36)
	DECLARE @code nvarchar(10)
	-- DELETE FROM [AppData].[dbo].[Code] --if you want to clear the table
	WHILE (SELECT count (*)	FROM dbo.Codes WITH (INDEX(IX_Code)) ) &amp;lt; 100000
             BEGIN
		SET @ui = newid()
	 	SET @longcode = (SELECT CAST(@ui AS NVARCHAR(36)))
	 	SET @longcode = (SELECT REPLACE(@longcode,&#039;-&#039;,&#039;&#039;))
		SET @code = (SELECT SUBSTRING(@longcode,1,10))
	 	-- replace the vowels, as these are often excluded,  where &#039;?&#039; are characters of your choice!
		SET @code = (SELECT REPLACE(@code,&#039;A&#039;,&#039;?&#039;))
		SET @code = (SELECT REPLACE(@code,&#039;E&#039;,&#039;?&#039;))
		SET @code = (SELECT REPLACE(@code,&#039;I&#039;,&#039;?&#039;))
		SET @code = (SELECT REPLACE(@code,&#039;O&#039;,&#039;?&#039;))
		SET @code = (SELECT REPLACE(@code,&#039;U&#039;,&#039;?&#039;))

		IF NOT EXISTS (SELECT * FROM dbo.Codes WITH (INDEX(IX_Code)) WHERE code = @code)
		BEGIN
			INSERT INTO dbo.Codes (code) VALUES (@code)
		END
           END
END
</pre></p>
<p>By default, theses are displayed in alpha numeric order, so to mix this up a bit we can do this:<br />
<pre class="brush: plain;">
SELECT *  FROM [AppData].[dbo].[Code] order by newid()
</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tonynorcross.wordpress.com/450/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tonynorcross.wordpress.com/450/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tonynorcross.wordpress.com/450/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tonynorcross.wordpress.com/450/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tonynorcross.wordpress.com/450/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tonynorcross.wordpress.com/450/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tonynorcross.wordpress.com/450/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tonynorcross.wordpress.com/450/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tonynorcross.wordpress.com/450/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tonynorcross.wordpress.com/450/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tonynorcross.wordpress.com/450/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tonynorcross.wordpress.com/450/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tonynorcross.wordpress.com/450/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tonynorcross.wordpress.com/450/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tonynorcross.wordpress.com&amp;blog=9354617&amp;post=450&amp;subd=tonynorcross&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tonynorcross.wordpress.com/2011/05/06/t-sql-on-pack-code-generator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a8313ec9f917a2432996ceaacbfa711?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tone</media:title>
		</media:content>
	</item>
		<item>
		<title>Bullet Dodger Javascript Game</title>
		<link>http://tonynorcross.wordpress.com/2011/04/16/bullet-dodger-javascript-game/</link>
		<comments>http://tonynorcross.wordpress.com/2011/04/16/bullet-dodger-javascript-game/#comments</comments>
		<pubDate>Sat, 16 Apr 2011 10:17:21 +0000</pubDate>
		<dc:creator>tone</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[bullet]]></category>
		<category><![CDATA[dodger]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[retro]]></category>

		<guid isPermaLink="false">http://www.tonynorcross.com/?p=434</guid>
		<description><![CDATA[Wanted to make a simple Javascript game which will work on almost all browsers, so I left out canvas and all the HTML5 goodness and went retro with this one. http://www.tonynorcross.com/lab/js/game/bullet-dodger/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tonynorcross.wordpress.com&amp;blog=9354617&amp;post=434&amp;subd=tonynorcross&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Wanted to make a simple Javascript game which will work on almost all browsers, so I left out canvas and all the HTML5 goodness and went retro with this one.</p>
<p><a href="http://www.tonynorcross.com/lab/js/game/bullet-dodger/">http://www.tonynorcross.com/lab/js/game/bullet-dodger/</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tonynorcross.wordpress.com/434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tonynorcross.wordpress.com/434/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tonynorcross.wordpress.com/434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tonynorcross.wordpress.com/434/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tonynorcross.wordpress.com/434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tonynorcross.wordpress.com/434/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tonynorcross.wordpress.com/434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tonynorcross.wordpress.com/434/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tonynorcross.wordpress.com/434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tonynorcross.wordpress.com/434/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tonynorcross.wordpress.com/434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tonynorcross.wordpress.com/434/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tonynorcross.wordpress.com/434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tonynorcross.wordpress.com/434/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tonynorcross.wordpress.com&amp;blog=9354617&amp;post=434&amp;subd=tonynorcross&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tonynorcross.wordpress.com/2011/04/16/bullet-dodger-javascript-game/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a8313ec9f917a2432996ceaacbfa711?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tone</media:title>
		</media:content>
	</item>
		<item>
		<title>Social scraping</title>
		<link>http://tonynorcross.wordpress.com/2011/01/03/social-scraping/</link>
		<comments>http://tonynorcross.wordpress.com/2011/01/03/social-scraping/#comments</comments>
		<pubDate>Mon, 03 Jan 2011 01:14:52 +0000</pubDate>
		<dc:creator>tone</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[APIs]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.tonynorcross.com/?p=429</guid>
		<description><![CDATA[I recently looked into using the various APIs to grab for site visits from Google Analytics, fans from Facebook and Followers from Twitter. To get the data to scrap every  hour, I used a .NET &#8220;cache expire&#8221; event to grab the latest feeds. Javascript perioidically grabs the next feed item from a .NET handler. For the APIs; http://apiwiki.twitter.com &#8230;<p><a href="http://tonynorcross.wordpress.com/2011/01/03/social-scraping/" class="more-link">Read More</a></p><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tonynorcross.wordpress.com&amp;blog=9354617&amp;post=429&amp;subd=tonynorcross&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="/socialstats/display/default.htm" target="_blank"><img class="alignnone size-full wp-image-437" title="Social stats" src="http://tonynorcross.files.wordpress.com/2011/01/socialstats.jpg?w=545" alt="Social counter"   /></a></p>
<p>I recently looked into using the various APIs to grab for site visits from Google Analytics, fans from Facebook and Followers from Twitter. To get the data to scrap every  hour, I used a .NET &#8220;cache expire&#8221; event to grab the latest feeds. Javascript perioidically grabs the next feed item from a .NET handler.</p>
<p>For the APIs;</p>
<ul>
<li><a href="http://apiwiki.twitter.com">http://apiwiki.twitter.com</a></li>
<li><a href="http://developers.facebook.com/docs/api">http://developers.facebook.com/docs/api</a></li>
<li><a href="http://code.google.com/apis/analytics/">http://code.google.com/apis/analytics/</a></li>
</ul>
<p>For the sake of this demo I have omitted the Google Analytics stats &#8211; as I don&#8217;t want to share stat info of all my employers clients <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  &#8211; <a href="/socialstats/display/default.htm" target="_blank">the result can be seen here</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tonynorcross.wordpress.com/429/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tonynorcross.wordpress.com/429/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tonynorcross.wordpress.com/429/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tonynorcross.wordpress.com/429/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tonynorcross.wordpress.com/429/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tonynorcross.wordpress.com/429/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tonynorcross.wordpress.com/429/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tonynorcross.wordpress.com/429/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tonynorcross.wordpress.com/429/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tonynorcross.wordpress.com/429/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tonynorcross.wordpress.com/429/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tonynorcross.wordpress.com/429/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tonynorcross.wordpress.com/429/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tonynorcross.wordpress.com/429/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tonynorcross.wordpress.com&amp;blog=9354617&amp;post=429&amp;subd=tonynorcross&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tonynorcross.wordpress.com/2011/01/03/social-scraping/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a8313ec9f917a2432996ceaacbfa711?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tone</media:title>
		</media:content>

		<media:content url="http://tonynorcross.files.wordpress.com/2011/01/socialstats.jpg" medium="image">
			<media:title type="html">Social stats</media:title>
		</media:content>
	</item>
	</channel>
</rss>
