<?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:blogChannel="http://backend.userland.com/blogChannelModule" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:pingback="http://madskills.com/public/xml/rss/module/pingback/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
  <channel>
    <title>RTur.net</title>
    <description>.NET and Open Source: better together</description>
    <link>http://rtur.net/blog/</link>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <generator>BlogEngine.NET 2.5.0.6</generator>
    <language>en-US</language>
    <blogChannel:blogRoll>http://rtur.net/blog/opml.axd</blogChannel:blogRoll>
    <blogChannel:blink>http://www.dotnetblogengine.net/syndication.axd</blogChannel:blink>
    <dc:creator>RTur.net</dc:creator>
    <dc:title>RTur.net</dc:title>
    <geo:lat>0.000000</geo:lat>
    <geo:long>0.000000</geo:long>
    <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/rtur" /><feedburner:info uri="rtur" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>rtur</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
      <title>Optimizing ASP.NET Page Load Time</title>
      <description>&lt;p&gt;Let's start by creating new empty ASP.NET website and adding Default.aspx with minimal &amp;ldquo;hello world&amp;rdquo; markup. When you access your site and check it with profiler, you&amp;rsquo;ll see single get request for default page.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://rtur.net/blog/image.axd?picture=opt1_5.png" rel="PrettyPhoto"&gt;&lt;img style="background-image: none; margin: 0px 0px 15px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="opt1" src="http://rtur.net/blog/image.axd?picture=opt1_5.png" alt="opt1" width="670" height="75" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;So far so good, right? Now let's push it a little further by adding couple images and references to 2 styles and 2 scripts. Just enough to make reasonably minimalistic test case. Let's check our new site again.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://rtur.net/blog/image.axd?picture=opt2_1.png" rel="PrettyPhoto"&gt;&lt;img style="background-image: none; margin: 0px 0px 15px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="opt2" src="http://rtur.net/blog/image.axd?picture=opt2_thumb_1.png" alt="opt2" width="670" height="142" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Now it looks more interesting. Here what is going on. Browser requests Default.aspx page, IIS constructs it with a help of ASP.NET and passes back HTML markup. Browser parses markup and, as it finds references to external resources, it issues additional requests to grab them. In total in this example we ended up having 7 requests: 1 for page itself, 2 for style sheets, 2 for JavaScripts and 2 for images. Out of the box, it&amp;rsquo;ll give us miserable 44 out of 100 points with Google speed test. Ouch.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://rtur.net/blog/image.axd?picture=opt5_1.png" rel="PrettyPhoto"&gt;&lt;img style="background-image: none; margin: 0px 0px 15px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="opt5" src="http://rtur.net/blog/image.axd?picture=opt5_thumb_1.png" alt="opt5" width="670" height="201" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;So we clearly have a problem. Typical modern site often use lots of JavaScripts and style sheets. Number of requests can drag down performance significantly, and we want combine related resources whenever possible. We need a way to combine all styles together and likewise have a single JavaScript file, no matter how many scripts our application really uses.&lt;/p&gt;
&lt;p&gt;Here is a plan: we intercept that first Default.aspx request, parse prepared HTML output before sending it to browser and replace all references to JS and CSS with reference to combine resource. So instead of:&lt;/p&gt;
&lt;pre class="brush: c-sharp;"&gt;&amp;lt;link rel="stylesheet" href="css1.css" type="text/css" /&amp;gt;
&amp;lt;link rel="stylesheet" href="css2.css" type="text/css" /&amp;gt;
&amp;lt;script src="js1.js" type="text/javascript"&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;script src="js2.js" type="text/javascript"&amp;gt;&amp;lt;/script&amp;gt;&lt;/pre&gt;
&lt;p&gt;We&amp;rsquo;ll get this:&lt;/p&gt;
&lt;pre class="brush: c-sharp;"&gt;&amp;lt;link rel="stylesheet" href="combined.css" type="text/css" /&amp;gt;
&amp;lt;script src="combined.js" type="text/javascript"&amp;gt;&amp;lt;/script&amp;gt;&lt;/pre&gt;
&lt;p&gt;HTTP module can intercept requests using BeginRequest event handler. Below, code in "Application_BeginRequest" will be triggered when client requests any resource from your application, including .aspx pages. If it is a page, we want stream it back to the browser using our own custom filter.&lt;/p&gt;
&lt;pre class="brush: c-sharp;"&gt;using System;
using System.Web;

