<?xml version="1.0" encoding="utf-8"?>
<feed xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xml:lang="en-us" xmlns="http://www.w3.org/2005/Atom">
  <title>Vlad Navazhylau's Blog</title>
  <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/" />
  <link rel="self" href="http://www.navazhylau.com/b/SyndicationService.asmx/GetAtom" />
  <icon>favicon.ico</icon>
  <updated>2008-10-12T20:22:00.3092303-04:00</updated>
  <author>
    <name>Vlad Navazhylau</name>
  </author>
  <subtitle>Agile Development, Architecture, .NET and The Art of Listening</subtitle>
  <id>http://www.navazhylau.com/b/</id>
  <generator uri="http://www.dasblog.net" version="2.0.7180.0">DasBlog</generator>
  <entry>
    <title>Quick way to create UML Sequence diagrams</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/10/13/QuickWayToCreateUMLSequenceDiagrams.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,15bec602-58af-47bc-906e-091e0b4292d9.aspx</id>
    <published>2008-10-12T20:22:00.3092303-04:00</published>
    <updated>2008-10-12T20:22:00.3092303-04:00</updated>
    <category term="Agile" label="Agile" scheme="http://www.navazhylau.com/b/CategoryView,category,Agile.aspx" />
    <category term="Cool" label="Cool" scheme="http://www.navazhylau.com/b/CategoryView,category,Cool.aspx" />
    <category term="Tools" label="Tools" scheme="http://www.navazhylau.com/b/CategoryView,category,Tools.aspx" />
    <category term="Useful stuff" label="Useful stuff" scheme="http://www.navazhylau.com/b/CategoryView,category,Useful%2Bstuff.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">I stumble upon this <a href="http://www.dev102.com/2008/09/29/a-web-based-sequence-diagram-editor/">post</a> the
other day. 
<br />
This led me to wonderful online tool <a href="http://www.websequencediagrams.com/">http://www.websequencediagrams.com/</a> .<br />
The SD/MSC Generator is an easy alternative to using mouse-centric tools like Microsoft
Visio.<br />
It has nice Domain Specific Language and API for creating quick sequence diagrams.<br /><br />
I would prefer this approach for creating any UML diagram anytime over any mouse-centric
diagramming tool. Any UML diagram drawn will be rarely revisited later and adjusted/updated
to the reality of the live code base. Usually when some process is better can be presented
visually you want to have it done as quickly as possible while the idea is still fresh
in you head. With traditional tools you would probably spend 70-85% of your time resizing
horizontal and vertical lines, boxes, searching for the right shape and stencils,
trying to remember to save the document in the correct format and with all this “noise”
you loose concentration and spend 3-4 hours on simple diagram that would take 30 minutes
to one hours with the tool like SD/MSC Generator. It is so much easier to learn Domain
Specific Language for this tool than count pixels on the Visio grid. 
<br /><br />
And here is the best part of tool like this: you can store text/instruction for your
diagram as regular text file in your favorite version control system rather then binary
file. 
<br /><br />
Disclaimer: I am in no way affiliated with this product. 
<br /><br />
I just found another tool or technique that makes more sense, to me, and makes software
project more Agile and less bureaucratic.<br /><br /><p></p><img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=15bec602-58af-47bc-906e-091e0b4292d9" /></div>
    </content>
  </entry>
  <entry>
    <title>Generic Singelton pattern in C# and VB.NET</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/10/12/GenericSingeltonPatternInCAndVBNET.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,5153f703-54f9-42a3-b10f-951e2055a17e.aspx</id>
    <published>2008-10-12T19:40:08.7638919-04:00</published>
    <updated>2008-10-12T19:40:08.7638919-04:00</updated>
    <category term=".NET" label=".NET" scheme="http://www.navazhylau.com/b/CategoryView,category,.NET.aspx" />
    <category term="Patterns &amp;amp; Practices" label="Patterns &amp;amp; Practices" scheme="http://www.navazhylau.com/b/CategoryView,category,Patterns%2B%26%2BPractices.aspx" />
    <category term="Useful stuff" label="Useful stuff" scheme="http://www.navazhylau.com/b/CategoryView,category,Useful%2Bstuff.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <pre>
          <span style="color: Black; background-color: transparent; font-family: Courier New; font-size: 11px;">
            <span style="color: Green; background-color: transparent; font-family: Courier New; font-size: 11px;">//SINGLETON
- C#</span>
            <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">using</span> NUnit.Framework;
[TestFixture()] <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">public</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">class</span> SingletonTest
{     [Test()]     <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">public</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">void</span> ObjectsAreTheSameTest()
    {         DeploymentInfo
firstDeployment <span style="color: Red; background-color: transparent; font-family: Courier New; font-size: 11px;">=</span> Singleton&lt;DeploymentInfo&gt;.UniqueInstance;
        DeploymentInfo secondDeployment <span style="color: Red; background-color: transparent; font-family: Courier New; font-size: 11px;">=</span> Singleton&lt;DeploymentInfo&gt;.UniqueInstance;
        Assert.AreSame(firstDeployment, secondDeployment);
    } } <span style="color: Green; background-color: transparent; font-family: Courier New; font-size: 11px;">//Singleton
Pattern </span><span style="color: Green; background-color: transparent; font-family: Courier New; font-size: 11px;">//Generic
Version</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">public</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">class</span> Singleton&lt;T&gt;
where T : <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">class</span>, <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">new</span>()
{     <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">private</span> Singleton()
    {     }     <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">private</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">class</span> SingletonCreator
    {         <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">static</span> SingletonCreator()
        {         }
        <span style="color: Green; background-color: transparent; font-family: Courier New; font-size: 11px;">//
Private object instantiated with private constructor</span>         <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">static</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">internal</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">readonly</span> T
instance <span style="color: Red; background-color: transparent; font-family: Courier New; font-size: 11px;">=</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">new</span> T();
    }     <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">public</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">static</span> T
UniqueInstance {         get { <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">return</span> SingletonCreator.instance;
}     } }</span>
        </pre>
        <p>
          <br />
        </p>
        <p>
        </p>
        <pre>
          <span style="color: Black; background-color: transparent; font-family: Courier New; font-size: 11px;">
            <span style="color: Green; background-color: transparent; font-family: Courier New; font-size: 11px;">'SINGLETON
- VB.NET</span>
            <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">Imports</span> NUnit.Framework
