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

<channel>
	<title>Dovyski &#187; web</title>
	<atom:link href="http://www.dovyski.com/tag/web/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dovyski.com</link>
	<description>Pointless things somehow useful</description>
	<lastBuildDate>Fri, 07 May 2010 02:42:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>BulkLoader &#8211; managing multiple loadings in AS3</title>
		<link>http://www.dovyski.com/2010/03/bulkloader-managing-multiple-loadings-in-as3/</link>
		<comments>http://www.dovyski.com/2010/03/bulkloader-managing-multiple-loadings-in-as3/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 10:02:28 +0000</pubDate>
		<dc:creator>Dovyski</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[MIT]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.dovyski.com/?p=2409</guid>
		<description><![CDATA[One of the most common tasks in game development is the assets loading process. You have two options: 1) ship your game as a single 45Mb SWF file filled with sweet and compressed-to-the-bones images/sounds or 2) load all those assets &#8230; <a href="http://www.dovyski.com/2010/03/bulkloader-managing-multiple-loadings-in-as3/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>One of the most common tasks in game development is the assets loading process. You have two options: 1) ship your game as a single 45Mb SWF file filled with sweet and compressed-to-the-bones images/sounds or 2) load all those assets separately and on demand.<a href="http://www.dovyski.com/wp-content/uploads/2010/02/nggshow.php_.png"><img class="aligncenter size-thumbnail wp-image-2410" title="nggshow.php" src="http://www.dovyski.com/wp-content/uploads/2010/02/nggshow.php_-150x150.png" alt="" width="150" height="150" /></a></p>