public class OptimizationModule : IHttpModule
{
    public void Init(HttpApplication application)
    {
        application.BeginRequest += (new EventHandler(Application_BeginRequest));
    }

    private void Application_BeginRequest(Object source, EventArgs e)
    {
        HttpApplication application = (HttpApplication)source;
        HttpContext context = application.Context;
        string fileExtension = VirtualPathUtility.GetExtension(context.Request.FilePath);

        if (fileExtension.Equals(".aspx"))
        {
            context.Response.Filter = new WebResourceFilter(context.Response.Filter);
        }
    }

    public void Dispose() { }
}&lt;/pre&gt;
&lt;p&gt;The concept of Response.Filter might be a little hard to grasp, good overview you can find &lt;a href="http://www.4guysfromrolla.com/articles/120308-1.aspx" target="_blank"&gt;here&lt;/a&gt;. Idea is to provide custom implementation of stream that will be passed down to browser instead of one built by ASP.NET engine. The only interesting part there is Write method, where we can get a hold on HTML about to be sent to client and modify it. In our case, we parse HTML looking for any JavaScript and CSS references, save them all into cache and replace them with reference to combined resources we&amp;rsquo;ll build on the fly later. Combined style reference we stick where we found first CSS style and script reference just before the "&amp;lt;/body&amp;gt;" tag.&lt;/p&gt;
&lt;pre class="brush: c-sharp;"&gt;public override void Write(byte[] buffer, int offset, int count)
{
	var html = Encoding.UTF8.GetString(buffer, offset, count);

	var scriptMatches = Regex.Matches(html, @"\&amp;lt;script.+src=.+(\.js|\.axd).+(&amp;lt;/script&amp;gt;|&amp;gt;)");
	var styleMatches = Regex.Matches(html, @"\&amp;lt;link[^&amp;gt;]+href=[^&amp;gt;]+(\.css)[^&amp;gt;]+&amp;gt;");

	if (scriptMatches.Count &amp;gt; 0)
	{
		foreach (Match match in scriptMatches)
		{
			html = html.Replace(match.Value, "");
			Cache.AddScript(match.Value);
		}
	}

	if (html.Contains("&amp;lt;/body&amp;gt;"))
	{
		html = html.Insert(html.IndexOf("&amp;lt;/body&amp;gt;"),
			"&amp;lt;script src=\"combined.js\" type=\"text/javascript\" defer=\"defer\" async=\"async\"&amp;gt;&amp;lt;/script&amp;gt;" +
			Environment.NewLine);
	}

	if (styleMatches.Count &amp;gt; 0)
	{
		int idx = 0;
		foreach (Match match in styleMatches)
		{
			idx = idx &amp;gt; 0 ? idx : html.IndexOf(match.Value);
			html = html.Replace(match.Value, "");
			Cache.AddStyle(match.Value);
		}

		html = html.Insert(idx, 
			"&amp;lt;link rel=\"stylesheet\" href=\"combined.css\" type=\"text/css\" /&amp;gt;" +
			Environment.NewLine);
	}

	var outdata = Encoding.UTF8.GetBytes(html);
	this.sink.Write(outdata, 0, outdata.GetLength(0));
}&lt;/pre&gt;
&lt;p&gt;The cache implementation is dead simple, it only has two lists to keep scripts and styles removed from HTML markup.&lt;/p&gt;
&lt;pre class="brush: c-sharp;"&gt;using System;
using System.Collections.Generic;

public class Cache
{
    public static List&amp;lt;String&amp;gt; Scripts { get; set; }
    public static List&amp;lt;String&amp;gt; Styles { get; set; }