&lt;TestFixture()&gt; _ <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">Public</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">Class</span> SingletonTest
&lt;Test()&gt; _ <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">Public</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">Sub</span> ObjectsAreTheSameTest() <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">Dim</span> firstDeployment <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">As</span> DeploymentInfo <span style="color: Red; background-color: transparent; font-family: Courier New; font-size: 11px;">=</span> Singleton(Of
DeploymentInfo).UniqueInstance <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">Dim</span> secondDeployment <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">As</span> DeploymentInfo <span style="color: Red; background-color: transparent; font-family: Courier New; font-size: 11px;">=</span> Singleton(Of
DeploymentInfo).UniqueInstance Assert.AreSame(firstDeployment, secondDeployment) <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">End</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">Sub</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">End</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">Class</span><span style="color: Green; background-color: transparent; font-family: Courier New; font-size: 11px;">'Singleton
Pattern </span><span style="color: Green; background-color: transparent; font-family: Courier New; font-size: 11px;">'Generic
Version</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">Public</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">Class</span> Singleton(Of
T <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">As</span> {<span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">Class</span>, <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">New</span>}) <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">Private</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">Sub</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">New</span>() <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">End</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">Sub</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">Private</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">Class</span> SingletonCreator <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">Shared</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">Sub</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">New</span>() <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">End</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">Sub</span><span style="color: Green; background-color: transparent; font-family: Courier New; font-size: 11px;">'
Private object instantiated with private constructor</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">Friend</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">Shared</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">ReadOnly</span> instance <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">As</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">New</span> T() <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">End</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">Class</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">Public</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">Shared</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">ReadOnly</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">Property</span> UniqueInstance() <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">As</span> T <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">Get</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">Return</span> SingletonCreator.instance <span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">End</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">Get</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">End</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">Property</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">End</span><span style="color: Blue; background-color: transparent; font-family: Courier New; font-size: 11px;">Class</span></span>
        </pre>
        <br />
        <img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=5153f703-54f9-42a3-b10f-951e2055a17e" />
      </div>
    </content>
  </entry>
  <entry>
    <title>CSS rounded corners</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/09/21/CSSRoundedCorners.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,45bddab7-d3ab-4c04-8002-3c379ec0aa15.aspx</id>
    <published>2008-09-21T18:58:07.3572694-04:00</published>
    <updated>2008-09-21T18:58:07.3572694-04:00</updated>
    <category term="CSS" label="CSS" scheme="http://www.navazhylau.com/b/CategoryView,category,CSS.aspx" />
    <category term="Helped with work" label="Helped with work" scheme="http://www.navazhylau.com/b/CategoryView,category,Helped%2Bwith%2Bwork.aspx" />
    <category term="Useful stuff" label="Useful stuff" scheme="http://www.navazhylau.com/b/CategoryView,category,Useful%2Bstuff.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">CSS Round Corners<br />
http://www.spiffybox.com/<br />
http://www.spiffycorners.com/<br />
http://blog.yosle.com/2007/09/20/css-round-corners/<br />
http://www.smileycat.com/miaow/archives/000044.php<p></p><img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=45bddab7-d3ab-4c04-8002-3c379ec0aa15" /></div>
    </content>
  </entry>
  <entry>
    <title>NHiberanate datasource for ASP.NET</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/09/21/NHiberanateDatasourceForASPNET.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,0fcb0e5b-c0c9-4c2b-a79f-68cebac6ef9f.aspx</id>
    <published>2008-09-21T18:54:38.370914-04:00</published>
    <updated>2008-09-21T18:54:38.370914-04:00</updated>
    <category term=".NET" label=".NET" scheme="http://www.navazhylau.com/b/CategoryView,category,.NET.aspx" />
    <category term="NHibernate" label="NHibernate" scheme="http://www.navazhylau.com/b/CategoryView,category,NHibernate.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">NHibernateDataSource: A DataSourceControl
for ASP.NET 2.0<br /><br /><a href="http://www.codeproject.com/KB/aspnet/NHibernateDataSource.aspx">http://www.codeproject.com/KB/aspnet/NHibernateDataSource.aspx</a><br /><p></p><img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=0fcb0e5b-c0c9-4c2b-a79f-68cebac6ef9f" /></div>
    </content>
  </entry>
  <entry>
    <title>Playing with Regex</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/09/21/PlayingWithRegex.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,7dbc5b90-1789-44c3-8502-f628ffd4c94a.aspx</id>
    <published>2008-09-21T18:51:16.1684899-04:00</published>
    <updated>2008-09-21T18:51:16.1684899-04:00</updated>
    <category term=".NET" label=".NET" scheme="http://www.navazhylau.com/b/CategoryView,category,.NET.aspx" />
    <category term="Helped with work" label="Helped with work" scheme="http://www.navazhylau.com/b/CategoryView,category,Helped%2Bwith%2Bwork.aspx" />
    <category term="Useful stuff" label="Useful stuff" scheme="http://www.navazhylau.com/b/CategoryView,category,Useful%2Bstuff.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">Example - URL Extractor<br /><a href="http://www.dotnetcoders.com/web/Learning/Regex/exHrefExtractor.aspx">http://www.dotnetcoders.com/web/Learning/Regex/exHrefExtractor.aspx</a><br /><br /><a href="http://regexlib.com">http://regexlib.com</a><br /><br /><a href="http://sexyregex.com/regex/test/replace/3863#testdata">http://sexyregex.com/regex/test/replace/3863#testdata</a><br /><p></p><img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=7dbc5b90-1789-44c3-8502-f628ffd4c94a" /></div>
    </content>
  </entry>
  <entry>
    <title>ASP.NET page lifecycle and master pages</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/09/21/ASPNETPageLifecycleAndMasterPages.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,673299e7-a20f-4967-b2cd-a19ea77ee195.aspx</id>
    <published>2008-09-21T18:48:45.5751532-04:00</published>
    <updated>2008-09-21T18:48:45.5751532-04:00</updated>
    <category term="ASP.NET" label="ASP.NET" scheme="http://www.navazhylau.com/b/CategoryView,category,ASP.NET.aspx" />
    <category term="Useful stuff" label="Useful stuff" scheme="http://www.navazhylau.com/b/CategoryView,category,Useful%2Bstuff.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">ASP.NET Page Life Cycle Overview<br /><a href="http://msdn.microsoft.com/en-us/library/ms178472.aspx">http://msdn.microsoft.com/en-us/library/ms178472.aspx</a><br /><br />
A comprehensive look at the Master Page<br /><a href="http://www.vikramlakhotia.com/Working_With_Master_Page.aspx">http://www.vikramlakhotia.com/Working_With_Master_Page.aspx</a><br /><p></p><img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=673299e7-a20f-4967-b2cd-a19ea77ee195" /></div>
    </content>
  </entry>
  <entry>
    <title>LINQ to SQL, WCF, REST and AJAX alternatives</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/09/21/LINQToSQLWCFRESTAndAJAXAlternatives.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,7461a232-ec0d-4ceb-801f-3f5249d01d17.aspx</id>
    <published>2008-09-21T18:45:30.2882716-04:00</published>
    <updated>2008-09-21T18:45:30.2882716-04:00</updated>
    <category term=".NET" label=".NET" scheme="http://www.navazhylau.com/b/CategoryView,category,.NET.aspx" />
    <category term="Agile" label="Agile" scheme="http://www.navazhylau.com/b/CategoryView,category,Agile.aspx" />
    <category term="AJAX" label="AJAX" scheme="http://www.navazhylau.com/b/CategoryView,category,AJAX.aspx" />
    <category term="ASP.NET" label="ASP.NET" scheme="http://www.navazhylau.com/b/CategoryView,category,ASP.NET.aspx" />
    <category term="JavaScript" label="JavaScript" scheme="http://www.navazhylau.com/b/CategoryView,category,JavaScript.aspx" />
    <category term="LINQ" label="LINQ" scheme="http://www.navazhylau.com/b/CategoryView,category,LINQ.aspx" />
    <category term="Useful stuff" label="Useful stuff" scheme="http://www.navazhylau.com/b/CategoryView,category,Useful%2Bstuff.aspx" />
    <category term="WCF" label="WCF" scheme="http://www.navazhylau.com/b/CategoryView,category,WCF.aspx" />
    <category term="Web Services" label="Web Services" scheme="http://www.navazhylau.com/b/CategoryView,category,Web%2BServices.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">Rick Strahl posted his session slides and
samples from his ASP.NET Connections. Really good presentations.<br /><a href="http://west-wind.com/weblog/posts/336745.aspx">http://west-wind.com/weblog/posts/336745.aspx</a><br /><p></p><img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=7461a232-ec0d-4ceb-801f-3f5249d01d17" /></div>
    </content>
  </entry>
  <entry>
    <title>ASP.NET output caching</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/09/21/ASPNETOutputCaching.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,49bd79fd-a3fe-4684-8276-817da5b200a0.aspx</id>
    <published>2008-09-21T18:39:41.2299592-04:00</published>
    <updated>2008-09-21T18:39:41.2299592-04:00</updated>
    <category term="ASP.NET" label="ASP.NET" scheme="http://www.navazhylau.com/b/CategoryView,category,ASP.NET.aspx" />
    <category term="Helped with work" label="Helped with work" scheme="http://www.navazhylau.com/b/CategoryView,category,Helped%2Bwith%2Bwork.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <a href="http://stevenharman.net/blog/archive/2006/05/13/Custom_Output_Caching_in_ASP.NET.aspx">http://stevenharman.net/blog/archive/2006/05/13/Custom_Output_Caching_in_ASP.NET.aspx</a>
        <br />
        <br />
        <a href="http://weblogs.asp.net/scottgu/archive/2006/11/28/tip-trick-implement-donut-caching-with-the-asp-net-2-0-output-cache-substitution-feature.aspx">Tip/Trick:
Implement "Donut Caching" with the ASP.NET 2.0 Output Cache Substitution Feature</a>
        <br />
        <br />
"For anyone interested in seeing the above in some real code, subText uses this very
technique to cache several of the user controls needed to render the UI..." - <a href="http://subtextproject.com/">http://subtextproject.com/</a><br /><br /><br /><p></p><img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=49bd79fd-a3fe-4684-8276-817da5b200a0" /></div>
    </content>
  </entry>
  <entry>
    <title>LINQ to SQL datapaterns and FAQ</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/09/21/LINQToSQLDatapaternsAndFAQ.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,503dc5ed-1222-46bb-92c5-5828dddd455e.aspx</id>
    <published>2008-09-21T18:35:44.5273034-04:00</published>
    <updated>2008-09-21T18:35:44.5273034-04:00</updated>
    <category term="LINQ" label="LINQ" scheme="http://www.navazhylau.com/b/CategoryView,category,LINQ.aspx" />
    <category term="SQL Server" label="SQL Server" scheme="http://www.navazhylau.com/b/CategoryView,category,SQL%2BServer.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">How-To: Common Data Patterns with LINQ to
SQL<br /><a href="http://blog.jemm.net/articles/databases/how-to-common-data-patterns-with-linq-to-sql/">http://blog.jemm.net/articles/databases/how-to-common-data-patterns-with-linq-to-sql/</a><br /><br />
Frequently Asked Questions (LINQ to SQL)<br /><a href="http://msdn2.microsoft.com/en-us/library/bb386929.aspx">http://msdn2.microsoft.com/en-us/library/bb386929.aspx</a><br /><br /><p></p><img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=503dc5ed-1222-46bb-92c5-5828dddd455e" /></div>
    </content>
  </entry>
  <entry>
    <title>Agile database techniques</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/09/21/AgileDatabaseTechniques.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,4e6b69b1-28e7-4ac9-86c4-73f67274b18e.aspx</id>
    <published>2008-09-21T18:33:28.496696-04:00</published>
    <updated>2008-09-21T18:33:28.496696-04:00</updated>
    <category term="Agile" label="Agile" scheme="http://www.navazhylau.com/b/CategoryView,category,Agile.aspx" />
    <category term="Database design" label="Database design" scheme="http://www.navazhylau.com/b/CategoryView,category,Database%2Bdesign.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">Track and record database schema versions<br /><a href="http://www.ibm.com/developerworks/library/wa-dbversion/index.html">http://www.ibm.com/developerworks/library/wa-dbversion/index.html</a><br /><p></p><img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=4e6b69b1-28e7-4ac9-86c4-73f67274b18e" /></div>
    </content>
  </entry>
  <entry>
    <title>LINQ helper tools</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/09/21/LINQHelperTools.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,cb035052-35eb-4337-8ad6-97895dd35f2c.aspx</id>
    <published>2008-09-21T18:29:38.1506779-04:00</published>
    <updated>2008-09-21T18:29:38.1506779-04:00</updated>
    <category term=".NET" label=".NET" scheme="http://www.navazhylau.com/b/CategoryView,category,.NET.aspx" />
    <category term="LINQ" label="LINQ" scheme="http://www.navazhylau.com/b/CategoryView,category,LINQ.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">LINQPad lets you interactively query SQL
databases in a modern query language: LINQ.  Kiss goodbye to SQL Management Studio! 
<br /><a href="http://www.linqpad.net/">http://www.linqpad.net/</a><br /><br />
Visual LINQ Query Builder<br /><a href="http://code.msdn.microsoft.com/vlinq/">http://code.msdn.microsoft.com/vlinq/</a><br /><p></p><img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=cb035052-35eb-4337-8ad6-97895dd35f2c" /></div>
    </content>
  </entry>
  <entry>
    <title>Storing Binary Data to Database</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/09/21/StoringBinaryDataToDatabase.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,f7faaacc-0fdc-4d55-a3dc-1ba468d26982.aspx</id>
    <published>2008-09-21T18:27:32.5260059-04:00</published>
    <updated>2008-09-21T18:27:32.5260059-04:00</updated>
    <category term=".NET" label=".NET" scheme="http://www.navazhylau.com/b/CategoryView,category,.NET.aspx" />
    <category term="Helped with work" label="Helped with work" scheme="http://www.navazhylau.com/b/CategoryView,category,Helped%2Bwith%2Bwork.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <a href="http://www.beansoftware.com/ASP.NET-Tutorials/Binary-Files-To-Database.aspx">http://www.beansoftware.com/ASP.NET-Tutorials/Binary-Files-To-Database.aspx</a>
        <p>
        </p>
        <img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=f7faaacc-0fdc-4d55-a3dc-1ba468d26982" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Good VB.NET and Linq to XML resource</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/04/26/GoodVBNETAndLinqToXMLResource.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,c1f58a6a-45c6-40eb-9e4b-3a87e07954b4.aspx</id>
    <published>2008-04-26T14:27:46.973-04:00</published>
    <updated>2008-04-26T14:28:29.2545367-04:00</updated>
    <category term=".NET" label=".NET" scheme="http://www.navazhylau.com/b/CategoryView,category,.NET.aspx" />
    <category term="Helped with work" label="Helped with work" scheme="http://www.navazhylau.com/b/CategoryView,category,Helped%2Bwith%2Bwork.aspx" />
    <category term="LINQ" label="LINQ" scheme="http://www.navazhylau.com/b/CategoryView,category,LINQ.aspx" />
    <category term="People" label="People" scheme="http://www.navazhylau.com/b/CategoryView,category,People.aspx" />
    <category term="Useful stuff" label="Useful stuff" scheme="http://www.navazhylau.com/b/CategoryView,category,Useful%2Bstuff.aspx" />
    <category term="XML" label="XML" scheme="http://www.navazhylau.com/b/CategoryView,category,XML.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">Beth Massi posted nice presentation on Ling
to XML on Infoq.com.<br /><a href="http://www.infoq.com/presentations/massi-linq-xml">http://www.infoq.com/presentations/massi-linq-xml</a><br /><br />
She also rights regularily on her blog "Sharring the goodness tha is VB" - <a href="http://blogs.msdn.com/bethmassi/">http://blogs.msdn.com/bethmassi/</a><br /><br />
VB.NET 9.0 has nice syntactic sugar tha C# 3.0 don't have for working with XML and
Linq. <img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=c1f58a6a-45c6-40eb-9e4b-3a87e07954b4" /></div>
    </content>
  </entry>
  <entry>
    <title>JavaScript frameworks</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/04/22/JavaScriptFrameworks.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,0f21e751-8705-4a29-b184-98e2be055389.aspx</id>
    <published>2008-04-22T00:43:42.293-04:00</published>
    <updated>2008-04-22T00:48:39.3252367-04:00</updated>
    <category term="Agile" label="Agile" scheme="http://www.navazhylau.com/b/CategoryView,category,Agile.aspx" />
    <category term="AJAX" label="AJAX" scheme="http://www.navazhylau.com/b/CategoryView,category,AJAX.aspx" />
    <category term="Cool" label="Cool" scheme="http://www.navazhylau.com/b/CategoryView,category,Cool.aspx" />
    <category term="CSS" label="CSS" scheme="http://www.navazhylau.com/b/CategoryView,category,CSS.aspx" />
    <category term="Helped with work" label="Helped with work" scheme="http://www.navazhylau.com/b/CategoryView,category,Helped%2Bwith%2Bwork.aspx" />
    <category term="JavaScript" label="JavaScript" scheme="http://www.navazhylau.com/b/CategoryView,category,JavaScript.aspx" />
    <category term="Performance Tuning" label="Performance Tuning" scheme="http://www.navazhylau.com/b/CategoryView,category,Performance%2BTuning.aspx" />
    <category term="Useful stuff" label="Useful stuff" scheme="http://www.navazhylau.com/b/CategoryView,category,Useful%2Bstuff.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">I am getting more and more comfortable with
different javascript frameworks. 
<br />
The simple reason is that frameworks got much better.<br />
I used javascript here and there before but tried to stay away from internals and
poluting my memory with different behaviors of JavaScript in different browsers.<br /><br />
My first encounter with AJAX was via using <a href="http://www.magicajax.net/">MagicAjax.net</a> at
the begining of 2005. Later when Atlas/ASP.NET AJAX got better I start using it for
my projects.<br />
I have now enough understanding to see that ASP.NET AJAX can be somewhat havy and
from now on I am trying to use more browser friendlier and much lighter options utilizing
following javascript libraries and CSS resources:<br /><ul><li><a href="http://jquery.com/">jQuery</a><i>is a fast, concise, JavaScript Library
that simplifies how you traverse HTML documents, handle events, perform animations,
and add Ajax interactions to your web pages. jQuery is designed to change the way
that you write JavaScript.</i></li><li><a href="http://extjs.com/products/extjs">Ext JS 2.0</a><i>Ext JS is a cross-browser
JavaScript library for building rich internet applications.</i></li><li><a href="http://www.dynamicdrive.com/style/">Dynamic Drive</a>'s <i>new CSS library!
Here you'll find original, practical CSS codes and examples such as CSS menus to give
your site a visual boast.</i></li></ul>
Combine this with the good server side scripting technology like ASP.NET, PHP, Ruby
on Rails and others and you may get very close to perfect harmony and nice warm Zen
like feeling about design and performance of your web application. ;-)<br /><br /><img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=0f21e751-8705-4a29-b184-98e2be055389" /></div>
    </content>
  </entry>
  <entry>
    <title>Quest: is AJAX bad for SEO?</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/04/22/QuestIsAJAXBadForSEO.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,b1ef9fb2-da46-4a48-8fbc-e8ac920119b7.aspx</id>
    <published>2008-04-21T23:55:59.153-04:00</published>
    <updated>2008-04-22T00:06:02.3564867-04:00</updated>
    <category term=".NET" label=".NET" scheme="http://www.navazhylau.com/b/CategoryView,category,.NET.aspx" />
    <category term="Agile" label="Agile" scheme="http://www.navazhylau.com/b/CategoryView,category,Agile.aspx" />
    <category term="AJAX" label="AJAX" scheme="http://www.navazhylau.com/b/CategoryView,category,AJAX.aspx" />
    <category term="Architecture" label="Architecture" scheme="http://www.navazhylau.com/b/CategoryView,category,Architecture.aspx" />
    <category term="Performance Tuning" label="Performance Tuning" scheme="http://www.navazhylau.com/b/CategoryView,category,Performance%2BTuning.aspx" />
    <category term="SEO" label="SEO" scheme="http://www.navazhylau.com/b/CategoryView,category,SEO.aspx" />
    <category term="Useful stuff" label="Useful stuff" scheme="http://www.navazhylau.com/b/CategoryView,category,Useful%2Bstuff.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">This sounds like a simple question. I will
