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

<channel>
	<title>Decoding the Code</title>
	<atom:link href="http://decodingthecode.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://decodingthecode.wordpress.com</link>
	<description>We aren&#039;t just developing Software. We&#039;re developing the Whole World.</description>
	<lastBuildDate>Fri, 18 Jun 2010 12:07:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='decodingthecode.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Decoding the Code</title>
		<link>http://decodingthecode.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://decodingthecode.wordpress.com/osd.xml" title="Decoding the Code" />
	<atom:link rel='hub' href='http://decodingthecode.wordpress.com/?pushpress=hub'/>
		<item>
		<title>XmlSerializer: remove xsi and xsd namespaces</title>
		<link>http://decodingthecode.wordpress.com/2009/09/14/xmlserializer-remove-xsi-and-xsd-namespaces/</link>
		<comments>http://decodingthecode.wordpress.com/2009/09/14/xmlserializer-remove-xsi-and-xsd-namespaces/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 23:21:08 +0000</pubDate>
		<dc:creator>Muhammad Saeed</dc:creator>
				<category><![CDATA[Bugs]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[.Net]]></category>
		<category><![CDATA[Namespace]]></category>
		<category><![CDATA[Problem]]></category>
		<category><![CDATA[Solution]]></category>
		<category><![CDATA[xmlns]]></category>
		<category><![CDATA[XmlSerializer]]></category>
		<category><![CDATA[XSD]]></category>
		<category><![CDATA[XSI]]></category>

		<guid isPermaLink="false">http://decodingthecode.wordpress.com/?p=98</guid>
		<description><![CDATA[Problem/Bug A Significant annoyance is when the default XmlSerializer adds xmlns attributes such as: xmlns:xsd=&#8221;http://www.w3.org/2001/XMLSchema&#8221; xmlns:xsi=&#8221;http://www.w3.org/2001/XMLSchema-instance&#8221; to each element being serialized (in a collection maybe), so you find an xml file with double size on HD with no particular use! Solution (remove namespaces&#8217; declarations) 1 //Create our own namespaces for the output 2 XmlSerializerNamespaces ns [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decodingthecode.wordpress.com&amp;blog=8166718&amp;post=98&amp;subd=decodingthecode&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="background-color:#FFFFCC;color:red;">Problem/Bug</span></p>
<p>A Significant annoyance is when the default XmlSerializer adds xmlns attributes such as:</p>
<p><strong>xmlns:xsd=&#8221;http://www.w3.org/2001/XMLSchema&#8221;</strong><strong><br />
xmlns:xsi=&#8221;http://www.w3.org/2001/XMLSchema-instance&#8221; </strong></p>
<p>to each element being serialized (in a collection maybe), so you find an xml file with double size on HD with no particular use!</p>
<p><span style="background-color:#FFFFCC;color:red;">Solution</span><strong> </strong>(remove namespaces&#8217; declarations)</p>
<div style="font-family:Courier New;font-size:10pt;color:black;background:white;">
<p style="margin:0;"><span style="color:#2b91af;"> 1</span> <span style="color:green;">//Create our own namespaces for the output</span></p>
<p style="margin:0;"><span style="color:#2b91af;"> 2</span> <span style="color:#2b91af;">XmlSerializerNamespaces</span> ns = <span style="color:blue;">new</span> <span style="color:#2b91af;">XmlSerializerNamespaces</span>();</p>
<p style="margin:0;"><span style="color:#2b91af;"> 3</span></p>
<p style="margin:0;"><span style="color:#2b91af;"> 4</span> <span style="color:green;">//Add an empty namespace and empty value</span></p>
<p style="margin:0;"><span style="color:#2b91af;"> 5</span> ns.Add(<span style="color:#a31515;">&#8220;&#8221;</span>, <span style="color:#a31515;">&#8220;&#8221;</span>);</p>
<p style="margin:0;"><span style="color:#2b91af;"> 6</span></p>
<p style="margin:0;"><span style="color:#2b91af;"> 7</span> <span style="color:green;">//Create the serializer</span></p>
<p style="margin:0;"><span style="color:#2b91af;"> 8</span> <span style="color:#2b91af;">XmlSerializer</span> slz = <span style="color:blue;">new</span> <span style="color:#2b91af;">XmlSerializer</span>(someType);</p>
<p style="margin:0;"><span style="color:#2b91af;"> 9</span></p>
<p style="margin:0;"><span style="color:#2b91af;"> 10</span> <span style="color:green;">//Serialize the object with our own namespaces (notice the overload)</span></p>
<p style="margin:0;"><span style="color:#2b91af;"> 11</span> slz.Serialize(myXmlTextWriter, someObject, ns);</p>
</div>
<p><span style="background-color:#FFFFCC;color:red;"><br />
PS</span> Some people argue that these are necessary for deserializing the object later, for example if the object being serialized is null, one of these namespaces contains a xml:nil refrence, which is used to tell the deserializer to map this xml element to null. I&#8217;m not sure if this is correct. So remove them at your own risk. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><span style="font-size:12px;"><br />
<span style="font-size:100%;background-color:#FFFFCC;color:red;">Source</span><br />
<a href="http://stackoverflow.com/questions/760262/xmlserializer-remove-unnecessary-xsi-and-xsd-namespaces">http://stackoverflow.com/questions/760262/xmlserializer-remove-unnecessary-xsi-and-xsd-namespaces</a><br />
<strong>Original</strong>: <a href="http://www.csharper.net/blog/serializing_without_the_namespace__xmlns__xmlns_xsd__xmlns_xsi_.aspx">http://www.csharper.net/blog/serializing_without_the_namespace__xmlns__xmlns_xsd__xmlns_xsi_.aspx</a><strong> </strong></p>
<p></span></p>
<br />Posted in Bugs, C#, Code Snippets, XML Tagged: .Net, C#, Namespace, Problem, Solution, XML, xmlns, XmlSerializer, XSD, XSI <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/decodingthecode.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/decodingthecode.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/decodingthecode.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/decodingthecode.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/decodingthecode.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/decodingthecode.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/decodingthecode.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/decodingthecode.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/decodingthecode.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/decodingthecode.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/decodingthecode.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/decodingthecode.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/decodingthecode.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/decodingthecode.wordpress.com/98/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decodingthecode.wordpress.com&amp;blog=8166718&amp;post=98&amp;subd=decodingthecode&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://decodingthecode.wordpress.com/2009/09/14/xmlserializer-remove-xsi-and-xsd-namespaces/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f34893598feaade15d9ebd158ac39357?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Muhammad Saeed</media:title>
		</media:content>
	</item>
		<item>
		<title>Oracle/MySQL Database &#8211; WTH?</title>
		<link>http://decodingthecode.wordpress.com/2009/09/12/oraclemysql-database-wth/</link>
		<comments>http://decodingthecode.wordpress.com/2009/09/12/oraclemysql-database-wth/#comments</comments>
		<pubDate>Sat, 12 Sep 2009 23:16:05 +0000</pubDate>
		<dc:creator>Muhammad Saeed</dc:creator>
				<category><![CDATA[Technical News]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Sun]]></category>

		<guid isPermaLink="false">http://decodingthecode.wordpress.com/?p=94</guid>
		<description><![CDATA[LOL. I remember like a year ago, the first (and the last) time I met Oracle Database in my college (FCIS &#8211; Egypt), I remember whenever using it (with a background of only MS SQL Server) I officially said: &#8220;WTH!&#8221;. Buggy, slow, freak-syntax (later found it&#8217;s acceptable), and worst of all, the newly-created empty database&#8217;s [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decodingthecode.wordpress.com&amp;blog=8166718&amp;post=94&amp;subd=decodingthecode&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.oracle.com/features/suncustomers.html"><img class="alignright" title="sun customers" src="http://www.oracle.com/features/images/sun_customers_lg.gif" alt="" width="205" height="307" /></a>LOL. I remember like a year ago, the first (and the last) time I met Oracle Database in my college (FCIS &#8211; Egypt), I remember whenever using it (with a background of only MS SQL Server) I officially said: &#8220;WTH!&#8221;. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Buggy, slow, freak-syntax (later found it&#8217;s acceptable), and worst of all, the newly-created empty database&#8217;s size is 1 GB.</p>
<p>WTH Oracle?</p>
<p>-</p>
<p><a href="http://www.oracle.com/us/sun/index.htm">News</a> are coming that Oracle is buying Sun, which means that MySQL (my favorite after MS&#8217;s SQL Server) will be owned to Oracle, also Java!</p>
<p>-</p>
<p>When I remembered my past days with Oracle, My trivial comment was also: WTH!</p>
<br />Posted in Technical News Tagged: Database, Java, MySQL, News, Oracle, SQL Server, Sun <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/decodingthecode.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/decodingthecode.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/decodingthecode.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/decodingthecode.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/decodingthecode.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/decodingthecode.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/decodingthecode.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/decodingthecode.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/decodingthecode.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/decodingthecode.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/decodingthecode.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/decodingthecode.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/decodingthecode.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/decodingthecode.wordpress.com/94/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decodingthecode.wordpress.com&amp;blog=8166718&amp;post=94&amp;subd=decodingthecode&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://decodingthecode.wordpress.com/2009/09/12/oraclemysql-database-wth/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f34893598feaade15d9ebd158ac39357?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Muhammad Saeed</media:title>
		</media:content>

		<media:content url="http://www.oracle.com/features/images/sun_customers_lg.gif" medium="image">
			<media:title type="html">sun customers</media:title>
		</media:content>
	</item>
		<item>
		<title>Visual Studio 2010 News</title>
		<link>http://decodingthecode.wordpress.com/2009/07/01/visual-studio-2010-news/</link>
		<comments>http://decodingthecode.wordpress.com/2009/07/01/visual-studio-2010-news/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 23:12:15 +0000</pubDate>
		<dc:creator>Muhammad Saeed</dc:creator>
				<category><![CDATA[Technical News]]></category>
		<category><![CDATA[.Net 4.0]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Preview]]></category>
		<category><![CDATA[Visual Studio 2010]]></category>
		<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">http://decodingthecode.wordpress.com/?p=62</guid>
		<description><![CDATA[Visual Studio 2010 built on WPF Yes, today Microsoft has confirmed this to the entire developer&#8217;s world: Visual Studio 2010 IDE will be based on the WPF platform! This is a great news and a sign that WPF is now ready for business applications. WPF will permit us also to easily customize parts of the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decodingthecode.wordpress.com&amp;blog=8166718&amp;post=62&amp;subd=decodingthecode&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignnone" style="width: 610px"><a href="http://upload.wikimedia.org/wikipedia/en/b/bc/VisualStudio2010.png"><img title="Visual Studio 2010" src="http://upload.wikimedia.org/wikipedia/en/b/bc/VisualStudio2010.png" alt="Visual Studio 2010" width="600" height="480" /></a><p class="wp-caption-text">Visual Studio 2010</p></div>
<p><strong><a id="viewpost_ascx_TitleUrl" title="Title of this entry." href="http://demiliani.com/blog/archive/2008/10/28/6520.aspx">Visual Studio 2010 built on WPF</a></strong></p>
<p>Yes, today Microsoft has confirmed this to the entire developer&#8217;s world: <span style="text-decoration:underline;">Visual Studio 2010 IDE will be based on the WPF platform</span>!<br />
This is a great news and a sign that WPF is now ready for business applications.<br />
WPF will permit us also to easily customize parts of the UI.</p>
<p><a href="http://www.h-online.com/news/PDC-Visual-Studio-2010-gets-a-new-WPF-interface--/111833"><strong>Visual Studio 2010 gets a new WPF interfac</strong>e</a><br />
<strong></strong></p>
<p><strong>Microsoft has announced that Version 2010 of the Visual Studio development environment will have an interface created in Windows Presentation Foundation (WPF)</strong>. General manager <a rel="external" href="http://en.wikipedia.org/wiki/Scott_Guthrie" target="_blank">Scott Guthrie</a> made the announcement in his keynote speech on the second day of <a rel="external" href="http://www.microsoftpdc.com/" target="_blank">PDC 2008</a>. Guthrie said that WPF would offer new ease of use and support for multiple monitors.</p>
<p>Guthrie also announced that the expandability of Visual Studio will be improved. A programmer interface will make the editors in Visual Studio 2010 completely customizable. Guthrie showed an example containing 200 lines of program code, which replaces the XML display of comments in a C# code file with a graphic display and shows additional relevant bugs from the Team Foundation Server directly in the code window. Guthrie pointed out that in future, Visual Studio extensions will be easier to distribute, since new components will only have to be copied into a particular directory. Registration will no longer be necessary. However, Microsoft does not plan to offer a customizable compiler until the follow-on version to Visual Studio 2010, according to Guthrie. C# architect Anders Heijlsberghe <a title="PDC: C# 4.0 will go dynamic" href="http://www.h-online.com/news/PDC-C-4-0-will-go-dynamic--/111814">confirmed</a> the news about the compiler the day before Guthrie&#8217;s speech.</p>
<p>For web developers, Guthrie announced that the Visual Web Developer in Visual Studio 2010 would contain additional features that would make <strong>JavaScript programming easier</strong>, <strong>support CSS2</strong>, and offer a new assistant for installing web applications which can handle various configurations as well as the distribution of associated SQL server databases.</p>
<p><a title="Latest News" href="http://en.wikipedia.org/wiki/Microsoft_Visual_Studio#Visual_Studio_2010">Latest News</a></p>
<p>Visual Studio also will fully support IBM DB2, and Oracle.</p>
<p>It will have integrated support for developing <a title="Microsoft Silverlight" href="http://en.wikipedia.org/wiki/Microsoft_Silverlight">Microsoft Silverlight</a> applications</p>
<p>The Visual Studio 2010 code editor now highlights references; whenever a symbol is selected, all other usages of the symbol are highlighted.<sup><a href="http://en.wikipedia.org/wiki/Microsoft_Visual_Studio#cite_note-dev10soma-77"><span> </span><span> </span></a></sup> It also offers a <em>Quick Search</em> feature to <a title="Incremental search" href="http://en.wikipedia.org/wiki/Incremental_search">incrementally search</a> across all symbols in C++, C# and VB.NET projects. Quick Search supports substring matches and <a title="CamelCase" href="http://en.wikipedia.org/wiki/CamelCase">camelCase</a> searches.<sup><a href="http://en.wikipedia.org/wiki/Microsoft_Visual_Studio#cite_note-dev10soma-77"><span>b</span></a></sup>The <em>Call Hierarchy</em> feature allows the developer to see all the methods that are called from a current method as well as the methods that call the current one.<sup><a href="http://en.wikipedia.org/wiki/Microsoft_Visual_Studio#cite_note-dev10soma-77"></a></sup> <a title="IntelliSense" href="http://en.wikipedia.org/wiki/IntelliSense">IntelliSense</a> in Visual Studio supports a <em>consume-first</em> mode, which can be opted-into by the developer. In this mode, IntelliSense will not auto-complete identifiers; this allows the developer to use undefined identifiers (like variable or method names) and define those later. Visual Studio 2010 can help in this also by automatically defining them, if it can infer their types from usage.</p>
<p><strong>Visual Studio Team System</strong> 2010, codenamed <em>Rosario</em><sup><a href="http://en.wikipedia.org/wiki/Microsoft_Visual_Studio#cite_note-78"></a></sup> is being positioned for <a title="Application lifecycle management" href="http://en.wikipedia.org/wiki/Application_lifecycle_management">application lifecycle management</a>. It will include new modelling tools,<sup><a href="http://en.wikipedia.org/wiki/Microsoft_Visual_Studio#cite_note-79"></a></sup> including the <em>Architecture Explorer</em> that graphically displays the projects and classes and the relationships between them.<sup><a href="http://en.wikipedia.org/wiki/Microsoft_Visual_Studio#cite_note-80"></a></sup> It supports <a title="Unified Modeling Language" href="http://en.wikipedia.org/wiki/Unified_Modeling_Language">UML</a> activity diagram, component diagram, (logical) class diagram, sequence diagram, and use case diagram. Visual Studio Team System 2010 also includes <em>Test Impact Analysis</em> which provides hints on which test cases are impacted by modifications to the source code, without actually running the test cases. This speeds up testing by avoiding running unneeded test cases.</p>
<p>Visual Studio Team System 2010 also includes a <em>Historical Debugger</em>. Unlike the current debugger, that records only the currently-active stack, the historical debugger records all events like prior function calls, method parameters, events, exceptions etc. This allows the code execution to be rewound in case a breakpoint wasn&#8217;t set where the error occurred.<sup><a href="http://en.wikipedia.org/wiki/Microsoft_Visual_Studio#cite_note-83"></a></sup> The historical debugger will cause the application to run slower than the current debugger, and will use more memory as additional data needs to be recorded. Microsoft allows configuration of how much data should be recorded, in effect allowing developers to balance speed of execution and resource usage. The <em>Lab Management</em> component of Visual Studio Team System 2010 uses <a title="Virtualization" href="http://en.wikipedia.org/wiki/Virtualization">virtualization</a> to create a similar execution environment for testers and developers. The <a title="Virtual machine" href="http://en.wikipedia.org/wiki/Virtual_machine">virtual machines</a> are tagged with checkpoints which can later be investigated for issues, as well as to reproduce the issue.<sup><a href="http://en.wikipedia.org/wiki/Microsoft_Visual_Studio#cite_note-84"></a></sup> Visual Studio Team System 2010 also includes the capability to record test runs, that capture the specific state of the operating environment as well as the precise steps used to run the test. These steps can then be played back to reproduce issues.</p>
<p><strong><span>Download </span></strong><br />
<a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=85520793-68fc-4361-a8b6-dc2cff49c8d2&amp;displaylang=en">Visual Studio 2010 </a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=85520793-68fc-4361-a8b6-dc2cff49c8d2&amp;displaylang=en">Team System</a><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=85520793-68fc-4361-a8b6-dc2cff49c8d2&amp;displaylang=en"> Beta 1</a><span> (web-installer)</span><br />
<a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=75cbcbcd-b0e8-40ea-adae-85714e8984e3&amp;displaylang=en">Visual Studio 2010 Professional Beta 1</a> <span>(web-installer)</span><br />
<a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=75cbcbcd-b0e8-40ea-adae-85714e8984e3&amp;displaylang=en">Visual Studio </a><span><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=922B4655-93D0-4476-BDA4-94CF5F8D4814&amp;displaylang=en">2010 CTP</a><br />
</span></p>
<br />Posted in Technical News Tagged: .Net 4.0, Microsoft, News, Preview, Visual Studio 2010, WPF <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/decodingthecode.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/decodingthecode.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/decodingthecode.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/decodingthecode.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/decodingthecode.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/decodingthecode.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/decodingthecode.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/decodingthecode.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/decodingthecode.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/decodingthecode.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/decodingthecode.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/decodingthecode.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/decodingthecode.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/decodingthecode.wordpress.com/62/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decodingthecode.wordpress.com&amp;blog=8166718&amp;post=62&amp;subd=decodingthecode&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://decodingthecode.wordpress.com/2009/07/01/visual-studio-2010-news/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f34893598feaade15d9ebd158ac39357?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Muhammad Saeed</media:title>
		</media:content>

		<media:content url="http://upload.wikimedia.org/wikipedia/en/b/bc/VisualStudio2010.png" medium="image">
			<media:title type="html">Visual Studio 2010</media:title>
		</media:content>
	</item>
		<item>
		<title>&#8220;Image format is unrecognized&#8221; Bug, When Setting WPF Window Icon</title>
		<link>http://decodingthecode.wordpress.com/2009/07/01/image-format-is-unrecognized-bug-when-setting-wpf-window-icon/</link>
		<comments>http://decodingthecode.wordpress.com/2009/07/01/image-format-is-unrecognized-bug-when-setting-wpf-window-icon/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 22:53:17 +0000</pubDate>
		<dc:creator>Muhammad Saeed</dc:creator>
				<category><![CDATA[Bugs]]></category>
		<category><![CDATA[WPF/XAML]]></category>
		<category><![CDATA[.Net 3.5]]></category>
		<category><![CDATA[Bug]]></category>
		<category><![CDATA[WPF]]></category>
		<category><![CDATA[XAML]]></category>

		<guid isPermaLink="false">http://decodingthecode.wordpress.com/?p=57</guid>
		<description><![CDATA[Fix: http://torque.gig8.com/2009/01/image_format_is_unrecognized_w.html Vista allows embedding 256&#215;256 png images inside of .ico files. This can be generated, for example, by an application such as IcoFX. Unfortunately, at least as of .NET 3.0, the WPF Window Icon cannot accept this. The problem does not lie in the IconBitmapDecoder, but appears to lie in the Window code&#8230; Posted [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decodingthecode.wordpress.com&amp;blog=8166718&amp;post=57&amp;subd=decodingthecode&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><em>Fix: <a href="http://torque.gig8.com/2009/01/image_format_is_unrecognized_w.html">http://torque.gig8.com/2009/01/image_format_is_unrecognized_w.html</a></em></p>
<p>Vista allows embedding 256&#215;256 png images inside of .ico files. This can be generated, for example, by an application such as <strong>IcoFX</strong>. Unfortunately, at least as of .NET 3.0, the WPF Window Icon cannot accept this. The problem does not lie in the IconBitmapDecoder, but appears to lie in the Window code&#8230;</p>
<br />Posted in Bugs, WPF/XAML Tagged: .Net 3.5, Bug, WPF, XAML <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/decodingthecode.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/decodingthecode.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/decodingthecode.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/decodingthecode.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/decodingthecode.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/decodingthecode.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/decodingthecode.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/decodingthecode.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/decodingthecode.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/decodingthecode.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/decodingthecode.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/decodingthecode.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/decodingthecode.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/decodingthecode.wordpress.com/57/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decodingthecode.wordpress.com&amp;blog=8166718&amp;post=57&amp;subd=decodingthecode&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://decodingthecode.wordpress.com/2009/07/01/image-format-is-unrecognized-bug-when-setting-wpf-window-icon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f34893598feaade15d9ebd158ac39357?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Muhammad Saeed</media:title>
		</media:content>
	</item>
		<item>
		<title>Major PHP 5.3 Update Coming On June 30th</title>
		<link>http://decodingthecode.wordpress.com/2009/06/28/major-php-5-3-update-coming-soon/</link>
		<comments>http://decodingthecode.wordpress.com/2009/06/28/major-php-5-3-update-coming-soon/#comments</comments>
		<pubDate>Sun, 28 Jun 2009 13:29:16 +0000</pubDate>
		<dc:creator>Muhammad Saeed</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Technical News]]></category>
		<category><![CDATA[Web Programming]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[PHP 5]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://decodingthecode.wordpress.com/?p=53</guid>
		<description><![CDATA[// Many people prefer using PHP more than ASP.NET or other Microsoft technologies for two reasons: 1- Free/Open Source, 2- Cheap Hosting 3- Tutorialized. PHP 5.3 could be out as soon as Tuesday, June 30th. The new open source language release is a big deal for a lot of reasons, not the least of which [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decodingthecode.wordpress.com&amp;blog=8166718&amp;post=53&amp;subd=decodingthecode&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>// Many people prefer using PHP more than ASP.NET or other Microsoft technologies for two reasons: <strong>1- Free/Open Source, 2- Cheap Hosting 3- Tutorialized</strong>.</p>
<p>PHP 5.3 could be out as soon as Tuesday, June 30th. The new open source language release is a big deal for a lot of reasons, not the least of which is the fact that by my count this is the first major update to PHP since 2006 and the <a href="http://news.php.net/php.internals/44454">PHP 5.2</a> release.</p>
<p>PHP 5.3 is also interesting in that it includes at least one key feature that was originally intended for <strong>PHP 6</strong> (whenever &#8212; if ever &#8212; that release will be out <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> ).</p>
<p>I spoke with <strong>Zeev Suraski</strong>, co-founder and CTO at commercial PHP vendor Zend Technologies <a href="http://www.internetnews.com/dev-news/article.php/3818406">last month</a> about PHP 5.3. He noted that one key feature <strong>backported from PHP 6 into PHP 5.3</strong> is <em><strong><a href="http://ca.php.net/manual/en/language.namespaces.rationale.php">namespaces</a></strong></em>, which is a way to encapsulate classes and other PHP items more easily.</p>
<p>While the official release is on June 30th, support for PHP 5.3 is already present in development tools from Eclipse <a href="http://www.internetnews.com/dev-news/article.php/3826721/Eclipse+Galileo+Releases+33+Open+Source+Projects.htm">released this week</a>.</p>
<p><em>~Source: http://www.internetnews.com/dev-news/article.php/3827041/First+Major+PHP+Update+in+Years+Coming+Soon.htm</em></p>
<br />Posted in PHP, Technical News, Web Programming Tagged: News, Open Source, PHP, PHP 5, Technology, Web Programming <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/decodingthecode.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/decodingthecode.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/decodingthecode.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/decodingthecode.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/decodingthecode.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/decodingthecode.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/decodingthecode.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/decodingthecode.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/decodingthecode.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/decodingthecode.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/decodingthecode.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/decodingthecode.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/decodingthecode.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/decodingthecode.wordpress.com/53/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decodingthecode.wordpress.com&amp;blog=8166718&amp;post=53&amp;subd=decodingthecode&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://decodingthecode.wordpress.com/2009/06/28/major-php-5-3-update-coming-soon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f34893598feaade15d9ebd158ac39357?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Muhammad Saeed</media:title>
		</media:content>
	</item>
		<item>
		<title>Mozilla Firefox 3.5 Release, Next Week</title>
		<link>http://decodingthecode.wordpress.com/2009/06/28/mozilla-3-5-release-next-week/</link>
		<comments>http://decodingthecode.wordpress.com/2009/06/28/mozilla-3-5-release-next-week/#comments</comments>
		<pubDate>Sun, 28 Jun 2009 13:17:56 +0000</pubDate>
		<dc:creator>Muhammad Saeed</dc:creator>
				<category><![CDATA[Technical News]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Google Chrome]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[Privacy]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://decodingthecode.wordpress.com/?p=48</guid>
		<description><![CDATA[Update! Mozilla Firefox 3.5 is released: http://www.mozilla.com/en-US/ // And the war starts between Google and Mozilla, who you think would win? Mozilla is set to release its new Firefox 3.5 browser as early as next week after a year of development. The new release will include a number of new features, but don&#8217;t expect to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decodingthecode.wordpress.com&amp;blog=8166718&amp;post=48&amp;subd=decodingthecode&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong><span style="color:red;">Update!</span></strong> <strong>Mozilla Firefox</strong><strong> 3.5 is released: <a href="http://www.mozilla.com/en-US/">http://www.mozilla.com/en-US/</a></strong></p>
<p>// And the war starts between <strong>Google</strong> and <strong>Mozilla</strong>, who you think would win? <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p><strong>Mozilla is set to release its new <a href="http://www.internetnews.com/dev-news/article.php/3823661/Firefox+35+How+Soon+and+How+Big+a+Deal.htm">Firefox 3.5 browser</a> as early as next week after a year of development.</strong></p>
<p>The new release will include a number of new features, but don&#8217;t expect to see many features that were inspired by the new arrival of Google on the Web browser scene with its Chrome browser.</p>
<p>Google <a href="http://www.internetnews.com/dev-news/article.php/3769021">introduced Chrome in September 2008</a> and included numerous new browser features like closer search engine access from the address bar and automatic updates. Firefox 3.5, which is currently at its third release candidate stage does not include those features and isn&#8217;t likely too any time soon either.</p>
<p>The difference between the two browsers highlights the different views that Mozilla and Google have on what users want from their browsers.</p>
<h3>Awesome Bar versus Omnibox</h3>
<p>Firefox 3.5 improves on the &#8220;Awesome Bar&#8221; address bar design that Mozilla rolled out with <a href="http://www.internetnews.com/software/article.php/3753436/Firefox+3+Debuts+With+Web+Domination+in+Its+Sights.htm">Firefox 3</a>.</p>
<p>By default, it does not enable full search engine queries &#8212; instead, Firefox (as well as Microsoft Internet Explorer) offers a separate search box in the browser. But, as it turns out, some form of search is accessible through the Awesome Bar.</p>
<blockquote><p>&#8220;What a lot of people don&#8217;t know is that if you type something into the location/Awesome Bar and no [location] matches come up, if you hit Enter, we run a Google search for that,&#8221; Mike Beltzner, Mozilla&#8217;s Director of Firefox, told <em>InternetNews.com</em>. &#8220;The reason why it is architected that way is we don&#8217;t think that people expect that when they type something into their location bar that those words are being sent to a search engine.&#8221;</p></blockquote>
<p>Google integrates search into its the address bar, creating a location bar design it calls <a href="http://chrome.blogspot.com/2009/06/get-to-know-omnibox.html">the Omnibox</a>.   <!-- start --> <!-- 2 --><!-- 6 --><!-- 8 --><!-- 10 --><!-- 13 --><!-- 18 --><!-- 20 --><!-- 22 --><!-- 24 --><!-- 26 --><!-- 35 --><!-- 38 --><!-- 41 --><!-- 43 --><!-- 47 --><!-- 54 --><!-- 56 --><!-- 58 --><!-- 61 --><!-- START: COB - LATEST NEWS --></p>
<div id="callout5"><strong><a href="http://www.internetnews.com/bus-news/article.php/3827306/ShortTerm+LCD+Panel+Shortage+Looms.htm"></a></strong></div>
<p><!-- END: COB - LATEST NEWS --><!-- 62 --><!-- OBJECT:article.body.module.latestnews -->While the Omnibox may behave like the familiar Google.com search box, the features have inspired some worries over privacy, with concerns about <a href="http://www.internetnews.com/software/article.php/12219_3769681_2">Google logging entries</a> from users &#8212; even if they never actually hit the Enter key to send a search to Google &#8212; have been around since Chrome&#8217;s first release.</p>
<p><strong>Google&#8217;s <a href="http://www.google.com/chrome/intl/en/privacy.html">privacy policy on Chrome</a> states that, &#8220;some Google Chrome features send limited additional information to Google.&#8221;</strong></p>
<p>One of those features is the Google Suggest feature that helps users with their search query in Chrome. Google <a href="http://googleblog.blogspot.com/2008/09/update-to-google-suggest.html">blogged</a> at the time of Chrome&#8217;s release that logged data like IP addresses are captured by Google for only 2 percent of requests.</p>
<p><strong>Mozilla&#8217;s Beltzner, however, still has concerns.</strong></p>
<blockquote><p>&#8220;What you&#8217;re seeing with our competitors is they are sending [address bar entries] off to their search engine and we think that is violating a privacy boundary that some people might not expect,&#8221; Beltzner said. &#8220;We just want to make sure that it&#8217;s clear. So we keep search on the Internet where you are sending things out, in the box on the right and local search in the smart location bar.&#8221;</p></blockquote>
<p><em>Google spokespeople did not respond to requests for comment by press time.</em></p>
<h3>Privacy and updates</h3>
<p>Another key change from the status quo in Google Chrome is that it does not require users to manually update the browsers themselves.</p>
<p>When a user installs Chrome, they also install the GoogleUpdate.exe application that runs in the background of a user&#8217;s system to keep Chrome up to date. It&#8217;s a feature that enables Chrome users to be updated faster than users of other browsers, according to a recent <a href="http://blog.internetnews.com/skerner/2009/05/google-chrome-wins-browser-upd.html">study</a> in which Google was involved.</p>
<p>The study found that that after 21 days of a Google Chrome release, 97 percent of users were updated to the latest version. Mozilla Firefox had 85 percent of users updated within 21 days.</p>
<p>But Mozilla said it prefers a different approach to rolling out updates.</p>
<blockquote><p>&#8220;Chrome takes the philosophy that software should be like the Web and change and become better over time,&#8221; Beltzner said. &#8220;I think what they&#8217;ll find it is that it pens them in from making radical changes in their user interface. Unless those changes are announced, unless users have some warning that a change will happen, the general response you&#8217;ll see is shock and fear.&#8221;</p></blockquote>
<p>Beltzner added that in Mozilla&#8217;s view, users want to feel as though they have more control over their own software. With Firefox, users receive an update notification that they must click on in order to install a new version of the browser.</p>
<blockquote><p>&#8220;We want to make security and stability updates painless to install for the user and we keep updating our mechanism to that end,&#8221; Beltzner said.</p></blockquote>
<p>Beltzner added that Firefox&#8217;s developers want to inform users that Mozilla has made an update not because they want to pat themselves on the back, but because it feels wrong to change software on a user&#8217;s computer without telling them why.</p>
<blockquote><p>&#8220;This machine is a user&#8217;s machine, and my right to put software on it, I think, stops at the point where they decide to take the software from me,&#8221; Beltzner said. &#8220;I want to ship them a security update but I want them to understand why I&#8217;ve done it &#8212; that&#8217;s the philosophical difference.&#8221;</p></blockquote>
<p><em>~Source: http://www.internetnews.com/dev-news/article.php/3827291/Why+Firefox+Doesnt+Take+Google+Chrome+Features.htm</em></p>
<br />Posted in Technical News Tagged: Firefox, Google Chrome, Mozilla, Privacy, Security <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/decodingthecode.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/decodingthecode.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/decodingthecode.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/decodingthecode.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/decodingthecode.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/decodingthecode.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/decodingthecode.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/decodingthecode.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/decodingthecode.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/decodingthecode.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/decodingthecode.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/decodingthecode.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/decodingthecode.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/decodingthecode.wordpress.com/48/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decodingthecode.wordpress.com&amp;blog=8166718&amp;post=48&amp;subd=decodingthecode&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://decodingthecode.wordpress.com/2009/06/28/mozilla-3-5-release-next-week/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f34893598feaade15d9ebd158ac39357?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Muhammad Saeed</media:title>
		</media:content>
	</item>
		<item>
		<title>XML Overview</title>
		<link>http://decodingthecode.wordpress.com/2009/06/27/xml-overview/</link>
		<comments>http://decodingthecode.wordpress.com/2009/06/27/xml-overview/#comments</comments>
		<pubDate>Sat, 27 Jun 2009 16:52:37 +0000</pubDate>
		<dc:creator>Muhammad Saeed</dc:creator>
				<category><![CDATA[XML]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://decodingthecode.wordpress.com/?p=41</guid>
		<description><![CDATA[XML (EXtensible Markup Language) is a language used to uniform the way we store data. It is used in small data repositories only. It makes it easier for programmers to read/write/edit data. It&#8217;s simple, portable, and uniform, that&#8217;s why it is a W3C recommendation. Here is an example that should illustrate basic principles of XML: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decodingthecode.wordpress.com&amp;blog=8166718&amp;post=41&amp;subd=decodingthecode&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>XML (E<strong>X</strong>tensible <strong>M</strong>arkup <strong>L</strong>anguage) is a language used to <strong>uniform </strong>the way we <strong>store data</strong>. It is used in <strong>small data </strong>repositories only. It makes it easier for programmers to<strong> read/write/edit data</strong>. It&#8217;s <em>simple, portable, and uniform</em>, that&#8217;s why it is a <strong>W3C recommendation</strong>.</p>
<p>Here is an example that should illustrate basic principles of XML:</p>
<pre>&lt;bookstore&gt;
 &lt;book category="COOKING"&gt;
  &lt;title lang="en"&gt;Everyday Italian&lt;/title&gt;
  &lt;author&gt;Giada De Laurentiis&lt;/author&gt;
  &lt;year&gt;2005&lt;/year&gt;
  &lt;price&gt;30.00&lt;/price&gt;
 &lt;/book&gt;
  &lt;book category="CHILDREN"&gt;
  &lt;title lang="en"&gt;Harry Potter&lt;/title&gt;
  &lt;author&gt;J K. Rowling&lt;/author&gt;
  &lt;year&gt;2005&lt;/year&gt;
  &lt;price&gt;29.99&lt;/price&gt;
 &lt;/book&gt;
  &lt;book category="WEB"&gt;
  &lt;title lang="en"&gt;Learning XML&lt;/title&gt;
  &lt;author&gt;Erik T. Ray&lt;/author&gt;
  &lt;year&gt;2003&lt;/year&gt;
  &lt;price&gt;39.95&lt;/price&gt;
 &lt;/book&gt;
&lt;/bookstore&gt;</pre>
<p>
&#8216;bookstore&#8217; is a<strong> XML Root Element</strong> (A XML document <strong>must </strong>have <strong>1 root element</strong>).</p>
<p>&#8216;book&#8217; is an <strong>XML Element</strong>,<strong> and </strong><strong>Child </strong>to the root element. (Multiple &#8216;book&#8217; elements are called <strong>Siblings</strong>)</p>
<p>&#8216;title&#8217;, &#8216;year&#8217;, &#8216;author&#8217;, &#8216;price&#8217; are also <strong>XML Elements</strong>, and <strong>Children </strong>to &#8216;book&#8217; element.</p>
<p>&#8216;category&#8217;, &#8216;lang&#8217; are <strong>XML Attribute</strong>s.</p>
<p>&#8220;Everyday Italian&#8221;, &#8220;Harry Potter&#8221;, &#8220;Learning XML&#8221;,&#8230; are <strong>XML Texts</strong>.</p>
<p>In XML:</p>
<ul>
<li>(New != new), it&#8217;s <strong>case-sensitive</strong>.</li>
<li>Attributes values must be quoted: &lt;title lang=<strong>&#8220;en&#8221;</strong>&gt;Learning XML&lt;/title&gt;</li>
<li>Any Element can contain <strong>nested/children elements or simple text</strong>, and <strong>attributes</strong></li>
</ul>
<p><em>~Ref: http://www.w3schools.com/xml/</em></p>
<br />Posted in XML Tagged: Tutorial, XML <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/decodingthecode.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/decodingthecode.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/decodingthecode.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/decodingthecode.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/decodingthecode.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/decodingthecode.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/decodingthecode.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/decodingthecode.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/decodingthecode.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/decodingthecode.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/decodingthecode.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/decodingthecode.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/decodingthecode.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/decodingthecode.wordpress.com/41/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decodingthecode.wordpress.com&amp;blog=8166718&amp;post=41&amp;subd=decodingthecode&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://decodingthecode.wordpress.com/2009/06/27/xml-overview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f34893598feaade15d9ebd158ac39357?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Muhammad Saeed</media:title>
		</media:content>
	</item>
		<item>
		<title>What Is cooliris/PicLens Written In?</title>
		<link>http://decodingthecode.wordpress.com/2009/06/27/what-is-coolirispiclens-written-in/</link>
		<comments>http://decodingthecode.wordpress.com/2009/06/27/what-is-coolirispiclens-written-in/#comments</comments>
		<pubDate>Sat, 27 Jun 2009 14:48:01 +0000</pubDate>
		<dc:creator>Muhammad Saeed</dc:creator>
				<category><![CDATA[Questions]]></category>
		<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Cooliris]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[PaperVision3D]]></category>
		<category><![CDATA[Question]]></category>

		<guid isPermaLink="false">http://decodingthecode.wordpress.com/?p=38</guid>
		<description><![CDATA[Q: What language/technology is Cooliris written in ? A: Cooliris is primarily C++. The Embeddable Wall is Actionscript 3 with PaperVision 3D. ~Ref: http://developer.cooliris.com/dev_forum/comments.php?DiscussionID=27 Posted in Questions Tagged: Actionscript, C#, Cooliris, Firefox, PaperVision3D, Question<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decodingthecode.wordpress.com&amp;blog=8166718&amp;post=38&amp;subd=decodingthecode&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Q:</p>
<p>What language/technology is <a href="http://www.cooliris.com/"><strong>Cooliris </strong></a>written in ?</p>
<p>A:</p>
<p>Cooliris is primarily<strong> <a href="http://en.wikipedia.org/wiki/C%2B%2B">C++</a></strong>.<br />
The Embeddable Wall is <a href="http://en.wikipedia.org/wiki/ActionScript"><strong>Actionscript 3</strong></a> with<strong> <a href="http://blog.papervision3d.org/">PaperVision 3D</a>.</strong><br />
<em></em></p>
<p><em>~Ref: <a href="http://developer.cooliris.com/dev_forum/comments.php?DiscussionID=27">http://developer.cooliris.com/dev_forum/comments.php?DiscussionID=27</a></em></p>
<br />Posted in Questions Tagged: Actionscript, C#, Cooliris, Firefox, PaperVision3D, Question <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/decodingthecode.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/decodingthecode.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/decodingthecode.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/decodingthecode.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/decodingthecode.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/decodingthecode.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/decodingthecode.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/decodingthecode.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/decodingthecode.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/decodingthecode.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/decodingthecode.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/decodingthecode.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/decodingthecode.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/decodingthecode.wordpress.com/38/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=decodingthecode.wordpress.com&amp;blog=8166718&amp;post=38&amp;subd=decodingthecode&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://decodingthecode.wordpress.com/2009/06/27/what-is-coolirispiclens-written-in/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f34893598feaade15d9ebd158ac39357?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Muhammad Saeed</media:title>
		</media:content>
	</item>
	</channel>
</rss>