    public static void AddScript(string s)
    {
        if (Scripts == null)
            Scripts = new List&amp;lt;string&amp;gt;();

        if (!Scripts.Contains(s))
            Scripts.Add(s);
    }

    public static void AddStyle(string s)
    {
        if (Styles == null)
            Styles = new List&amp;lt;string&amp;gt;();

        if (!Styles.Contains(s))
            Styles.Add(s);
    }
}&lt;/pre&gt;
&lt;p&gt;When modified HTML will be sent to browser, it'll find "combined" references and issue requests to get them. Obviously, there are no physical files for IIS to send. But we can take care of it by plugging in HttpHandler that will listen for requests made to get .js and .css files and handle them appropriately. Here is JavaScript handler.&lt;/p&gt;
&lt;pre class="brush: c-sharp;"&gt;using System;
using System.Web;
using System.IO.Compression;

public class ScriptHandler : IHttpHandler
{
    public bool IsReusable { get { return false; } }

    public void ProcessRequest(HttpContext context)
    {
        if (Cache.Scripts != null &amp;amp;&amp;amp; Cache.Scripts.Count &amp;gt; 0)
        {
            string s = "";
            foreach (var src in Cache.Scripts)
            {
                s += ScriptResolver.GetLocalScript(GetFileName(src));
            }
            s = Compressor.Minify(s);
            Compressor.Compress(context);
            context.Response.Write(s);
        }
    }

    string GetFileName(string src)
    {
        int start = src.IndexOf("src=") + 5;
        int end = src.IndexOf(".js") + 3;
        return src.Substring(start, end - start);
    }
}&lt;/pre&gt;
&lt;p&gt;As you can see, it looks up that cached list of removed .js references and goes through them, reading each .js file and combining all scripts into one big string. ScriptResolver just opens and reads file from disk, nothing interesting. Then using Response.Write handler will stream resulting string to the client instead of passing back not-existing "combined.js" file that browser asked for. Before sending, it will use Compressor to minify string and compress response. Our compressor is not too complicated:&lt;/p&gt;
&lt;pre class="brush: c-sharp;"&gt;using System;
using System.Web;
using System.Text;
using System.Text.RegularExpressions;
using System.IO.Compression;

public class Compressor
{
    public static void Compress(HttpContext context)
    {
        if (IsEncodingAccepted("gzip"))
        {
            context.Response.Filter = new GZipStream(context.Response.Filter, CompressionMode.Compress);
            SetEncoding("gzip");
        }
        else if (IsEncodingAccepted("deflate"))
        {
            context.Response.Filter = new DeflateStream(context.Response.Filter, CompressionMode.Compress);
            SetEncoding("deflate");
        }
    }

    public static string Minify(string body)
    {
        string[] lines = body.Split(new string[] { Environment.NewLine }, StringSplitOptions.RemoveEmptyEntries);
        StringBuilder emptyLines = new StringBuilder();
        foreach (string line in lines)
        {
            string s = line.Trim();
            if (s.Length &amp;gt; 0 &amp;amp;&amp;amp; !s.StartsWith("//"))
                emptyLines.AppendLine(s.Trim());
        }

        body = emptyLines.ToString();

        // remove C styles comments
        body = Regex.Replace(body, "/\\*.*?\\*/", String.Empty, RegexOptions.Compiled | RegexOptions.Singleline);
        //// trim left
        body = Regex.Replace(body, "^\\s*", String.Empty, RegexOptions.Compiled | RegexOptions.Multiline);
        //// trim right
        body = Regex.Replace(body, "\\s*[\\r\\n]", "\r\n", RegexOptions.Compiled | RegexOptions.ECMAScript);
        // remove whitespace beside of left curly braced
        body = Regex.Replace(body, "\\s*{\\s*", "{", RegexOptions.Compiled | RegexOptions.ECMAScript);
        // remove whitespace beside of coma
        body = Regex.Replace(body, "\\s*,\\s*", ",", RegexOptions.Compiled | RegexOptions.ECMAScript);
        // remove whitespace beside of semicolon
        body = Regex.Replace(body, "\\s*;\\s*", ";", RegexOptions.Compiled | RegexOptions.ECMAScript);
        // remove newline after keywords
        body = Regex.Replace(body, "\\r\\n(?&amp;lt;=\\b(abstract|boolean|break|byte|case|catch|char|class|const|continue|default|delete|do|double|else|extends|false|final|finally|float|for|function|goto|if|implements|import|in|instanceof|int|interface|long|native|new|null|package|private|protected|public|return|short|static|super|switch|synchronized|this|throw|throws|transient|true|try|typeof|var|void|while|with)\\r\\n)", " ", RegexOptions.Compiled | RegexOptions.ECMAScript);

        return body;
    }