say like many other developers/architects/consultants - "It depends..."<br /><br /><i><b>Bottom line AJAX is bad for SEO!<br /></b></i>For publicly facing company websites, were SEO important, stick with the server
side scripting such as ASP.NET, PHP, Ruby on Rails and others.<br />
I am not mentioning static HTML pages here since medium and big size companies most
likely will have data driven web site.<br /><br />
If you are building Line of Service business application AJAX will only make your
application better. 
<br />
Do not think twice learn it well and use it.<br /><br />
If you absolutely have to use AJAX follow "Unobtrusive JavaScript" pattern.<br />
AJAX is great tool when used for <b><i>proper application types</i></b>. 
<br /><br />
Here is my prediction -&gt; 3 years from now Search engines will learn to understand
and properly index and rank RIA/AJAX/FLASH/Silverlight/Flex/Put your faviorite client
side technology here. Until then ...<br /><br />
AJAX and SEO: How to have an SEO Friendly AJAX website using jquery 
<br /><a href="http://www.davidpirek.com/blog.aspx?n=AJAX-and-SEO:-How-to-have-an-SEO-Friendly-AJAX-website-using-jquery">http://www.davidpirek.com/blog.aspx?n=AJAX-and-SEO:-How-to-have-an-SEO-Friendly-AJAX-website-using-jquery</a><br /><br /><a href="http://www.seomoz.org/crawl-test">http://www.seomoz.org/crawl-test</a><br /><br />
12 More SEO Tips for 2007 <a href="http://www.seochat.com/c/a/Search-Engine-Optimization-Help/12-More-SEO-Tips-for-2007/">http://www.seochat.com/c/a/Search-Engine-Optimization-Help/12-More-SEO-Tips-for-2007/</a><p></p>
SEO Myths  <a href="http://www.seochat.com/c/a/Search-Engine-Optimization-Help/SEO-Myths/3/">http://www.seochat.com/c/a/Search-Engine-Optimization-Help/SEO-Myths/3/</a><br />
SEO for AJAX <a href="http://www.johnon.com/270/seo-for-ajax.html">http://www.johnon.com/270/seo-for-ajax.html<br /></a>AJAX, Web 2.0 and SEO <a href="http://www.hybrid6.com/webgeek/2007/01/ajax-web-20-and-seo.php">http://www.hybrid6.com/webgeek/2007/01/ajax-web-20-and-seo.php</a><br />
Web 2.0 Technologies and Search Visibility <a href="http://searchenginewatch.com/showPage.html?page=3624222">http://searchenginewatch.com/showPage.html?page=3624222</a><br />
Unobtrusive JavaScript <a href="http://en.wikipedia.org/wiki/Unobtrusive_JavaScript">http://en.wikipedia.org/wiki/Unobtrusive_JavaScript</a><br />
CSS, AJAX, Web 2.0 &amp; Search Engines <a href="http://www.seroundtable.com/archives/006889.html">http://www.seroundtable.com/archives/006889.html</a><br />
Search engine optimization <a href="http://en.wikipedia.org/wiki/Search_engine_optimization">http://en.wikipedia.org/wiki/Search_engine_optimization</a><br /><img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=b1ef9fb2-da46-4a48-8fbc-e8ac920119b7" /></div>
    </content>
  </entry>
  <entry>
    <title>LINQ</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/04/22/LINQ.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,025e1009-799b-4a51-9014-43a27d0db1d3.aspx</id>
    <published>2008-04-21T23:40:12.778-04:00</published>
    <updated>2008-04-21T23:40:35.5596117-04:00</updated>
    <category term=".NET" label=".NET" scheme="http://www.navazhylau.com/b/CategoryView,category,.NET.aspx" />
    <category term="Cool" label="Cool" scheme="http://www.navazhylau.com/b/CategoryView,category,Cool.aspx" />
    <category term="Helped with work" label="Helped with work" scheme="http://www.navazhylau.com/b/CategoryView,category,Helped%2Bwith%2Bwork.aspx" />
    <category term="LINQ" label="LINQ" scheme="http://www.navazhylau.com/b/CategoryView,category,LINQ.aspx" />
    <category term="Useful stuff" label="Useful stuff" scheme="http://www.navazhylau.com/b/CategoryView,category,Useful%2Bstuff.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">Link to Everything: A List of LINQ Providers<br /><a href="http://blogs.msdn.com/charlie/archive/2008/02/28/link-to-everything-a-list-of-linq-providers.aspx">http://blogs.msdn.com/charlie/archive/2008/02/28/link-to-everything-a-list-of-linq-providers.aspx</a><br /><br />
