<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.1.2" -->
<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/"
	>

<channel>
	<title>DWUser.com</title>
	<link>http://www.dwuser.com/dwuser</link>
	<description>Empowering Web Creativity</description>
	<pubDate>Sat, 23 May 2009 00:05:46 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1.2</generator>
	<language>en</language>
			<item>
		<title>Google O3D looks to jumpstart web-based 3d development</title>
		<link>http://www.dwuser.com/dwuser/2009/05/22/google-o3d-looks-to-jumpstart-web-based-3d-development/</link>
		<comments>http://www.dwuser.com/dwuser/2009/05/22/google-o3d-looks-to-jumpstart-web-based-3d-development/#comments</comments>
		<pubDate>Sat, 23 May 2009 00:05:46 +0000</pubDate>
		<dc:creator></dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[3D]]></category>

		<guid isPermaLink="false">http://www.dwuser.com/dwuser/2009/05/22/google-o3d-looks-to-jumpstart-web-based-3d-development/</guid>
		<description><![CDATA[With the recent release of the open source O3D project, Google is seeking the provide a way for developers to create true 3d which taps into a user&#8217;s graphic chip using only javascript and a browser plugin.  The plugin is fully cross-platform and cross-browser compatible.
The future of web-based 3d games (and other 3d content) could [...]]]></description>
			<content:encoded><![CDATA[<p>With the recent release of the open source O3D project, Google is seeking the provide a way for developers to create true 3d which taps into a user&#8217;s graphic chip using only javascript and a browser plugin.  The plugin is fully cross-platform and cross-browser compatible.</p>
<p>The future of web-based 3d games (and other 3d content) could become radically more interesting if developers begin to embrace this technology.  Amazing demos (especially the Beach Scene demo) and developer reference info are available at google code:</p>
<p><a href="http://code.google.com/apis/o3d/" target="_blank">http://code.google.com/apis/o3d/</a></p>
<p>High-level overview on CNet: <a href="http://news.cnet.com/google-tries-jump-starting-3d-web-with-o3d/" target="_blank">http://news.cnet.com/google-tries-jump-starting-3d-web-with-o3d/</a> .</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dwuser.com/dwuser/2009/05/22/google-o3d-looks-to-jumpstart-web-based-3d-development/feed/</wfw:commentRss>
		</item>
		<item>
		<title>GoDaddy offering free SSL for OS projects</title>
		<link>http://www.dwuser.com/dwuser/2009/05/21/godaddy-offering-free-ssl-for-os-projects/</link>
		<comments>http://www.dwuser.com/dwuser/2009/05/21/godaddy-offering-free-ssl-for-os-projects/#comments</comments>
		<pubDate>Fri, 22 May 2009 03:18:39 +0000</pubDate>
		<dc:creator></dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.dwuser.com/dwuser/2009/05/21/godaddy-offering-free-ssl-for-os-projects/</guid>
		<description><![CDATA[Have an open source project and need an SSL certificate?  Granted, it&#8217;s only one year and its a domain-only (translated: low quality cheapy) certificate, but GoDaddy will give you one for free: https://www.godaddy.com/gdshop/ssl/ssl_opensource.asp .
]]></description>
			<content:encoded><![CDATA[<p>Have an open source project and need an SSL certificate?  Granted, it&#8217;s only one year and its a domain-only (translated: low quality cheapy) certificate, but GoDaddy will give you one for free: <a href="https://www.godaddy.com/gdshop/ssl/ssl_opensource.asp" title="https://www.godaddy.com/gdshop/ssl/ssl_opensource.asp" target="_blank">https://www.godaddy.com/gdshop/ssl/ssl_opensource.asp</a> .</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dwuser.com/dwuser/2009/05/21/godaddy-offering-free-ssl-for-os-projects/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The incredible orphaned XML</title>
		<link>http://www.dwuser.com/dwuser/2008/12/17/the-incredible-orphaned-xml/</link>
		<comments>http://www.dwuser.com/dwuser/2008/12/17/the-incredible-orphaned-xml/#comments</comments>
		<pubDate>Thu, 18 Dec 2008 02:24:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Flex]]></category>

		<category><![CDATA[Flash]]></category>

		<category><![CDATA[AS3]]></category>

		<guid isPermaLink="false">http://www.dwuser.com/dwuser/2008/12/17/the-incredible-orphaned-xml/</guid>
		<description><![CDATA[It&#8217;s best to show an example on this mysterious AS3 quandary:
var demo:XML = &#60;wrapper&#62;
&#60;child id=&#8221;element1&#8243; /&#62;
&#60;child id=&#8221;element2&#8243; /&#62;
&#60;/wrapper&#62; ;
var element1:Object = {} ;
var  element2:Object = {};
// Create an object reference to each child node
element1.xmlRef = demo.children()[0];
element2.xmlRef = demo.children()[1];
// Now, remove the second node
delete demo.children()[1];
// This should be &#8216;null&#8217; or &#8216;undefined&#8217;, or throw an RTE, [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s best to show an example on this mysterious AS3 quandary:</p>
<p><strong>var demo:XML = &lt;wrapper&gt;<br />
&lt;child id=&#8221;element1&#8243; /&gt;<br />
&lt;child id=&#8221;element2&#8243; /&gt;<br />
&lt;/wrapper&gt; ;</strong></p>
<p><strong>var element1:Object = {} ;<br />
var  element2:Object = {};</strong></p>
<p><strong>// Create an object reference to each child node<br />
element1.xmlRef = demo.children()[0];<br />
element2.xmlRef = demo.children()[1];</strong></p>
<p><strong>// Now, remove the second node<br />
delete demo.children()[1];</strong></p>
<p><strong>// This should be &#8216;null&#8217; or &#8216;undefined&#8217;, or throw an RTE, right?!<br />
trace(element2.xmlRef.toXMLString());</strong></p>
<p>However, such is not the case.  While trace(demo.toXMLString()) shows the correct document structure, the trace line above shows that the node reference has now morphed into what I call &#8220;the incredible orphaned XML&#8221;. So, of course, the question becomes how to tell whether these nodes are &#8216;real&#8217; nodes, or just an orphaned remnant.  The solution appears to be in childIndex().  The orphaned node returns a <strong>childIndex() of -1</strong>.  Yes, that&#8217;s right - it essentially doesn&#8217;t exist (we already knew that!). So, you have to check the childIndex(), and if it returns -1, then it&#8217;s a zombie XML node:</p>
<p><strong>// This returns -1<br />
trace(element2.xmlRef.childIndex());</strong></p>
<p>As I write this post, a new question comes to mind&#8230; perhaps does that orphaned XML later get GC&#8217;d by the Garbage Collector, or is this a potential memory leak?  More investigations to come&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dwuser.com/dwuser/2008/12/17/the-incredible-orphaned-xml/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Incredible PHP Debug Tool</title>
		<link>http://www.dwuser.com/dwuser/2008/06/30/incredible-php-debug-tool/</link>
		<comments>http://www.dwuser.com/dwuser/2008/06/30/incredible-php-debug-tool/#comments</comments>
		<pubDate>Mon, 30 Jun 2008 14:12:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.dwuser.com/dwuser/2008/06/30/incredible-php-debug-tool/</guid>
		<description><![CDATA[For PHP developers, this debugging tool is incredibly helpful.  It&#8217;s a small script called dBug - get it at http://dbug.ospinto.com/- which creates CFDUMP style output of data structures.  Its a great timesaver, helping avoid digging through hard-to-read var_dump outputs.
]]></description>
			<content:encoded><![CDATA[<p>For PHP developers, this debugging tool is incredibly helpful.  It&#8217;s a small script called dBug - get it at <a href="http://dbug.ospinto.com/" title="dBug" target="_blank">http://dbug.ospinto.com/</a>- which creates CFDUMP style output of data structures.  Its a great timesaver, helping avoid digging through hard-to-read var_dump outputs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dwuser.com/dwuser/2008/06/30/incredible-php-debug-tool/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Restoring File Explorer Windows on Startup</title>
		<link>http://www.dwuser.com/dwuser/2008/06/25/restoring-file-explorer-windows-on-startup/</link>
		<comments>http://www.dwuser.com/dwuser/2008/06/25/restoring-file-explorer-windows-on-startup/#comments</comments>
		<pubDate>Wed, 25 Jun 2008 23:53:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Apple]]></category>

		<category><![CDATA[Microsoft]]></category>

		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.dwuser.com/dwuser/2008/06/25/restoring-file-explorer-windows-on-startup/</guid>
		<description><![CDATA[For some people, this might be an annoyance instead of a feature.  But for many, its a great timesaver.
On Mac OSX, when you startup, your previously open Finder (the Mac equivalent of the File Explorer) windows re-open automatically.  On Windows, you can get the same effect by opening the File Explorer and going to Tools [...]]]></description>
			<content:encoded><![CDATA[<p>For some people, this might be an annoyance instead of a feature.  But for many, its a great timesaver.</p>
<p>On Mac OSX, when you startup, your previously open Finder (the Mac equivalent of the File Explorer) windows re-open automatically.  On Windows, you can get the same effect by opening the File Explorer and going to <strong>Tools &gt; Folder Options</strong>.  Select the <strong>View</strong> tab, and check the <strong>Restore Previous folder windows at Logon</strong> option near the bottom of the <strong>Advanced Settings</strong> section.  Apply, and you won&#8217;t have to try to remember what folder windows you had open.  Suddenly, restarting Windows becomes less painful <img src='http://www.dwuser.com/dwuser/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dwuser.com/dwuser/2008/06/25/restoring-file-explorer-windows-on-startup/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Vista Price Cuts</title>
		<link>http://www.dwuser.com/dwuser/2008/03/01/vista-price-cuts/</link>
		<comments>http://www.dwuser.com/dwuser/2008/03/01/vista-price-cuts/#comments</comments>
		<pubDate>Sun, 02 Mar 2008 00:42:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.dwuser.com/dwuser/2008/03/01/vista-price-cuts/</guid>
		<description><![CDATA[MS has unexpectedly announced price cuts in the premium Vista versions.  For example, Ultimate is $219 (down from $299), and Home Premium is $129 (down from $159).  Read more at CNet .
A reason to finally make the jump to Vista, or a yawner?
]]></description>
			<content:encoded><![CDATA[<p>MS has unexpectedly announced price cuts in the premium Vista versions.  For example, Ultimate is $219 (down from $299), and Home Premium is $129 (down from $159).  Read more at <a href="http://www.news.com/8301-13860_3-9882510-56.html" target="_blank">CNet</a> .</p>
<p>A reason to finally make the jump to Vista, or a yawner?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dwuser.com/dwuser/2008/03/01/vista-price-cuts/feed/</wfw:commentRss>
		</item>
		<item>
		<title>MacWorld 2008 Roundup</title>
		<link>http://www.dwuser.com/dwuser/2008/01/16/macworld-2008-roundup/</link>
		<comments>http://www.dwuser.com/dwuser/2008/01/16/macworld-2008-roundup/#comments</comments>
		<pubDate>Thu, 17 Jan 2008 02:26:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.dwuser.com/dwuser/2008/01/16/macworld-2008-roundup/</guid>
		<description><![CDATA[Steve Jobs&#8217; keynote revealed the latest list of &#8220;wow, cool&#8221;s in Apple&#8217;s product line.  From the amazing Macbook Air, to Time Capsule backups, to Online Movie Rentals, there was a little something for everyone.  CNET offers a great roundup of all the new stuff - see it here .
]]></description>
			<content:encoded><![CDATA[<p>Steve Jobs&#8217; keynote revealed the latest list of &#8220;wow, cool&#8221;s in Apple&#8217;s product line.  From the amazing Macbook Air, to Time Capsule backups, to Online Movie Rentals, there was a little something for everyone.  CNET offers a great roundup of all the new stuff - <a href="http://www.news.com/8301-13579_3-9851429-37.html?tag=nefd.lede" target="_blank">see it here</a> .</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dwuser.com/dwuser/2008/01/16/macworld-2008-roundup/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Mozilla Joins the Desktop-RIA Crowd</title>
		<link>http://www.dwuser.com/dwuser/2007/10/26/mozilla-joins-the-desktop-ria-crowd/</link>
		<comments>http://www.dwuser.com/dwuser/2007/10/26/mozilla-joins-the-desktop-ria-crowd/#comments</comments>
		<pubDate>Sat, 27 Oct 2007 00:12:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Adobe]]></category>

		<category><![CDATA[Flex]]></category>

		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.dwuser.com/dwuser/2007/10/26/mozilla-joins-the-desktop-ria-crowd/</guid>
		<description><![CDATA[Nothing new, just a new flavor.  Mozilla is talking about Prism, basically an Adobe AIR alternative.  A good perspective-giving article is given by Mike Chambers here: http://www.mikechambers.com/blog/2007/10/25/mozilla-prism-and-the-disingenuous-web/ .
]]></description>
			<content:encoded><![CDATA[<p>Nothing new, just a new flavor.  Mozilla is talking about Prism, basically an Adobe AIR alternative.  A good perspective-giving article is given by Mike Chambers here: <a href="http://www.mikechambers.com/blog/2007/10/25/mozilla-prism-and-the-disingenuous-web/">http://www.mikechambers.com/blog/2007/10/25/mozilla-prism-and-the-disingenuous-web/</a> .</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dwuser.com/dwuser/2007/10/26/mozilla-joins-the-desktop-ria-crowd/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Future Adobe &#8220;Thermo&#8221; Announced</title>
		<link>http://www.dwuser.com/dwuser/2007/10/03/future-adobe-thermo-announced/</link>
		<comments>http://www.dwuser.com/dwuser/2007/10/03/future-adobe-thermo-announced/#comments</comments>
		<pubDate>Wed, 03 Oct 2007 23:23:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.dwuser.com/dwuser/2007/10/03/future-adobe-thermo-announced/</guid>
		<description><![CDATA[A new product code-named Thermo has been announced by Adobe.  The product, targeted at designers, will allow for easy creation of rich internet apps in a familiar designer workflow.
Check out the Labs wiki for more -&#62; http://labs.adobe.com/wiki/index.php/Thermo
]]></description>
			<content:encoded><![CDATA[<p>A new product code-named Thermo has been announced by Adobe.  The product, targeted at designers, will allow for easy creation of rich internet apps in a familiar designer workflow.</p>
<p>Check out the Labs wiki for more -&gt; <a href="http://labs.adobe.com/wiki/index.php/Thermo">http://labs.adobe.com/wiki/index.php/Thermo</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dwuser.com/dwuser/2007/10/03/future-adobe-thermo-announced/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Happy Birthday, Google</title>
		<link>http://www.dwuser.com/dwuser/2007/09/27/happy-birthday-google/</link>
		<comments>http://www.dwuser.com/dwuser/2007/09/27/happy-birthday-google/#comments</comments>
		<pubDate>Fri, 28 Sep 2007 00:58:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.dwuser.com/dwuser/2007/09/27/happy-birthday-google/</guid>
		<description><![CDATA[In case you haven&#8217;t noticed, Google turned 9 years old today.  Seems a lot longer, doesn&#8217;t it?
]]></description>
			<content:encoded><![CDATA[<p>In case you haven&#8217;t noticed, Google turned 9 years old today.  Seems a lot longer, doesn&#8217;t it?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dwuser.com/dwuser/2007/09/27/happy-birthday-google/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