    private static bool IsEncodingAccepted(string encoding)
    {
        return HttpContext.Current.Request.Headers["Accept-encoding"] != null &amp;amp;&amp;amp; 
            HttpContext.Current.Request.Headers["Accept-encoding"].Contains(encoding);
    }

    private static void SetEncoding(string encoding)
    {
        HttpContext.Current.Response.AppendHeader("Content-encoding", encoding);
    }
}&lt;/pre&gt;
&lt;p&gt;It has home-brewed Minify function (demo replacement for Ajax.Minifier) to make scripts meaner and leaner and Compress method to "gzip" response that should shrink styles even more to save bandwidth. With all that taken care of, our end result should look something like this:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://rtur.net/blog/image.axd?picture=profiler-compressed_1.png" rel="PrettyPhoto"&gt;&lt;img style="background-image: none; margin: 0px 0px 15px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="profiler-compressed" src="http://rtur.net/blog/image.axd?picture=profiler-compressed_thumb_1.png" alt="profiler-compressed" width="670" height="145" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Here we are, going from 134.4KB to 51.2KB in size and saving browser two round-trips. No, this sure won&amp;rsquo;t score 100 as we didn't take care of image optimization, browser caching, setting appropriate HTTP headers etc - but that's ok and by the way even this bare-boned solution took me from 44 up to 86 points at page speed test. This code is intentionally simplistic and doesn&amp;rsquo;t take into account age cases, error handling etc. This is for clarity and to better represent concepts of combining, minifying and compressing in general. You can download project from link below and run it in Visual Web Developer, WebMatrix or as IIS application. It is very little code that is easy to follow.&lt;/p&gt;
&lt;p&gt;JUST DON'T USE IT AS PRODUCTION-READY CODE!&lt;/p&gt;
&lt;p&gt;Because it is not :) At least not yet, I'm working on possibly utilizing it for BlogEngine.NET and will publish more solid version later. Current code is for demo purposes only, it lacks tons of things you would absolutely require in your real-world application and makes way too many bold assumptions. But with all those things taking most of the space it would be a lot harder to understand workflow I really wanted to focus on.&lt;/p&gt;
&lt;p&gt;&lt;a class="dld" href="http://rtur.net/blog/file.axd?file=2012%2f1%2fDemo1.zip"&gt;Demo1.zip (57.82 kb)&lt;/a&gt;&lt;/p&gt;</description>
      <link>http://feedproxy.google.com/~r/rtur/~3/h9iGG8XaVV8/post.aspx</link>
      <comments>http://rtur.net/blog/post/2012/01/21/Optimizing-ASPNET-Page-Load-Time.aspx#comment</comments>
      <guid isPermaLink="false">http://rtur.net/blog/post.aspx?id=7accee25-5a98-4336-846f-75966ba65133</guid>
      <pubDate>Sat, 21 Jan 2012 14:42:00 -0600</pubDate>
      <category>asp.net</category>
      <dc:publisher>rtur.net</dc:publisher>
      <pingback:server>http://rtur.net/blog/pingback.axd</pingback:server>
      <pingback:target>http://rtur.net/blog/post.aspx?id=7accee25-5a98-4336-846f-75966ba65133</pingback:target>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://rtur.net/blog/trackback.axd?id=7accee25-5a98-4336-846f-75966ba65133</trackback:ping>
      <wfw:comment>http://rtur.net/blog/post/2012/01/21/Optimizing-ASPNET-Page-Load-Time.aspx#comment</wfw:comment>
      <wfw:commentRss>http://rtur.net/blog/syndication.axd?post=7accee25-5a98-4336-846f-75966ba65133</wfw:commentRss>
    <feedburner:origLink>http://rtur.net/blog/post.aspx?id=7accee25-5a98-4336-846f-75966ba65133</feedburner:origLink></item>
    <item>
      <title>Laying out nested DIVs with CSS</title>
      <description>&lt;p&gt;&lt;img src="http://rtur.net/blog/image.axd?picture=2011%2f12%2fcss.png" alt="" width="85" height="85" /&gt;Tell me what you want, but CSS is twisted. Some simple basic tasks that should be no-brainer sometimes make you throw things and say words you later deeply regret. Usually people use IE6 as lightning rod, sadly even if you don't care about IE6 anymore CSS still will find ways to hurt you. Consider this simple scenario - I want DIV with some text and 3 little ones inside it alined right.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://rtur.net/blog/image.axd?picture=2011%2f12%2fcss2.png" alt="" /&gt;&lt;/p&gt;