LINQPad lets you interactively query SQL databases in a modern query language: LINQ. 
Kiss goodbye to SQL Management Studio!<br /><a href="http://www.linqpad.net/">http://www.linqpad.net/</a><br /><br />
Visual LINQ Query Builder <a href="http://code.msdn.microsoft.com/vlinq/">http://code.msdn.microsoft.com/vlinq/</a><img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=025e1009-799b-4a51-9014-43a27d0db1d3" /></div>
    </content>
  </entry>
  <entry>
    <title>Creating Custom Cache Dependency</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/04/22/CreatingCustomCacheDependency.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,f315a3df-58d6-40a5-919e-7b69184d3dce.aspx</id>
    <published>2008-04-21T23:36:01.3096117-04:00</published>
    <updated>2008-04-21T23:36:01.3096117-04:00</updated>
    <category term=".NET" label=".NET" scheme="http://www.navazhylau.com/b/CategoryView,category,.NET.aspx" />
    <category term="Helped with work" label="Helped with work" scheme="http://www.navazhylau.com/b/CategoryView,category,Helped%2Bwith%2Bwork.aspx" />
    <category term="Useful stuff" label="Useful stuff" scheme="http://www.navazhylau.com/b/CategoryView,category,Useful%2Bstuff.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <a href="http://www.dotnetbips.com/articles/864c5b09-3e46-48b7-b4e8-f80d0db6c57c.aspx">http://www.dotnetbips.com/articles/864c5b09-3e46-48b7-b4e8-f80d0db6c57c.aspx</a>
        <p>
        </p>
        <img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=f315a3df-58d6-40a5-919e-7b69184d3dce" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Versioning Controlled Build</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/04/22/VersioningControlledBuild.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,76dff3cb-367b-4362-a9ce-5bb31c5c09ae.aspx</id>
    <published>2008-04-21T23:27:46.1221117-04:00</published>
    <updated>2008-04-21T23:27:46.1221117-04:00</updated>
    <category term=".NET" label=".NET" scheme="http://www.navazhylau.com/b/CategoryView,category,.NET.aspx" />
    <category term="Agile" label="Agile" scheme="http://www.navazhylau.com/b/CategoryView,category,Agile.aspx" />
    <category term="Cool" label="Cool" scheme="http://www.navazhylau.com/b/CategoryView,category,Cool.aspx" />
    <category term="Helped with work" label="Helped with work" scheme="http://www.navazhylau.com/b/CategoryView,category,Helped%2Bwith%2Bwork.aspx" />
    <category term="Useful stuff" label="Useful stuff" scheme="http://www.navazhylau.com/b/CategoryView,category,Useful%2Bstuff.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <a href="http://www.codeproject.com/KB/macros/versioningcontrolledbuild.aspx?fid=31431&amp;df=90&amp;mpp=25&amp;noise=3&amp;sort=Position&amp;view=Quick&amp;fr=26&amp;select=2252411">Versioning
Controlled Build</a>
        <p>
        </p>
        <img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=76dff3cb-367b-4362-a9ce-5bb31c5c09ae" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Anything But SourceSafe</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/04/22/AnythingButSourceSafe.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,64dfbc26-064d-4df9-88f1-8349ebd4acdf.aspx</id>
    <published>2008-04-21T23:24:22.418-04:00</published>
    <updated>2008-04-21T23:36:55.7783617-04:00</updated>
    <category term="Helped with work" label="Helped with work" scheme="http://www.navazhylau.com/b/CategoryView,category,Helped%2Bwith%2Bwork.aspx" />
    <category term="Version Control" label="Version Control" scheme="http://www.navazhylau.com/b/CategoryView,category,Version%2BControl.aspx" />
    <category term="When things go wrong" label="When things go wrong" scheme="http://www.navazhylau.com/b/CategoryView,category,When%2Bthings%2Bgo%2Bwrong.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">Source Control: Anything But SourceSafe
-&gt; <a href="http://www.codinghorror.com/blog/archives/000660.html">http://www.codinghorror.com/blog/archives/000660.html</a><br />
Visual SourceSafe Version Control: Unsafe at any Speed? -&gt; <a href="http://www.developsense.com/testing/VSSDefects.html">http://www.developsense.com/testing/VSSDefects.html</a><br />
Visual SourceSafe: Microsoft's Source Destruction System -&gt; <a href="http://www.highprogrammer.com/alan/windev/sourcesafe.html">http://www.highprogrammer.com/alan/windev/sourcesafe.html</a><br /><br />
Source Control HOWTO -&gt; <a href="http://www.ericsink.com/scm/source_control.html">http://www.ericsink.com/scm/source_control.html</a><br /><br />
Article "Version Control for Multiple Agile Teams" by Henrik Kniberg  <a href="http://www.infoq.com/articles/agile-version-control">http://www.infoq.com/articles/agile-version-control</a><br /><br /><p></p><img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=64dfbc26-064d-4df9-88f1-8349ebd4acdf" /></div>
    </content>
  </entry>
  <entry>
    <title>The SQL Site Map Provider</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/04/22/TheSQLSiteMapProvider.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,d4145822-2c52-40bb-8af2-f20bd4dc5be2.aspx</id>
    <published>2008-04-21T23:22:56.231-04:00</published>
    <updated>2008-04-21T23:33:16.5283617-04:00</updated>
    <category term=".NET" label=".NET" scheme="http://www.navazhylau.com/b/CategoryView,category,.NET.aspx" />
    <category term="ASP.NET" label="ASP.NET" scheme="http://www.navazhylau.com/b/CategoryView,category,ASP.NET.aspx" />
    <category term="Helped with work" label="Helped with work" scheme="http://www.navazhylau.com/b/CategoryView,category,Helped%2Bwith%2Bwork.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">The SQL Site Map Provider You've Been Waiting
For<br /><a href="http://msdn2.microsoft.com/en-us/magazine/cc163657.aspx">http://msdn2.microsoft.com/en-us/magazine/cc163657.aspx</a><br /><br />
 Using Multiple Sitemap Files<br />
 <a href="http://geekswithblogs.net/dlussier/archive/2007/10/04/115848.aspx">http://geekswithblogs.net/dlussier/archive/2007/10/04/115848.aspx</a><br />
 How to: Configure Multiple Site Maps and Site-Map Providers<br />
 <a href="http://msdn2.microsoft.com/en-us/library/ms178426.aspx">http://msdn2.microsoft.com/en-us/library/ms178426.aspx</a><br /><br />
Sitemap Celebration<br /><a href="http://www.zabdesign.de/pro/public/sitemap/sitemap-styled.html">http://www.zabdesign.de/pro/public/sitemap/sitemap-styled.html</a><br /><p></p><img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=d4145822-2c52-40bb-8af2-f20bd4dc5be2" /></div>
    </content>
  </entry>
  <entry>
    <title>Distributed memory object caching system, generic in nature, but intended for use in speeding up dynamic web applications by alleviating database load.</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/04/22/DistributedMemoryObjectCachingSystemGenericInNatureButIntendedForUseInSpeedingUpDynamicWebApplicationsByAlleviatingDatabaseLoad.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,3417b969-c65f-4794-9dbd-d9fa87fef202.aspx</id>
    <published>2008-04-21T23:21:38.793-04:00</published>
    <updated>2008-04-21T23:21:55.6533617-04:00</updated>
    <category term="Cool" label="Cool" scheme="http://www.navazhylau.com/b/CategoryView,category,Cool.aspx" />
    <category term="Performance Tuning" label="Performance Tuning" scheme="http://www.navazhylau.com/b/CategoryView,category,Performance%2BTuning.aspx" />
    <category term="Tools" label="Tools" scheme="http://www.navazhylau.com/b/CategoryView,category,Tools.aspx" />
    <category term="Useful stuff" label="Useful stuff" scheme="http://www.navazhylau.com/b/CategoryView,category,Useful%2Bstuff.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <a href="http://www.danga.com/memcached/">http://www.danga.com/memcached/</a>
        <br />
        <br />