<p>Sometimes the first option is your best shot, but for casual online games the second one is more suitable. Multiple loadings in AS3 can be a pain, because there are several file types to load (wave, JPG, mp3, GIF, swf, etc) and there is no single way to load them all.</p>
<p>So far my best approach to solve this problem is called <a href="http://code.google.com/p/bulk-loader/" onclick="pageTracker._trackPageview('/outgoing/code.google.com/p/bulk-loader/?referer=');">BulkLoader</a>, a library for managing multiple loadings with AS3. It is licensed under the <a rel="nofollow" href="http://www.opensource.org/licenses/mit-license.php" onclick="pageTracker._trackPageview('/outgoing/www.opensource.org/licenses/mit-license.php?referer=');">MIT License</a> and has amazing features:</p>
<ul>
<li>Connection pooling.</li>
<li> Unified interface for different loading types.</li>
<li> Unified progress notification.</li>
<li> Events for individual items and as groups.</li>
<li> Priority</li>
<li> Stop and resuming individually as well as in bulk.</li>
<li> Cache management.</li>
<li> Statistics about loading (latency, speed, average speed).</li>
<li> Various kinds on progress indication: ratio (items loaded / items to load), bytes , and weighted percentage.</li>
<li> Configurable number of retries.</li>
<li> Configurable logging.</li>
<li> Various assest types (XML, NetStreams, Swfs, Images, Sound, Text Files)</li>
</ul>
<p>Design goals:</p>
<ul>
<li> Minimal imports.</li>
<li> Few method to learn.</li>
<li> Consistent interface, regardless of content type.</li>
</ul>
<p>BulkLoader gracefully handles progress notification in these use cases:</p>
<ul>
<li> Few connections to open: bytes total can be used instantly.</li>
<li> Many connections opened: progress by ratio</li>
<li> Many connections opened for data of widely varying sizes: progress by weight.</li>
</ul>
<p>One of the things I like the most is that this project was created by a Brazilian fellow named <a href="http://www.stimuli.com.br/about/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.stimuli.com.br/about/?referer=');">Arthur Debert</a> <img src='http://www.dovyski.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . Thanks for this great tool!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dovyski.com/2010/03/bulkloader-managing-multiple-loadings-in-as3/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>OnePress Community</title>
		<link>http://www.dovyski.com/2010/02/onepress-community/</link>
		<comments>http://www.dovyski.com/2010/02/onepress-community/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 10:23:30 +0000</pubDate>
		<dc:creator>Dovyski</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[webapps]]></category>

		<guid isPermaLink="false">http://www.dovyski.com/?p=2343</guid>
		<description><![CDATA[I see lots of open source projetcs using Worpress as a blog platform, phpBB as a forum solution and Mediawiki as a wiki. I like them all, but maintaining them separately with no integrations is a pain. It's great when you &#8230; <a href="http://www.dovyski.com/2010/02/onepress-community/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I see lots of open source projetcs using <a href="http://wordpress.org" target="_blank" onclick="pageTracker._trackPageview('/outgoing/wordpress.org?referer=');">Worpress</a> as a blog platform, <a href="http://phpbb.com" target="_blank" onclick="pageTracker._trackPageview('/outgoing/phpbb.com?referer=');">phpBB</a> as a forum solution and <a href="http://www.mediawiki.org" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.mediawiki.org?referer=');">Mediawiki</a> as a wiki. I like them all, but maintaining them separately with no integrations is a pain. It's great when you register to a website and you can use the same fresh new account to comment on the blog, reply to a forum thread and/or contribute to a wiki page.</p>
<p style="text-align: left;"><a href="http://www.dovyski.com/wp-content/uploads/2010/01/OnePressCommunityLogo.png"><img class="size-medium wp-image-2344 aligncenter" src="http://www.dovyski.com/wp-content/uploads/2010/01/OnePressCommunityLogo-300x81.png" alt="" width="300" height="81" /></a></p>
<p style="text-align: left;">Excluding the wiki part, there is a tool that makes it all possible. <a title="OnePress" href="http://onepresscommunity.com/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/onepresscommunity.com/?referer=');">OnePress</a> <em></em>is an integrated website and forum solution.  It is, simply, a <strong>WordPress theme</strong> to serve as the foundation and framework for your web site and online  community.</p>
<p>Some of it´s cool features:</p>
<ul>
<li>Seamless integration with phpBB, complete with unified login and widgets to display forum posts on site.</li>
<li>Widgetized WordPress layout with drag and drop interface to quickly build site.</li>
<li>Professional featured content widgets to display important posts with prominence.</li>
<li>Easy to use backend enhancements for editing OnePress widget content.</li>
<li>Highly optimized page rendering process for optimal performance.</li>
<li>Built with WordPress 2.7 and child themes in mind.  Flexible hook system for full theme customization.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.dovyski.com/2010/02/onepress-community/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple and powerful intranet</title>
		<link>http://www.dovyski.com/2009/10/simple-and-powerful-intranet/</link>
		<comments>http://www.dovyski.com/2009/10/simple-and-powerful-intranet/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 03:10:56 +0000</pubDate>
		<dc:creator>Dovyski</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[intranet]]></category>
		<category><![CDATA[management]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[webapps]]></category>

		<guid isPermaLink="false">http://www.dovyski.com/?p=2219</guid>
		<description><![CDATA[These days I was looking for intranet solutions and I luckily found Open Atrium, an intranet in a box that has group spaces to allow different teams to have their own conversations. OpenAtrium is built on top of Drupal, has &#8230; <a href="http://www.dovyski.com/2009/10/simple-and-powerful-intranet/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>These days I was looking for intranet solutions and I luckily found <a href="http://openatrium.com/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/openatrium.com/?referer=');">Open Atrium</a>, an intranet in a box that has group spaces to allow different teams to have their own conversations.</p>
<p style="text-align: center;"><a href="http://openatrium.com/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/openatrium.com/?referer=');"><img class="aligncenter" title="OpenAtrium" src="http://openatrium.com/sites/openatrium.com/files/openatrium_logo.png" alt="" width="265" height="80" /></a></p>
<p>OpenAtrium is built on top of <a href="http://drupal.org/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/drupal.org/?referer=');">Drupal</a>, has a nice design and a useful set of features:</p>
<ul>
<li><strong>Blog</strong>: A classic blog for each group that has commenting, file attachments on both the post and comments, and granular notifications.</li>
<li><strong>Calendar</strong>: A calendar that lets you quickly add events, suck in iCal and other calendar feeds, and support single or multi-day events.</li>
<li><strong>Group Dashboard</strong>: Mini widgets give you a snapshot of all the activity happening across your groups.</li>
<li><strong>Documents</strong>: A simple online handbook that lets you collaborate on documents, store and compare revisions, attach files, and once you're done print out the final copy.</li>
<li><strong>Shoutbox</strong>: Kind of like a private twitter, the shoutbox lets you share short messages, links, and information with just the people in your group.</li>
<li><strong>Case Tracker</strong>: A full ticketing system that lets you assign to do's and create unlimited projects within each of your groups. The case tracker also lets you classify the to do, give it a priority, and manage its status.</li>
</ul>
<p>For small companies, it is an efficient tool to create/maintain an intranet.</p>
<table border="0" width="100%">
<tbody>
<tr>
<td align="center"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="466" height="265" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=5579829&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="466" height="265" src="http://vimeo.com/moogaloop.swf?clip_id=5579829&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.dovyski.com/2009/10/simple-and-powerful-intranet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP and PDF in pure Javascript</title>
		<link>http://www.dovyski.com/2009/06/php-and-pdf-in-pure-javascript/</link>
		<comments>http://www.dovyski.com/2009/06/php-and-pdf-in-pure-javascript/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 02:55:23 +0000</pubDate>
		<dc:creator>Dovyski</dc:creator>
				<category><![CDATA[Web development]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[pdf]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[webapps]]></category>

		<guid isPermaLink="false">http://www.dovyski.com/?p=175</guid>
		<description><![CDATA[Javacript is the very first base stone concerning web 2.0. In the past, I always heard bad things about Javascript, but I guess all of them were said because Javascript was being used by the wrong people, in the wrong &#8230; <a href="http://www.dovyski.com/2009/06/php-and-pdf-in-pure-javascript/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Javacript is the very first base stone concerning web 2.0. In the past, I always heard bad things about Javascript, but I guess all of them were said because Javascript was being used by the wrong people, in the wrong place and at the wrong time.</p>
<p><strong><img class="alignleft" style="margin: 5px;" title="PHP.JS" src="http://phpjs.org/img/phpjs.png" alt="" width="114" height="60" /></strong>A lot of sites use huge Javacript libs, each one performing nice things, such as HTTP requests, animation effects, generation of RIA content, etc. Javascript is so famous now that several things have been ported to it, such as encryption algorithms.</p>
<p>I have found two of those Javascript ports that can be really useful, specially if you are a PHP developer (just like me): <a title="PHP.JS" href="http://phpjs.org/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/phpjs.org/?referer=');">PHP.JS</a> and <a title="jsPDF" href="http://code.google.com/p/jspdf/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/code.google.com/p/jspdf/?referer=');">jsPDF</a>.<img class="alignright" title="jsPDF" src="http://www.iadis.org/ijcsis/images/PDF_icon.jpg" alt="" width="74" height="74" /></p>
<p><strong>PHP.JS</strong> is an open source project in which you can use PHP functions client-side, in pure      JavaScript. <strong>jsPDF</strong> is an open-source library for generating PDF documents using nothing but Javascript.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dovyski.com/2009/06/php-and-pdf-in-pure-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE6 has already fulfilled its destiny, it&#8217;s time to upgrade!</title>
		<link>http://www.dovyski.com/2009/04/ie6-has-already-fulfilled-its-destiny-its-time-to-upgrade/</link>
		<comments>http://www.dovyski.com/2009/04/ie6-has-already-fulfilled-its-destiny-its-time-to-upgrade/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 02:02:46 +0000</pubDate>
		<dc:creator>Dovyski</dc:creator>
				<category><![CDATA[Web development]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.dovyski.com/?p=70</guid>
		<description><![CDATA[One of the most annoying thing I did during the development of our web projects was to keep our apps running smooth in a wide range of old browsers. Not too many years ago, there was only one "king" in &#8230; <a href="http://www.dovyski.com/2009/04/ie6-has-already-fulfilled-its-destiny-its-time-to-upgrade/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>One of the most annoying thing I did during the development of our web projects was to keep our apps running smooth in a wide range of old browsers. Not too many years ago, there was only one "king" in the browser's kingdom: <a title="Internet Explorer" href="http://en.wikipedia.org/wiki/Internet_Explorer" target="_blank" onclick="pageTracker._trackPageview('/outgoing/en.wikipedia.org/wiki/Internet_Explorer?referer=');">Microsoft Internet Explorer</a>. <em>King</em> is a little bit unappropriated, however on February, 2005, IE 6 was pumping the web engines with a market share of <strong>82.79%</strong>, what is a quite impressive number.</p>
<p>Excluding the security problems, the non W3C compliant behavior and other issues, IE6 as the only major browser would be a great deal to all web developers. The existence of  just one browser means few environments to test and few compatibility if/elses. The web-developers burden, however, was far from being released.</p>
<p>In 1996, <a title="Opera" href="http://en.wikipedia.org/wiki/Opera_(web_browser)" target="_blank" onclick="pageTracker._trackPageview('/outgoing/en.wikipedia.org/wiki/Opera_web_browser?referer=');">Opera</a> was first released publicly with version 2.0. Coming next, Apple first released <a title="Safari" href="http://en.wikipedia.org/wiki/Safari_(web_browser)" target="_blank" onclick="pageTracker._trackPageview('/outgoing/en.wikipedia.org/wiki/Safari_web_browser?referer=');">Safari</a> as a public beta on January 7, 2003. Following the flow, in November 9, 2004, <a title="Firefox" href="http://en.wikipedia.org/wiki/Firefox" target="_blank" onclick="pageTracker._trackPageview('/outgoing/en.wikipedia.org/wiki/Firefox?referer=');">Mozilla</a> came up with <a title="Firefox" href="http://en.wikipedia.org/wiki/Firefox" target="_blank" onclick="pageTracker._trackPageview('/outgoing/en.wikipedia.org/wiki/Firefox?referer=');">Firefox</a> 1.0. The last one to join the party was Google <a title="Chrome" href="http://en.wikipedia.org/wiki/Google_Chrome" target="_blank" onclick="pageTracker._trackPageview('/outgoing/en.wikipedia.org/wiki/Google_Chrome?referer=');">Chrome</a>, released as a public beta on September 2, 2008. With the built-in markup madness that HTML allows and with no clear rules for how a browser should behave, the web development became a nightmare.</p>
<p>Luckly things got better and the development of major browsers started to have its foundations over W3C standards and <a href="http://www.tgdaily.com/content/view/37904/113/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.tgdaily.com/content/view/37904/113/?referer=');">performance worries</a>. Every new version of each browser introduced a set of brand new stuffs, including security improvements and higher <a title="Acid test" href="http://www.acidtests.org/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.acidtests.org/?referer=');">Acid</a> scores. Everything would be great, except for one huge problem: IE6, an old and obsolete browser, is still widely used!</p>
<p>That problem drastically increases the complexity of web apps, because developers, in order to ensure the website will look fine, have to workaround all the stupid things IE6 does. As the <a title="WordPress" href="http://www.wordpress.org" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.wordpress.org?referer=');">WordPress</a> guys usually say, "code is poetry"; in my opinion IE6 compatibility code is classified as a bunch of ugly words within a rhyme. It's time to move on, let IE6 go!</p>
<p><a href="http://ie6-upgrade-warning.googlecode.com/svn/trunk/example.png" onclick="pageTracker._trackPageview('/outgoing/ie6-upgrade-warning.googlecode.com/svn/trunk/example.png?referer=');"><img class="aligncenter" title="IE6 upgrade warning" src="http://ie6-upgrade-warning.googlecode.com/svn/trunk/example.png" alt="" width="607" height="292" /></a></p>
<p>To tell that to your users, a good approach is the <a href="http://code.google.com/p/ie6-upgrade-warning/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/code.google.com/p/ie6-upgrade-warning/?referer=');">ie6 upgrade warning</a>. It is a little script (7.9kb) that displays a warning message politely informing the user to upgrade the browser to a newer version (links to newest IE, Firefox, Opera, Safari, Chrome are provided).</p>
<p>Make the Internet a better place, let old things in the past and move on to the new ones. Upgrade your browser.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dovyski.com/2009/04/ie6-has-already-fulfilled-its-destiny-its-time-to-upgrade/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Profiling and debugging PHP</title>
		<link>http://www.dovyski.com/2009/04/profiling-and-debugging-php/</link>
		<comments>http://www.dovyski.com/2009/04/profiling-and-debugging-php/#comments</comments>
		<pubDate>Sun, 26 Apr 2009 04:59:19 +0000</pubDate>
		<dc:creator>Dovyski</dc:creator>
				<category><![CDATA[Web development]]></category>
		<category><![CDATA[debug]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[profiling]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.dovyski.com/?p=83</guid>
		<description><![CDATA[Reviewing the code is an important task every programmer must (or should) perform. Sometimes the program you have just coded looks nice and fast, because all the tests you have performed using your well-controlled devel0pment sandbox showed no errors. Unless &#8230; <a href="http://www.dovyski.com/2009/04/profiling-and-debugging-php/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><small><strong></strong></small></p>
<p>Reviewing the code is an important task every programmer must (or should) perform. Sometimes the program you have just coded looks nice and fast, because all the tests you have performed using your well-controlled devel0pment sandbox showed no errors.</p>
<p>Unless you are a god when programming, you may have left some little performance tweaks behind. Most of the time you can replace several method calls with the returned value stored in a variable, or avoiding nested for/whiles, or freeing a result set in order to save some memory, etc. In the end, all those tweaks can make the difference between a smooth user experience and an extremely painful development problem.</p>
<p>If you are a PHP developer, you can use the free <a title="PHP Quick Profiler" href="http://particletree.com/features/php-quick-profiler/" onclick="pageTracker._trackPageview('/outgoing/particletree.com/features/php-quick-profiler/?referer=');">PHP Quick Profiler (PQP)</a> to help profiling and debugging your code. No more echoing vars, objects or queries in order to find performance mistakes. Using an automated tool to show you what is going on, you can save a lot of time and ensure your app is stable and fast. I read about PQP at <a href="http://www.webappers.com/2009/04/25/php-quick-profiler-firebug-for-php/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.webappers.com/2009/04/25/php-quick-profiler-firebug-for-php/?referer=');">WebAppers</a> these days. They also have a screenshot (below) and a <a href="http://particletree.com/examples/pqp/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/particletree.com/examples/pqp/?referer=');">link for a demo</a>.</p>
<p><a title="PHP Quick Profiler" href="http://particletree.com/features/php-quick-profiler/" onclick="pageTracker._trackPageview('/outgoing/particletree.com/features/php-quick-profiler/?referer=');"><img class="aligncenter" src="http://www.webappers.com/img/2009/04/php-profiler.jpg" alt="PHP Profiler" /></a></p>
<p>If you want more options for profiling and debugging, I recommend <a href="http://www.xdebug.org/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.xdebug.org/?referer=');">Xdebug</a>, which is a very powerful tool. We have been using it at <a href="http://www.decadium.com" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.decadium.com?referer=');">Decadium</a> for a long time.  Some of the features include stack traces and function traces in error messages (with full parameter display, function/file name and line indications), information about memory allocation and protection for infinite recursions.</p>
<p>Xdebug is also free and has support for Windows and Linux.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dovyski.com/2009/04/profiling-and-debugging-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