&lt;p&gt;In a sane world, you would create a DIV, text element inside it, then 3 more DIVs with appropriate size and alignment. In CSS world, you should first "wrap your head around it" - meaning, make your brain just as twisted so it is in sync with framework. Then you understand that this is not how things "float". You need to do it all backwards! Is it hard? No. Intuitive? Hell no! May be, we need jQuery for CSS to make things to make sense. I think I even saw one somewhere on the internet, may be I'll go look around. But first I need to turn few pages in my old good "VB for dummies" book to calm down.&lt;/p&gt;
&lt;pre class="brush: xml;"&gt;&amp;lt;html&amp;gt;
&amp;lt;head&amp;gt;
  &amp;lt;style&amp;gt;
	#widget { width: 300px; display: inline-table; background: #dedede; padding: 5px; }
	#widget div { float: right; width: 20px; margin-left: 2px; border: 1px solid #ccc; text-align: center; }
	#widget h2 { padding: 0; margin: 0; font-size: 16px; }
  &amp;lt;/style&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
  &amp;lt;div id="widget"&amp;gt;	
	&amp;lt;div&amp;gt;3&amp;lt;/div&amp;gt;
	&amp;lt;div&amp;gt;2&amp;lt;/div&amp;gt;
	&amp;lt;div&amp;gt;1&amp;lt;/div&amp;gt;
	&amp;lt;h2&amp;gt;Some pretty long title splitting on second line goes here.&amp;lt;/h2&amp;gt;
  &amp;lt;/div&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;&lt;/pre&gt;</description>
      <link>http://feedproxy.google.com/~r/rtur/~3/205S4p20VAA/post.aspx</link>
      <comments>http://rtur.net/blog/post/2011/12/16/Laying-out-nested-DIVs-with-CSS.aspx#comment</comments>
      <guid isPermaLink="false">http://rtur.net/blog/post.aspx?id=5133e0a6-c7c6-4c22-a329-2f5a5eb30bec</guid>
      <pubDate>Fri, 16 Dec 2011 12:49:00 -0600</pubDate>
      <category>CSS</category>
      <dc:publisher>rtur.net</dc:publisher>
      <pingback:server>http://rtur.net/blog/pingback.axd</pingback:server>
      <pingback:target>http://rtur.net/blog/post.aspx?id=5133e0a6-c7c6-4c22-a329-2f5a5eb30bec</pingback:target>
      <slash:comments>1</slash:comments>
      <trackback:ping>http://rtur.net/blog/trackback.axd?id=5133e0a6-c7c6-4c22-a329-2f5a5eb30bec</trackback:ping>
      <wfw:comment>http://rtur.net/blog/post/2011/12/16/Laying-out-nested-DIVs-with-CSS.aspx#comment</wfw:comment>
      <wfw:commentRss>http://rtur.net/blog/syndication.axd?post=5133e0a6-c7c6-4c22-a329-2f5a5eb30bec</wfw:commentRss>
    <feedburner:origLink>http://rtur.net/blog/post.aspx?id=5133e0a6-c7c6-4c22-a329-2f5a5eb30bec</feedburner:origLink></item>
    <item>
      <title>How to add Woopra to your blog</title>
      <description>&lt;p&gt;&lt;a href="http://rtur.net/blog/image.axd?picture=woopra.png"&gt;&lt;img style="background-image: none; margin: 0px 15px 15px 0px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="woopra" src="http://rtur.net/blog/image.axd?picture=woopra_thumb.png" alt="woopra" width="100" height="100" border="0" /&gt;&lt;/a&gt;Lots of people use &lt;a href="http://www.google.com/analytics/" target="_blank"&gt;Google Analytics&lt;/a&gt; to track user statistics on the blog. If you one of them, there is another tool you might be interesting in &amp;ndash; something called &amp;ldquo;&lt;a href="http://www.woopra.com/" target="_blank"&gt;Woopra&lt;/a&gt;&amp;rdquo;. Although Analytics are cool, Woopra excels in real-time tracking &amp;ndash; it literally shows what is going on your blog right now. Just tale a look at the picture below &amp;ndash; you can see how many people are browsing through your blog, what pages they on, searches used to bring them in, referring sites and more. And it is all real-time, you can see people coming and leaving. Pretty fun stuff.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://rtur.net/blog/image.axd?picture=woopra-dbrd.png" rel="prettyphoto"&gt;&lt;img style="background-image: none; margin: 0px 0px 15px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border-width: 0px;" title="woopra-dbrd" src="http://rtur.net/blog/image.axd?picture=woopra-dbrd_thumb.png" alt="woopra-dbrd" width="670" height="410" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p style="clear: both;"&gt;This will probably work with any blogging software, definitely works nicely with &lt;a href="http://dotnetblogengine.net/" target="_blank"&gt;BlogEngine&lt;/a&gt;. Simply create account with Woopra, they will give you a tracking script similar to how Analytics does. It is recommended you add this script to your header section (admin/settings/custom code/html head section) but I suspect it will work if added to &amp;ldquo;tracking script&amp;rdquo; section just as well. There is size limitation for free version, 30,000 &amp;ldquo;actions&amp;rdquo; per month, but that should fit any casual blog easily. You can also buy premium if your blog suddenly goes into the stratosphere.&lt;/p&gt;</description>
      <link>http://feedproxy.google.com/~r/rtur/~3/aRldK63aWxg/post.aspx</link>
      <comments>http://rtur.net/blog/post/2011/12/14/How-to-add-Woopra-to-your-blog.aspx#comment</comments>
      <guid isPermaLink="false">http://rtur.net/blog/post.aspx?id=adc8dec8-94d8-43e5-9bba-d48dedd935c6</guid>
      <pubDate>Wed, 14 Dec 2011 19:30:00 -0600</pubDate>
      <category>Blogging</category>
      <dc:publisher>rtur.net</dc:publisher>
      <pingback:server>http://rtur.net/blog/pingback.axd</pingback:server>
      <pingback:target>http://rtur.net/blog/post.aspx?id=adc8dec8-94d8-43e5-9bba-d48dedd935c6</pingback:target>
      <slash:comments>3</slash:comments>
      <trackback:ping>http://rtur.net/blog/trackback.axd?id=adc8dec8-94d8-43e5-9bba-d48dedd935c6</trackback:ping>
      <wfw:comment>http://rtur.net/blog/post/2011/12/14/How-to-add-Woopra-to-your-blog.aspx#comment</wfw:comment>
      <wfw:commentRss>http://rtur.net/blog/syndication.axd?post=adc8dec8-94d8-43e5-9bba-d48dedd935c6</wfw:commentRss>
    <feedburner:origLink>http://rtur.net/blog/post.aspx?id=adc8dec8-94d8-43e5-9bba-d48dedd935c6</feedburner:origLink></item>
  </channel>
</rss>