Have not use it yet but heard a lot of good things about it.<p></p><img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=3417b969-c65f-4794-9dbd-d9fa87fef202" /></div>
    </content>
  </entry>
  <entry>
    <title>Exporing CSS</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/04/22/ExporingCSS.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,b6e2d587-e3c0-4195-9ddc-1964839686ac.aspx</id>
    <published>2008-04-21T23:18:47.418-04:00</published>
    <updated>2008-04-21T23:34:57.0127367-04:00</updated>
    <category term="ASP.NET" label="ASP.NET" scheme="http://www.navazhylau.com/b/CategoryView,category,ASP.NET.aspx" />
    <category term="Cool" label="Cool" scheme="http://www.navazhylau.com/b/CategoryView,category,Cool.aspx" />
    <category term="CSS" label="CSS" scheme="http://www.navazhylau.com/b/CategoryView,category,CSS.aspx" />
    <category term="Helped with work" label="Helped with work" scheme="http://www.navazhylau.com/b/CategoryView,category,Helped%2Bwith%2Bwork.aspx" />
    <category term="Useful stuff" label="Useful stuff" scheme="http://www.navazhylau.com/b/CategoryView,category,Useful%2Bstuff.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <a href="http://www.dynamicdrive.com/">http://www.dynamicdrive.com/</a>
        <br />
        <br />
Most used CSS tricks -&gt; <a href="http://stylizedweb.com/2008/03/12/most-used-css-tricks/">http://stylizedweb.com/2008/03/12/most-used-css-tricks/</a><br /><br />
The 960 Grid System is an effort to streamline web development workflow by providing
commonly used dimensions, based on a width of 960 pixels.<br /><a href="http://960.gs/">http://960.gs/</a><br /><br />
CSS Sprites: Image Slicing’s Kiss of Death  <a href="http://www.alistapart.com/articles/sprites">http://www.alistapart.com/articles/sprites</a><br /><br />
Can you take a simple list and use different Cascading Style Sheets to create radically
different list options? The Listamatic shows the power of CSS when applied to one
simple list.  <a href="http://css.maxdesign.com.au/listamatic/index.htm">http://css.maxdesign.com.au/listamatic/index.htm</a><br /><a href="http://css.maxdesign.com.au/">http://css.maxdesign.com.au/</a><br /><br />
CSS Control Adapter Toolkit for ASP.NET 2.0<br /><a href="http://weblogs.asp.net/scottgu/archive/2006/05/02/CSS-Control-Adapter-Toolkit-for-ASP.NET-2.0-.aspx">http://weblogs.asp.net/scottgu/archive/2006/05/02/CSS-Control-Adapter-Toolkit-for-ASP.NET-2.0-.aspx</a><br /><a href="http://www.asp.net/cssadapters/">http://www.asp.net/cssadapters/</a><br /><br />
ASP.NET 2.0 CSS Friendly Control Adapters: The White Paper<br /><a href="http://www.asp.net/CSSAdapters/WhitePaper.aspx">http://www.asp.net/CSSAdapters/WhitePaper.aspx</a><br /><p></p><img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=b6e2d587-e3c0-4195-9ddc-1964839686ac" /></div>
    </content>
  </entry>
  <entry>
    <title>"Managing Humans:" a New Book by Michael Lopp</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/04/22/ManagingHumansANewBookByMichaelLopp.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,b47fd87a-c258-4c17-b2b8-7fabb6d2d212.aspx</id>
    <published>2008-04-21T23:16:30.1377367-04:00</published>
    <updated>2008-04-21T23:16:30.1377367-04:00</updated>
    <category term="Book" label="Book" scheme="http://www.navazhylau.com/b/CategoryView,category,Book.aspx" />
    <category term="Cool" label="Cool" scheme="http://www.navazhylau.com/b/CategoryView,category,Cool.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">Great book highly recommend<br /><a href="http://www.infoq.com/news/2008/03/Managing_Humans">http://www.infoq.com/news/2008/03/Managing_Humans</a><p></p><img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=b47fd87a-c258-4c17-b2b8-7fabb6d2d212" /></div>
    </content>
  </entry>
  <entry>
    <title>Browser extention to aid Web Developer</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/04/22/BrowserExtentionToAidWebDeveloper.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,aaa86a8c-ae6c-42bc-adab-2b6819f1ea9f.aspx</id>
    <published>2008-04-21T23:14:32.8877367-04:00</published>
    <updated>2008-04-21T23:14:32.8877367-04:00</updated>
    <category term="Cool" label="Cool" scheme="http://www.navazhylau.com/b/CategoryView,category,Cool.aspx" />
    <category term="Helped with work" label="Helped with work" scheme="http://www.navazhylau.com/b/CategoryView,category,Helped%2Bwith%2Bwork.aspx" />
    <category term="IE" label="IE" scheme="http://www.navazhylau.com/b/CategoryView,category,IE.aspx" />
    <category term="Tools" label="Tools" scheme="http://www.navazhylau.com/b/CategoryView,category,Tools.aspx" />
    <category term="Useful stuff" label="Useful stuff" scheme="http://www.navazhylau.com/b/CategoryView,category,Useful%2Bstuff.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">Internet Explorer Developer Toolbar<br /><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=e59c3964-672d-4511-bb3e-2d5e1db91038&amp;displaylang=en">http://www.microsoft.com/downloads/details.aspx?FamilyID=e59c3964-672d-4511-bb3e-2d5e1db91038&amp;displaylang=en</a><br /><br />
Top 10 Must Have SEO Firefox Extensions!<br /><a href="http://www.pagetrafficblog.com/top-10-must-have-seo-firefox-extensions/2662/">http://www.pagetrafficblog.com/top-10-must-have-seo-firefox-extensions/2662/</a><p></p><img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=aaa86a8c-ae6c-42bc-adab-2b6819f1ea9f" /></div>
    </content>
  </entry>
  <entry>
    <title>Up and Running with SQLite on .NET in 3 Minutes</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/04/22/UpAndRunningWithSQLiteOnNETIn3Minutes.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,40a483a9-b85d-449d-8cfe-2dec6cbd0aeb.aspx</id>
    <published>2008-04-21T23:09:55.6377367-04:00</published>
    <updated>2008-04-21T23:09:55.6377367-04:00</updated>
    <category term="Agile" label="Agile" scheme="http://www.navazhylau.com/b/CategoryView,category,Agile.aspx" />
    <category term="Database design" label="Database design" scheme="http://www.navazhylau.com/b/CategoryView,category,Database%2Bdesign.aspx" />
    <category term="SQL Server" label="SQL Server" scheme="http://www.navazhylau.com/b/CategoryView,category,SQL%2BServer.aspx" />
    <category term="Tools" label="Tools" scheme="http://www.navazhylau.com/b/CategoryView,category,Tools.aspx" />
    <category term="Unit Testing" label="Unit Testing" scheme="http://www.navazhylau.com/b/CategoryView,category,Unit%2BTesting.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <a href="http://www.infoq.com/news/2008/01/sqlite-in-three-minutes">http://www.infoq.com/news/2008/01/sqlite-in-three-minutes</a>
        <p>
        </p>
        <img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=40a483a9-b85d-449d-8cfe-2dec6cbd0aeb" />
      </div>
    </content>
  </entry>
  <entry>
    <title>WatiN - Web Application Testing In .Net</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/04/22/WatiNWebApplicationTestingInNet.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,2af7ea59-e5d5-42e2-b112-de84d990fd22.aspx</id>
    <published>2008-04-21T23:04:28.3564867-04:00</published>
    <updated>2008-04-21T23:04:28.3564867-04:00</updated>
    <category term=".NET" label=".NET" scheme="http://www.navazhylau.com/b/CategoryView,category,.NET.aspx" />
    <category term="ASP.NET" label="ASP.NET" scheme="http://www.navazhylau.com/b/CategoryView,category,ASP.NET.aspx" />
    <category term="Cool" label="Cool" scheme="http://www.navazhylau.com/b/CategoryView,category,Cool.aspx" />
    <category term="Performance Tuning" label="Performance Tuning" scheme="http://www.navazhylau.com/b/CategoryView,category,Performance%2BTuning.aspx" />
    <category term="Tools" label="Tools" scheme="http://www.navazhylau.com/b/CategoryView,category,Tools.aspx" />
    <category term="Unit Testing" label="Unit Testing" scheme="http://www.navazhylau.com/b/CategoryView,category,Unit%2BTesting.aspx" />
    <category term="Useful stuff" label="Useful stuff" scheme="http://www.navazhylau.com/b/CategoryView,category,Useful%2Bstuff.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <a href="http://www.codeproject.com/KB/aspnet/WatiN.aspx">http://www.codeproject.com/KB/aspnet/WatiN.aspx</a>
        <br />
        <a href="http://watin.sourceforge.net/">http://watin.sourceforge.net/</a>
        <br />
        <a href="http://watintestrecord.sourceforge.net/">http://watintestrecord.sourceforge.net/</a>
        <img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=2af7ea59-e5d5-42e2-b112-de84d990fd22" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Themes In ASP.NET 2.0</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/04/22/ThemesInASPNET20.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,613297a1-551b-4939-a549-c32652db359f.aspx</id>
    <published>2008-04-21T23:03:08.0439867-04:00</published>
    <updated>2008-04-21T23:03:08.0439867-04:00</updated>
    <category term="ASP.NET" label="ASP.NET" scheme="http://www.navazhylau.com/b/CategoryView,category,ASP.NET.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <a href="http://www.odetocode.com/Articles/423.aspx">http://www.odetocode.com/Articles/423.aspx</a>
        <p>
        </p>
        <img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=613297a1-551b-4939-a549-c32652db359f" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Best Practices for Speeding Up Your Web Site</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/04/22/BestPracticesForSpeedingUpYourWebSite.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,8732e19c-3014-4f0a-83e2-6ab40e04a44a.aspx</id>
    <published>2008-04-21T23:02:10.356-04:00</published>
    <updated>2008-04-21T23:06:09.4971117-04:00</updated>
    <category term="Performance Tuning" label="Performance Tuning" scheme="http://www.navazhylau.com/b/CategoryView,category,Performance%2BTuning.aspx" />
    <category term="Tools" label="Tools" scheme="http://www.navazhylau.com/b/CategoryView,category,Tools.aspx" />
    <category term="Useful stuff" label="Useful stuff" scheme="http://www.navazhylau.com/b/CategoryView,category,Useful%2Bstuff.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">Best Practices for Speeding Up Your Web
