<?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>Jeroens blog &#187; Zend Studio</title>
	<atom:link href="http://blog.bn2vs.com/tag/zend-studio/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.bn2vs.com</link>
	<description>Blog of Jeroen De Dauw. The latest news on my open source work and interests.</description>
	<lastBuildDate>Wed, 28 Jul 2010 16:09:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>MediaWiki testing with PHPUnit</title>
		<link>http://blog.bn2vs.com/2010/07/18/mediawiki-testing-with-phpunit/</link>
		<comments>http://blog.bn2vs.com/2010/07/18/mediawiki-testing-with-phpunit/#comments</comments>
		<pubDate>Sun, 18 Jul 2010 22:26:46 +0000</pubDate>
		<dc:creator>Jeroen De Dauw</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Debugging]]></category>
		<category><![CDATA[Mapping]]></category>
		<category><![CDATA[Maps]]></category>
		<category><![CDATA[MediaWiki]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[PEAR]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHPUnit]]></category>
		<category><![CDATA[Planet Wikimedia]]></category>
		<category><![CDATA[Testing]]></category>
		<category><![CDATA[Wikimedia]]></category>
		<category><![CDATA[Zend Studio]]></category>

		<guid isPermaLink="false">http://blog.bn2vs.com/?p=904</guid>
		<description><![CDATA[I figured having some unit tests for Maps, the MediaWiki extension to work with geographical data and display it by embedding dynamic maps into your articles, would be beneficial to it&#8217;s quality. It&#8217;s pretty hard to try cover all possible use cases with manual tests, and consumes a lot of time in any case. I [...]]]></description>
			<content:encoded><![CDATA[<div class='wpfblike' style='height: 40px;'><fb:like href='http://blog.bn2vs.com/2010/07/18/mediawiki-testing-with-phpunit/' layout='default' show_faces='true' width='400' action='like' colorscheme='light' /></div><p>I figured having some unit tests for <a href="http://www.mediawiki.org/wiki/Extension:Maps">Maps</a>, the <a href="http://www.mediawiki.org">MediaWiki</a> extension to work with geographical data and display it by embedding dynamic maps into your articles, would be beneficial to it&#8217;s quality. It&#8217;s pretty hard to try cover all possible use cases with manual tests, and consumes a lot of time in any case. I therefore decided to try create some tests for the coordinate parser and formatter class, as it&#8217;s arguably the core feature of Maps.</p>
<p><a href="http://pear.php.net/"><img class="alignright size-full wp-image-917" title="PEAR logo" src="http://blog.bn2vs.com/wp-content/uploads/2010/07/pearsmall.gif" alt="PEAR logo" width="104" height="50" /></a>I started off by trying to install plain <a href="http://www.phpunit.de/">PHPUnit</a>, which is the most commonly used unit testing framework for PHP. This took me a while, as you are supposed to install it using <a href="http://pear.php.net/">PEAR</a> (PHP Extension and Application Repository), a repository tool for PHP applications, and has never used this before. After two hours or so of messing around, I got both installed <img src='http://blog.bn2vs.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Then I went on investigating how I could best integrate this into my work-flow, and discovered that PHPUnit comes bundled with <a href="https://secure.wikimedia.org/wikipedia/en/wiki/Zend_Studio">Zend Studio</a>, seamlessly integrated, working completely out of the box o_O.</p>
<p>I then wrote a test case for the <a href="http://svn.wikimedia.org/viewvc/mediawiki/trunk/extensions/Maps/Includes/Maps_CoordinateParser.php?view=markup">coordinate parsing and formatting class</a> of Maps. I had a hard time getting it to work, as I needed to include MW itself, as the class uses MW functions. After some non-constructive discussion with several fellow MW devs I found a way to get it to work by including the maintenance script entry point, and tricking MW into thinking the call was made from a CLI. I now have a <a href="http://svn.wikimedia.org/viewvc/mediawiki/trunk/extensions/Maps/test/MapsCoordinateParserTest.php?view=markup">test case for the coordinate class</a>, with tests for most of it&#8217;s functionality. Some more test data, and maybe some extra tests would be nice. A tricky thing in the case of this class is founding errors, which are hard to take into account, especially if you only want to allow them to a certain degree.</p>
<p><a href="http://www.phpunit.de/"><img class="alignright size-full wp-image-918" title="PHPUnit logo" src="http://blog.bn2vs.com/wp-content/uploads/2010/07/phpunit-logo.gif" alt="PHPUnit logo" width="94" height="80" /></a>This particular test case is already paying off, as it made me find 3 subtle errors in coordinate parsing or formatting, that did not show up in my manual tests, as I was not covering the test data causing the issues.</p>
<p>I&#8217;m now planning to maybe write test cases for the distance parser to, which should be rather easy to do. I probably won&#8217;t create any others for Maps, as it&#8217;s rather time consuming, and I have a lot of other things to do right now. When I create new classes that are suited for unit tests in the future, I&#8217;ll definitely write tests for them as I build them up though, as it&#8217;ll not cost a lot more time then doing manual tests, and will ensure the classes are really solid.</p>
<p><a href="http://blog.bn2vs.com/wp-content/uploads/2010/07/phpunit-integration-with-zend-studio.jpg"><img class="alignnone size-large wp-image-916" title="PHPUnit integration with Zend Studio" src="http://blog.bn2vs.com/wp-content/uploads/2010/07/phpunit-integration-with-zend-studio-1024x262.jpg" alt="PHPUnit integration with Zend Studio" width="798" height="204" /></a></p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F07%2F18%2Fmediawiki-testing-with-phpunit%2F&amp;title=MediaWiki+testing+with+PHPUnit" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F07%2F18%2Fmediawiki-testing-with-phpunit%2F&amp;title=MediaWiki+testing+with+PHPUnit" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F07%2F18%2Fmediawiki-testing-with-phpunit%2F&amp;title=MediaWiki+testing+with+PHPUnit" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F07%2F18%2Fmediawiki-testing-with-phpunit%2F&amp;headline=MediaWiki+testing+with+PHPUnit" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=MediaWiki+testing+with+PHPUnit&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F07%2F18%2Fmediawiki-testing-with-phpunit%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=MediaWiki+testing+with+PHPUnit&amp;u=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F07%2F18%2Fmediawiki-testing-with-phpunit%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=MediaWiki+testing+with+PHPUnit&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F07%2F18%2Fmediawiki-testing-with-phpunit%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=MediaWiki+testing+with+PHPUnit&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F07%2F18%2Fmediawiki-testing-with-phpunit%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=MediaWiki+testing+with+PHPUnit&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F07%2F18%2Fmediawiki-testing-with-phpunit%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F07%2F18%2Fmediawiki-testing-with-phpunit%2F&amp;title=MediaWiki+testing+with+PHPUnit&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F07%2F18%2Fmediawiki-testing-with-phpunit%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fblog.bn2vs.com%2F2010%2F07%2F18%2Fmediawiki-testing-with-phpunit%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F07%2F18%2Fmediawiki-testing-with-phpunit%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://blog.bn2vs.com/2010/07/18/mediawiki-testing-with-phpunit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend Server for more awesomeness</title>
		<link>http://blog.bn2vs.com/2010/07/17/zend-server-for-more-awesomeness/</link>
		<comments>http://blog.bn2vs.com/2010/07/17/zend-server-for-more-awesomeness/#comments</comments>
		<pubDate>Sat, 17 Jul 2010 01:02:07 +0000</pubDate>
		<dc:creator>Jeroen De Dauw</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Debugging]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Testing]]></category>
		<category><![CDATA[Zend Server]]></category>
		<category><![CDATA[Zend Studio]]></category>

		<guid isPermaLink="false">http://blog.bn2vs.com/?p=906</guid>
		<description><![CDATA[About a year back I decided I had to change my development environment from working on a remote server with a simple text editor to something more solid, if I wanted to do serious PHP development. I went for Eclipse as IDE, which is without a doubt the most awesome IDE out there, as it&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<div class='wpfblike' style='height: 40px;'><fb:like href='http://blog.bn2vs.com/2010/07/17/zend-server-for-more-awesomeness/' layout='default' show_faces='true' width='400' action='like' colorscheme='light' /></div><p><a href="http://www.eclipse.org/"><img class="alignright size-full wp-image-912" title="Eclipse, the AWESOME IDE" src="http://blog.bn2vs.com/wp-content/uploads/2010/07/eclipse-logo.jpg" alt="Eclipse, the AWESOME IDE" width="149" height="87" /></a>About a year back I decided I had to change my development environment from working on a remote server with a simple text editor to something more solid, if I wanted to do serious PHP development.</p>
<p>I went for <a href="http://www.eclipse.org/">Eclipse</a> as IDE, which is without a doubt the most awesome IDE out there, as it&#8217;s completely open source, robust, and has a lot of extensions that make it usable for an awful lot of languages. For PHP there is the open source <a href="http://www.eclipse.org/pdt/">PHP Development Tools</a> Project, and the commercial Eclipse based IDE build on top of this, <a href="http://www.zend.com/en/products/studio/">Zend Studio</a>. At that point having my development environment as mobile as possible was rather important, as I often occupied machines other then my laptop or my own desktop. Therefore I put both Eclipse and my server on an usb.</p>
<p><a href="http://www.zend.com/products/studio/"><img class="alignright size-full wp-image-911" title="Zend Studio, Eclipse-based AWESOMENESS" src="http://blog.bn2vs.com/wp-content/uploads/2010/07/studio_logo.gif" alt="Zend Studio, Eclipse-based AWESOMENESS" width="137" height="105" /></a>Now, a year later, a lot has changed, and I finally updated my tools accordingly. First of all, I&#8217;m now also using Linux, and plan to leave Windows into the dust bin soon, so prefer tools that work on both operating systems. Secondly, I now only develop on my laptop and own desktop machine, so portability is not as important any more. Also, I&#8217;m now doing a lot more serious PHP development as I was doing a year ago, and would benefit a lot from more decent debugging, testing and profiling tools.</p>
<p>What I did was throwing out my mobile web server and install Zend Studio, together with Zend Server Community Edition (which is free). They integrate in such a way that you can do code tracing, work with breakpoints, profile code, ect, all out of the box. If you are developing PHP applications like me and in search for a good tool, I can definitely recommend this. Zend Studio isn&#8217;t free, but it&#8217;s worth the price. Not going into a complete list of awesome stuff PDT and Zend Studio include, but <a href="http://www.justincarmony.com/blog/2008/09/24/zend-studio-vs-php-development-tools/">this blog post</a>, although a little dates, does a good job at it.</p>
<p><a href="http://www.zend.com"><img class="alignright size-full wp-image-910" title="Zend logo" src="http://blog.bn2vs.com/wp-content/uploads/2010/07/zend_logo.gif" alt="Zend logo" width="70" height="70" /></a>It&#8217;ll take me a while to integrate these features into my work-flow, as I&#8217;m not used to having them available, but I expect this to start paying off rather soon then late <img src='http://blog.bn2vs.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Also waiting on a new release of Zend Studio build on Eclipse 3.6 (Helios).</p>
<p>(O yeah, can&#8217;t write a post about Eclipse without saying: NetBeans fails <img src='http://blog.bn2vs.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> )</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F07%2F17%2Fzend-server-for-more-awesomeness%2F&amp;title=Zend+Server+for+more+awesomeness" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F07%2F17%2Fzend-server-for-more-awesomeness%2F&amp;title=Zend+Server+for+more+awesomeness" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F07%2F17%2Fzend-server-for-more-awesomeness%2F&amp;title=Zend+Server+for+more+awesomeness" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F07%2F17%2Fzend-server-for-more-awesomeness%2F&amp;headline=Zend+Server+for+more+awesomeness" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Zend+Server+for+more+awesomeness&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F07%2F17%2Fzend-server-for-more-awesomeness%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Zend+Server+for+more+awesomeness&amp;u=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F07%2F17%2Fzend-server-for-more-awesomeness%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Zend+Server+for+more+awesomeness&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F07%2F17%2Fzend-server-for-more-awesomeness%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Zend+Server+for+more+awesomeness&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F07%2F17%2Fzend-server-for-more-awesomeness%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Zend+Server+for+more+awesomeness&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F07%2F17%2Fzend-server-for-more-awesomeness%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F07%2F17%2Fzend-server-for-more-awesomeness%2F&amp;title=Zend+Server+for+more+awesomeness&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F07%2F17%2Fzend-server-for-more-awesomeness%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fblog.bn2vs.com%2F2010%2F07%2F17%2Fzend-server-for-more-awesomeness%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F07%2F17%2Fzend-server-for-more-awesomeness%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://blog.bn2vs.com/2010/07/17/zend-server-for-more-awesomeness/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Closing Zend and opening Visual Studio</title>
		<link>http://blog.bn2vs.com/2009/08/21/closing-zend-and-opening-visual-studio/</link>
		<comments>http://blog.bn2vs.com/2009/08/21/closing-zend-and-opening-visual-studio/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 01:37:23 +0000</pubDate>
		<dc:creator>Jeroen De Dauw</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[.Net]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Class lirary]]></category>
		<category><![CDATA[DownloadLib]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[SourceForge]]></category>
		<category><![CDATA[SVN]]></category>
		<category><![CDATA[The Code Project]]></category>
		<category><![CDATA[VB]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[Zend Studio]]></category>

		<guid isPermaLink="false">http://blog.bn2vs.com/?p=334</guid>
		<description><![CDATA[Now the Google Summer of Code coding period has finished, I can divide my attention between multiple projects again. Since I&#8217;ve been doing PHP and JavaScript only for over 2 months now, I&#8217;m starting off with taking a PHP-break. This means I won&#8217;t do any development of mayor new features for Maps or Semantic Maps, [...]]]></description>
			<content:encoded><![CDATA[<div class='wpfblike' style='height: 40px;'><fb:like href='http://blog.bn2vs.com/2009/08/21/closing-zend-and-opening-visual-studio/' layout='default' show_faces='true' width='400' action='like' colorscheme='light' /></div><p>Now the <a href="http://blog.bn2vs.com/2009/04/26/google-summer-of-code-2009/" target="_blank">Google Summer of Code</a> coding period has finished, I can divide my attention between multiple projects again. Since I&#8217;ve been doing PHP and JavaScript only for over 2 months now, I&#8217;m starting off with taking a PHP-break. This means I won&#8217;t do any development of mayor new features for <a href="http://www.mediawiki.org/wiki/Extension:Maps#Description" target="_blank">Maps</a> or <a href="http://www.mediawiki.org/wiki/Extension:Semantic_Maps#Description" target="_blank">Semantic Maps</a>, and definitely won&#8217;t work on any other PHP project. Of course I&#8217;ll still ensure bugs get fixed for my mapping extensions, and help people out with code when needed, but that&#8217;s about it. So basically I&#8217;m closing my Zend Studio, which has become one of my most used applications in the last months, and starting my Visual Studio again. Now I think of it, this is really awkward. I used to start my VS practically every time I booted my computer for over a year, and then only opened it a handful of times in a 2 month period.</p>
<p>So, what am I going to work on now? One of my last projects before I started GSoC was a <a href="http://code.bn2vs.com/viewtopic.php?t=150" target="_blank">VB.Net background file downloader</a>, of which I released <a href="http://www.codeproject.com/KB/vb/FileDownloader.aspx" target="_blank">an article on The Code Project</a>, and later on created <a href="http://www.codeproject.com/KB/cs/BackgroundFileDownloader.aspx" target="_blank">a C# version</a>. I got quite some positive feedback on this project by people, although it was initially created with the sole purpose of helping that needed a simple downloader someone out, to improve my own skills, and to demonstrate how to create a simple to implement downloader. I&#8217;m now continuing this project, by rewriting it from scratch, to both add some mayor new features, and mess around with some multi-threading stuff I&#8217;ve been wanting to try out for months now.</p>
<p>The mayor new features that will be added are simultaneous downloads (the current classes only support one download at a time), segmented downloads (woot!), download priorities and bandwidth limitation options. This will require a nice OOP approach, with some more advanced multi-threading. I&#8217;m basing part of my code on <a href="http://www.codeproject.com/KB/IP/MyDownloader.aspx" target="_blank">MyDownloader</a>, an extremely nice C# downloader, which has quite some more functionality then what I&#8217;m doing. It&#8217;s more extensive then required for most people though, and not all that easy to implement. I also don&#8217;t really agree with some naming choices, and it lacks both code docs for devs that want to modify it, and devs that want to implement it. So clearly, I&#8217;ll put a lot of effort in keeping the new project as small and to-the-point as possible, and pay attention to easy of implementation, and usability. Another obvious difference is that this project is in VB.Net and not C#.Net. This has more advantages then disadvantages IMHO. If the project is compiled to a .dll or is used in a multi-project solution, it simply doesn&#8217;t matter what language it uses. A lot of casual programmers don&#8217;t know how to handle either, and the majority of these uses VB.Net, and not C#. And the ones that do know C# are more likely to know VB.Net then the other way around.</p>
<p>I&#8217;ve created a project on <a href="http://sourceforge.net" target="_blank">SourceForge</a> to host the code, and be able to commit to <a href="http://download-lib.svn.sourceforge.net/viewvc/download-lib/" target="_blank">the project&#8217;s SVN</a>. Since the project now contains multiple classes, I renamed it to <a href="https://sourceforge.net/projects/download-lib/" target="_blank">.Net DownloadLib</a>.</p>
<p>After that project I&#8217;m planing to put some real effort into my mapping extension for MediaWiki again, and possibly to have a look at Python and Ruby. When school starts again, somewhere half way through September, some new project opportunities will probably arise for me, but I guess I&#8217;ll see that then. I&#8217;m also looking forward to &#8216;learning to program&#8217; at school, which is destined to give me some great laughs. Luckily for me I&#8217;ll have to learn C++ at university, so I won&#8217;t be totally bored with it. I hope they don&#8217;t drive the low-level aspects of the language to far, since that&#8217;s pretty useless in today&#8217;s world IMHO.</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F08%2F21%2Fclosing-zend-and-opening-visual-studio%2F&amp;title=Closing+Zend+and+opening+Visual+Studio" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F08%2F21%2Fclosing-zend-and-opening-visual-studio%2F&amp;title=Closing+Zend+and+opening+Visual+Studio" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F08%2F21%2Fclosing-zend-and-opening-visual-studio%2F&amp;title=Closing+Zend+and+opening+Visual+Studio" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F08%2F21%2Fclosing-zend-and-opening-visual-studio%2F&amp;headline=Closing+Zend+and+opening+Visual+Studio" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Closing+Zend+and+opening+Visual+Studio&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F08%2F21%2Fclosing-zend-and-opening-visual-studio%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Closing+Zend+and+opening+Visual+Studio&amp;u=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F08%2F21%2Fclosing-zend-and-opening-visual-studio%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Closing+Zend+and+opening+Visual+Studio&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F08%2F21%2Fclosing-zend-and-opening-visual-studio%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Closing+Zend+and+opening+Visual+Studio&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F08%2F21%2Fclosing-zend-and-opening-visual-studio%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Closing+Zend+and+opening+Visual+Studio&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F08%2F21%2Fclosing-zend-and-opening-visual-studio%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F08%2F21%2Fclosing-zend-and-opening-visual-studio%2F&amp;title=Closing+Zend+and+opening+Visual+Studio&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F08%2F21%2Fclosing-zend-and-opening-visual-studio%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fblog.bn2vs.com%2F2009%2F08%2F21%2Fclosing-zend-and-opening-visual-studio%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F08%2F21%2Fclosing-zend-and-opening-visual-studio%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://blog.bn2vs.com/2009/08/21/closing-zend-and-opening-visual-studio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend Studio 7</title>
		<link>http://blog.bn2vs.com/2009/08/01/zend-studio-7/</link>
		<comments>http://blog.bn2vs.com/2009/08/01/zend-studio-7/#comments</comments>
		<pubDate>Sat, 01 Aug 2009 16:58:07 +0000</pubDate>
		<dc:creator>Jeroen De Dauw</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Zend Studio]]></category>

		<guid isPermaLink="false">http://blog.bn2vs.com/?p=277</guid>
		<description><![CDATA[Zend Studio 7.0 is the next generation of our professional-grade PHP application development environment. It has been designed to maximize developer productivity by enabling you to develop and maintain code faster, solve application problems quickly and improve team collaboration. &#8211; zend.com I just noticed, the new Zend Studio, 7.0, has been released 2 days ago! [...]]]></description>
			<content:encoded><![CDATA[<div class='wpfblike' style='height: 40px;'><fb:like href='http://blog.bn2vs.com/2009/08/01/zend-studio-7/' layout='default' show_faces='true' width='400' action='like' colorscheme='light' /></div><p><em>Zend Studio 7.0 is the next generation of our professional-grade PHP application development environment. It has been designed to maximize developer productivity by enabling you to develop and maintain code faster, solve application problems quickly and improve team collaboration.</em> &#8211; zend.com<em><br />
</em></p>
<p><em><a href="http://www.zend.com/en/products/studio/"><img class="alignnone size-full wp-image-278" title="Zend Studio 7, a PHP IDE" src="http://blog.bn2vs.com/wp-content/uploads/2009/08/studio7-release-product-main.jpg" alt="Zend Studio 7, a PHP IDE" width="555" height="195" /></a></em></p>
<p>I just noticed, the new<a href="http://en.wikipedia.org/wiki/Zend_Studio" target="_blank"> Zend Studio</a>, 7.0, has been released 2 days ago! This is great new for me, since ZS is my primary <a href="http://en.wikipedia.org/wiki/List_of_PHP_editors" target="_blank">IDE for PHP development</a>. This release uses <a href="http://blog.bn2vs.com/2009/07/01/eclipse-3-5-and-netbeans-6-7/" target="_self">the latest Eclipse Platform (Galileo)</a>, offers better SVN integration and supports <a href="http://www.php.net/releases/5_3_0.php" target="_blank">PHP 5.3</a>, as well as a whole variety of other awesome features.</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F08%2F01%2Fzend-studio-7%2F&amp;title=Zend+Studio+7" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F08%2F01%2Fzend-studio-7%2F&amp;title=Zend+Studio+7" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F08%2F01%2Fzend-studio-7%2F&amp;title=Zend+Studio+7" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F08%2F01%2Fzend-studio-7%2F&amp;headline=Zend+Studio+7" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Zend+Studio+7&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F08%2F01%2Fzend-studio-7%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Zend+Studio+7&amp;u=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F08%2F01%2Fzend-studio-7%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Zend+Studio+7&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F08%2F01%2Fzend-studio-7%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Zend+Studio+7&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F08%2F01%2Fzend-studio-7%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Zend+Studio+7&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F08%2F01%2Fzend-studio-7%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F08%2F01%2Fzend-studio-7%2F&amp;title=Zend+Studio+7&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F08%2F01%2Fzend-studio-7%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fblog.bn2vs.com%2F2009%2F08%2F01%2Fzend-studio-7%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F08%2F01%2Fzend-studio-7%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://blog.bn2vs.com/2009/08/01/zend-studio-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend Studio 6.1.2</title>
		<link>http://blog.bn2vs.com/2009/07/16/zend-studio-6-1-2/</link>
		<comments>http://blog.bn2vs.com/2009/07/16/zend-studio-6-1-2/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 19:19:38 +0000</pubDate>
		<dc:creator>Jeroen De Dauw</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Zend Studio]]></category>

		<guid isPermaLink="false">http://blog.bn2vs.com/?p=202</guid>
		<description><![CDATA[While working on Maps and Semantic Maps, I needed to refactor some class names, and tried to use the refactor tool of Zend Studio, the PHP IDE of my choice. The only thing that happened was an error popping up though. After some searching on the web and posting that problem on multiple help forum&#8217;s, [...]]]></description>
			<content:encoded><![CDATA[<div class='wpfblike' style='height: 40px;'><fb:like href='http://blog.bn2vs.com/2009/07/16/zend-studio-6-1-2/' layout='default' show_faces='true' width='400' action='like' colorscheme='light' /></div><p><a href="http://www.zend.com/en/products/studio/"><img class="alignleft size-full wp-image-203" style="margin-left: 5px; margin-right: 5px;" title="Zend Studio - A popular PHP IDE" src="http://blog.bn2vs.com/wp-content/uploads/2009/07/zendstudio_logo.gif" alt="Zend Studio - A popular PHP IDE" width="137" height="105" /></a>While working on <a href="http://www.mediawiki.org/wiki/Extension:Maps" target="_blank">Maps</a> and <a href="http://www.mediawiki.org/wiki/Extension:Semantic_Maps">Semantic Maps</a>, I needed to refactor some class names, and tried to use the refactor tool of <a href="http://www.zend.com/en/products/studio/" target="_blank">Zend Studio</a>, the PHP IDE of my choice. The only thing that happened was an error popping up though. After some searching on the web and posting that problem on multiple help forum&#8217;s, someone suggested that I should install the latest version of Zend. At that moment I was using Zend Studio version 6.0. After looking at the <a href="http://en.wikipedia.org/wiki/Zend_Studio" target="_blank">wiki page about Zend Studio</a>, I decided to download the latest release, 6.1.2, and installed it. I then replaced my old ZS with it, and switched to my GSoC workspace. This went really smooth, I didn&#8217;t encounter a single error, and apparently fixed the refactoring problem. Now I also have a bunch of new features available to me that came with this new version.  Zend studio 7 is in the making, presumably based on the new <a href="http://en.wikipedia.org/wiki/Eclipse_(software)" target="_blank">Eclipse</a> 3.5, and will undoubtedly contain a whole variety of new features to speed up the development process. One more tool to wait for&#8230;</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F07%2F16%2Fzend-studio-6-1-2%2F&amp;title=Zend+Studio+6.1.2" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F07%2F16%2Fzend-studio-6-1-2%2F&amp;title=Zend+Studio+6.1.2" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F07%2F16%2Fzend-studio-6-1-2%2F&amp;title=Zend+Studio+6.1.2" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F07%2F16%2Fzend-studio-6-1-2%2F&amp;headline=Zend+Studio+6.1.2" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Zend+Studio+6.1.2&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F07%2F16%2Fzend-studio-6-1-2%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Zend+Studio+6.1.2&amp;u=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F07%2F16%2Fzend-studio-6-1-2%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Zend+Studio+6.1.2&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F07%2F16%2Fzend-studio-6-1-2%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Zend+Studio+6.1.2&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F07%2F16%2Fzend-studio-6-1-2%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Zend+Studio+6.1.2&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F07%2F16%2Fzend-studio-6-1-2%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F07%2F16%2Fzend-studio-6-1-2%2F&amp;title=Zend+Studio+6.1.2&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F07%2F16%2Fzend-studio-6-1-2%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fblog.bn2vs.com%2F2009%2F07%2F16%2Fzend-studio-6-1-2%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F07%2F16%2Fzend-studio-6-1-2%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://blog.bn2vs.com/2009/07/16/zend-studio-6-1-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
