<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Silverlike &#187; Utilities</title>
	<atom:link href="http://silverlike.net/tag/utilities/feed/" rel="self" type="application/rss+xml" />
	<link>http://silverlike.net</link>
	<description>We Like Silverlight</description>
	<lastBuildDate>Mon, 07 Dec 2009 06:34:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Strip HTML Tags</title>
		<link>http://silverlike.net/strip-html-tags/</link>
		<comments>http://silverlike.net/strip-html-tags/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 22:15:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Common]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Html]]></category>
		<category><![CDATA[Utilities]]></category>

		<guid isPermaLink="false">http://silverlike.net/strip-html-tags/</guid>
		<description><![CDATA[Corey referred a very useful code snippet provided by John which helps you to strip HTML Tags.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.85turns.com/2009/09/29/silverlight-tip-managing-html/" target="_blank">Corey</a> referred a very useful code snippet provided by <a href="http://books.google.com/books?id=o92WkIjDpAUC&amp;pg=PP1&amp;dq=john+papa+silverlight&amp;ei=kQ2uSqSkDYnOzQTHqK2ABQ#v=onepage&amp;q=html%20regex&amp;f=false" target="_blank">John</a> which helps you to strip HTML Tags.</p>
<p class="image"><a href="http://www.85turns.com/2009/09/29/silverlight-tip-managing-html/" target="_blank"><img style="display: inline" title="Strip HTML Tags" alt="Strip HTML Tags" src="http://silverlike.net/wp-content/uploads/2009/10/StripHTMLTags.jpg" width="450" height="250" /></a> </p>
<div class="demo-area">Silverlight Demo: <a class="new-window" href="http://silverlike.net/silverlight/index.php?xap=%2Fwp-content%2Fuploads%2Fxap%2FStripHtmlTags.xap&TB_iframe=true&caption=Strip+HTML+Tags&height=400&width=650" target="_blank">Click here to view</a></div>
<div class="csharp-area">csharp title: </div>
<pre class="brush: c-sharp;">
private string StripHtmlTags(string value){
    int length = 0;
    int.TryParse(value, out length);

    // Remove HTML tags and empty newlines and spaces and leading spaces
    string formattedValue = Regex.Replace(value as string, &quot;&lt;.*?&gt;&quot;, &quot;&quot;);
    formattedValue = Regex.Replace(formattedValue, @&quot;\n+\s+&quot;, &quot;\n\n&quot;);
    formattedValue = formattedValue.TrimStart(' ');
    formattedValue = HttpUtility.HtmlDecode(formattedValue);
    if(length &gt; 0 &amp;&amp; formattedValue.Length &gt;= length)
        formattedValue = formattedValue.Substring(0, length - 1);
    return formattedValue;
}</pre>
<div class="reference-info"><strong>Website:</strong> <a href="http://silverlike.net/strip-html-tags/" title="http://silverlike.net/strip-html-tags/" target="_blank">Click here</a></div>
<div class="reference-info"><strong>Data Driven Services with Silverlight 2:</strong> <a href="http://silverlike.net/strip-html-tags/" title="http://silverlike.net/strip-html-tags/" target="_blank">Click here</a></div>
<img src="http://silverlike.net/?ak_action=api_record_view&id=697&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://silverlike.net/strip-html-tags/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Loading Animation</title>
		<link>http://silverlike.net/loading-animation/</link>
		<comments>http://silverlike.net/loading-animation/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 06:20:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Common]]></category>
		<category><![CDATA[Utilities]]></category>
		<category><![CDATA[XAML]]></category>

		<guid isPermaLink="false">http://silverlike.net/loading-animation/</guid>
		<description><![CDATA[A very simple loading animation in XAML format.]]></description>
			<content:encoded><![CDATA[<p>A very simple loading animation in XAML format.</p>
<p class="image"><a class="thickbox" href="http://www.shinedraw.com"><img style="display: inline" title="Loading Animation" alt="Loading Animation" src="http://silverlike.net/wp-content/uploads/2009/09/LoadingAnimation_thumb.jpg" width="400" height="250" /></a></p>
<div class="demo-area">Silverlight Demo: <a class="new-window" href="http://silverlike.net/silverlight/index.php?xap=%2Fwp-content%2Fuploads%2Fxap%2FShineDraw.Controls.xap&TB_iframe=true&caption=Loading+Animation&height=400&width=650" target="_blank">Click here to view</a></div>
<div class="xaml-area">Create a simple loading in XAML: </div>
<pre class="brush: xml;">&lt;UserControl x:Class=&quot;ShineDraw.Controls.LoadingAnimation&quot;
    xmlns=&quot;http://schemas.microsoft.com/winfx/2006/xaml/presentation&quot;
    xmlns:x=&quot;http://schemas.microsoft.com/winfx/2006/xaml&quot;
    Width=&quot;400&quot; Height=&quot;400&quot; &gt;
    &lt;UserControl.Resources&gt;
        &lt;Storyboard x:Name=&quot;Rotation&quot; RepeatBehavior=&quot;Forever&quot;&gt;
            &lt;DoubleAnimationUsingKeyFrames BeginTime=&quot;00:00:00&quot; Storyboard.TargetName=&quot;LayoutRoot&quot; Storyboard.TargetProperty=&quot;(UIElement.RenderTransform).(TransformGroup.Children)[2].(RotateTransform.Angle)&quot;&gt;
                &lt;SplineDoubleKeyFrame KeyTime=&quot;00:00:00&quot; Value=&quot;0&quot;/&gt;
                &lt;SplineDoubleKeyFrame KeyTime=&quot;00:00:00.2000000&quot; Value=&quot;0&quot;/&gt;
                &lt;SplineDoubleKeyFrame KeyTime=&quot;00:00:00.2000000&quot; Value=&quot;45&quot;/&gt;
                &lt;SplineDoubleKeyFrame KeyTime=&quot;00:00:00.4000000&quot; Value=&quot;45&quot;/&gt;
                &lt;SplineDoubleKeyFrame KeyTime=&quot;00:00:00.4000000&quot; Value=&quot;90&quot;/&gt;
                &lt;SplineDoubleKeyFrame KeyTime=&quot;00:00:00.6000000&quot; Value=&quot;90&quot;/&gt;
                &lt;SplineDoubleKeyFrame KeyTime=&quot;00:00:00.6000000&quot; Value=&quot;135&quot;/&gt;
                &lt;SplineDoubleKeyFrame KeyTime=&quot;00:00:00.8000000&quot; Value=&quot;135&quot;/&gt;
                &lt;SplineDoubleKeyFrame KeyTime=&quot;00:00:00.8000000&quot; Value=&quot;180&quot;/&gt;
                &lt;SplineDoubleKeyFrame KeyTime=&quot;00:00:01.0000000&quot; Value=&quot;180&quot;/&gt;
                &lt;SplineDoubleKeyFrame KeyTime=&quot;00:00:01.0000000&quot; Value=&quot;225&quot;/&gt;
                &lt;SplineDoubleKeyFrame KeyTime=&quot;00:00:01.2000000&quot; Value=&quot;225&quot;/&gt;
                &lt;SplineDoubleKeyFrame KeyTime=&quot;00:00:01.2000000&quot; Value=&quot;270&quot;/&gt;
                &lt;SplineDoubleKeyFrame KeyTime=&quot;00:00:01.4000000&quot; Value=&quot;270&quot;/&gt;
                &lt;SplineDoubleKeyFrame KeyTime=&quot;00:00:01.4000000&quot; Value=&quot;315&quot;/&gt;
                &lt;SplineDoubleKeyFrame KeyTime=&quot;00:00:01.6000000&quot; Value=&quot;315&quot;/&gt;
            &lt;/DoubleAnimationUsingKeyFrames&gt;
        &lt;/Storyboard&gt;
    &lt;/UserControl.Resources&gt;

    &lt;Grid x:Name=&quot;LayoutRoot&quot; Background=&quot;Transparent&quot; RenderTransformOrigin=&quot;0.5,0.5&quot;&gt;
        &lt;Grid.RenderTransform&gt;
            &lt;TransformGroup&gt;
                &lt;ScaleTransform/&gt;
                &lt;SkewTransform/&gt;
                &lt;RotateTransform/&gt;
                &lt;TranslateTransform/&gt;
            &lt;/TransformGroup&gt;
        &lt;/Grid.RenderTransform&gt;
        &lt;Ellipse Width=&quot;100&quot; Height=&quot;100&quot; Fill=&quot;#FF000000&quot; &gt;
            &lt;Ellipse.RenderTransform&gt;
                &lt;TransformGroup&gt;
                    &lt;ScaleTransform/&gt;
                    &lt;SkewTransform/&gt;
                    &lt;RotateTransform/&gt;
                    &lt;TranslateTransform X=&quot;-150&quot;/&gt;
                &lt;/TransformGroup&gt;
            &lt;/Ellipse.RenderTransform&gt;
        &lt;/Ellipse&gt;
        &lt;Ellipse Width=&quot;100&quot; Height=&quot;100&quot; Fill=&quot;#FFAAAAAA&quot; &gt;
            &lt;Ellipse.RenderTransform&gt;
                &lt;TransformGroup&gt;
                    &lt;ScaleTransform/&gt;
                    &lt;SkewTransform/&gt;
                    &lt;RotateTransform Angle=&quot;45&quot; CenterX=&quot;200&quot; CenterY=&quot;50&quot;/&gt;
                    &lt;TranslateTransform X=&quot;-150&quot;/&gt;
                &lt;/TransformGroup&gt;
            &lt;/Ellipse.RenderTransform&gt;
        &lt;/Ellipse&gt;
        &lt;Ellipse Width=&quot;100&quot; Height=&quot;100&quot; Fill=&quot;#FFAAAAAA&quot;  &gt;
            &lt;Ellipse.RenderTransform&gt;
                &lt;TransformGroup&gt;
                    &lt;ScaleTransform/&gt;
                    &lt;SkewTransform/&gt;
                    &lt;RotateTransform Angle=&quot;90&quot; CenterX=&quot;200&quot; CenterY=&quot;50&quot;/&gt;
                    &lt;TranslateTransform X=&quot;-150&quot;/&gt;
                &lt;/TransformGroup&gt;
            &lt;/Ellipse.RenderTransform&gt;
        &lt;/Ellipse&gt;
        &lt;Ellipse Width=&quot;100&quot; Height=&quot;100&quot; Fill=&quot;#FFAAAAAA&quot;  &gt;
            &lt;Ellipse.RenderTransform&gt;
                &lt;TransformGroup&gt;
                    &lt;ScaleTransform/&gt;
                    &lt;SkewTransform/&gt;
                    &lt;RotateTransform Angle=&quot;135&quot; CenterX=&quot;200&quot; CenterY=&quot;50&quot;/&gt;
                    &lt;TranslateTransform X=&quot;-150&quot;/&gt;
                &lt;/TransformGroup&gt;
            &lt;/Ellipse.RenderTransform&gt;
        &lt;/Ellipse&gt;
        &lt;Ellipse Width=&quot;100&quot; Height=&quot;100&quot; Fill=&quot;#FF999999&quot;  &gt;
            &lt;Ellipse.RenderTransform&gt;
                &lt;TransformGroup&gt;
                    &lt;ScaleTransform/&gt;
                    &lt;SkewTransform/&gt;
                    &lt;RotateTransform Angle=&quot;180&quot; CenterX=&quot;200&quot; CenterY=&quot;50&quot;/&gt;
                    &lt;TranslateTransform X=&quot;-150&quot;/&gt;
                &lt;/TransformGroup&gt;
            &lt;/Ellipse.RenderTransform&gt;
        &lt;/Ellipse&gt;
        &lt;Ellipse Width=&quot;100&quot; Height=&quot;100&quot; Fill=&quot;#FF777777&quot; &gt;
            &lt;Ellipse.RenderTransform&gt;
                &lt;TransformGroup&gt;
                    &lt;ScaleTransform/&gt;
                    &lt;SkewTransform/&gt;
                    &lt;RotateTransform Angle=&quot;225&quot; CenterX=&quot;200&quot; CenterY=&quot;50&quot;/&gt;
                    &lt;TranslateTransform X=&quot;-150&quot;/&gt;
                &lt;/TransformGroup&gt;
            &lt;/Ellipse.RenderTransform&gt;
        &lt;/Ellipse&gt;
        &lt;Ellipse Width=&quot;100&quot; Height=&quot;100&quot; Fill=&quot;#FF555555&quot;  &gt;
            &lt;Ellipse.RenderTransform&gt;
                &lt;TransformGroup&gt;
                    &lt;ScaleTransform/&gt;
                    &lt;SkewTransform/&gt;
                    &lt;RotateTransform Angle=&quot;270&quot; CenterX=&quot;200&quot; CenterY=&quot;50&quot;/&gt;
                    &lt;TranslateTransform X=&quot;-150&quot;/&gt;
                &lt;/TransformGroup&gt;
            &lt;/Ellipse.RenderTransform&gt;
        &lt;/Ellipse&gt;
        &lt;Ellipse Width=&quot;100&quot; Height=&quot;100&quot; Fill=&quot;#FF333333&quot;  &gt;
            &lt;Ellipse.RenderTransform&gt;
                &lt;TransformGroup&gt;
                    &lt;ScaleTransform/&gt;
                    &lt;SkewTransform/&gt;
                    &lt;RotateTransform Angle=&quot;315&quot; CenterX=&quot;200&quot; CenterY=&quot;50&quot;/&gt;
                    &lt;TranslateTransform X=&quot;-150&quot;/&gt;
                &lt;/TransformGroup&gt;
            &lt;/Ellipse.RenderTransform&gt;
        &lt;/Ellipse&gt;
    &lt;/Grid&gt;
&lt;/UserControl&gt;</pre>
<div class="reference-info"><strong>Website:</strong> <a href="http://silverlike.net/loading-animation/" title="http://silverlike.net/loading-animation/" target="_blank">Click here</a></div>
<img src="http://silverlike.net/?ak_action=api_record_view&id=424&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://silverlike.net/loading-animation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Create Gradient Background</title>
		<link>http://silverlike.net/create-gradient-background/</link>
		<comments>http://silverlike.net/create-gradient-background/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 06:50:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Common]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Utilities]]></category>
		<category><![CDATA[XAML]]></category>

		<guid isPermaLink="false">http://silverlike.net/create-gradient-background-in-xaml/</guid>
		<description><![CDATA[Most of the time when you are using Visual Studio and you don't' want to open Blend for just setting a very Gradient Background! The below code can surely help you.]]></description>
			<content:encoded><![CDATA[<p>Most of the time when you are using Visual Studio and you don&#8217;t&#8217; want to open Blend for just setting a very Gradient Background! The below code can surely help you.</p>
<p class="image"><a class="thickbox" href="http://silverlike.net/wp-content/uploads/2009/09/CreateGradientBackgroundinXAML.jpg"><img style="display: inline" title="Create Gradient Background in XAML" alt="Create Gradient Background in XAML" src="http://silverlike.net/wp-content/uploads/2009/09/CreateGradientBackgroundinXAML_thumb.jpg" width="400" height="250" /></a></p>
<div class="csharp-area">Creat gradient background in c#: </div>
<pre class="brush: c-sharp;">
LinearGradientBrush linear = new LinearGradientBrush();
linear.StartPoint = new Point(0.5, 0);
linear.EndPoint = new Point(0.5, 1);

GradientStop g1 = new GradientStop();
g1.Color = _backgroundColor1;
g1.Offset = 0;

GradientStop g2 = new GradientStop();
g2.Color = _backgroundColor2;
g1.Offset = 1;

linear.GradientStops.Add(g2);
linear.GradientStops.Add(g1);

Border border = new Border();
border.Background = linear;</pre>
<div class="xaml-area">Creating gradient background in xaml: </div>
<pre class="brush: xml;">&lt;UserControl x:Class=&quot;GradientBackground.Page&quot;
    xmlns=&quot;http://schemas.microsoft.com/winfx/2006/xaml/presentation&quot;
    xmlns:x=&quot;http://schemas.microsoft.com/winfx/2006/xaml&quot;
    Width=&quot;600&quot; Height=&quot;400&quot;&gt;
    &lt;Grid x:Name=&quot;LayoutRoot&quot; Background=&quot;White&quot;&gt;
        &lt;Rectangle Stroke=&quot;Black&quot; Height=&quot;180&quot; HorizontalAlignment=&quot;Left&quot; Margin=&quot;10,10,0,0&quot; VerticalAlignment=&quot;Top&quot; Width=&quot;285&quot;&gt;
            &lt;Rectangle.Fill&gt;
                &lt;LinearGradientBrush EndPoint=&quot;0.5,1&quot; StartPoint=&quot;0.5,0&quot;&gt;
                    &lt;GradientStop Color=&quot;Black&quot; Offset=&quot;0&quot;/&gt;
                    &lt;GradientStop Color=&quot;White&quot; Offset=&quot;1&quot;/&gt;
                &lt;/LinearGradientBrush&gt;
            &lt;/Rectangle.Fill&gt;
        &lt;/Rectangle&gt;
        &lt;Rectangle Stroke=&quot;Black&quot; Height=&quot;190&quot; HorizontalAlignment=&quot;Left&quot; Margin=&quot;10,0,0,10&quot; VerticalAlignment=&quot;Bottom&quot; Width=&quot;285&quot;&gt;
            &lt;Rectangle.Fill&gt;
                &lt;LinearGradientBrush EndPoint=&quot;0,0&quot; StartPoint=&quot;0,1&quot;&gt;
                    &lt;GradientStop Color=&quot;Black&quot; Offset=&quot;0&quot;/&gt;
                    &lt;GradientStop Color=&quot;White&quot; Offset=&quot;0.1&quot;/&gt;
                    &lt;GradientStop Color=&quot;Black&quot; Offset=&quot;0.2&quot;/&gt;
                    &lt;GradientStop Color=&quot;White&quot; Offset=&quot;0.3&quot;/&gt;
                    &lt;GradientStop Color=&quot;Black&quot; Offset=&quot;0.4&quot;/&gt;
                    &lt;GradientStop Color=&quot;White&quot; Offset=&quot;0.5&quot;/&gt;
                    &lt;GradientStop Color=&quot;Black&quot; Offset=&quot;0.6&quot;/&gt;
                    &lt;GradientStop Color=&quot;White&quot; Offset=&quot;0.7&quot;/&gt;
                    &lt;GradientStop Color=&quot;Black&quot; Offset=&quot;0.8&quot;/&gt;
                    &lt;GradientStop Color=&quot;White&quot; Offset=&quot;0.9&quot;/&gt;
                    &lt;GradientStop Color=&quot;Black&quot; Offset=&quot;1&quot;/&gt;
                &lt;/LinearGradientBrush&gt;
            &lt;/Rectangle.Fill&gt;
        &lt;/Rectangle&gt;
        &lt;Rectangle Stroke=&quot;Black&quot; Height=&quot;180&quot; HorizontalAlignment=&quot;Right&quot; Margin=&quot;0,10,10,0&quot; VerticalAlignment=&quot;Top&quot; Width=&quot;285&quot;&gt;
            &lt;Rectangle.Fill&gt;
                &lt;LinearGradientBrush EndPoint=&quot;0,0&quot; StartPoint=&quot;1,1&quot;&gt;
                    &lt;GradientStop Color=&quot;Black&quot; Offset=&quot;0&quot;/&gt;
                    &lt;GradientStop Color=&quot;Red&quot; Offset=&quot;1&quot;/&gt;
                &lt;/LinearGradientBrush&gt;
            &lt;/Rectangle.Fill&gt;
        &lt;/Rectangle&gt;
        &lt;Rectangle Stroke=&quot;Black&quot; Height=&quot;190&quot; HorizontalAlignment=&quot;Right&quot; Margin=&quot;0,0,10,10&quot; VerticalAlignment=&quot;Bottom&quot; Width=&quot;285&quot;&gt;
            &lt;Rectangle.Fill&gt;
                &lt;RadialGradientBrush&gt;
                    &lt;GradientStop Color=&quot;White&quot; Offset=&quot;0&quot;/&gt;
                    &lt;GradientStop Color=&quot;Black&quot; Offset=&quot;1&quot;/&gt;
                &lt;/RadialGradientBrush&gt;
            &lt;/Rectangle.Fill&gt;
        &lt;/Rectangle&gt;
    &lt;/Grid&gt;
&lt;/UserControl&gt;</pre>
<div class="demo-area">Silverlight Demo: <a class="new-window" href="http://silverlike.net/silverlight/index.php?xap=%2Fwp-content%2Fuploads%2Fxap%2FGradientBackground.xap&TB_iframe=true&caption=Create+Gradient+Background&height=400&width=650" target="_blank">Click here to view</a></div>
<div class="reference-info"><strong>Website:</strong> <a href="http://silverlike.net/create-gradient-background/" title="http://silverlike.net/create-gradient-background/" target="_blank">Click here</a></div>
<img src="http://silverlike.net/?ak_action=api_record_view&id=450&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://silverlike.net/create-gradient-background/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ASCII Table</title>
		<link>http://silverlike.net/ascii-table/</link>
		<comments>http://silverlike.net/ascii-table/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 11:35:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Common]]></category>
		<category><![CDATA[ASCII]]></category>
		<category><![CDATA[Utilities]]></category>

		<guid isPermaLink="false">http://silverlike.net/ascii-table/</guid>
		<description><![CDATA[This utility helps you to figure out the ASCII code of special characters. Very useful when you want to add some special character in your XAML.]]></description>
			<content:encoded><![CDATA[<p>This utility helps you to figure out the ASCII code of special characters. Very useful when you want to add some special character in your XAML.</p>
<p class="image"><a class="thickbox" href="http://www.shinedraw.com" target="_blank"><img style="display: inline" title="ASCII-Table" alt="ASCII-Table" src="http://silverlike.net/wp-content/uploads/2009/09/ASCIITable.jpg" width="400" height="250" /></a></p>
<div class="demo-area">Silverlight Demo: <a class="new-window" href="http://silverlike.net/silverlight/index.php?xap=%2Fwp-content%2Fuploads%2Fxap%2FShineDraw.Controls_1.xap&TB_iframe=true&caption=ASCII+Table&height=400&width=650" target="_blank">Click here to view</a></div>
<div class="reference-info"><strong>Website:</strong> <a href="http://silverlike.net/ascii-table/" title="http://silverlike.net/ascii-table/" target="_blank">Click here</a></div>
<img src="http://silverlike.net/?ak_action=api_record_view&id=286&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://silverlike.net/ascii-table/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!--
This site's performance optimized by W3 Total Cache:

W3 Total Cache improves the user experience of your blog by caching
frequent operations, reducing the weight of various files and providing
transparent content delivery network integration.

Learn more about our WordPress Plugins: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk

Served from: shareelements.silverlighteffect.com @ 2012-05-19 02:40:28 -->