Site -&gt; <a href="http://developer.yahoo.com/performance/rules.html#etags">http://developer.yahoo.com/performance/rules.html#etags</a><br />
Firebug -&gt; <a href="https://addons.mozilla.org/en-US/firefox/addon/1843">https://addons.mozilla.org/en-US/firefox/addon/1843</a><br />
YSlow   -&gt; <a href="http://developer.yahoo.com/yslow/">http://developer.yahoo.com/yslow/</a><br /><br />
HttpWebRequest and GZip Http Responses -&gt; <a href="http://www.west-wind.com/WebLog/posts/102969.aspx">http://www.west-wind.com/WebLog/posts/102969.aspx</a><img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=8732e19c-3014-4f0a-83e2-6ab40e04a44a" /></div>
    </content>
  </entry>
  <entry>
    <title>Inversion of Control and Dependency Injection</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/04/22/InversionOfControlAndDependencyInjection.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,1499bb39-1e60-41a0-8e5f-35bd1c463ea2.aspx</id>
    <published>2008-04-21T23:00:14.356-04:00</published>
    <updated>2008-04-26T12:39:09.4889117-04:00</updated>
    <category term=".NET" label=".NET" scheme="http://www.navazhylau.com/b/CategoryView,category,.NET.aspx" />
    <category term="Agile" label="Agile" scheme="http://www.navazhylau.com/b/CategoryView,category,Agile.aspx" />
    <category term="IoC/DI" label="IoC/DI" scheme="http://www.navazhylau.com/b/CategoryView,category,IoC%2fDI.aspx" />
    <category term="Useful stuff" label="Useful stuff" scheme="http://www.navazhylau.com/b/CategoryView,category,Useful%2Bstuff.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">Inversion of Control and Dependency Injection:
Working with Windsor Container ***** 
<br /><a href="http://msdn2.microsoft.com/en-us/library/aa973811.aspx">http://msdn2.microsoft.com/en-us/library/aa973811.aspx</a><br /><br />
Design for testability - Castle Windsor<a href="http://community.vuscode.com/malovicn/archive/2008/02/20/design-for-testability-castle-windsor-part-5.aspx"><br />
http://community.vuscode.com/malovicn/archive/2008/02/20/design-for-testability-castle-windsor-part-5.aspx</a><br /><br /><a href="http://dotnetslackers.com/articles/designpatterns/InversionOfControlAndDependencyInjectionWithCastleWindsorContainerPart1.aspx">Inversion
of Control and Dependency Injection with Castle Windsor Container</a><br /><br />
Container Tutorials<br /><a href="http://wiki.bittercoder.com/Default.aspx?Page=ContainerTutorials&amp;AspxAutoDetectCookieSupport=1">http://wiki.bittercoder.com/Default.aspx?Page=ContainerTutorials&amp;AspxAutoDetectCookieSupport=1</a><br /><br />
Inversion of Control Containers and the Dependency Injection pattern  *****<br /><a href="http://www.martinfowler.com/articles/injection.html">http://www.martinfowler.com/articles/injection.html</a><img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=1499bb39-1e60-41a0-8e5f-35bd1c463ea2" /></div>
    </content>
  </entry>
  <entry>
    <title>Dingo schema compiler for .NET</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/03/22/DingoSchemaCompilerForNET.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,de108577-774f-43bc-a326-8ccb60913c6a.aspx</id>
    <published>2008-03-22T13:54:37.566298-04:00</published>
    <updated>2008-03-22T13:54:37.566298-04:00</updated>
    <category term=".NET" label=".NET" scheme="http://www.navazhylau.com/b/CategoryView,category,.NET.aspx" />
    <category term="Tools" label="Tools" scheme="http://www.navazhylau.com/b/CategoryView,category,Tools.aspx" />
    <category term="Useful stuff" label="Useful stuff" scheme="http://www.navazhylau.com/b/CategoryView,category,Useful%2Bstuff.aspx" />
    <category term="Web Services" label="Web Services" scheme="http://www.navazhylau.com/b/CategoryView,category,Web%2BServices.aspx" />
    <category term="XML" label="XML" scheme="http://www.navazhylau.com/b/CategoryView,category,XML.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <i>Dingo is a pluggable Schema Compiler
for .NET and will generate C# code. The goal is to provide a simple way to generate
Domain Objects. .NET XSD currently only generates Data Objects. Dingo can delegate
code generation with high granularity. </i>
        <br />
        <a href="http://sourceforge.net/projects/dingo/"> http://sourceforge.net/projects/dingo/</a>
        <img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=de108577-774f-43bc-a326-8ccb60913c6a" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Any developer can use set of professionally desinged royalty free icons.</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/03/03/AnyDeveloperCanUseSetOfProfessionallyDesingedRoyaltyFreeIcons.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,9032fbf6-d9e7-4a91-99b5-089fda95589a.aspx</id>
    <published>2008-03-02T22:51:00.155-05:00</published>
    <updated>2008-03-02T22:51:28.8898707-05:00</updated>
    <category term="Cool" label="Cool" scheme="http://www.navazhylau.com/b/CategoryView,category,Cool.aspx" />
    <category term="Useful stuff" label="Useful stuff" scheme="http://www.navazhylau.com/b/CategoryView,category,Useful%2Bstuff.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">“Silk” is a smooth, free icon set, containing
over 700  16-by-16 pixel icons in strokably-soft PNG format. Containing a large
variety of icons, you're sure to find something that tickles your fancy. And all for
a low low price of $0.00. You can't say fairer than that.<br /><br /><a href="http://www.famfamfam.com/lab/icons/silk/">http://www.famfamfam.com/lab/icons/silk/</a><p></p><img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=9032fbf6-d9e7-4a91-99b5-089fda95589a" /></div>
    </content>
  </entry>
  <entry>
    <title>CSS contents and browser compatibility</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/03/03/CSSContentsAndBrowserCompatibility.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,25eb22e0-cefe-46b3-ba7d-32b67f717dcc.aspx</id>
    <published>2008-03-02T22:48:14.873004-05:00</published>
    <updated>2008-03-02T22:48:14.873004-05:00</updated>
    <category term="Helped with work" label="Helped with work" scheme="http://www.navazhylau.com/b/CategoryView,category,Helped%2Bwith%2Bwork.aspx" />
    <category term="Useful stuff" label="Useful stuff" scheme="http://www.navazhylau.com/b/CategoryView,category,Useful%2Bstuff.aspx" />
    <category term="When things go wrong" label="When things go wrong" scheme="http://www.navazhylau.com/b/CategoryView,category,When%2Bthings%2Bgo%2Bwrong.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <a href="http://www.quirksmode.org/css/contents.html">http://www.quirksmode.org/css/contents.html</a>
        <br />
        <a href="http://en.wikipedia.org/wiki/Comparison_of_layout_engines_%28CSS%29">http://en.wikipedia.org/wiki/Comparison_of_layout_engines_(CSS)</a>
        <br />
        <a href="http://www.thenoodleincident.com/tutorials/box_lesson/boxes.html">http://www.thenoodleincident.com/tutorials/box_lesson/boxes.html</a>
        <p>
        </p>
        <img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=25eb22e0-cefe-46b3-ba7d-32b67f717dcc" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Karl Seguin blog</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/03/03/KarlSeguinBlog.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,29fe46e4-8670-4430-b94e-ef369033c2f1.aspx</id>
    <published>2008-03-02T22:45:46.903307-05:00</published>
    <updated>2008-03-02T22:45:46.903307-05:00</updated>
    <category term="People" label="People" scheme="http://www.navazhylau.com/b/CategoryView,category,People.aspx" />
    <category term="Useful stuff" label="Useful stuff" scheme="http://www.navazhylau.com/b/CategoryView,category,Useful%2Bstuff.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <a href="http://codebetter.com/blogs/karlseguin/">http://codebetter.com/blogs/karlseguin/</a>
        <p>
        </p>
        <img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=29fe46e4-8670-4430-b94e-ef369033c2f1" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Building Multilingual Web Sites with ASP.NET</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/03/03/BuildingMultilingualWebSitesWithASPNET.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,cbe86a48-e3fb-4532-95df-9345a81e3aba.aspx</id>
    <published>2008-03-02T22:44:34.9028462-05:00</published>
    <updated>2008-03-02T22:44:34.9028462-05:00</updated>
    <category term=".NET" label=".NET" scheme="http://www.navazhylau.com/b/CategoryView,category,.NET.aspx" />
    <category term="ASP.NET" label="ASP.NET" scheme="http://www.navazhylau.com/b/CategoryView,category,ASP.NET.aspx" />
    <category term="Useful stuff" label="Useful stuff" scheme="http://www.navazhylau.com/b/CategoryView,category,Useful%2Bstuff.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <a href="http://quickstart.developerfusion.co.uk/QuickStart/aspnet/doc/localization/default.aspx">http://quickstart.developerfusion.co.uk/QuickStart/aspnet/doc/localization/default.aspx</a>
        <br />
        <a href="http://quickstart.developerfusion.co.uk/QuickStart/aspnet/doc/localization/default.aspx">http://www.beansoftware.com/ASP.NET-Tutorials/Globalisation-Multilingual-CultureInfo.aspx</a>
        <br />
        <a href="http://www.codeproject.com/script/Articles/MemberArticles.aspx?amid=1300189">http://www.codeproject.com/script/Articles/MemberArticles.aspx?amid=1300189</a>
        <br />
        <p>
        </p>
        <img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=cbe86a48-e3fb-4532-95df-9345a81e3aba" />
      </div>
    </content>
  </entry>
  <entry>
    <title>ASP.NET controls</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/03/03/ASPNETControls.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,b6c2043b-c5ae-4bb3-926a-e92aa5b8de5e.aspx</id>
    <published>2008-03-02T22:41:17.229-05:00</published>
    <updated>2008-03-02T22:44:49.3560637-05:00</updated>
    <category term="ASP.NET" label="ASP.NET" scheme="http://www.navazhylau.com/b/CategoryView,category,ASP.NET.aspx" />
    <category term="Controls" label="Controls" scheme="http://www.navazhylau.com/b/CategoryView,category,Controls.aspx" />
    <category term="Useful stuff" label="Useful stuff" scheme="http://www.navazhylau.com/b/CategoryView,category,Useful%2Bstuff.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <a href="http://testdrive.barnyardbbs.com/ASP.Net-Content-Blog-Gallery-Open-Source">http://testdrive.barnyardbbs.com/ASP.Net-Content-Blog-Gallery-Open-Source</a>
        <br />
        <ul>
          <li>
