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

<channel>
	<title>Dimarzionist's Weblog</title>
	<atom:link href="http://dimarzionist.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://dimarzionist.wordpress.com</link>
	<description>Australian Quest</description>
	<lastBuildDate>Mon, 06 Apr 2009 06:05:44 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='dimarzionist.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/c043d01bf5317f4441d24722222df277?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Dimarzionist's Weblog</title>
		<link>http://dimarzionist.wordpress.com</link>
	</image>
			<item>
		<title>howto: Get DELL service tag in Windows</title>
		<link>http://dimarzionist.wordpress.com/2009/04/06/howto-get-dell-service-tag-in-windows/</link>
		<comments>http://dimarzionist.wordpress.com/2009/04/06/howto-get-dell-service-tag-in-windows/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 06:05:44 +0000</pubDate>
		<dc:creator>dimarzionist</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Dell]]></category>
		<category><![CDATA[service tag]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://dimarzionist.wordpress.com/2009/04/06/howto-get-dell-service-tag-in-windows/</guid>
		<description><![CDATA[C:\&#62;wmic bios get serialnumber
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dimarzionist.wordpress.com&blog=3215162&post=88&subd=dimarzionist&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>C:\&gt;wmic bios get serialnumber</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dimarzionist.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dimarzionist.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dimarzionist.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dimarzionist.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dimarzionist.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dimarzionist.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dimarzionist.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dimarzionist.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dimarzionist.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dimarzionist.wordpress.com/88/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dimarzionist.wordpress.com&blog=3215162&post=88&subd=dimarzionist&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dimarzionist.wordpress.com/2009/04/06/howto-get-dell-service-tag-in-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/be637555e0c0f493c6c9ec14b62c7c2c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dimarzionist</media:title>
		</media:content>
	</item>
		<item>
		<title>How to make SQL Server Notifications work</title>
		<link>http://dimarzionist.wordpress.com/2009/04/01/how-to-make-sql-server-notifications-work/</link>
		<comments>http://dimarzionist.wordpress.com/2009/04/01/how-to-make-sql-server-notifications-work/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 23:16:04 +0000</pubDate>
		<dc:creator>dimarzionist</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://dimarzionist.wordpress.com/2009/04/01/how-to-make-sql-server-notifications-work/</guid>
		<description><![CDATA[&#160;
1. Enabling CLR

sp_configure &#8217;show advanced options&#8217;, 1;
GO
RECONFIGURE;
GO
sp_configure &#8216;clr enabled&#8217;, 1;
GO
RECONFIGURE;
GO
2. Grant necessary permissions to SQL Server user
In order to use the SqlDependency infrastructure, the sql user must be able to create a procedure, a service and a queue, must be granted REFERENCES permission on the QN contract and must have &#8217;subscribe query notifications&#8217; permission. In [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dimarzionist.wordpress.com&blog=3215162&post=87&subd=dimarzionist&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><h3>&#160;</h3>
<h3>1. Enabling CLR</h3>
</p>
<p><font face="courier new">sp_configure &#8217;show advanced options&#8217;, 1;</font></p>
<p><font face="courier new">GO</font></p>
<p><font face="courier new">RECONFIGURE;</font></p>
<p><font face="courier new">GO</font></p>
<p><font face="courier new">sp_configure &#8216;clr enabled&#8217;, 1;</font></p>
<p><font face="courier new">GO</font></p>
<p><font face="courier new">RECONFIGURE;</font></p>
<p><font face="courier new">GO</font></p>
<h3>2. Grant necessary permissions to SQL Server user</h3>
<p>In order to use the SqlDependency infrastructure, the sql user must be able to create a procedure, a service and a queue, must be granted REFERENCES permission on the QN contract and must have &#8217;subscribe query notifications&#8217; permission. In adition, for reasons I&#8217;m not sure I comprehend, it must have have suficient permissions over the [dbo] schema to be able to create a queue and procedure in it and be able impersonate the queue owner (that is, [dbo]).</p>
<p><font face="Courier New">GRANT CREATE PROCEDURE TO [SqlUser];</font></p>
<p><font face="Courier New">GRANT CREATE SERVICE TO [SqlUser];</font></p>
<p><font face="Courier New">GRANT CREATE QUEUE TO [SqlUser];</font></p>
<p><font face="Courier New">GRANT REFERENCES ON CONTRACT::[http://schemas.microsoft.com/SQL/Notifications/PostQueryNotification] TO [SqlUser];</font></p>
<p><font face="Courier New">GRANT SUBSCRIBE QUERY NOTIFICATIONS TO [SqlUser];</font></p>
<p><font face="Courier New">GRANT CONTROL</font></p>
<p><font face="Courier New">ON SCHEMA::[dbo] TO [SqlUser];</font></p>
<p><font face="Courier New">GRANT IMPERSONATE ON USER::DBO TO [SqlUser];</font></p>
<h3>3. SQL Server account</h3>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top">
<p>Service Account for SQL Server</p>
</td>
<td valign="top">
<p>An application will not receive notifications from an instance of SQL Server that uses the Local System account as the service account. For more information, see &quot;Setting Up Windows Service Accounts&quot; in SQL Server Books Online.</p>
</td>
</tr>
</tbody>
</table>
<p>Also check that your login account has all necessary permissions under specific database.</p>
<p><b></b></p>
<h3>4. SQL Queries</h3>
<p>Query notifications are supported for SELECT statements that meet the following requirements: </p>
<ul>
<li>The projected columns in the SELECT statement must be explicitly stated, and table names must be qualified with two-part names. Notice that this means that all tables referenced in the statement must be in the same database. </li>
<li>The statement may not use the asterisk (*) or table_name.* syntax to specify columns. </li>
<li>The statement may not use unnamed columns or duplicate column names. </li>
<li>The statement must reference a base table. </li>
<li>The projected columns in the SELECT statement may not contain aggregate expressions unless the statement uses a GROUP BY expression. When a GROUP BY expression is provided, the select list may contain the aggregate functions COUNT_BIG() or SUM(). However, SUM() may not be specified for a nullable column. The statement may not specify HAVING, CUBE, or ROLLUP. </li>
<li>A projected column in the SELECT statement that is used as a simple expression must not appear more than once. </li>
<li>The statement must not include PIVOT or UNPIVOT operators. </li>
<li>The statement must not include the INTERSECT or EXCEPT operators. </li>
<li>The statement must not reference a view. </li>
<li>The statement must not contain any of the following: DISTINCT, COMPUTE or COMPUTE BY, or INTO. </li>
<li>The statement must not reference server global variables (@@variable_name). </li>
<li>The statement must not reference derived tables, temporary tables, or table variables. </li>
<li>The statement must not reference tables or views from other databases or servers. </li>
<li>The statement must not contain subqueries, outer joins, or self-joins. </li>
<li>The statement must not reference the large object types: text, ntext, and image. </li>
<li>The statement must not use the CONTAINS or FREETEXT full-text predicates. </li>
<li>The statement must not use rowset functions, including OPENROWSET and OPENQUERY. </li>
<li>The statement must not use any of the following aggregate functions: AVG, COUNT(*), MAX, MIN, STDEV, STDEVP, VAR, or VARP. </li>
<li>The statement must not use any nondeterministic functions, including ranking and windowing functions. </li>
<li>The statement must not contain user-defined aggregates. </li>
<li>The statement must not reference system tables or views, including catalog views and dynamic management views. </li>
<li>The statement must not include FOR BROWSE information. </li>
<li>The statement must not reference a queue. </li>
<li>The statement must not contain conditional statements that cannot change and cannot return results (for example, WHERE 1=0). </li>
</ul>
<h3>5. Alter authorization on database </h3>
<p>Try to change db owner first to sa.</p>
<p><font face="Courier New">ALTER AUTHORIZATION ON DATABASE::[CDR] TO [SA];</font></p>
<h3>6. Setup new instance of Service Broker (renew, enable)</h3>
<p><b><u>DON’T FORGET TO SWITCH DATABASE TO SINGLE_USER MODE BEFORE RUNNING THIS COMMAND!</u></b></p>
<p>1) <font face="Courier New">ALTER DATABASE xDB SET NEW_BROKER WITH ROLLBACK IMMEDIATE;</font></p>
<p>2) <font face="Courier New">ALTER DATABASE xDB SET NEW_BROKER</font></p>
<p>3) <font face="Courier New">ALTER DATABASE xDB SET ENABLE_BROKER;</font></p>
<p>Then I checked that it had worked:</p>
<p><font face="Courier New">SELECT is_broker_enabled FROM sys.databases WHERE name = &#8216;MyDB&#8217;;</font></p>
<h3>7. When using SqlDependency</h3>
<p>· Ensure you call SqlDependency.Start(connectionString) before subscribing to any notifications</p>
<p>· Ensure you are not calling SqlDependency.Stop(connectionString) too early, i.e. when some notifications still could be raised</p>
<h4>LINKS:</h4>
<p><a href="http://msdn.microsoft.com/en-us/library/t9x04ed2(VS.80).aspx"><b>http://msdn.microsoft.com/en-us/library/t9&#215;04ed2(VS.80).aspx</b></a><b></b></p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms131048.aspx">http://msdn.microsoft.com/en-us/library/ms131048.aspx</a></p>
<p><a href="http://social.msdn.microsoft.com/Forums/en-US/sqlservicebroker/thread/505778e4-be04-4673-892c-917b91872aef/">http://social.msdn.microsoft.com/Forums/en-US/sqlservicebroker/thread/505778e4-be04-4673-892c-917b91872aef/</a></p>
<p><a href="http://social.msdn.microsoft.com/forums/en-US/sqlservicebroker/thread/bd195da8-93b2-43c6-8f59-674f5fb9d618/">http://social.msdn.microsoft.com/forums/en-US/sqlservicebroker/thread/bd195da8-93b2-43c6-8f59-674f5fb9d618/</a></p>
<p><a href="http://www.codeproject.com/KB/database/SqlDependencyPermissions.aspx?msg=2487937#xx2487937xx">http://www.codeproject.com/KB/database/SqlDependencyPermissions.aspx?msg=2487937#xx2487937xx</a></p>
<p><a href="http://social.msdn.microsoft.com/Forums/en-US/sqlservicebroker/thread/f5419d1c-e63e-4012-ac7d-857b13fed6b3/">http://social.msdn.microsoft.com/Forums/en-US/sqlservicebroker/thread/f5419d1c-e63e-4012-ac7d-857b13fed6b3/</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dimarzionist.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dimarzionist.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dimarzionist.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dimarzionist.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dimarzionist.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dimarzionist.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dimarzionist.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dimarzionist.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dimarzionist.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dimarzionist.wordpress.com/87/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dimarzionist.wordpress.com&blog=3215162&post=87&subd=dimarzionist&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dimarzionist.wordpress.com/2009/04/01/how-to-make-sql-server-notifications-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/be637555e0c0f493c6c9ec14b62c7c2c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dimarzionist</media:title>
		</media:content>
	</item>
		<item>
		<title>WPF Workshop last Saturday</title>
		<link>http://dimarzionist.wordpress.com/2009/03/30/wpf-workshop-last-saturday/</link>
		<comments>http://dimarzionist.wordpress.com/2009/03/30/wpf-workshop-last-saturday/#comments</comments>
		<pubDate>Mon, 30 Mar 2009 01:18:31 +0000</pubDate>
		<dc:creator>dimarzionist</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://dimarzionist.wordpress.com/2009/03/30/wpf-workshop-last-saturday/</guid>
		<description><![CDATA[Here is a link to photos from the WPF Workshop given by Readify guys happened in Melbourne last Saturday:
WPF Workshop Photos
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dimarzionist.wordpress.com&blog=3215162&post=85&subd=dimarzionist&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Here is a link to photos from the WPF Workshop given by Readify guys happened in Melbourne last Saturday:</p>
<p><a href="http://picasaweb.google.com/dimarzionist/WPFWorkshopInMelbourne">WPF Workshop Photos</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dimarzionist.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dimarzionist.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dimarzionist.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dimarzionist.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dimarzionist.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dimarzionist.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dimarzionist.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dimarzionist.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dimarzionist.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dimarzionist.wordpress.com/85/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dimarzionist.wordpress.com&blog=3215162&post=85&subd=dimarzionist&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dimarzionist.wordpress.com/2009/03/30/wpf-workshop-last-saturday/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/be637555e0c0f493c6c9ec14b62c7c2c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dimarzionist</media:title>
		</media:content>
	</item>
		<item>
		<title>NoScript Tag</title>
		<link>http://dimarzionist.wordpress.com/2009/01/19/noscript-tag/</link>
		<comments>http://dimarzionist.wordpress.com/2009/01/19/noscript-tag/#comments</comments>
		<pubDate>Mon, 19 Jan 2009 00:44:27 +0000</pubDate>
		<dc:creator>dimarzionist</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[Client Scripting]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Internet Browsers]]></category>

		<guid isPermaLink="false">http://dimarzionist.wordpress.com/?p=81</guid>
		<description><![CDATA[It&#8217;s relatively unknown HTML tag that works like alternative description when your browser doesn&#8217;t support scripting or when JavaScript is disabled. While this one is not so relevant for modern desktop browsers, it becomes relevant again when creating applications for mobile browsers.
Example of use:
&#60;script type=&#8221;text/javascript&#8221;&#62;
document.write(&#8220;Hello World!&#8221;)
&#60;/script&#62;
&#60;noscript&#62;Your browser does not support JavaScript!&#60;/noscript&#62;
     [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dimarzionist.wordpress.com&blog=3215162&post=81&subd=dimarzionist&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>It&#8217;s relatively unknown HTML tag that works like alternative description when your browser doesn&#8217;t support scripting or when JavaScript is disabled. While this one is not so relevant for modern desktop browsers, it becomes relevant again when creating applications for mobile browsers.</p>
<p>Example of use:</p>
<p>&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
document.write(&#8220;Hello World!&#8221;)<br />
&lt;/script&gt;<br />
&lt;noscript&gt;Your browser does not support JavaScript!&lt;/noscript&gt;</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dimarzionist.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dimarzionist.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dimarzionist.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dimarzionist.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dimarzionist.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dimarzionist.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dimarzionist.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dimarzionist.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dimarzionist.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dimarzionist.wordpress.com/81/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dimarzionist.wordpress.com&blog=3215162&post=81&subd=dimarzionist&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dimarzionist.wordpress.com/2009/01/19/noscript-tag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/be637555e0c0f493c6c9ec14b62c7c2c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dimarzionist</media:title>
		</media:content>
	</item>
		<item>
		<title>&#8220;What dynamic does NOT do &#8221; example</title>
		<link>http://dimarzionist.wordpress.com/2008/12/19/what-dynamic-does-not-do-example/</link>
		<comments>http://dimarzionist.wordpress.com/2008/12/19/what-dynamic-does-not-do-example/#comments</comments>
		<pubDate>Fri, 19 Dec 2008 00:46:23 +0000</pubDate>
		<dc:creator>dimarzionist</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[C# 4.0]]></category>
		<category><![CDATA[CLR]]></category>
		<category><![CDATA[DLR]]></category>
		<category><![CDATA[Dynamic Types]]></category>

		<guid isPermaLink="false">http://dimarzionist.wordpress.com/?p=79</guid>
		<description><![CDATA[There are several important concepts related to new dynamic types in C# 4.0 which could be a bit confusing without correct understanding of boxing/unboxing of value types that happens during the dynamic binding.
Here is good example from Sam Ng&#8217;s blog:
public struct S
{
    public int i;
}

public class D
{
    public S [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dimarzionist.wordpress.com&blog=3215162&post=79&subd=dimarzionist&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>There are several important concepts related to new dynamic types in C# 4.0 which could be a bit confusing without correct understanding of boxing/unboxing of value types that happens during the dynamic binding.</p>
<p>Here is good example from Sam Ng&#8217;s <a href="http://blogs.msdn.com/samng/default.aspx">blog:</a></p>
<pre class="code"><span>public struct </span><span>S
</span>{
    <span>public int </span>i;
}

<span>public class </span><span>D
</span>{
    <span>public </span>S s;
    <span>public static void </span>Main()
    {
        <span>dynamic </span>d = <span>new </span>D();
        d.s = <span>default</span>(S);
        d.s.i = 10;
        <span>Console</span>.WriteLine(d.s.i);
    } </pre>
<p><a href="http://blogs.msdn.com/samng/default.aspx"></a>} </p>
<p>We would intuitively expect the value &#8216;10&#8242; to be printed in the console.  However, the value &#8216;0&#8242; is printed instead. Core thing is <strong>any of the dotted expressions were to bind to a value type, that value will be  boxed (and hence a copy would be made), and further dots into it would be made  on the copy of the value, and not the initial value as would be expected.</strong></p>
<p>The guys from C# team currently on the way of investigation if it&#8217;s reasonable to add any smart compile time logic to handle things like this for dynamic usage. But from my perspective main thing is to understand the reason for this &#8211; real value type was unboxed during dotted expression and modified, but <strong>wasn&#8217;t(!) </strong>boxed again.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dimarzionist.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dimarzionist.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dimarzionist.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dimarzionist.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dimarzionist.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dimarzionist.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dimarzionist.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dimarzionist.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dimarzionist.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dimarzionist.wordpress.com/79/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dimarzionist.wordpress.com&blog=3215162&post=79&subd=dimarzionist&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dimarzionist.wordpress.com/2008/12/19/what-dynamic-does-not-do-example/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/be637555e0c0f493c6c9ec14b62c7c2c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dimarzionist</media:title>
		</media:content>
	</item>
		<item>
		<title>Architecture Journal Reader</title>
		<link>http://dimarzionist.wordpress.com/2008/12/17/architecture-journal-reader/</link>
		<comments>http://dimarzionist.wordpress.com/2008/12/17/architecture-journal-reader/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 00:55:25 +0000</pubDate>
		<dc:creator>dimarzionist</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Architecture Journal Reader]]></category>
		<category><![CDATA[MSDN Architecture Journal]]></category>
		<category><![CDATA[Software Architecture]]></category>

		<guid isPermaLink="false">http://dimarzionist.wordpress.com/2008/12/17/architecture-journal-reader/</guid>
		<description><![CDATA[I&#8217;m usually reading all MSDN Architecture Journal articles and I found recently that there is a simple and comfort way to read and store its articles. Architecture Journal Reader is not something new, but I&#8217;ve rediscovered it recently and find it really convenient and helpful.
It contains list of all issued journals and detailed table of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dimarzionist.wordpress.com&blog=3215162&post=77&subd=dimarzionist&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;m usually reading all MSDN Architecture Journal articles and I found recently that there is a simple and comfort way to read and store its articles. Architecture Journal Reader is not something new, but I&#8217;ve rediscovered it recently and find it really convenient and helpful.</p>
<p>It contains list of all issued journals and detailed table of content for each. Pretty much it looks like newspaper and really intuitive in use and referencing.</p>
<p><img class="alignnone size-full wp-image-76" title="architecturejournal" src="http://dimarzionist.files.wordpress.com/2008/12/architecturejournal.jpg?w=417&#038;h=288" alt="architecturejournal" width="417" height="288" /></p>
<p>Here is direct link to Download Page &#8211; <a title="Microsoft Fownload Center - Architectre Journal Reader" href="http://www.microsoft.com/downloads/details.aspx?familyid=DD466BBB-1B7D-438E-9F9A-954CE2058F15&amp;displaylang=en">Download Architecture Journal Reader</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dimarzionist.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dimarzionist.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dimarzionist.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dimarzionist.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dimarzionist.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dimarzionist.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dimarzionist.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dimarzionist.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dimarzionist.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dimarzionist.wordpress.com/77/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dimarzionist.wordpress.com&blog=3215162&post=77&subd=dimarzionist&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dimarzionist.wordpress.com/2008/12/17/architecture-journal-reader/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/be637555e0c0f493c6c9ec14b62c7c2c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dimarzionist</media:title>
		</media:content>

		<media:content url="http://dimarzionist.files.wordpress.com/2008/12/architecturejournal.jpg" medium="image">
			<media:title type="html">architecturejournal</media:title>
		</media:content>
	</item>
		<item>
		<title>TFS Admin</title>
		<link>http://dimarzionist.wordpress.com/2008/12/17/tfs-admin/</link>
		<comments>http://dimarzionist.wordpress.com/2008/12/17/tfs-admin/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 00:03:11 +0000</pubDate>
		<dc:creator>dimarzionist</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[TFS]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[TFS Admin]]></category>
		<category><![CDATA[TFS Reporting Services]]></category>
		<category><![CDATA[TFS SharePoint portal]]></category>

		<guid isPermaLink="false">http://dimarzionist.wordpress.com/?p=73</guid>
		<description><![CDATA[During last couple of days I had to make lots of TFS tasks with my colleagues in Dev Centre. Part of them was bulk of administrative tasks to assign correct permissions to different areas of the TFS such as Source Control, Share Point, Reports and other. All this areas have independent roles and permissions configuration [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dimarzionist.wordpress.com&blog=3215162&post=73&subd=dimarzionist&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>During last couple of days I had to make lots of TFS tasks with my colleagues in Dev Centre. Part of them was bulk of administrative tasks to assign correct permissions to different areas of the TFS such as Source Control, Share Point, Reports and other. All this areas have independent roles and permissions configuration and it&#8217;s not really easy using standard tools to give the same permissions to someone in these different sub-areas. What we&#8217;ve discovered was the TFS Administrator tool on CodePlex that allows you easily to manage multiple permission sets for different projects and users. We found this as fast enough way for tasks we have, and I could recommend it to use in such scenarios.</p>
<div id="attachment_74" class="wp-caption alignnone" style="width: 428px"><img class="size-full wp-image-74" title="tfsadmin" src="http://dimarzionist.files.wordpress.com/2008/12/tfsadmin.jpg?w=418&#038;h=228" alt="TFS Administrator Screenshot" width="418" height="228" /><p class="wp-caption-text">TFS Administrator Screen shot</p></div>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dimarzionist.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dimarzionist.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dimarzionist.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dimarzionist.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dimarzionist.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dimarzionist.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dimarzionist.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dimarzionist.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dimarzionist.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dimarzionist.wordpress.com/73/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dimarzionist.wordpress.com&blog=3215162&post=73&subd=dimarzionist&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dimarzionist.wordpress.com/2008/12/17/tfs-admin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/be637555e0c0f493c6c9ec14b62c7c2c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dimarzionist</media:title>
		</media:content>

		<media:content url="http://dimarzionist.files.wordpress.com/2008/12/tfsadmin.jpg" medium="image">
			<media:title type="html">tfsadmin</media:title>
		</media:content>
	</item>
		<item>
		<title>OneCare Firewall and VPN connections</title>
		<link>http://dimarzionist.wordpress.com/2008/12/15/onecare-firewall-and-vpn-connections/</link>
		<comments>http://dimarzionist.wordpress.com/2008/12/15/onecare-firewall-and-vpn-connections/#comments</comments>
		<pubDate>Mon, 15 Dec 2008 05:41:53 +0000</pubDate>
		<dc:creator>dimarzionist</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Firewall]]></category>
		<category><![CDATA[OneCare]]></category>
		<category><![CDATA[Ports and Protocols]]></category>
		<category><![CDATA[VPN connection]]></category>

		<guid isPermaLink="false">http://dimarzionist.wordpress.com/?p=70</guid>
		<description><![CDATA[I&#8217;ve experienced some problems with VPN connections after installing OneCare from Microsoft. As result of diving into configuration I&#8217;ve found that there is an option under the Firewall configuration options that denies any VPN connections by default.
In order to fix this you&#8217;ll need to go to Advanced settings of Firewall and under the ports and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dimarzionist.wordpress.com&blog=3215162&post=70&subd=dimarzionist&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;ve experienced some problems with VPN connections after installing OneCare from Microsoft. As result of diving into configuration I&#8217;ve found that there is an option under the Firewall configuration options that denies any VPN connections by default.</p>
<p>In order to fix this you&#8217;ll need to go to Advanced settings of Firewall and under the ports and protocols tab put the mark near the VPN networks (IPsec or PPTP) in the checkbox list as shown in the picture below.</p>
<div id="attachment_69" class="wp-caption alignnone" style="width: 428px"><img class="size-full wp-image-69" title="onecareandvpn" src="http://dimarzionist.files.wordpress.com/2008/12/onecareandvpn.jpg?w=418&#038;h=422" alt="VPN setting inside OneCare configuration" width="418" height="422" /><p class="wp-caption-text">VPN setting inside OneCare configuration</p></div>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dimarzionist.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dimarzionist.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dimarzionist.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dimarzionist.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dimarzionist.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dimarzionist.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dimarzionist.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dimarzionist.wordpress.com/70/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dimarzionist.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dimarzionist.wordpress.com/70/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dimarzionist.wordpress.com&blog=3215162&post=70&subd=dimarzionist&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dimarzionist.wordpress.com/2008/12/15/onecare-firewall-and-vpn-connections/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/be637555e0c0f493c6c9ec14b62c7c2c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dimarzionist</media:title>
		</media:content>

		<media:content url="http://dimarzionist.files.wordpress.com/2008/12/onecareandvpn.jpg" medium="image">
			<media:title type="html">onecareandvpn</media:title>
		</media:content>
	</item>
		<item>
		<title>howto: Ping remote host using PowerShell script</title>
		<link>http://dimarzionist.wordpress.com/2008/11/10/howto-ping-remote-host-using-powershell-script/</link>
		<comments>http://dimarzionist.wordpress.com/2008/11/10/howto-ping-remote-host-using-powershell-script/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 05:02:12 +0000</pubDate>
		<dc:creator>dimarzionist</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[Power Sh]]></category>

		<guid isPermaLink="false">http://dimarzionist.wordpress.com/?p=60</guid>
		<description><![CDATA[If you want to check availablity of some remote host in your powershell script you can use next simple piece of code to do exactly this:$MachineName = &#8220;mo-laptop&#8221;
$PingStatus = Gwmi Win32_PingStatus -Filter &#8220;Address =&#8217;$MachineName&#8217;&#8221; &#124; Select-Object StatusCode
if($PingStatus.StatusCode -eq 0)
{
echo $MachineName
echo &#8220;Ping Success&#8221;
}
else
{
echo $MachineName
echo &#8220;Ping Failed&#8221;
}

       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dimarzionist.wordpress.com&blog=3215162&post=60&subd=dimarzionist&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>If you want to check availablity of some remote host in your powershell script you can use next simple piece of code to do exactly this:$MachineName = &#8220;mo-laptop&#8221;</p>
<p>$PingStatus = Gwmi Win32_PingStatus -Filter &#8220;Address =&#8217;$MachineName&#8217;&#8221; | Select-Object StatusCode</p>
<p>if($PingStatus.StatusCode -eq 0)</p>
<p>{</p>
<p>echo $MachineName</p>
<p>echo &#8220;Ping Success&#8221;</p>
<p>}</p>
<p>else</p>
<p>{</p>
<p>echo $MachineName</p>
<p>echo &#8220;Ping Failed&#8221;</p>
<p>}</p>
<p class="MsoNormal" style="background:#fbfbfb none repeat scroll 0 0;margin-left:36pt;text-indent:-18pt;line-height:16.8pt;"><!--[if gte mso 9]&gt;  Normal 0     false false false  EN-US X-NONE X-NONE              MicrosoftInternetExplorer4              &lt;![endif]--><!--[if gte mso 9]&gt;                                                                                                                                            &lt;![endif]--></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dimarzionist.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dimarzionist.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dimarzionist.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dimarzionist.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dimarzionist.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dimarzionist.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dimarzionist.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dimarzionist.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dimarzionist.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dimarzionist.wordpress.com/60/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dimarzionist.wordpress.com&blog=3215162&post=60&subd=dimarzionist&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dimarzionist.wordpress.com/2008/11/10/howto-ping-remote-host-using-powershell-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/be637555e0c0f493c6c9ec14b62c7c2c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dimarzionist</media:title>
		</media:content>
	</item>
		<item>
		<title>howto: Extend trial period of Windows 7 PDC installation</title>
		<link>http://dimarzionist.wordpress.com/2008/11/10/howto-extend-trial-period-of-windows-7-pdc-installation/</link>
		<comments>http://dimarzionist.wordpress.com/2008/11/10/howto-extend-trial-period-of-windows-7-pdc-installation/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 03:27:35 +0000</pubDate>
		<dc:creator>dimarzionist</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Rearm]]></category>

		<guid isPermaLink="false">http://dimarzionist.wordpress.com/?p=57</guid>
		<description><![CDATA[If you want continue playing with Windows 7 PDC installation after 30-days trial period ended, you can &#8220;rearm&#8221; it and use for a bit longer period of time using this simple approach:

Install Windows 7 without any product activation key.
After installation is completed, use the Windows 7 for 30 days and wait for the remaining days [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dimarzionist.wordpress.com&blog=3215162&post=57&subd=dimarzionist&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>If you want continue playing with Windows 7 PDC installation after 30-days trial period ended, you can &#8220;rearm&#8221; it and use for a bit longer period of time using this simple approach:</p>
<ol>
<li>Install Windows 7 without any product activation key.</li>
<li>After installation is completed, use the Windows 7 for 30 days and wait for the remaining days left to activate Windows counting down to 0, or almost zero.</li>
<li>When the activation grace period (or evaluation trial period) is almost expired or ended, log on to Windows 7 <a id="KonaLink2" class="kLink" href="http://www.mydigitallife.info/2008/11/06/how-to-rearm-and-extend-free-usage-activation-grace-period-of-windows-7-to-120-days/#" target="undefined"><span style="color:blue!important;font-weight:400;font-size:13px;position:static;"><span class="kLink" style="color:blue!important;font-family:&quot;font-weight:400;font-size:13px;position:static;">desktop</span></span></a>, and open a <strong><a id="KonaLink3" class="kLink" href="http://www.mydigitallife.info/2008/11/06/how-to-rearm-and-extend-free-usage-activation-grace-period-of-windows-7-to-120-days/#" target="undefined"><span style="color:blue!important;font-size:13px;position:static;"><span class="kLink" style="color:blue!important;font-family:&quot;font-size:13px;position:static;">Command </span><span class="kLink" style="color:blue!important;font-family:&quot;font-size:13px;position:static;">Prompt</span></span></a></strong> window (i.e. type <strong>Cmd</strong> in Start Search and hit <strong>Enter</strong>).</li>
<li>Type any of the following commands into the command prompt, and then hit <strong>Enter</strong>:<strong>sysprep /generalize</strong>
<p><strong>slmgr.vbs –rearm</strong></p>
<p><strong>rundll32 slc.dll,SLReArmWindows</strong></p>
<p><strong>slmgr /rearm</strong></li>
<li>Reboot Windows 7 to enjoy another 30 days of free usage without worrying about activation nor even need to crack Windows 7.</li>
<li>When the activation grace period countdown timer almost running down to 0 again, repeat the ‘rearm’ trick to enjoy another 30 days of Windows 7 for free. User can run the rearm command for maximum of 3 times.</li>
</ol>
<p>After this you will require to activate it with proper product key or install other trial version, that probably will be released soon.</p>
<p>from http://www.mydigitallife.info/2008/11/06/how-to-rearm-and-extend-free-usage-activation-grace-period-of-windows-7-to-120-days/</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dimarzionist.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dimarzionist.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dimarzionist.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dimarzionist.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dimarzionist.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dimarzionist.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dimarzionist.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dimarzionist.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dimarzionist.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dimarzionist.wordpress.com/57/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dimarzionist.wordpress.com&blog=3215162&post=57&subd=dimarzionist&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dimarzionist.wordpress.com/2008/11/10/howto-extend-trial-period-of-windows-7-pdc-installation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/be637555e0c0f493c6c9ec14b62c7c2c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dimarzionist</media:title>
		</media:content>
	</item>
	</channel>
</rss>