<?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>84 Bytes &#187; Tools &amp; Tips</title>
	<atom:link href="http://www.84bytes.com/category/tools-tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.84bytes.com</link>
	<description>A web development blog</description>
	<lastBuildDate>Mon, 04 Apr 2011 14:55:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Cloud based Code Editing with Bespin</title>
		<link>http://www.84bytes.com/2009/02/18/cloud-based-code-editing-with-bespin/</link>
		<comments>http://www.84bytes.com/2009/02/18/cloud-based-code-editing-with-bespin/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 23:18:21 +0000</pubDate>
		<dc:creator>Richard Wong</dc:creator>
				<category><![CDATA[Tools & Tips]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://www.84bytes.com/?p=251</guid>
		<description><![CDATA[After about 4 months without posting anything, I really want to get myself going again by starting with a small post about the latest projects from Mozilla Labs. As for most us who develop for the web, Mozilla Firefox are already our default browser as its add-on structure gave us many essential tools in development. [...]]]></description>
			<content:encoded><![CDATA[<p>After about 4 months without posting anything, I really want to get myself going again by starting with a small post about the latest projects from <a href="http://labs.mozilla.com/" target="_blank"><strong>Mozilla Labs</strong></a>.</p>
<p>As for most us who develop for the web, Mozilla Firefox are already our default browser as its add-on structure gave us many essential tools in development. So it&#8217;s very exciting to see their lab coming out with experimental project that focus on developers.</p>
<p><strong><a href="http://labs.mozilla.com/2009/02/introducing-bespin/" target="_blank">Bespin</a></strong> was launched last week as an open extensible web-based code editors aiming to increase developer productivity, enable compelling user experiences, and promote the use of open standards.</p>
<p>Without me repeating too much, here is an introduction video from Mozilla:<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="225" 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=3195079&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="400" height="225" src="http://vimeo.com/moogaloop.swf?clip_id=3195079&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><br />
<a href="http://vimeo.com/3195079">Introducing Bespin</a> from <a href="http://vimeo.com/dion">Dion Almaer</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p><span id="more-251"></span></p>
<p>Although this is only a first prototype of <strong>Bespin</strong>, they have done great job to show us the possibility of coding on the web and developing applications in a browser.</p>
<p>I like the fact that they wanted to create something that&#8217;s different to normal desktop editor. Their integrated Command-line tool is a great example which I personally think any editor should have.  They save coder a lot of time by keep their hand on the keyboard and have no need to remember all the shortcut keys.</p>
<p>Technology wise, it is interesting to see they chose to use canvas to develop their own inline editor. It allows them to have a flexible UI for editing text. Again this shows the power of canvas in developing your own bespoke UI.</p>
<p>In the past year, we saw the launch of many web based applications and signs of them becoming a real alternative to desktop applications. In some cases, including Bespin, they offer a level of collaboration and unique UI design that desktop applications sometimes lack. I suppose this shift of platform is going to continue and we will see even cooler web apps in 09.</p>
<p>Check out the <strong>Bespin </strong>demo <a href="http://bespin.mozilla.com/" target="_blank">here</a></p>
<p><img class="alignnone" title="Bespin Editor" src="http://labs.mozilla.com/uploads/2009/02/webkit-editor-medium.png" alt="" width="535" height="401" /></p>
<img src="http://www.84bytes.com/wordpress/?ak_action=api_record_view&id=251&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.84bytes.com/2009/02/18/cloud-based-code-editing-with-bespin/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Attractive Javascript Logging Console &#8211; Blackbird</title>
		<link>http://www.84bytes.com/2008/10/20/attractive-javascript-logging-console-blackbird/</link>
		<comments>http://www.84bytes.com/2008/10/20/attractive-javascript-logging-console-blackbird/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 22:38:27 +0000</pubDate>
		<dc:creator>Richard Wong</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Tools & Tips]]></category>
		<category><![CDATA[Debugging]]></category>
		<category><![CDATA[Script]]></category>

		<guid isPermaLink="false">http://www.84bytes.com/?p=167</guid>
		<description><![CDATA[Everyone who programmed in Javascript will know that one of the most common way to debug across browsers is the alert() function. Although, you can use tools like Firebug and their console api to output. It doesn&#8217;t work on IE or Safari. So a pure Javascript based solution would be great. Blackbird is one of [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-168 alignright" title="blackbird" src="http://www.84bytes.com/media/2008/10/blackbird.png" alt="" width="293" height="283" /></p>
<p>Everyone who programmed in Javascript will know that one of the most common way to debug across browsers is the alert() function. Although, you can use tools like Firebug and their console api to output. It doesn&#8217;t work on IE or Safari. So a pure Javascript based solution would be great.</p>
<p><a href="http://www.gscottolson.com/blackbirdjs/">Blackbird</a> is one of the latest script that does just that. It offers:</p>
<blockquote><p>a dead-simple way to log messages in JavaScript and an attractive console to view and filter them.  <strong>You might never use <code>alert()</code> again.</strong></p></blockquote>
<p>All you need to do is include the Blackbird script and style. Then you can start logging messages using their APIs including different message types and profiling as shown below:</p>
<dl class="api">
<blockquote><dt><code>log.debug( message )</code></dt>
<dd>Add a debug message to Blackbird</dd>
<dd class="params"><code>message</code>: the string content of the debug message</dd>
<dt><code>log.info( message )</code></dt>
<dd>Add an info message to Blackbird</dd>
<dd class="params"><code>message</code>: the string content of the info message</dd>
<dt><code>log.warn( message )</code></dt>
<dd>Add a warning message to Blackbird</dd>
<dd class="params"><code>message</code>: the string content of the warn message</dd>
<dt><code>log.error( message )</code></dt>
<dd>Add an error message to Blackbird</dd>
<dd class="params"><code>message</code>: the string content of the warn message </dd>
<dt><code>log.profile( label )</code></dt>
<dd>Start/end a time profiler for Blackbird.  If a profiler named <code>string</code> does not exist, create a new profiler.  Otherwise, stop the profiler <code>string</code> and display the time elapsed (in ms).</dd>
</blockquote>
</dl>
<p><a href="http://www.gscottolson.com/blackbirdjs/">Blackbird</a></p>
<img src="http://www.84bytes.com/wordpress/?ak_action=api_record_view&id=167&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.84bytes.com/2008/10/20/attractive-javascript-logging-console-blackbird/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>MySQL Query Performance Tips</title>
		<link>http://www.84bytes.com/2008/10/14/mysql-query-performance-tips/</link>
		<comments>http://www.84bytes.com/2008/10/14/mysql-query-performance-tips/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 12:44:55 +0000</pubDate>
		<dc:creator>Richard Wong</dc:creator>
				<category><![CDATA[Others]]></category>
		<category><![CDATA[Tools & Tips]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.84bytes.com/?p=130</guid>
		<description><![CDATA[Almost all of the modern web applications involve the use of relational database. So the performance of your applications are very much affected by the quality of the SQL queries you run. Here are some simple performance tips from MYSQL forge that you should consider when writing queries. Use EXPLAIN to profile the query execution [...]]]></description>
			<content:encoded><![CDATA[<p>Almost all of the modern web applications involve the use of relational database. So the performance of your applications are very much affected by the quality of the SQL queries you run. Here are some simple performance tips from <a href="http://forge.mysql.com/wiki/Top10SQLPerformanceTips">MYSQL forge</a> that you should consider when writing queries.<a href="http://forge.mysql.com/wiki/Top10SQLPerformanceTips"><br />
</a></p>
<blockquote>
<ol>
<li> Use EXPLAIN to profile the query execution plan</li>
<li> Use <a class="external text" title="http://dev.mysql.com/doc/refman/5.0/en/slow-query-log.html" rel="nofollow" href="http://dev.mysql.com/doc/refman/5.0/en/slow-query-log.html" target="_blank">Slow Query Log</a> (always have it on!)</li>
<li> Don&#8217;t use DISTINCT when you have or could use GROUP BY</li>
<li> Insert performance
<ol>
<li> Batch INSERT and REPLACE</li>
<li> Use LOAD DATA instead of INSERT</li>
</ol>
</li>
<li> LIMIT m,n may not be as fast as it sounds</li>
<li> Don&#8217;t use ORDER BY RAND() if you have &gt; ~2K records</li>
<li> Use SQL_NO_CACHE when you are SELECTing frequently updated data or large sets of data</li>
<li> Avoid wildcards at the start of LIKE queries</li>
<li> Avoid correlated subqueries and in select and where clause (try to avoid in)</li>
<li> ORDER BY and LIMIT work best with equalities and covered indexes</li>
<li> Separate text/blobs from metadata, don&#8217;t put text/blobs in results if you don&#8217;t need them</li>
<li> Delete small amounts at a time if you can</li>
<li> Make similar queries consistent so cache is used</li>
<li> Don&#8217;t use deprecated features</li>
<li> Turning OR on multiple index fields (&lt;5.0) into UNION may speed things up (with LIMIT), after 5.0 the index_merge should pick stuff up.</li>
<li> Use INSERT &#8230; ON DUPLICATE KEY update (INSERT IGNORE) to avoid having to SELECT</li>
</ol>
</blockquote>
<p>Now if you know all the above tips, then may be you want to start looking at database scaling, design and more from <a href="http://forge.mysql.com/wiki/Top10SQLPerformanceTips">MYSQL forge</a>.</p>
<p>Here are some more detailed articles about optimizing MySQL for those of you want to get your hands dirty:</p>
<ul>
<li><a rel="bookmark" href="http://www.softdevtube.com/?p=86">MySQL Queries Optimization by Peter Zaitsev</a></li>
<li><a href="http://hackmysql.com/case2">Table Design and MySQL Index Details</a></li>
<li><a rel="bookmark" href="http://www.ajohnstone.com/archives/mysql-php-performance-optimization-tips/">MySQL &amp; PHP Performance Optimization Tips</a></li>
<li><a href="http://dev.mysql.com/tech-resources/presentations/presentation-oscon2000-20000719/index.html">MySQL Presentations: Optimizing MySQL</a></li>
</ul>
<img src="http://www.84bytes.com/wordpress/?ak_action=api_record_view&id=130&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.84bytes.com/2008/10/14/mysql-query-performance-tips/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Creating User Flows with Product Planner</title>
		<link>http://www.84bytes.com/2008/10/05/creating-user-flows-with-product-planner/</link>
		<comments>http://www.84bytes.com/2008/10/05/creating-user-flows-with-product-planner/#comments</comments>
		<pubDate>Sun, 05 Oct 2008 16:17:26 +0000</pubDate>
		<dc:creator>Richard Wong</dc:creator>
				<category><![CDATA[Tools & Tips]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Web Apps]]></category>

		<guid isPermaLink="false">http://www.84bytes.com/?p=108</guid>
		<description><![CDATA[When you develop any sort of websites, you need to work out the flow / journey of your users. It is such an important part of any web product. If you got it wrong, you could be left with confused and unhappy user that would eventually lead to the lost of users. Recently I found [...]]]></description>
			<content:encoded><![CDATA[<p class="h_about"><img class="alignright size-full wp-image-118" title="linkedin-invite-loop_1223223627211" src="http://www.84bytes.com/media/2008/10/linkedin-invite-loop_1223223627211.png" alt="" width="144" height="103" />When you develop any sort of websites, you need to work out the flow / journey of your users. It is such an important part of any web product. If you got it wrong, you could be left with confused and unhappy user that would eventually lead to the lost of users.</p>
<p>Recently I found this little web tool called <a href="http://productplanner.com/">Product Planner</a> that allow you to easily create user flows and share it with others.The idea is that by looking at examples of other successful web products, you can get a better idea of how to create your own.</p>
<p><span id="more-108"></span></p>
<p>Below is an example of user flow for YouTube Sharing</p>
<div style="width: 425px; text-align: left;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="375" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="flashvars" value="&amp;flowXML=%3Cflow%20layout%3D%22loop%22%3E%0D%0A%3Csteps%20%3E%0D%0A%3Cstep%20id%3D%2289%22%20name%3D%22Contact%20receives%20share%20email%22%20icon_url%3D%22http%3A//productplanner.com/static/images/icons/mail.gif%22%20image_url%3D%22http%3A//productplanner.com/static/uploads/37a/f81/aa1/685/e56/9a9/695/2b0/39f/28a/25c/d36/7dea.jpg%22%20custom_image%3D%221%22%3E%3C/step%3E%0D%0A%3Cstep%20id%3D%2290%22%20name%3D%22Contact%20views%20share%20email%22%20icon_url%3D%22http%3A//productplanner.com/static/images/icons/check.gif%22%20image_url%3D%22http%3A//productplanner.com/static/uploads/ee4/f62/3b4/399/d80/2aa/a51/abc/4b0/e00/24e/d0b/6ab4.jpg%22%20custom_image%3D%221%22%3E%3C/step%3E%0D%0A%3Cstep%20id%3D%2291%22%20name%3D%22Contact%20clicks%20share%20email%20link%22%20icon_url%3D%22http%3A//productplanner.com/static/images/icons/upload.gif%22%20image_url%3D%22http%3A//productplanner.com/static/uploads/ec6/060/1d2/c88/a5c/a10/2fb/fbe/a24/e11/316/feb/9f07.jpg%22%20custom_image%3D%221%22%3E%3C/step%3E%0D%0A%3Cstep%20id%3D%2292%22%20name%3D%22Contact%20views%20video%22%20icon_url%3D%22http%3A//productplanner.com/static/images/icons/tv.gif%22%20image_url%3D%22http%3A//productplanner.com/static/uploads/609/ca3/565/f65/3f1/ca1/49f/489/29f/5e5/5fd/ae4/0808.jpg%22%20custom_image%3D%221%22%3E%3C/step%3E%0D%0A%3Cstep%20id%3D%2296%22%20name%3D%22Contact%20clicks%20share%20link%22%20icon_url%3D%22http%3A//productplanner.com/static/images/icons/upload.gif%22%20image_url%3D%22http%3A//productplanner.com/static/uploads/4f8/07f/3d0/bb5/a58/065/65c/b0a/b68/c8b/be8/83a/b5de.jpg%22%20custom_image%3D%221%22%3E%3C/step%3E%0D%0A%3Cstep%20id%3D%2257%22%20name%3D%22Contact%20fills%20out%20share%20form%22%20icon_url%3D%22http%3A//productplanner.com/static/images/icons/edit.gif%22%20image_url%3D%22http%3A//productplanner.com/static/uploads/042/43c/9ad/bbc/31b/df3/959/379/a5e/5fe/801/16c/ee0f.jpg%22%20custom_image%3D%221%22%3E%3C/step%3E%0D%0A%3C/steps%3E%0D%0A%3C/flow%3E&amp;baseURL=http%3A//productplanner.com/&amp;embedded=1&amp;viewURL=http%3A//productplanner.com/gallery/youtube/share_loop" /><embed type="application/x-shockwave-flash" width="425" height="375" flashvars="&amp;flowXML=%3Cflow%20layout%3D%22loop%22%3E%0D%0A%3Csteps%20%3E%0D%0A%3Cstep%20id%3D%2289%22%20name%3D%22Contact%20receives%20share%20email%22%20icon_url%3D%22http%3A//productplanner.com/static/images/icons/mail.gif%22%20image_url%3D%22http%3A//productplanner.com/static/uploads/37a/f81/aa1/685/e56/9a9/695/2b0/39f/28a/25c/d36/7dea.jpg%22%20custom_image%3D%221%22%3E%3C/step%3E%0D%0A%3Cstep%20id%3D%2290%22%20name%3D%22Contact%20views%20share%20email%22%20icon_url%3D%22http%3A//productplanner.com/static/images/icons/check.gif%22%20image_url%3D%22http%3A//productplanner.com/static/uploads/ee4/f62/3b4/399/d80/2aa/a51/abc/4b0/e00/24e/d0b/6ab4.jpg%22%20custom_image%3D%221%22%3E%3C/step%3E%0D%0A%3Cstep%20id%3D%2291%22%20name%3D%22Contact%20clicks%20share%20email%20link%22%20icon_url%3D%22http%3A//productplanner.com/static/images/icons/upload.gif%22%20image_url%3D%22http%3A//productplanner.com/static/uploads/ec6/060/1d2/c88/a5c/a10/2fb/fbe/a24/e11/316/feb/9f07.jpg%22%20custom_image%3D%221%22%3E%3C/step%3E%0D%0A%3Cstep%20id%3D%2292%22%20name%3D%22Contact%20views%20video%22%20icon_url%3D%22http%3A//productplanner.com/static/images/icons/tv.gif%22%20image_url%3D%22http%3A//productplanner.com/static/uploads/609/ca3/565/f65/3f1/ca1/49f/489/29f/5e5/5fd/ae4/0808.jpg%22%20custom_image%3D%221%22%3E%3C/step%3E%0D%0A%3Cstep%20id%3D%2296%22%20name%3D%22Contact%20clicks%20share%20link%22%20icon_url%3D%22http%3A//productplanner.com/static/images/icons/upload.gif%22%20image_url%3D%22http%3A//productplanner.com/static/uploads/4f8/07f/3d0/bb5/a58/065/65c/b0a/b68/c8b/be8/83a/b5de.jpg%22%20custom_image%3D%221%22%3E%3C/step%3E%0D%0A%3Cstep%20id%3D%2257%22%20name%3D%22Contact%20fills%20out%20share%20form%22%20icon_url%3D%22http%3A//productplanner.com/static/images/icons/edit.gif%22%20image_url%3D%22http%3A//productplanner.com/static/uploads/042/43c/9ad/bbc/31b/df3/959/379/a5e/5fe/801/16c/ee0f.jpg%22%20custom_image%3D%221%22%3E%3C/step%3E%0D%0A%3C/steps%3E%0D%0A%3C/flow%3E&amp;baseURL=http%3A//productplanner.com/&amp;embedded=1&amp;viewURL=http%3A//productplanner.com/gallery/youtube/share_loop"></embed></object></p>
<div style="font-family: Tahoma,Arial; font-size: 11px; height: 26px; padding-top: 2px;">View more <a style="text-decoration:underline;" title="YouTube" href="http://productplanner.com/gallery/youtube">YouTube</a> user flows.</div>
</div>
<img src="http://www.84bytes.com/wordpress/?ak_action=api_record_view&id=108&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.84bytes.com/2008/10/05/creating-user-flows-with-product-planner/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>5 Online Tools to Test the Loading Time of your site</title>
		<link>http://www.84bytes.com/2008/10/02/5-online-tools-to-test-the-loading-time-of-your-site/</link>
		<comments>http://www.84bytes.com/2008/10/02/5-online-tools-to-test-the-loading-time-of-your-site/#comments</comments>
		<pubDate>Thu, 02 Oct 2008 10:31:49 +0000</pubDate>
		<dc:creator>Richard Wong</dc:creator>
				<category><![CDATA[Tools & Tips]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[free tools]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[Web Apps]]></category>

		<guid isPermaLink="false">http://www.84bytes.com/?p=86</guid>
		<description><![CDATA[As a blogger / developer, it is always fascinating to know the loading time of your website and compare it with others. Of course, the loading time of your website depends on many different factors. It could be anything between the software and hardware that power your site. But users of your site does not [...]]]></description>
			<content:encoded><![CDATA[<p>As a blogger / developer, it is always fascinating to know the loading time of your website and compare it with others. Of course, the loading time of your website depends on many different factors. It could be anything between the software and hardware that power your site. But users of your site does not really care about any of this. It is how long it takes for them to see your site on their browser that counts.</p>
<p>So here I prepared a list of free websites that can help you to test the loading time of any website.</p>
<h3>1. <a href="http://tools.pingdom.com/">Pingdom Tool</a></h3>
<p>Probably the best tool from this list. It loads a complete HTML page including all objects (images, CSS, JavaScripts, RSS, Flash and frames/iframes). It looks very similar to the Firebug &#8220;Net&#8221; feature. The load time of all objects is shown visually with time bars.</p>
<p><img class="alignnone size-full wp-image-87" title="pingdom_tool" src="http://www.84bytes.com/media/2008/10/pingdom_tool.gif" alt="" width="400" height="288" /></p>
<p><span id="more-86"></span></p>
<h3>2. <a href="http://www.webslug.info/">Webslug</a></h3>
<p>This service is quite cool in a way that it allows you to compare the load time of two websites and tells you difference between the two. So you can always show off how much better you site is over your competitor.</p>
<p>( For once google is on the loosing side :p )</p>
<p><img class="alignnone size-full wp-image-91" title="webslug-11" src="http://www.84bytes.com/media/2008/10/webslug-11.jpg" alt="" width="500" height="171" /></p>
<h3>3.  <a href="http://www.webwait.com/">WebWait</a></h3>
<p>A simple and basic tool does one thing &#8211; tell you how long does it take a website to load on average. You can change the numbers of call and interval seconds between each call. Then it will tell you the average time.</p>
<p>It also provide you with a Bookmarklet / Favelet, so can quickly test any pages while browsing. You can bookmark the this link <a href="javascript:document.location.href='http://webwait.com#'+encodeURI(document.location.href);">here</a>.</p>
<h3>4. <a href="http://www.linkvendor.com/seo-tools/site-analysis/website-speed-test,46.html">Website speed checker</a> by LinkVendor</h3>
<p>One interesting feature about this tool is that it tells you the estimated load time for different connection type.</p>
<p><img class="alignnone size-full wp-image-99" title="linkvendor" src="http://www.84bytes.com/media/2008/10/linkvendor.jpg" alt="" width="500" height="120" /></p>
<h3>5. <a href="http://internetsupervision.com/">Free Internet Web Server Monitoring Tool</a> by Internet Supervision</h3>
<p>This tool shows you the loading of your site from server around world on a world map.</p>
<p><img class="alignnone size-full wp-image-97" title="internet_supervision" src="http://www.84bytes.com/media/2008/10/internet_supervision.jpg" alt="" width="500" height="180" /></p>
<img src="http://www.84bytes.com/wordpress/?ak_action=api_record_view&id=86&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.84bytes.com/2008/10/02/5-online-tools-to-test-the-loading-time-of-your-site/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Evaluate the Quality of Your Website</title>
		<link>http://www.84bytes.com/2008/08/28/evaluate-the-quality-of-your-website/</link>
		<comments>http://www.84bytes.com/2008/08/28/evaluate-the-quality-of-your-website/#comments</comments>
		<pubDate>Wed, 27 Aug 2008 23:16:36 +0000</pubDate>
		<dc:creator>Richard Wong</dc:creator>
				<category><![CDATA[Tools & Tips]]></category>
		<category><![CDATA[questions]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://www.84bytes.com/?p=72</guid>
		<description><![CDATA[Since I just updated the design of the site, I start thinking whether this new design is better. But realising there so many different aspect of site that we need to look at in order to measure the quality. Then I found 50 Questions to Evaluate the Quality of Your Website by Carsten Cumbrowski from [...]]]></description>
			<content:encoded><![CDATA[<p>Since I just updated the design of the site, I start thinking whether this new design is better. But realising there so many different aspect of site that we need to look at in order to measure the quality.</p>
<p>Then I found <a title="Posts by CarstenCumbrowski" href="http://www.searchenginejournal.com/author/carstencumbrowski/"></a><a href="http://www.searchenginejournal.com/50-questions-to-evaluate-the-quality-of-your-website/6400/">50 Questions to Evaluate the Quality of Your Website</a> by <a title="Posts by CarstenCumbrowski" href="http://www.searchenginejournal.com/author/carstencumbrowski/">Carsten Cumbrowski</a> from my starred item in google reader. It covers a wide range of areas including accessibility, design, navigation and more.</p>
<p>A sample of questions includes:</p>
<blockquote>
<ul>
<li>Is content structurally separate from navigational elements?</li>
</ul>
<ul>
<li>Are links labeled with anchor text that provides a clear indication of where they lead?</li>
<li>Do clickable items stylistically indicate that they are clickable?</li>
<li>How intuitive is it to navigate? Are signs obvious or obscured? Buttons/Links Like Text, that are not clickable and vice versa, links/buttons that cannot be identified as such</li>
<li>Clear statement of PURPOSE of the site? Purpose must become clear within a few seconds without reading much or no text copy at all.</li>
</ul>
<ul>
<li>Are the colors used harmonious and logically related?</li>
<li>The fonts should be easily readable, and degrade gracefully.- Should look OK on various screen resolutions.</li>
</ul>
<ul>
<li>Does the copywriting style suit the website’s purpose and ’speak’ to its target audience?</li>
</ul>
</blockquote>
<p>Although the list isn&#8217;t particularly targeting developers / designer, I think it is still a very useful list to reference if you are running your own site. If you can answer YES on most of the questions, you have done a great job. For me there are still a lot of work to do here&#8230;</p>
<img src="http://www.84bytes.com/wordpress/?ak_action=api_record_view&id=72&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.84bytes.com/2008/08/28/evaluate-the-quality-of-your-website/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Web 2.0 Design Generators For Developers</title>
		<link>http://www.84bytes.com/2008/08/19/web-20-design-generators-for-developers/</link>
		<comments>http://www.84bytes.com/2008/08/19/web-20-design-generators-for-developers/#comments</comments>
		<pubDate>Tue, 19 Aug 2008 21:44:46 +0000</pubDate>
		<dc:creator>Richard Wong</dc:creator>
				<category><![CDATA[Tools & Tips]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[developers]]></category>
		<category><![CDATA[generators]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://www.84bytes.com/?p=37</guid>
		<description><![CDATA[If you are a busy web developer that also need to work on the interface, here is a handy list of online tools to help you save time and effort creating nice graphics for your sites or apps. Buttons As Button Generator &#8211; Fully featured button creator allowing you to customize colour, gradation type, stripe, [...]]]></description>
			<content:encoded><![CDATA[<p>If you are a busy web developer that also need to work on the interface, here is a handy list of online tools to help you save time and effort creating nice graphics for your sites or apps.</p>
<h3>Buttons</h3>
<ol>
<li><a href="http://jirox.net/AsButtonGen/">As Button Generator</a> &#8211; Fully featured button creator allowing you to customize colour, gradation type, stripe, filter, image, and of course text.<a href="http://jirox.net/AsButtonGen/"><img class="alignnone size-full wp-image-58" title="buttons" src="http://www.84bytes.com/media/2008/08/buttons.gif" alt="" width="500" height="72" /></a></li>
<li><a href="http://www.buttonator.com/" target="_blank">Buttonator.com</a> &#8211; Another Button generator with a big range of different style buttons <a href="http://www.buttonator.com/"><img class="alignnone size-full wp-image-57" title="buttonator_1219154561556" src="http://www.84bytes.com/media/2008/08/buttonator_1219154561556.png" alt="" width="417" height="61" /></a></li>
<li><a href="http://www.mycoolbutton.com/">My Cool Button</a> &#8211; Simple and easy to use button generator <a href="http://www.mycoolbutton.com/"><img class="alignnone size-medium wp-image-56" title="web-20-and-grudge-free-buttons-generator_1219153994520" src="http://www.84bytes.com/media/2008/08/web-20-and-grudge-free-buttons-generator_1219153994520-300x104.png" alt="" width="300" height="104" /></a></li>
</ol>
<h3><span id="more-37"></span></h3>
<h3>AJAX Loading image</h3>
<ol>
<li><a href="http://www.ajaxload.info/" target="_blank">AJAXload.info</a> &#8211; simple generate ajax loading gif <a href="http://www.ajaxload.info/"><img class="alignnone size-full wp-image-59" title="ajaxload-ajax-loading-gif-generator_1219155865186" src="http://www.84bytes.com/media/2008/08/ajaxload-ajax-loading-gif-generator_1219155865186.png" alt="" width="351" height="119" /></a></li>
<li><a href="http://www.webscriptlab.com/" target="_blank">AJAX loading Gif generator</a> &#8211; another similar service <a href="http://www.webscriptlab.com/" target="_blank"><br />
</a></li>
</ol>
<h3>Badges</h3>
<ol>
<li><a href="http://www.web20badges.com/" target="_blank">Web 2.0 Badges</a> &#8211; very very cool Badges creator with a big selection <a href="http://www.web20badges.com/"><img class="alignnone size-full wp-image-60" title="web-20-badges-useful-collection-of-stylish-web-20-badges-and-badge-generator_1219156791170" src="http://www.84bytes.com/media/2008/08/web-20-badges-useful-collection-of-stylish-web-20-badges-and-badge-generator_1219156791170.png" alt="" width="302" height="99" /></a></li>
<li><a href="http://www.freshbadge.com/" target="_blank">Fresh Badge</a> &#8211; Another Simpler Badge generator <a href="http://www.freshbadge.com/"><img class="alignnone size-full wp-image-61" title="fresh-badge-generator-create-very-web-20-badges-free_1219156905631" src="http://www.84bytes.com/media/2008/08/fresh-badge-generator-create-very-web-20-badges-free_1219156905631.png" alt="" width="350" height="54" /></a></li>
</ol>
<h3>Ribbons</h3>
<ol>
<li><a href="http://www.quickribbon.com/">QuickRibbon</a> &#8211; Online Ribbon Generator with a very well implemented interface<br />
<a href="http://www.quickribbon.com/"><img class="alignnone size-full wp-image-38" title="quickribbon" src="http://www.84bytes.com/media/2008/06/quickribbon.gif" alt="" width="359" height="189" /></a></li>
<li><a href="http://www.websiteribbon.com/">Website Ribbon Generator</a> &#8211; a basic ribbon creator<a href="http://www.websiteribbon.com/"><br />
</a></li>
</ol>
<h3>Backgrounds</h3>
<ol>
<li><a href="http://bgpatterns.com/">BgPatterns</a> &#8211; A well implemented pattern generator with a wide range of pattern. <a href="http://bgpatterns.com/"><img class="alignnone size-full wp-image-65" title="bgpattern" src="http://www.84bytes.com/media/2008/08/bgpattern.gif" alt="" width="395" height="172" /></a></li>
<li><a href="http://www.stripegenerator.com/">Stripe Generator 2.0</a> &#8211; Generate seamless striped background images <a href="http://www.stripegenerator.com/"><img class="alignnone size-full wp-image-66" title="stripe-generator-ajax-diagonal-stripes-background-designer_1219160195485" src="http://www.84bytes.com/media/2008/08/stripe-generator-ajax-diagonal-stripes-background-designer_1219160195485.png" alt="" width="400" height="91" /></a></li>
</ol>
<h3>Color Schemes</h3>
<ol>
<li><a href="http://kuler.adobe.com/">Kuler</a> &#8211; A sophisticated Color Scheme generator by Adobe. You can even share and explore with others.<br />
<a href="http://kuler.adobe.com/"><img class="alignnone size-full wp-image-63" title="create_242x90" src="http://www.84bytes.com/media/2008/08/create_242x90.jpg" alt="" width="269" height="98" /></a></li>
<li><a href="http://www.defencemechanism.com/color/">Color Toy 2.0</a> &#8211; A very simple colour picker <a href="http://www.defencemechanism.com/color/"><img class="alignnone size-full wp-image-62" title="colortoy" src="http://www.84bytes.com/media/2008/08/colortoy.gif" alt="" width="500" height="132" /></a></li>
</ol>
<h3>Other Random Tools</h3>
<ol>
<li><a href="http://creatr.cc/creatr/">LogoCreator</a> &#8211; just generat simple logo</li>
<li><a href="http://www.reflectionmaker.com/">Reflection Maker</a> &#8211; A little tool for all your reflection needs!</li>
<li><a href="http://www.tabsgenerator.com/">Tab Generator</a> &#8211; Create a Tab for you ( You should already know how to do this &#8230; )</li>
<li><a href="http://www.roundedcornr.com/">RoundedCornr</a> &#8211; A rounded corner generator ( You should already know how to do this too &#8230; )</li>
<li><a href="http://3d-pack.com/" target="_blank">3DPackage Online</a> &#8211; Create a 3D-box images online</li>
<li><a href="http://passwordbird.com/" target="_blank">Password Bird </a>- Create passwords that means something to you</li>
<li><a href="http://emptybottle.org/bullshit/">Bullshitr</a> &#8211; A Web 2.0 Bullshit generator is good for a laugh</li>
<li><a href="http://www.lightsphere.com/dev/web20.html">Web 2.0 Name Generator</a> &#8211; well the name said it all</li>
</ol>
<p>I hope this list is useful to you. If you know other cool tools, do leave a commment!</p>
<img src="http://www.84bytes.com/wordpress/?ak_action=api_record_view&id=37&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.84bytes.com/2008/08/19/web-20-design-generators-for-developers/feed/</wfw:commentRss>
		<slash:comments>30</slash:comments>
		</item>
		<item>
		<title>Reading your Feeds like newspaper with Feedly</title>
		<link>http://www.84bytes.com/2008/07/15/feedly-reading-your-feeds-like-newspaper/</link>
		<comments>http://www.84bytes.com/2008/07/15/feedly-reading-your-feeds-like-newspaper/#comments</comments>
		<pubDate>Tue, 15 Jul 2008 06:48:11 +0000</pubDate>
		<dc:creator>Richard Wong</dc:creator>
				<category><![CDATA[Tools & Tips]]></category>
		<category><![CDATA[Feedly]]></category>
		<category><![CDATA[Google Reader]]></category>
		<category><![CDATA[Mozilla Firefox]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[Web Apps]]></category>

		<guid isPermaLink="false">http://www.84bytes.com/?p=52</guid>
		<description><![CDATA[Feedly is &#8220;a more social and magazine-like start page for Firefox&#8221;. It is a very well made and design application that really take the concept of homepage and RSS aggregation to the next level. They have social features like sharing, annotation and even twitter integration for each post. But what interest me the most is [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.feedly.com/" target="_blank">Feedly</a> is &#8220;a more social and magazine-like start page for Firefox&#8221;. It is a very well made and design application that really take the concept of homepage and RSS aggregation to the next level. They have social features like sharing, annotation and even twitter integration for each post.</p>
<p>But what interest me the most is the ability to do real-time summary of the most relevant content available on the web based on your interests, your reading patterns, and recommendations from your friends. In other words, you can see straightaway the hottest, latest post from your feeds.</p>
<p>After using it for a couple of weeks, I really enjoyed its clean design and functionality. I found myself using it more to do feed reading than Google Reader. The way Feedly organizes the post are far more natural to scan read a large amount of headlines and lead me to discover more interesting posts than before.</p>
<p>The coolest part of Feedly is that it doesn&#8217;t replace your beloved Google Reader. It actually integrate very well with it. All your read or star items are always synced that means you can use both to suite your needs.</p>
<p>So go ahead and give it a go at <a href="http://www.feedly.com/">http://www.feedly.com/</a></p>
<p><a onclick="trackDownloadAction(); return true;" href="http://www.feedly.com/" target="_blank"><img src="http://s3.feeddo.com/website/images/whatsnew.part1.png" border="0" alt="" width="542" height="357" /></a></p>
<img src="http://www.84bytes.com/wordpress/?ak_action=api_record_view&id=52&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.84bytes.com/2008/07/15/feedly-reading-your-feeds-like-newspaper/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Becoming a better Javascript Programmer using JSLint</title>
		<link>http://www.84bytes.com/2008/07/08/becoming-a-better-javascript-programmer-using-jslint/</link>
		<comments>http://www.84bytes.com/2008/07/08/becoming-a-better-javascript-programmer-using-jslint/#comments</comments>
		<pubDate>Mon, 07 Jul 2008 23:27:52 +0000</pubDate>
		<dc:creator>Richard Wong</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Tools & Tips]]></category>
		<category><![CDATA[Debug]]></category>

		<guid isPermaLink="false">http://www.84bytes.com/?p=48</guid>
		<description><![CDATA[I have recently came across this interesting and useful Javascript tool called JSLint. You feed in your javascript code and JSLint will scan through and looks for problems in your code. You might ask what is the different between this and debugging using Firebug? Well, although it is only a syntax checker and validator, it [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://jslint.com/"><img class="alignright size-full wp-image-49" title="jslint" src="http://www.84bytes.com/media/2008/07/jslint.gif" alt="" width="269" height="84" /></a></p>
<p>I have recently came across this interesting and useful Javascript tool called <a href="http://jslint.com/">JSLint</a>. You feed in your javascript code and JSLint will scan through and looks for problems in your code.</p>
<p>You might ask what is the different between this and debugging using Firebug? Well, although it is only a syntax checker and validator, it is much more stricter and follows proper <a href="http://javascript.crockford.com/code.html">Code Conventions</a>. In other word, it will tell you errors you normally won&#8217;t get.</p>
<p>As you know, Javascript sometimes allows code to be implemented in a sloppy way which could be very troublesome for large complex projects. So I have been using this tool as a reference point to tighten up my javascript code.</p>
<p>So go and paste your code at <a href="http://www.jslint.com/">JSLint</a> and see how your code is doing. But I must warning you, it might hurt your feeling!</p>
<p>Source: <a href="http://www.jslint.com/">JSLint</a></p>
<img src="http://www.84bytes.com/wordpress/?ak_action=api_record_view&id=48&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.84bytes.com/2008/07/08/becoming-a-better-javascript-programmer-using-jslint/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>4 Plugins to turbocharge your Firebug</title>
		<link>http://www.84bytes.com/2008/06/28/firebug-plugins-for-web-development/</link>
		<comments>http://www.84bytes.com/2008/06/28/firebug-plugins-for-web-development/#comments</comments>
		<pubDate>Sat, 28 Jun 2008 00:06:30 +0000</pubDate>
		<dc:creator>Richard Wong</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Tools & Tips]]></category>
		<category><![CDATA[extensions]]></category>
		<category><![CDATA[Firebug]]></category>
		<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://www.84bytes.com/?p=42</guid>
		<description><![CDATA[Anyone developing for the web will have at least used or heard of Firebug. It is very powerful tool for debugging and testing any web pages on Firefox. You can live edit, debug, and monitor CSS, HTML, and JavaScript. Although Firebug is already packed with features, there are always rooms for extras. Since the creation [...]]]></description>
			<content:encoded><![CDATA[<p>Anyone developing for the web will have at least used or heard of Firebug. It is very powerful tool for debugging and testing any web pages on Firefox. You can live edit, debug, and monitor CSS, HTML, and JavaScript.</p>
<p>Although Firebug is already packed with features, there are always rooms for extras. Since the creation of Firebug, plugins are being developed to extend the power of Firebug even further. Here is a list of useful plugins for Firebug.</p>
<h3><a href="http://billwscott.com/jiffyext/">Jiffy</a></h3>
<p>Jiffy provides a very detail and visual view of the Javascript time measurements captured by <a href="http://code.google.com/p/jiffy-web/">Jiffy-Web</a>. It allows you to get information of AJAX requests and other Javascript functions.</p>
<p style="font-size: 29.2556px; line-height: 42.7556px;"><a style="font-size: 29.2556px; line-height: 42.7556px;" href="http://billwscott.com/jiffyext/"><img class="alignnone size-full wp-image-43" title="jiffy" src="http://www.84bytes.com/media/2008/06/jiffy.jpg" alt="" width="314" height="168" /></a></p>
<h3><a href="http://developer.yahoo.com/yslow/">YSlow</a></h3>
<p>YSlow developed by Yahoo! is probably one of most famous Firebug extension out there. It analyzes web page performance and tells you why performance is 		slow. It gives you information on all the requests, load time, sizes and even give you tips to improve your site speed.</p>
<p style="font-size: 34.2333px; line-height: 42.7556px;"><a style="font-size: 34.2333px; line-height: 42.7556px;" href="http://developer.yahoo.com/yslow/"><img class="alignnone size-full wp-image-44" title="yslow" src="http://www.84bytes.com/media/2008/06/yslow.jpg" alt="" width="363" height="202" /></a></p>
<h3><a href="http://www.softwareishard.com/blog/firecookie/">FireCookie</a></h3>
<p>Instead of using other Firefox extensions to view cookies. This Firebug plugin allows developers like you to keep using the firebug interface to debug with cookies. FireCookie gives you the ability to view and manage cookies. It also has a console where you can see when cookies are created, changed or deleted.</p>
<p style="font-size: 29.2556px; line-height: 42.7556px;"><a style="font-size: 29.2556px; line-height: 42.7556px;" href="http://www.softwareishard.com/blog/firecookie/"><img class="alignnone size-full wp-image-45" style="font-size: 29.2556px; line-height: 42.7556px;" title="scr-firecookie1" src="http://www.84bytes.com/media/2008/06/scr-firecookie1.png" alt="" width="445" height="152" /></a></p>
<h3><a href="http://www.firephp.org/">FirePHP</a></h3>
<p>For those PHP developers out there, FirePHP is enable you to print to the Firebug Console using simple PHP function call. The main benifit is that all the debugging data are hidden from normal user and you can review in a nicely format within Firebug console.</p>
<p><a href="http://www.firephp.org/"><img class="alignnone size-full wp-image-47" title="firephp" src="http://www.84bytes.com/media/2008/06/firephp.jpg" alt="" width="413" height="303" /></a></p>
<p><strong>Updates:</strong></p>
<p>So still want more plugins? You can always build your own. Jan Odvarko of <a href="http://www.softwareishard.com/blog/">Software is hard</a> has a <a href="http://www.softwareishard.com/blog/firebug-tutorial/extending-firebug-hello-world-part-i/">series of tutorial</a> on creating a Firebug plugin.</p>
<img src="http://www.84bytes.com/wordpress/?ak_action=api_record_view&id=42&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.84bytes.com/2008/06/28/firebug-plugins-for-web-development/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Beautiful Subversion Client for Mac</title>
		<link>http://www.84bytes.com/2008/06/05/beautiful-subversion-client-for-mac/</link>
		<comments>http://www.84bytes.com/2008/06/05/beautiful-subversion-client-for-mac/#comments</comments>
		<pubDate>Thu, 05 Jun 2008 22:01:33 +0000</pubDate>
		<dc:creator>Richard Wong</dc:creator>
				<category><![CDATA[Tools & Tips]]></category>
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.84bytes.com/?p=27</guid>
		<description><![CDATA[As a developer, version control is an integral part of my development process. As one of many source version control system, Subversion can manage files and directories over time with a central repository hosted on a Subversion server. So team collaboration become a lot more manageable and effective, since all changes are logged and could [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.84bytes.com/media/2008/06/versions.jpg"><img class="size-full wp-image-26" style="vertical-align: top;" title="versions" src="http://www.84bytes.com/media/2008/06/versions.jpg" alt="" width="500" height="118" /></a></p>
<p>As a developer, version control is an integral part of my development process. As one of many source <a href="http://en.wikipedia.org/wiki/Revision_control">version control</a> system, <a href="http://en.wikipedia.org/wiki/Subversion_(software)">Subversion</a> can manage files and directories over time with a central repository hosted on a Subversion server. So team collaboration become a lot more manageable and effective, since all changes are logged and could be easily rollback.</p>
<p>Now <a href="http://www.versionsapp.com/">Versions</a> is providing us a brand new subversion client for the Mac. It has a very clean and intuitive interface that makes you really want to use it. So if you are not using subversion and want to give it a try, you can use a hosted Subservsion services like <a href="http://beanstalkapp.com/">beanstalk</a>. Then you can start versioning you code in no time!!!</p>
<p>You can check out the <a href="http://www.versionsapp.com/">beta software here</a></p>
<p><span id="more-27"></span></p>
<img src="http://www.84bytes.com/wordpress/?ak_action=api_record_view&id=27&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.84bytes.com/2008/06/05/beautiful-subversion-client-for-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web App deployment made easy with Springloops</title>
		<link>http://www.84bytes.com/2008/06/02/web-deployment-made-easy-with-springloops/</link>
		<comments>http://www.84bytes.com/2008/06/02/web-deployment-made-easy-with-springloops/#comments</comments>
		<pubDate>Sun, 01 Jun 2008 23:59:12 +0000</pubDate>
		<dc:creator>Richard Wong</dc:creator>
				<category><![CDATA[Tools & Tips]]></category>
		<category><![CDATA[deployment]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Web Apps]]></category>

		<guid isPermaLink="false">http://www.84bytes.com/?p=19</guid>
		<description><![CDATA[With the more and more people developing web applications, the needs to have a professional workflow in the development cycle is essential. However, the work involves to build a workflow system that is easy to use are costly. Especially with small development team that need to deliver quickly and don&#8217;t have the resource to delicate [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://springloops.com/" target="_blank"><img class="alignnone size-full wp-image-20" title="springloops_logo-small" src="http://www.84bytes.com/media/2008/06/springloops_logo-small.gif" alt="Springloops Logo" /></a></p>
<p>With the more and more people developing web applications, the needs to have a professional workflow in the development cycle is essential. However, the work involves to build a workflow system that is easy to use are costly. Especially with small development team that need to deliver quickly and don&#8217;t have the resource to delicate someone to look after the whole deployment workflow.</p>
<p>Now <a href="http://springloops.com/">Springloops</a> is to target this problem and provide us with a quick and easy solution. They put deployment and source code management into one single easy to use interface. You can manage all logs, source code, users, or even integrate with <a href="http://www.basecamphq.com/">Basecamp</a>.</p>
<p><a href="http://springloops.com/" target="_blank"><img class="alignnone size-full wp-image-21" title="springloops_screenshot" src="http://www.84bytes.com/media/2008/06/springloops_screenshot.jpg" alt="" /></a></p>
<p><a href="http://www.basecamphq.com/">Springloops</a></p>
<img src="http://www.84bytes.com/wordpress/?ak_action=api_record_view&id=19&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.84bytes.com/2008/06/02/web-deployment-made-easy-with-springloops/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Coda &#8211; the Dreamweaver Replacement on a Mac</title>
		<link>http://www.84bytes.com/2008/06/01/coda-the-dreamweaver-replacement-on-a-mac/</link>
		<comments>http://www.84bytes.com/2008/06/01/coda-the-dreamweaver-replacement-on-a-mac/#comments</comments>
		<pubDate>Sun, 01 Jun 2008 16:36:14 +0000</pubDate>
		<dc:creator>Richard Wong</dc:creator>
				<category><![CDATA[Tools & Tips]]></category>

		<guid isPermaLink="false">http://www.84bytes.com/?p=5</guid>
		<description><![CDATA[After using Coda for almost 6 months, I have to say that I did not miss one single feature about Dreamweaver. Most developers nowadays hand craft their sites in CSS and HTML. So a rock solid text editor with an integrated FTP is very important which is what Coda provides. The editor provides most of [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.panic.com/coda/" target="_blank"><img class="size-full wp-image-6" style="vertical-align: top;" title="coda_logo" src="http://www.84bytes.com/media/2008/06/coda_logo.gif" alt="" /></a></p>
<p>After using <a href="http://www.panic.com/coda/" target="_blank">Coda</a> for almost 6 months, I have to say that I did not miss one single feature about Dreamweaver. Most developers nowadays hand craft their sites in CSS and HTML. So a rock solid text editor with an integrated FTP is very important which is what Coda provides.</p>
<p>The editor provides most of standard feature you would expect but packaged in a very beautiful and neat interface. It looks after the designers with a well made CSS editor and Developers with integrated Terminal for SSH access.</p>
<p>With all the powerful features, Coda only cost $79 comparing to $399 for Dreamweaver!</p>
<p><a href="http://www.84bytes.com/media/2008/06/coda_screenshots.gif"><img class="alignnone size-full wp-image-7" style="vertical-align: bottom;" title="coda_screenshots" src="http://www.84bytes.com/media/2008/06/coda_screenshots.gif" alt="" /></a></p>
<p><a href="http://www.panic.com/coda/" target="_blank">Coda</a></p>
<img src="http://www.84bytes.com/wordpress/?ak_action=api_record_view&id=5&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.84bytes.com/2008/06/01/coda-the-dreamweaver-replacement-on-a-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