The <a href="http://testdrive.barnyardbbs.com/ContentControl.aspx">Content Control</a> (client-editable
regions in a web page)</li>
          <li>
The <a href="http://testdrive.barnyardbbs.com/BlogControl.aspx">Blog Control</a> (a
fully validating and CSS based blogging engine, implemented as a control)</li>
          <li>
The <a href="http://testdrive.barnyardbbs.com/GalleryControl.aspx">Photo Gallery Control</a> (a
fully validating and CSS based photo gallery, implemented as a control)</li>
        </ul>
        <img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=b6c2043b-c5ae-4bb3-926a-e92aa5b8de5e" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Essential knowledge and tools for web site performance optimization</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/03/03/EssentialKnowledgeAndToolsForWebSitePerformanceOptimization.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,d7e69717-2c71-4baa-89e2-281b0882446c.aspx</id>
    <published>2008-03-02T22:34:26.9458303-05:00</published>
    <updated>2008-03-02T22:34:26.9458303-05:00</updated>
    <category term="Agile" label="Agile" scheme="http://www.navazhylau.com/b/CategoryView,category,Agile.aspx" />
    <category term="Cool" label="Cool" scheme="http://www.navazhylau.com/b/CategoryView,category,Cool.aspx" />
    <category term="Performance Tuning" label="Performance Tuning" scheme="http://www.navazhylau.com/b/CategoryView,category,Performance%2BTuning.aspx" />
    <category term="Tools" label="Tools" scheme="http://www.navazhylau.com/b/CategoryView,category,Tools.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <b>Best Practices for Speeding Up Your Web
Site</b>
        <br />
        <a href="http://developer.yahoo.com/performance/rules.html#etags">http://developer.yahoo.com/performance/rules.html#etags</a>
        <br />
        <b>Firebug</b>
        <br />
        <a href="https://addons.mozilla.org/en-US/firefox/addon/1843">https://addons.mozilla.org/en-US/firefox/addon/1843</a>
        <br />
        <b>YSlow  </b>  <br /><a href="http://developer.yahoo.com/yslow/">http://developer.yahoo.com/yslow/</a><p></p><img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=d7e69717-2c71-4baa-89e2-281b0882446c" /></div>
    </content>
  </entry>
  <entry>
    <title>WatiN - Web Application Testing In .Net</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/03/03/WatiNWebApplicationTestingInNet.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,ca253c66-2c59-4e1a-9d47-2234830a39b0.aspx</id>
    <published>2008-03-02T22:32:04.3511677-05:00</published>
    <updated>2008-03-02T22:32:04.3511677-05:00</updated>
    <category term=".NET" label=".NET" scheme="http://www.navazhylau.com/b/CategoryView,category,.NET.aspx" />
    <category term="Agile" label="Agile" scheme="http://www.navazhylau.com/b/CategoryView,category,Agile.aspx" />
    <category term="ASP.NET" label="ASP.NET" scheme="http://www.navazhylau.com/b/CategoryView,category,ASP.NET.aspx" />
    <category term="Cool" label="Cool" scheme="http://www.navazhylau.com/b/CategoryView,category,Cool.aspx" />
    <category term="Tools" label="Tools" scheme="http://www.navazhylau.com/b/CategoryView,category,Tools.aspx" />
    <category term="Unit Testing" label="Unit Testing" scheme="http://www.navazhylau.com/b/CategoryView,category,Unit%2BTesting.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <a href="http://www.codeproject.com/KB/aspnet/WatiN.aspx">http://www.codeproject.com/KB/aspnet/WatiN.aspx</a>
        <br />
        <a href="http://watin.sourceforge.net/">http://watin.sourceforge.net/</a>
        <br />
        <a href="http://watintestrecord.sourceforge.net/">http://watintestrecord.sourceforge.net/</a>
        <br />
        <img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=ca253c66-2c59-4e1a-9d47-2234830a39b0" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Really good SOA presentation</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/03/03/ReallyGoodSOAPresentation.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,89196338-6676-4e67-b435-5677c2574725.aspx</id>
    <published>2008-03-02T22:28:56.2093386-05:00</published>
    <updated>2008-03-02T22:28:56.2093386-05:00</updated>
    <category term="Architecture" label="Architecture" scheme="http://www.navazhylau.com/b/CategoryView,category,Architecture.aspx" />
    <category term="SOA" label="SOA" scheme="http://www.navazhylau.com/b/CategoryView,category,SOA.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">If you missed "The Business Value of SOA"
presentation on InfoQ.com I highly recommend.<br /><br />
"In this presentation, recorded at QCon, Burton Group research director Anne Thomas
Manes talks about how to make the business case for SOA. 
<br />
Her talk covers explaining SOA to non-technical business people, various approaches
for selling SOA to management and gaining funding for SOA investments." and much more...<br /><br /><a href="http://www.infoq.com/presentations/anne-thomas-manes-business-soa" target="_blank">http://www.infoq.com/presentations/anne-thomas-manes-business-soa</a><img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=89196338-6676-4e67-b435-5677c2574725" /></div>
    </content>
  </entry>
  <entry>
    <title>Snippet Compiler</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/02/25/SnippetCompiler.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,55ab6ac0-7780-4b46-a9fa-135f038c921f.aspx</id>
    <published>2008-02-24T23:42:29.0877259-05:00</published>
    <updated>2008-02-24T23:42:29.0877259-05:00</updated>
    <category term="Cool" label="Cool" scheme="http://www.navazhylau.com/b/CategoryView,category,Cool.aspx" />
    <category term="Tools" label="Tools" scheme="http://www.navazhylau.com/b/CategoryView,category,Tools.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <a href="http://www.sliver.com/dotnet/SnippetCompiler/">http://www.sliver.com/dotnet/SnippetCompiler/</a>
        </p>
        <img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=55ab6ac0-7780-4b46-a9fa-135f038c921f" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Checks Web sites for broken links. </title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/02/25/ChecksWebSitesForBrokenLinks.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,38e05a84-00f3-4ab7-8c8a-35e3ba01202a.aspx</id>
    <published>2008-02-24T21:57:05.078-05:00</published>
    <updated>2008-02-24T22:48:09.1293623-05:00</updated>
    <category term="Cool" label="Cool" scheme="http://www.navazhylau.com/b/CategoryView,category,Cool.aspx" />
    <category term="When things go wrong" label="When things go wrong" scheme="http://www.navazhylau.com/b/CategoryView,category,When%2Bthings%2Bgo%2Bwrong.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <p>
          <img alt="Xenu screenshot report" src="http://www.navazhylau.com/b/content/binary/Zenu_example.jpg" align="right" nosave="nosave" />
        </p>
        <p>
It is hard to live without tool like <a href="http://home.snafu.de/tilman/xenulink.html">Xenu's
Link Sleuth</a> in today Internet age. This tool help me with projects at work. I
scanned this blog and found that I need to do some cleaning here as well.
</p>
        <p>
"<em>Xenu's Link Sleuth <font size="-2">(TM)</font> checks Web sites for broken links.
Link verification is done on "normal" links, images, frames, plug-ins, backgrounds,
local image maps, style sheets, scripts and java applets. It displays a continously
updated list of URLs which you can sort by different criteria. A report can be produced
at any time. "</em></p>
        <img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=38e05a84-00f3-4ab7-8c8a-35e3ba01202a" />
      </div>
    </content>
  </entry>
  <entry>
    <title>More Agile links</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/02/19/MoreAgileLinks.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,c8c6b628-6206-4716-96af-ffa3241d856f.aspx</id>
    <published>2008-02-18T22:51:17.28-05:00</published>
    <updated>2008-02-24T22:07:28.4262419-05:00</updated>
    <category term="Agile" label="Agile" scheme="http://www.navazhylau.com/b/CategoryView,category,Agile.aspx" />
    <category term="Architecture" label="Architecture" scheme="http://www.navazhylau.com/b/CategoryView,category,Architecture.aspx" />
    <category term="Useful stuff" label="Useful stuff" scheme="http://www.navazhylau.com/b/CategoryView,category,Useful%2Bstuff.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <a href="http://www.agilemodeling.com/">http://www.agilemodeling.com/</a>
        <br />
        <a href="http://www.agiledata.org/"> http://www.agiledata.org/</a>
        <br />
        <a href="http://www.ambysoft.com/unifiedprocess/agileUP.html">http://www.ambysoft.com/unifiedprocess/agileUP.html</a>
        <br />
        <a href="http://www.enterpriseunifiedprocess.com/">http://www.enterpriseunifiedprocess.com/</a>
        <img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=c8c6b628-6206-4716-96af-ffa3241d856f" />
      </div>
    </content>
  </entry>
  <entry>
    <title>Url Rewriting with ASP.NET</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/02/19/UrlRewritingWithASPNET.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,fc84d31b-7a79-4722-b732-200b3b19a421.aspx</id>
    <published>2008-02-18T22:48:14.513-05:00</published>
    <updated>2008-04-21T23:07:59.0752367-04:00</updated>
    <category term=".NET" label=".NET" scheme="http://www.navazhylau.com/b/CategoryView,category,.NET.aspx" />
    <category term="ASP.NET" label="ASP.NET" scheme="http://www.navazhylau.com/b/CategoryView,category,ASP.NET.aspx" />
    <category term="Helped with work" label="Helped with work" scheme="http://www.navazhylau.com/b/CategoryView,category,Helped%2Bwith%2Bwork.aspx" />
    <category term="Useful stuff" label="Useful stuff" scheme="http://www.navazhylau.com/b/CategoryView,category,Useful%2Bstuff.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">Url Rewriting with Regex for ASP.NET 2.0  
<br /><a href="http://www.developerfusion.co.uk/show/5302/">http://www.developerfusion.co.uk/show/5302/  </a>  <br /><br />
URL Mapping in ASP.NET 2.0    
<br /><a href="http://www.developer.com/net/asp/article.php/3581326">http://www.developer.com/net/asp/article.php/3581326</a><br /><br />
Tip/Trick: Url Rewriting with ASP.NET<br /><a temp_href=" http://weblogs.asp.net/scottgu/archive/2007/02/26/tip-trick-url-rewriting-with-asp-net.aspx" href="http://weblogs.asp.net/scottgu/archive/2007/02/26/tip-trick-url-rewriting-with-asp-net.aspx"> http://weblogs.asp.net/scottgu/archive/2007/02/26/tip-trick-url-rewriting-with-asp-net.aspx</a><br /><br />
UrlRewritingModule w/ Regular Expression Support for ASP.NET 2.0<br /><a href="http://weblogs.asp.net/scottgu/archive/2006/01/18/435870.aspx">http://weblogs.asp.net/scottgu/archive/2006/01/18/435870.aspx</a><br /><a href="http://www.urlrewriting.net/Config.aspx?Language=en&amp;AspxAutoDetectCookieSupport=1">http://www.urlrewriting.net/Config.aspx?Language=en&amp;AspxAutoDetectCookieSupport=1</a><img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=fc84d31b-7a79-4722-b732-200b3b19a421" /></div>
    </content>
  </entry>
  <entry>
    <title>Code reviews are fun again! ...almost.</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/02/19/CodeReviewsAreFunAgainAlmost.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,dc7e5610-a101-4708-bdc6-ba2b2026b03b.aspx</id>
    <published>2008-02-18T22:44:19.8249067-05:00</published>
    <updated>2008-02-18T22:44:19.8249067-05:00</updated>
    <category term="Cool" label="Cool" scheme="http://www.navazhylau.com/b/CategoryView,category,Cool.aspx" />
    <category term="Open Source" label="Open Source" scheme="http://www.navazhylau.com/b/CategoryView,category,Open%2BSource.aspx" />
    <category term="Tools" label="Tools" scheme="http://www.navazhylau.com/b/CategoryView,category,Tools.aspx" />
    <category term="Useful stuff" label="Useful stuff" scheme="http://www.navazhylau.com/b/CategoryView,category,Useful%2Bstuff.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">Review Board - Online Code Review Tool<br /><br /><a href="http://www.infoq.com/news/2008/02/reviewboard">http://www.infoq.com/news/2008/02/reviewboard</a><br /><a href="http://www.infoq.com/news/2008/02/reviewboard">http://www.review-board.org/</a><p></p><img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=dc7e5610-a101-4708-bdc6-ba2b2026b03b" /></div>
    </content>
  </entry>
  <entry>
    <title>We need to build Content Management System!</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/02/19/WeNeedToBuildContentManagementSystem.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,a9426666-a878-4469-afe0-93c6103f7d2a.aspx</id>
    <published>2008-02-18T21:58:45.198-05:00</published>
    <updated>2008-03-02T23:00:29.3308295-05:00</updated>
    <category term=".NET" label=".NET" scheme="http://www.navazhylau.com/b/CategoryView,category,.NET.aspx" />
    <category term="ASP.NET" label="ASP.NET" scheme="http://www.navazhylau.com/b/CategoryView,category,ASP.NET.aspx" />
    <category term="Cool" label="Cool" scheme="http://www.navazhylau.com/b/CategoryView,category,Cool.aspx" />
    <category term="Open Source" label="Open Source" scheme="http://www.navazhylau.com/b/CategoryView,category,Open%2BSource.aspx" />
    <category term="Useful stuff" label="Useful stuff" scheme="http://www.navazhylau.com/b/CategoryView,category,Useful%2Bstuff.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">
        <img src="http://www.navazhylau.com/b/content/binary/UniqueBulbSmall.jpg" align="right" border="0" />
        <br />
Every company needs them. Every company wants them. Every company want to spend money
on custom Content Management System that they can call their own. --&gt;<br /><br /><br />
Next time you try to reinvent CMS stop and first take a look at existing CMS systems
that very liberally licensed. If you cannot use them at least take a look at their
architecture. It will give you a good starting point.<br /><ul><li><a href="http://www.dotnetnuke.com">www.dotnetnuke.com</a><i>"DotNetNuke<sup>®</sup> is
a free, Open Source Framework ideal for creating Enterprise Web Applications..."</i></li><li><a href="http://umbraco.org/">http://umbraco.org/</a><i>"Umbraco - the simple, flexible
and friendly ASP.NET CMS..."</i></li><li><a href="http://www.mojoportal.com">www.mojoportal.com</a><i>"mojoPortal, is an open
source web site framework and content management system..."</i></li><li><a href="http://www.cuyahoga-project.org/">http://www.cuyahoga-project.org/</a><i>"Cuyahoga
is an open source .NET web site framework..."</i></li><li><a href="http://n2cms.com/">http://n2cms.com/</a><i>"N2 is a lightweight CMS framework
that focuses on ease of use and developer experience..."</i></li><li><a href="http://www.vwd-cms.com/">http://www.vwd-cms.com/</a><i>"VWD-CMS is a free,
open source content management system for ASP.NET..."</i></li><li><a href="http://www.axinom.com/en_axcms_home.AxCMS">www.axinom.com/en_axcms_home.AxCMS</a><i>"Axinom
Enterprise Content Management System AxCMS.net 7 is a award-winning content management
system..."</i></li></ul>
I was just concentrating on the CMS that based on ASP.NET and had a good web presence
and documentation.<br />
-----&gt;<br />
After some review of architectures Cuyahoga is leading this list for me. N2 is very
close behind the Cuyahoga as of March 02, 2008.<br />
When new frameworks come in to play I will review them and reassess. 
<br /><img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=a9426666-a878-4469-afe0-93c6103f7d2a" /></div>
    </content>
  </entry>
  <entry>
    <title>XML, XQuery and more</title>
    <link rel="alternate" type="text/html" href="http://www.navazhylau.com/b/2008/02/13/XMLXQueryAndMore.aspx" />
    <id>http://www.navazhylau.com/b/PermaLink,guid,00546aff-3141-4a33-be51-04a06e8b8446.aspx</id>
    <published>2008-02-12T19:52:24.9354427-05:00</published>
    <updated>2008-02-12T19:52:24.9354427-05:00</updated>
    <category term="Helped with work" label="Helped with work" scheme="http://www.navazhylau.com/b/CategoryView,category,Helped%2Bwith%2Bwork.aspx" />
    <category term="SQL Server" label="SQL Server" scheme="http://www.navazhylau.com/b/CategoryView,category,SQL%2BServer.aspx" />
    <category term="Web Services" label="Web Services" scheme="http://www.navazhylau.com/b/CategoryView,category,Web%2BServices.aspx" />
    <category term="XML" label="XML" scheme="http://www.navazhylau.com/b/CategoryView,category,XML.aspx" />
    <content type="xhtml">
      <div xmlns="http://www.w3.org/1999/xhtml">Using XQuery to Manage XML with SQL Server
2005 
<br /><a href="http://www.informit.com/articles/article.aspx?p=468058">http://www.informit.com/articles/article.aspx?p=468058</a><br /><br />
XQuery 1.0: An XML Query Language 
<br /><a temp_href="http://www.w3.org/TR/xquery/ " href="http://www.w3.org/TR/xquery/%20">http://www.w3.org/TR/xquery/ </a><br /><br />
XML Support in Microsoft SQL Server 2005 
<br /><a temp_href="http://www.w3.org/TR/xquery/ " href="http://www.w3.org/TR/xquery/%20">http://msdn2.microsoft.com/en-us/library/ms345117.aspx </a><br /><br />
Performance Optimizations for the XML Data Type in SQL Server 2005 
<br /><a href="http://technet.microsoft.com/en-us/library/ms345118.aspx">http://technet.microsoft.com/en-us/library/ms345118.aspx</a><img width="0" height="0" src="http://www.navazhylau.com/b/aggbug.ashx?id=00546aff-3141-4a33-be51-04a06e8b8446" /></div>
    </content>
  </entry>
</feed>