<?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>Reveloper</title>
	<atom:link href="http://reveloper.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://reveloper.com</link>
	<description>Revealing web solutions that grow business</description>
	<lastBuildDate>Thu, 04 Aug 2011 19:55:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Unobtrusive JavaScript prompt with Rails and jQuery</title>
		<link>http://reveloper.com/blog/unobtrusive-javascript-prompt-with-rails-and-jquery/</link>
		<comments>http://reveloper.com/blog/unobtrusive-javascript-prompt-with-rails-and-jquery/#comments</comments>
		<pubDate>Fri, 15 Jul 2011 15:23:23 +0000</pubDate>
		<dc:creator>Adrian Salceanu</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[prompt]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[unobtrusive]]></category>
		<category><![CDATA[UX]]></category>

		<guid isPermaLink="false">http://reveloper.com/?p=766</guid>
		<description><![CDATA[[If you know what's this all about, wanna skip the intro and jump straight to the code, go to The implementation] A couple of weeks ago, Grietje (thanks again!), a new Pomodoro Crate user at that time, wrote me about &#8230; <a href="http://reveloper.com/blog/unobtrusive-javascript-prompt-with-rails-and-jquery/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><span style="font-size: small;">[If you know what's this all about, wanna skip the intro and jump straight to the code, go to <a href="#the_implementation">The implementation</a>]</span></p>
<p>A couple of weeks ago, Grietje (thanks again!), a new Pomodoro Crate user at that time, wrote me about a subtle UI issue: the Active Pomodoro widget was displaying a textarea who&#8217;s purpose was elusive and who&#8217;s content wasn&#8217;t being saved.</p>
<p>The text box was meant to be used (optionally) for writing down the reasons for voiding the pomodoro. The problem was that the textarea was visible all the time, being placed above the &#8220;Void&#8221; button.</p>
<p><a href="http://reveloper.com/wp-content/uploads/2011/07/pomo_current_pomodoro_widget_old.jpg"><img src="http://reveloper.com/wp-content/uploads/2011/07/pomo_current_pomodoro_widget_old.jpg" id="blogsy-1312487748154.6577" class="alignnone size-full wp-image-769" width="196" height="333" alt=""></a></p>
<p>As the Pomodoro Crate users are even smarter than me (it&#8217;s one of the reasons which makes developing this so freaking awesome), Grietje added in some content and waited. Once the pomodoro timer finished, the text was, obviously (for me!) cleared. It was meant for commenting about voiding the pomodoro &#8211; if the pomodoro wasn&#8217;t voided, anything written there was irrelevant for the application.</p>
<h2>The problem</h2>
<p>From a UI/UX perspective, the elements of the interface should be made available when needed. As such, only the most important actions in the economy of the software should benefit from visible user interface elements at all times.</p>
<p>It&#8217;s true that voiding the pomodoro was the most relevant action at that point &#8211; but voiding a pomodoro was not the focus of the application. Pomodoro Crate was not developed for voiding pomodoros, but for helping us complete them &#8211; better, easier and much more often. Taking this into consideration, the visible textarea was in fact placing emphasis on the voiding action, while distracting users from doing their thing to complete the task. Probably Grietje added up some internal interruptions wondering about the box &#8211; sorry about that <img src='http://reveloper.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h2>The UI solution</h2>
<p>Many times, asking the right questions is half of the solution. Same here &#8211; if the textarea was not helping, but instead cluttering the interface, the solution was to hide it away and show it only when the user actually voided the pomodoro.</p>
<p>At first I was inclined to implement this in place &#8211; but I was contemplating a new UX problem: the user was supposed to click the void button. Rails would show the confirmation popup &#8211; which will put the focus on the center of the page (that&#8217;s where native JavaScript confirmations are positioned). On confirmation, I would then have to display the comment box in the widget and ask the user if she wants to add a note about the voiding reason. Getting your users to shake their heads as if watching a tennis match and run around with their cursors all over the place doesn&#8217;t add style points to an app, trust me.</p>
<p>Back to the drawing board. Option two: replace native JavaScript confirmations with custom ones that show in place (there are some nice jQuery plugins for this).</p>
<p><a href="http://reveloper.com/wp-content/uploads/2011/07/vc_in_place_confirm.jpg"><img src="http://reveloper.com/wp-content/uploads/2011/07/vc_in_place_confirm.jpg" id="blogsy-1312487748183.2405" class="alignnone size-full wp-image-770" width="190" height="108" alt=""></a></p>
<p>This felt even worst &#8211; by dropping native, failure-proof confirmations in a critical zone of the application, I was opening the door for many potential cross-browser issues. [On a side note: while showing, native JavaScript confirmations, prompts and alerts will halt the execution of all client side scripts, effectively suspending all activity in the browser. HTML replacements won't do the same so beware cause you might get unexpected results.]</p>
<p>Ultimately, the path I chose was becoming obvious: if mixing JavaScript confirmations with HTML elements doesn&#8217;t work and nor does using only HTML, then it will hopefully work using only JavaScript native modal alerts. Indeed, it sounded good: the JavaScript confirmation was focusing the user on the center of the screen while freezing the app. And upon confirmation, the JavaScript prompt would take control in the same location on screen. Awesome!</p>
<h2 id="the_implementation">The implementation</h2>
<p>I decided to augment the Rails implementation and add unobtrusive prompt() support. Of course, prompts are more complex than the confirmations because prompts need to have supplied the question and the (optional) suggested response. And of course, a prompt is useless if you don&#8217;t get back the user input.</p>
<p>First thing was hiding the comment box via CSS &#8211; I wanted to keep it so that the new UI would work without modifications on the server side.</p>
<p><a href="http://reveloper.com/wp-content/uploads/2011/07/pomo_current_pomodoro_widget_new.jpg"><img src="http://reveloper.com/wp-content/uploads/2011/07/pomo_current_pomodoro_widget_new.jpg" id="blogsy-1312487748170.952" class="alignnone size-full wp-image-772" width="243" height="381" alt=""></a></p>
<p>Next, augmenting the Rails code with the &#8220;data-&#8221; attributes for supporting the prompt:</p>
<pre class="brush: ruby"></pre>
<p>Nothing fancy here, just some custom &#8220;data-*&#8221; HTML5 attributes being rendered in the view.</p>
<p>Now, the JS code:</p>
<pre class="brush: js">/**** PROMPT SUPPORT ****/$(function(){  $('[data-prompt]').live('click', function(){    user_input = prompt( $(this).attr('data-prompt'), $(this).attr('data-prompt-answer') ? $(this).attr('data-prompt-answer') : "" );    if( user_input ) user_input = user_input.replace('"', "'");

if ( $(this).attr('data-prompt-callback') &#038;&#038; typeof window[ $(this).attr('data-prompt-callback') ] == "function") {      return window[ $(this).attr('data-prompt-callback') ]( user_input );    } 

return true;  });});/**** END PROMPT SUPPORT ****/
</pre>
<p>The above code attaches a live click event handler for all the elements that provide the data-prompt attribute. The user is presented with the prompt. If the optional &#8220;data-prompt-answer&#8221; attribute is set, the value is being sent to the prompt() function. And finally, if the user wishes to comment, the input is being cleaned and sent to the callback function, if available.</p>
<p><a href="http://reveloper.com/wp-content/uploads/2011/07/pomo_current_pomodoro_comment_prompt.jpg"><img src="http://reveloper.com/wp-content/uploads/2011/07/pomo_current_pomodoro_comment_prompt.jpg" id="blogsy-1312487748212.8284" class="alignnone size-full wp-image-773" alt="" width="250" height="157"></a></p>
<p>The callback function:</p>
<pre class="brush: js">function updateVoidComment(comment) {  $('#pomodoro_comments').val( comment );}</pre>
<p>places the user comment into the (now hidden) textarea and finishes.</p>
<p>At this point the form is being submitted and the pomodoro voided &#8211; user comments included <img src='http://reveloper.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>&#8212;</p>
<p><a href="http://pomodorocrate.com" target="_blank">Pomodoro Crate</a> is an awesome time management web application, based on the Pomodoro Technique. <a href="http://pomodorocrate.com/signup" target="_blank">Sign-up</a> &#8211; it&#8217;s free!</p>
<a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Freveloper.com%2Fblog%2Funobtrusive-javascript-prompt-with-rails-and-jquery%2F&amp;t=Unobtrusive%20JavaScript%20prompt%20with%20Rails%20and%20jQuery" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Unobtrusive%20JavaScript%20prompt%20with%20Rails%20and%20jQuery%20-%20http%3A%2F%2Freveloper.com%2Fblog%2Funobtrusive-javascript-prompt-with-rails-and-jquery%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Freveloper.com%2Fblog%2Funobtrusive-javascript-prompt-with-rails-and-jquery%2F&amp;title=Unobtrusive%20JavaScript%20prompt%20with%20Rails%20and%20jQuery" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Freveloper.com%2Fblog%2Funobtrusive-javascript-prompt-with-rails-and-jquery%2F&amp;title=Unobtrusive%20JavaScript%20prompt%20with%20Rails%20and%20jQuery&amp;bodytext=%5BIf%20you%20know%20what%27s%20this%20all%20about%2C%20wanna%20skip%20the%20intro%20and%20jump%20straight%20to%20the%20code%2C%20go%20to%20The%20implementation%5DA%20couple%20of%20weeks%20ago%2C%20Grietje%20%28thanks%20again%21%29%2C%20a%20new%20Pomodoro%20Crate%20user%20at%20that%20time%2C%20wrote%20me%20about%20a%20subtle%20UI%20issue%3A%20the%20Active%20Pomo" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Freveloper.com%2Fblog%2Funobtrusive-javascript-prompt-with-rails-and-jquery%2F&amp;title=Unobtrusive%20JavaScript%20prompt%20with%20Rails%20and%20jQuery&amp;notes=%5BIf%20you%20know%20what%27s%20this%20all%20about%2C%20wanna%20skip%20the%20intro%20and%20jump%20straight%20to%20the%20code%2C%20go%20to%20The%20implementation%5DA%20couple%20of%20weeks%20ago%2C%20Grietje%20%28thanks%20again%21%29%2C%20a%20new%20Pomodoro%20Crate%20user%20at%20that%20time%2C%20wrote%20me%20about%20a%20subtle%20UI%20issue%3A%20the%20Active%20Pomo" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.designfloat.com/submit.php?url=http%3A%2F%2Freveloper.com%2Fblog%2Funobtrusive-javascript-prompt-with-rails-and-jquery%2F&amp;title=Unobtrusive%20JavaScript%20prompt%20with%20Rails%20and%20jQuery" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/designfloat.png" class="sociable-img sociable-hovers" title="Design Float" alt="Design Float" /></a><a rel="nofollow" target="_blank"  href="http://www.friendfeed.com/share?title=Unobtrusive%20JavaScript%20prompt%20with%20Rails%20and%20jQuery&amp;link=http%3A%2F%2Freveloper.com%2Fblog%2Funobtrusive-javascript-prompt-with-rails-and-jquery%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/friendfeed.png" class="sociable-img sociable-hovers" title="FriendFeed" alt="FriendFeed" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/reader/link?url=http%3A%2F%2Freveloper.com%2Fblog%2Funobtrusive-javascript-prompt-with-rails-and-jquery%2F&amp;title=Unobtrusive%20JavaScript%20prompt%20with%20Rails%20and%20jQuery&amp;srcURL=http%3A%2F%2Freveloper.com%2Fblog%2Funobtrusive-javascript-prompt-with-rails-and-jquery%2F&amp;srcTitle=Reveloper+Revealing+web+solutions+that+grow+business" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/googlebuzz.png" class="sociable-img sociable-hovers" title="Google Buzz" alt="Google Buzz" /></a><a rel="nofollow" target="_blank"  href="http://reddit.com/submit?url=http%3A%2F%2Freveloper.com%2Fblog%2Funobtrusive-javascript-prompt-with-rails-and-jquery%2F&amp;title=Unobtrusive%20JavaScript%20prompt%20with%20Rails%20and%20jQuery" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/reddit.png" class="sociable-img sociable-hovers" title="Reddit" alt="Reddit" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Freveloper.com%2Fblog%2Funobtrusive-javascript-prompt-with-rails-and-jquery%2F&amp;submitHeadline=Unobtrusive%20JavaScript%20prompt%20with%20Rails%20and%20jQuery&amp;submitSummary=%5BIf%20you%20know%20what%27s%20this%20all%20about%2C%20wanna%20skip%20the%20intro%20and%20jump%20straight%20to%20the%20code%2C%20go%20to%20The%20implementation%5DA%20couple%20of%20weeks%20ago%2C%20Grietje%20%28thanks%20again%21%29%2C%20a%20new%20Pomodoro%20Crate%20user%20at%20that%20time%2C%20wrote%20me%20about%20a%20subtle%20UI%20issue%3A%20the%20Active%20Pomo&amp;submitCategory=science&amp;submitAssetType=text" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Freveloper.com%2Fblog%2Funobtrusive-javascript-prompt-with-rails-and-jquery%2F&amp;title=Unobtrusive%20JavaScript%20prompt%20with%20Rails%20and%20jQuery&amp;source=Reveloper+Revealing+web+solutions+that+grow+business&amp;summary=%5BIf%20you%20know%20what%27s%20this%20all%20about%2C%20wanna%20skip%20the%20intro%20and%20jump%20straight%20to%20the%20code%2C%20go%20to%20The%20implementation%5DA%20couple%20of%20weeks%20ago%2C%20Grietje%20%28thanks%20again%21%29%2C%20a%20new%20Pomodoro%20Crate%20user%20at%20that%20time%2C%20wrote%20me%20about%20a%20subtle%20UI%20issue%3A%20the%20Active%20Pomo" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=Unobtrusive%20JavaScript%20prompt%20with%20Rails%20and%20jQuery&amp;url=http%3A%2F%2Freveloper.com%2Fblog%2Funobtrusive-javascript-prompt-with-rails-and-jquery%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Freveloper.com%2Fblog%2Funobtrusive-javascript-prompt-with-rails-and-jquery%2F&amp;h=Unobtrusive%20JavaScript%20prompt%20with%20Rails%20and%20jQuery" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/newsvine.png" class="sociable-img sociable-hovers" title="NewsVine" alt="NewsVine" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Freveloper.com%2Fblog%2Funobtrusive-javascript-prompt-with-rails-and-jquery%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><br/><br/><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Freveloper.com%2Fblog%2Funobtrusive-javascript-prompt-with-rails-and-jquery%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>]]></content:encoded>
			<wfw:commentRss>http://reveloper.com/blog/unobtrusive-javascript-prompt-with-rails-and-jquery/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Pomodoro Crate</title>
		<link>http://reveloper.com/portfolio/pomodoro-crate-2/</link>
		<comments>http://reveloper.com/portfolio/pomodoro-crate-2/#comments</comments>
		<pubDate>Tue, 26 Apr 2011 13:49:08 +0000</pubDate>
		<dc:creator>Adrian Salceanu</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[pomodoro]]></category>
		<category><![CDATA[pomodoro crate]]></category>
		<category><![CDATA[time management]]></category>

		<guid isPermaLink="false">http://reveloper.com/?p=740</guid>
		<description><![CDATA[Agile time management software based on the Pomodoro Technique. Boost your productivity and alleviate the anxiety of deadlines. <a href="http://reveloper.com/portfolio/pomodoro-crate-2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h2>Description</h2>
<p>The Pomodoro Technique is a time management method developed by Francesco Cirillo in the late 1980s. The technique uses a timer to break down periods of work into 25-minute intervals separated by breaks. The technique employs agile project management concepts such as timeboxing and iterative and incremental development. The method is based on the idea that frequent breaks can improve mental agility.</p>
<p>There are five basic steps to implementing the technique:</p>
<ol>
<li>decide on the task to be done</li>
<li>set the pomodoro (timer) to 25 minutes</li>
<li>work on the task until the timer rings; record with an x</li>
<li>take a short break (5 minutes)</li>
<li>every four &#8220;pomodori&#8221; take a longer break (15–20 minutes)</li>
</ol>
<h2>What have we done</h2>
<p>At Reveloper we&#8217;ve been actively using the Pomodoro Technique for almost 2 years &#8211; it is a very efficient and productive time management method and we&#8217;re simply loving it. But unfortunately, we noticed that the manual (read pen and paper) usage of the technique tends to be very time consuming and repetitive, especially in regards to the planning and analytics stages.</p>
<p>We tried some of the existing softwares but found out that none of them provided a complete implementation of the technique (most of them were just glorified timers). That&#8217;s when we decided to build our own tool &#8211; we architected, designed it and developed it and as the application grew, we decided to release it for free, to allow others to use it as well.</p>
<h2>Technologies</h2>
<p>Ruby on Rails, jQuery, CSS font-embedding</p>
<a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Freveloper.com%2Fportfolio%2Fpomodoro-crate-2%2F&amp;t=Pomodoro%20Crate" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Pomodoro%20Crate%20-%20http%3A%2F%2Freveloper.com%2Fportfolio%2Fpomodoro-crate-2%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Freveloper.com%2Fportfolio%2Fpomodoro-crate-2%2F&amp;title=Pomodoro%20Crate" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Freveloper.com%2Fportfolio%2Fpomodoro-crate-2%2F&amp;title=Pomodoro%20Crate&amp;bodytext=Agile%20time%20management%20software%20based%20on%20the%20Pomodoro%20Technique.%20Boost%20your%20productivity%20and%20alleviate%20the%20anxiety%20of%20deadlines." ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Freveloper.com%2Fportfolio%2Fpomodoro-crate-2%2F&amp;title=Pomodoro%20Crate&amp;notes=Agile%20time%20management%20software%20based%20on%20the%20Pomodoro%20Technique.%20Boost%20your%20productivity%20and%20alleviate%20the%20anxiety%20of%20deadlines." ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.designfloat.com/submit.php?url=http%3A%2F%2Freveloper.com%2Fportfolio%2Fpomodoro-crate-2%2F&amp;title=Pomodoro%20Crate" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/designfloat.png" class="sociable-img sociable-hovers" title="Design Float" alt="Design Float" /></a><a rel="nofollow" target="_blank"  href="http://www.friendfeed.com/share?title=Pomodoro%20Crate&amp;link=http%3A%2F%2Freveloper.com%2Fportfolio%2Fpomodoro-crate-2%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/friendfeed.png" class="sociable-img sociable-hovers" title="FriendFeed" alt="FriendFeed" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/reader/link?url=http%3A%2F%2Freveloper.com%2Fportfolio%2Fpomodoro-crate-2%2F&amp;title=Pomodoro%20Crate&amp;srcURL=http%3A%2F%2Freveloper.com%2Fportfolio%2Fpomodoro-crate-2%2F&amp;srcTitle=Reveloper+Revealing+web+solutions+that+grow+business" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/googlebuzz.png" class="sociable-img sociable-hovers" title="Google Buzz" alt="Google Buzz" /></a><a rel="nofollow" target="_blank"  href="http://reddit.com/submit?url=http%3A%2F%2Freveloper.com%2Fportfolio%2Fpomodoro-crate-2%2F&amp;title=Pomodoro%20Crate" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/reddit.png" class="sociable-img sociable-hovers" title="Reddit" alt="Reddit" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Freveloper.com%2Fportfolio%2Fpomodoro-crate-2%2F&amp;submitHeadline=Pomodoro%20Crate&amp;submitSummary=Agile%20time%20management%20software%20based%20on%20the%20Pomodoro%20Technique.%20Boost%20your%20productivity%20and%20alleviate%20the%20anxiety%20of%20deadlines.&amp;submitCategory=science&amp;submitAssetType=text" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Freveloper.com%2Fportfolio%2Fpomodoro-crate-2%2F&amp;title=Pomodoro%20Crate&amp;source=Reveloper+Revealing+web+solutions+that+grow+business&amp;summary=Agile%20time%20management%20software%20based%20on%20the%20Pomodoro%20Technique.%20Boost%20your%20productivity%20and%20alleviate%20the%20anxiety%20of%20deadlines." ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=Pomodoro%20Crate&amp;url=http%3A%2F%2Freveloper.com%2Fportfolio%2Fpomodoro-crate-2%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Freveloper.com%2Fportfolio%2Fpomodoro-crate-2%2F&amp;h=Pomodoro%20Crate" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/newsvine.png" class="sociable-img sociable-hovers" title="NewsVine" alt="NewsVine" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Freveloper.com%2Fportfolio%2Fpomodoro-crate-2%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><br/><br/><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Freveloper.com%2Fportfolio%2Fpomodoro-crate-2%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>]]></content:encoded>
			<wfw:commentRss>http://reveloper.com/portfolio/pomodoro-crate-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pomodoro Crate</title>
		<link>http://reveloper.com/news/pomodoro-crate/</link>
		<comments>http://reveloper.com/news/pomodoro-crate/#comments</comments>
		<pubDate>Tue, 26 Apr 2011 10:36:40 +0000</pubDate>
		<dc:creator>Adrian Salceanu</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://reveloper.com/?p=735</guid>
		<description><![CDATA[An original Reveloper product and our take on automating the Pomodoro Technique workflow. <a href="http://reveloper.com/news/pomodoro-crate/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h2>Description</h2>
<p>An original Reveloper product and our take on automating the Pomodoro Technique workflow.</p>
<a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Freveloper.com%2Fnews%2Fpomodoro-crate%2F&amp;t=Pomodoro%20Crate" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Pomodoro%20Crate%20-%20http%3A%2F%2Freveloper.com%2Fnews%2Fpomodoro-crate%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Freveloper.com%2Fnews%2Fpomodoro-crate%2F&amp;title=Pomodoro%20Crate" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Freveloper.com%2Fnews%2Fpomodoro-crate%2F&amp;title=Pomodoro%20Crate&amp;bodytext=An%20original%20Reveloper%20product%20and%20our%20take%20on%20automating%20the%20Pomodoro%20Technique%20workflow." ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Freveloper.com%2Fnews%2Fpomodoro-crate%2F&amp;title=Pomodoro%20Crate&amp;notes=An%20original%20Reveloper%20product%20and%20our%20take%20on%20automating%20the%20Pomodoro%20Technique%20workflow." ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.designfloat.com/submit.php?url=http%3A%2F%2Freveloper.com%2Fnews%2Fpomodoro-crate%2F&amp;title=Pomodoro%20Crate" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/designfloat.png" class="sociable-img sociable-hovers" title="Design Float" alt="Design Float" /></a><a rel="nofollow" target="_blank"  href="http://www.friendfeed.com/share?title=Pomodoro%20Crate&amp;link=http%3A%2F%2Freveloper.com%2Fnews%2Fpomodoro-crate%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/friendfeed.png" class="sociable-img sociable-hovers" title="FriendFeed" alt="FriendFeed" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/reader/link?url=http%3A%2F%2Freveloper.com%2Fnews%2Fpomodoro-crate%2F&amp;title=Pomodoro%20Crate&amp;srcURL=http%3A%2F%2Freveloper.com%2Fnews%2Fpomodoro-crate%2F&amp;srcTitle=Reveloper+Revealing+web+solutions+that+grow+business" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/googlebuzz.png" class="sociable-img sociable-hovers" title="Google Buzz" alt="Google Buzz" /></a><a rel="nofollow" target="_blank"  href="http://reddit.com/submit?url=http%3A%2F%2Freveloper.com%2Fnews%2Fpomodoro-crate%2F&amp;title=Pomodoro%20Crate" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/reddit.png" class="sociable-img sociable-hovers" title="Reddit" alt="Reddit" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Freveloper.com%2Fnews%2Fpomodoro-crate%2F&amp;submitHeadline=Pomodoro%20Crate&amp;submitSummary=An%20original%20Reveloper%20product%20and%20our%20take%20on%20automating%20the%20Pomodoro%20Technique%20workflow.&amp;submitCategory=science&amp;submitAssetType=text" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Freveloper.com%2Fnews%2Fpomodoro-crate%2F&amp;title=Pomodoro%20Crate&amp;source=Reveloper+Revealing+web+solutions+that+grow+business&amp;summary=An%20original%20Reveloper%20product%20and%20our%20take%20on%20automating%20the%20Pomodoro%20Technique%20workflow." ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=Pomodoro%20Crate&amp;url=http%3A%2F%2Freveloper.com%2Fnews%2Fpomodoro-crate%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Freveloper.com%2Fnews%2Fpomodoro-crate%2F&amp;h=Pomodoro%20Crate" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/newsvine.png" class="sociable-img sociable-hovers" title="NewsVine" alt="NewsVine" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Freveloper.com%2Fnews%2Fpomodoro-crate%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><br/><br/><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Freveloper.com%2Fnews%2Fpomodoro-crate%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>]]></content:encoded>
			<wfw:commentRss>http://reveloper.com/news/pomodoro-crate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pomodoro Crate &#8211; the beta is live!</title>
		<link>http://reveloper.com/blog/pomodoro-crate-the-beta-is-live/</link>
		<comments>http://reveloper.com/blog/pomodoro-crate-the-beta-is-live/#comments</comments>
		<pubDate>Fri, 11 Mar 2011 17:09:38 +0000</pubDate>
		<dc:creator>Adrian Salceanu</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[pomodoro]]></category>
		<category><![CDATA[pomodoro crate]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[time management]]></category>

		<guid isPermaLink="false">http://reveloper.com/?p=760</guid>
		<description><![CDATA[Great news for all you Pomodoro enthusiasts &#8211; we have released the beta version of Pomodoro Crate, our agile time management software based, of course, on the Pomodoro Technique. As you might know from our previous posts, we are big &#8230; <a href="http://reveloper.com/blog/pomodoro-crate-the-beta-is-live/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Great news for all you Pomodoro enthusiasts &#8211; we have released the beta version of Pomodoro Crate, our agile time management software based, of course, on the Pomodoro Technique. As you might know from our previous posts, we are big fans of the technique &#8211; we appreciate it for it&#8217;s simplicity, unobtrusiveness, instant results and the huge productivity boost. We tried to preserve all this into the software &#8211; and instead make the workflow even better, by adding subtle GTD touches, such as Projects, Tags and Appointments.</p>
<p>Pomodoro Crate is still a work in progress and we&#8217;re glad to see our users providing us with valuable feedback &#8211; some of their suggestions and requests were already implemented, and some are in progress.</p>
<p>So, without further ado, I give you&#8230; <a title="Pomodoro Crate - Agile time management software based on the Pomodoro Technique" href="http://pomodorocrate.com" target="_blank">Pomodoro Crate</a>! Sign up (it&#8217;s fast and free), give it a try and let us know how you like it. Happy Pomodoros!</p>
<a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Freveloper.com%2Fblog%2Fpomodoro-crate-the-beta-is-live%2F&amp;t=Pomodoro%20Crate%20-%20the%20beta%20is%20live%21" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Pomodoro%20Crate%20-%20the%20beta%20is%20live%21%20-%20http%3A%2F%2Freveloper.com%2Fblog%2Fpomodoro-crate-the-beta-is-live%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Freveloper.com%2Fblog%2Fpomodoro-crate-the-beta-is-live%2F&amp;title=Pomodoro%20Crate%20-%20the%20beta%20is%20live%21" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Freveloper.com%2Fblog%2Fpomodoro-crate-the-beta-is-live%2F&amp;title=Pomodoro%20Crate%20-%20the%20beta%20is%20live%21&amp;bodytext=Great%20news%20for%20all%20you%20Pomodoro%20enthusiasts%20-%20we%20have%20released%20the%20beta%20version%20of%20Pomodoro%20Crate%2C%20our%20agile%20time%20management%20software%20based%2C%20of%20course%2C%20on%20the%20Pomodoro%20Technique.%20As%20you%20might%20know%20from%20our%20previous%20posts%2C%20we%20are%20big%20fans%20of%20the%20techn" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Freveloper.com%2Fblog%2Fpomodoro-crate-the-beta-is-live%2F&amp;title=Pomodoro%20Crate%20-%20the%20beta%20is%20live%21&amp;notes=Great%20news%20for%20all%20you%20Pomodoro%20enthusiasts%20-%20we%20have%20released%20the%20beta%20version%20of%20Pomodoro%20Crate%2C%20our%20agile%20time%20management%20software%20based%2C%20of%20course%2C%20on%20the%20Pomodoro%20Technique.%20As%20you%20might%20know%20from%20our%20previous%20posts%2C%20we%20are%20big%20fans%20of%20the%20techn" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.designfloat.com/submit.php?url=http%3A%2F%2Freveloper.com%2Fblog%2Fpomodoro-crate-the-beta-is-live%2F&amp;title=Pomodoro%20Crate%20-%20the%20beta%20is%20live%21" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/designfloat.png" class="sociable-img sociable-hovers" title="Design Float" alt="Design Float" /></a><a rel="nofollow" target="_blank"  href="http://www.friendfeed.com/share?title=Pomodoro%20Crate%20-%20the%20beta%20is%20live%21&amp;link=http%3A%2F%2Freveloper.com%2Fblog%2Fpomodoro-crate-the-beta-is-live%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/friendfeed.png" class="sociable-img sociable-hovers" title="FriendFeed" alt="FriendFeed" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/reader/link?url=http%3A%2F%2Freveloper.com%2Fblog%2Fpomodoro-crate-the-beta-is-live%2F&amp;title=Pomodoro%20Crate%20-%20the%20beta%20is%20live%21&amp;srcURL=http%3A%2F%2Freveloper.com%2Fblog%2Fpomodoro-crate-the-beta-is-live%2F&amp;srcTitle=Reveloper+Revealing+web+solutions+that+grow+business" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/googlebuzz.png" class="sociable-img sociable-hovers" title="Google Buzz" alt="Google Buzz" /></a><a rel="nofollow" target="_blank"  href="http://reddit.com/submit?url=http%3A%2F%2Freveloper.com%2Fblog%2Fpomodoro-crate-the-beta-is-live%2F&amp;title=Pomodoro%20Crate%20-%20the%20beta%20is%20live%21" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/reddit.png" class="sociable-img sociable-hovers" title="Reddit" alt="Reddit" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Freveloper.com%2Fblog%2Fpomodoro-crate-the-beta-is-live%2F&amp;submitHeadline=Pomodoro%20Crate%20-%20the%20beta%20is%20live%21&amp;submitSummary=Great%20news%20for%20all%20you%20Pomodoro%20enthusiasts%20-%20we%20have%20released%20the%20beta%20version%20of%20Pomodoro%20Crate%2C%20our%20agile%20time%20management%20software%20based%2C%20of%20course%2C%20on%20the%20Pomodoro%20Technique.%20As%20you%20might%20know%20from%20our%20previous%20posts%2C%20we%20are%20big%20fans%20of%20the%20techn&amp;submitCategory=science&amp;submitAssetType=text" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Freveloper.com%2Fblog%2Fpomodoro-crate-the-beta-is-live%2F&amp;title=Pomodoro%20Crate%20-%20the%20beta%20is%20live%21&amp;source=Reveloper+Revealing+web+solutions+that+grow+business&amp;summary=Great%20news%20for%20all%20you%20Pomodoro%20enthusiasts%20-%20we%20have%20released%20the%20beta%20version%20of%20Pomodoro%20Crate%2C%20our%20agile%20time%20management%20software%20based%2C%20of%20course%2C%20on%20the%20Pomodoro%20Technique.%20As%20you%20might%20know%20from%20our%20previous%20posts%2C%20we%20are%20big%20fans%20of%20the%20techn" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=Pomodoro%20Crate%20-%20the%20beta%20is%20live%21&amp;url=http%3A%2F%2Freveloper.com%2Fblog%2Fpomodoro-crate-the-beta-is-live%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Freveloper.com%2Fblog%2Fpomodoro-crate-the-beta-is-live%2F&amp;h=Pomodoro%20Crate%20-%20the%20beta%20is%20live%21" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/newsvine.png" class="sociable-img sociable-hovers" title="NewsVine" alt="NewsVine" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Freveloper.com%2Fblog%2Fpomodoro-crate-the-beta-is-live%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><br/><br/><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Freveloper.com%2Fblog%2Fpomodoro-crate-the-beta-is-live%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>]]></content:encoded>
			<wfw:commentRss>http://reveloper.com/blog/pomodoro-crate-the-beta-is-live/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting up to speed on Rails</title>
		<link>http://reveloper.com/blog/getting-up-to-speed-on-rails/</link>
		<comments>http://reveloper.com/blog/getting-up-to-speed-on-rails/#comments</comments>
		<pubDate>Sat, 26 Feb 2011 16:52:38 +0000</pubDate>
		<dc:creator>Adrian Salceanu</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[ruby on rails]]></category>

		<guid isPermaLink="false">http://reveloper.com/?p=752</guid>
		<description><![CDATA[Rails development &#8211; a love hate affair The first time I&#8217;ve read about Rails, a few years ago, I was truly impressed. It was so powerful, so well architected, so smart and so fun! It made me feel like a &#8230; <a href="http://reveloper.com/blog/getting-up-to-speed-on-rails/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h2>Rails development &#8211; a love hate affair</h2>
<p>The first time I&#8217;ve read about Rails, a few years ago, I was truly impressed. It was so powerful, so well architected, so smart and so fun! It made me feel like a kid again, playing and experimenting with my computer. Unfortunately, once I&#8217;ve left the playground and begun thinking about using Rails professionally, things got more difficult. With version one, hosting was a major issue. Simply put, at the time, setting up a Rails application was a nightmare, both in terms of work hours and server costs (infrastructure).</p>
<p>With version 2, things got better in terms of hosting and the framework got even better, overall. Unfortunately it came with strings attached. The string: &#8220;obtrusive JavaScript&#8221;. We decided that giving up unobtrusive JavaScript would fundamentally go against what we believed to be web development best practice, so we went our separate ways again.</p>
<h2>Rails 3 &#8211; oh, so sweeet</h2>
<p>Three really was a charm for web development frameworks in 2010 &#8211; first was WordPress, then Rails. The 3rd version of RoR brought a plethora of super-awesome features. Most delicious ones? The Bundler for dependency management, new query engine, better mailer and&#8230; can you guess? If you said &#8220;Unobtrusive JavaScript!&#8221; pat yourself on the back cause you&#8217;re right. Rails now generates beautiful HTML5 selectors and attributes to be used by JS and it is JavaScript library agnostic (it means it plays oh so nice with my beloved jQuery).</p>
<h2>In conclusion? We&#8217;re getting up to speed on Rails</h2>
<p>So finally, the time for Rails has come &#8211; after 10 years of mostly PHP coding, I can say without a doubt that Rails as a framework, doubled by various gems is a better development tool when compared to CodeIgniter and Cake PHP: you finish your projects faster, you test easier, you deploy so easy and you have so much fun. Which means happier developers making happier clients. Win-win!</p>
<p>So if you&#8217;re looking for Rails development let us know &#8212; check out <a title="Pomodoro Crate - Agile time management software based on the Pomodoro Technique" href="http://pomodorocrate.com" target="_blank">Pomodoro Crate</a> (our flagship product and our first professional Rails app) and don&#8217;t forget about our promotional rates for Rails development.</p>
<a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Freveloper.com%2Fblog%2Fgetting-up-to-speed-on-rails%2F&amp;t=Getting%20up%20to%20speed%20on%20Rails" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Getting%20up%20to%20speed%20on%20Rails%20-%20http%3A%2F%2Freveloper.com%2Fblog%2Fgetting-up-to-speed-on-rails%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Freveloper.com%2Fblog%2Fgetting-up-to-speed-on-rails%2F&amp;title=Getting%20up%20to%20speed%20on%20Rails" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Freveloper.com%2Fblog%2Fgetting-up-to-speed-on-rails%2F&amp;title=Getting%20up%20to%20speed%20on%20Rails&amp;bodytext=Rails%20development%20-%20a%20love%20hate%20affair%0D%0AThe%20first%20time%20I%27ve%20read%20about%20Rails%2C%20a%20few%20years%20ago%2C%20I%20was%20truly%20impressed.%20It%20was%20so%20powerful%2C%20so%20well%20architected%2C%20so%20smart%20and%20so%20fun%21%20It%20made%20me%20feel%20like%20a%20kid%20again%2C%20playing%20and%20experimenting%20with%20my%20co" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Freveloper.com%2Fblog%2Fgetting-up-to-speed-on-rails%2F&amp;title=Getting%20up%20to%20speed%20on%20Rails&amp;notes=Rails%20development%20-%20a%20love%20hate%20affair%0D%0AThe%20first%20time%20I%27ve%20read%20about%20Rails%2C%20a%20few%20years%20ago%2C%20I%20was%20truly%20impressed.%20It%20was%20so%20powerful%2C%20so%20well%20architected%2C%20so%20smart%20and%20so%20fun%21%20It%20made%20me%20feel%20like%20a%20kid%20again%2C%20playing%20and%20experimenting%20with%20my%20co" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.designfloat.com/submit.php?url=http%3A%2F%2Freveloper.com%2Fblog%2Fgetting-up-to-speed-on-rails%2F&amp;title=Getting%20up%20to%20speed%20on%20Rails" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/designfloat.png" class="sociable-img sociable-hovers" title="Design Float" alt="Design Float" /></a><a rel="nofollow" target="_blank"  href="http://www.friendfeed.com/share?title=Getting%20up%20to%20speed%20on%20Rails&amp;link=http%3A%2F%2Freveloper.com%2Fblog%2Fgetting-up-to-speed-on-rails%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/friendfeed.png" class="sociable-img sociable-hovers" title="FriendFeed" alt="FriendFeed" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/reader/link?url=http%3A%2F%2Freveloper.com%2Fblog%2Fgetting-up-to-speed-on-rails%2F&amp;title=Getting%20up%20to%20speed%20on%20Rails&amp;srcURL=http%3A%2F%2Freveloper.com%2Fblog%2Fgetting-up-to-speed-on-rails%2F&amp;srcTitle=Reveloper+Revealing+web+solutions+that+grow+business" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/googlebuzz.png" class="sociable-img sociable-hovers" title="Google Buzz" alt="Google Buzz" /></a><a rel="nofollow" target="_blank"  href="http://reddit.com/submit?url=http%3A%2F%2Freveloper.com%2Fblog%2Fgetting-up-to-speed-on-rails%2F&amp;title=Getting%20up%20to%20speed%20on%20Rails" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/reddit.png" class="sociable-img sociable-hovers" title="Reddit" alt="Reddit" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Freveloper.com%2Fblog%2Fgetting-up-to-speed-on-rails%2F&amp;submitHeadline=Getting%20up%20to%20speed%20on%20Rails&amp;submitSummary=Rails%20development%20-%20a%20love%20hate%20affair%0D%0AThe%20first%20time%20I%27ve%20read%20about%20Rails%2C%20a%20few%20years%20ago%2C%20I%20was%20truly%20impressed.%20It%20was%20so%20powerful%2C%20so%20well%20architected%2C%20so%20smart%20and%20so%20fun%21%20It%20made%20me%20feel%20like%20a%20kid%20again%2C%20playing%20and%20experimenting%20with%20my%20co&amp;submitCategory=science&amp;submitAssetType=text" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Freveloper.com%2Fblog%2Fgetting-up-to-speed-on-rails%2F&amp;title=Getting%20up%20to%20speed%20on%20Rails&amp;source=Reveloper+Revealing+web+solutions+that+grow+business&amp;summary=Rails%20development%20-%20a%20love%20hate%20affair%0D%0AThe%20first%20time%20I%27ve%20read%20about%20Rails%2C%20a%20few%20years%20ago%2C%20I%20was%20truly%20impressed.%20It%20was%20so%20powerful%2C%20so%20well%20architected%2C%20so%20smart%20and%20so%20fun%21%20It%20made%20me%20feel%20like%20a%20kid%20again%2C%20playing%20and%20experimenting%20with%20my%20co" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=Getting%20up%20to%20speed%20on%20Rails&amp;url=http%3A%2F%2Freveloper.com%2Fblog%2Fgetting-up-to-speed-on-rails%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Freveloper.com%2Fblog%2Fgetting-up-to-speed-on-rails%2F&amp;h=Getting%20up%20to%20speed%20on%20Rails" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/newsvine.png" class="sociable-img sociable-hovers" title="NewsVine" alt="NewsVine" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Freveloper.com%2Fblog%2Fgetting-up-to-speed-on-rails%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><br/><br/><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Freveloper.com%2Fblog%2Fgetting-up-to-speed-on-rails%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>]]></content:encoded>
			<wfw:commentRss>http://reveloper.com/blog/getting-up-to-speed-on-rails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Boost your productivity with the Pomodoro technique</title>
		<link>http://reveloper.com/blog/boost-your-productivity-with-the-pomodoro-technique/</link>
		<comments>http://reveloper.com/blog/boost-your-productivity-with-the-pomodoro-technique/#comments</comments>
		<pubDate>Sat, 04 Dec 2010 12:37:17 +0000</pubDate>
		<dc:creator>Adrian Salceanu</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[pomodoro]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[time management]]></category>

		<guid isPermaLink="false">http://reveloper.com/?p=712</guid>
		<description><![CDATA[While documenting for an upcoming project that is now in the planning phase &#8211; a time management, web application, based on the Pomodoro technique &#8211; I had the great pleasure of re-reading &#8220;Pomodoro Technique Illustrated&#8221;, by Staffan Nöteberg. Here is &#8230; <a href="http://reveloper.com/blog/boost-your-productivity-with-the-pomodoro-technique/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>While documenting for an upcoming project that is now in the planning phase &#8211; a time management, web application, based on the Pomodoro technique &#8211; I had the great pleasure of re-reading &#8220;Pomodoro Technique Illustrated&#8221;, by Staffan Nöteberg.</p>
<p>Here is a quick review of the book&#8217;s take on the Pomodoro time management technique. Read on!</p>
<h2>The Pomodoro time management technique</h2>
<p>Ever since I started working as a freelancer, I&#8217;ve been preoccupied with boosting my productivity. It&#8217;s only natural, if you think about it: on one hand, when you are your own boss, time really is money. The more you deliver, the more you earn. On the other hand, I enjoy freelancing because it offers me flexibility in terms of scheduling &#8211; if I become more productive, I get to finish my work faster and enjoy more work-free time.</p>
<p>After trying GTD (and giving it up soon), I found out about Pomodoro. I&#8217;ve been using it for more than a year now and it was absolutely amazing. It&#8217;s simple, unobtrusive and agile &#8211; easy to implement, it bends the way you need it, it plays nice with other (complementary) time management systems (like GTD) and provides immediate results.</p>
<p>The technique has been created by Francesco Cirillo in 1992 and it is now used by professionals, individuals and teams, all around the world.</p>
<p><img class="alignnone size-full wp-image-719" title="Pomodoro timer" src="http://reveloper.com/wp-content/uploads/2010/12/pomodoro_timer_1.jpg" alt="Pomodoro timer" width="606" height="248" /></p>
<h2>What do you need?</h2>
<p>Don&#8217;t worry, it is very easy to start using the Pomodoro technique &#8211; all you need is a timer (physical or software) and something to write: paper and a pencil or, as I went 100% green (paperless), a spreadsheet. Once you get a hold of this, follow the 3 simple steps to become a happy and productive pomodorian.</p>
<h2>1. Out of your mind and in control &#8211; the &#8220;Activity inventory&#8221;</h2>
<p>The human brain, as brilliant as it can be, sometimes can act really dummy. For instance, it has no sense of priority. Once you tell your brain that you need to do something &#8211; maybe tomorrow, or next week &#8211; it will keep bugging you. It doesn&#8217;t matter that really, there&#8217;s nothing you can do for a few days &#8211; it will keep reminding you over and over and over.</p>
<p>But also, the brain has a very limited capacity for storing such to dos. It can take hold of only a few of them at any given time &#8211; as new ones pile up, they will take the place of the previous ones. Regardless of whether they were completed or not.</p>
<p>So obviously, our minds are not optimized for such tedious actions. We will be stressed as things will pop-up in our heads when we&#8217;ll try to relax or sleep, we&#8217;ll live in fear of forgetting something important and we&#8217;ll eventually suffer the consequences when we&#8217;ll finally omit an important to do. Bummer! That&#8217;s a real productivity killer!</p>
<p>So the first step of becoming truly productive (and more) is to obtain peace of mind &#8211; and the only way to do this is to inform your brain that all your to dos are safely stored in a place where you can easily retrieve them at any time. And that you will in fact check the list regularly.</p>
<p>Hence, the &#8220;Activity Inventory&#8221;. This will be your first list, where you will add all your to dos. Use a piece of paper or a separate spreadsheet to store all the things you&#8217;ll want do to. Enter the name of the task &#8211; as clearly as possible. If the task is ambiguous, later on, when you will have to deal with it, you will have difficulties attacking it. Your brain doesn&#8217;t like ambiguous concepts and will do it&#8217;s best to make you skip them.</p>
<p>Once you&#8217;ve written the to do, in the next column enter the deadline. That&#8217;s it! But for a little extra, I added an additional column &#8211; for the project. As I said, you can easily add GTD elements to better customize the technique for your needs. The Project column helps me prioritize tasks.</p>
<p><img class="alignnone size-full wp-image-717" title="Pomodoro timer" src="http://reveloper.com/wp-content/uploads/2010/12/pomodoro_timer_3.jpg" alt="Pomodoro timer" width="606" height="248" /></p>
<h2>2. Take control of your time &#8211; the &#8220;To Do Today&#8221; list</h2>
<p>We&#8217;re living in a highly connected world and we&#8217;re constantly trying to find our path in an ocean of information. Hundreds of elements are fighting daily for our limited attention &#8211; bosses, clients, colleagues, friends, family, emails, messages, phone calls, etc. If you don&#8217;t have a clear list of priorities for the day you will be put in the position of constantly reacting to other people&#8217;s requests and will find, at the end of the day, that you didn&#8217;t accomplish any of the important things. That&#8217;s why so many people put in long hours &#8211; because they benefit from the silence of the after office hours. But that&#8217;s not the way to do it: long hours will burn you out and your personal life will suffer &#8211; and so will your friends and your family.</p>
<p>Hence the &#8220;To Do Today&#8221; list &#8211; every morning, before beginning your work, plan your day. Check out the Activity Inventory and pick the tasks that you need to do that day. And that you reasonably expect to complete in a normal work day. For this, use another piece of paper or a different spreadsheet and copy the chosen tasks into your To Do Today list. Ready? Great! This is your commitment &#8211; you choose what to do, what is important for you and what you know you can do today &#8211; now it&#8217;s time to act upon it!</p>
<p><img class="alignnone size-full wp-image-718" title="Pomodoro timer" src="http://reveloper.com/wp-content/uploads/2010/12/pomodoro_timer_2.jpg" alt="Pomodoro timer" width="606" height="248" /></p>
<h2>3. The &#8220;Pomodoro&#8221; timing</h2>
<p>The Pomodoro is the core concept of the technique. A pomodoro is an atomic and indivisible unit of time. The time required to accomplish a task is not measured in minutes or hours, but in pomodoros. You can choose the length of your pomodoros &#8211; but the key point is that they should have equal length. I like 25 minutes long pomodoros &#8211; and so do many others, this being the recommended length.</p>
<p>When you begin working on a task, you complete it one pomodoro at a time. You set your timer and begin working uninterrupted until the clock rings. After this, you take a 5 minutes break &#8211; to clear your head, drink some water and move around a little. After every 4 pomodoros, you take a longer break &#8211; of 30 minutes.</p>
<p>In order to plan and track your progress, on your To Do Today list, in a column next to the task name, draw one small box for each pomodoro you expect to complete in order to finish the task. When you&#8217;re done with a pomodoro, you get to check a box with an &#8220;X&#8221;. When the whole task is done, cut it with a horizontal line.</p>
<p>It&#8217;s very important to remember that a pomodoro can not be paused &#8211; once you begin it, you must finish it uninterruptedly.  The purpose of working in a time box is to get you focused and into the flow &#8211; your brain needs to learn the patterns in order to fully focus and be completely productive. Also, by working strictly in time boxes you set a clear rhythm for work and breaks &#8211; that will help you focus and recharge efficiently. If you interrupt a pomodoro you must void it &#8211; that means no &#8220;X&#8221;. Take a break if you need to, reset the timer and start over.</p>
<p>Equally, you must not cheat the pomodoro &#8211; once the timer rings, you must stop. This way you will motivate yourself to work thinking about the upcoming breaks and will keep your rhythm. After all, it&#8217;s only 25 minutes of that unpleasant task &#8211; of course you can do 25 minutes!</p>
<p>Finally, you must never have tasks that you expect to take more than 8 pomodoros (4 hours). Long tasks are hard to manage and they are huge demotivators. If it needs more than 8 pomodoros, split it into smaller tasks.</p>
<h2>Conclusion</h2>
<p>The Pomodoro Technique is a great time management solution that will help you work happier, with less stress and no long hours &#8211; all while being more productive and achieving more. As soon as you start using it. It is a solution that has been successfully used and refined by professionals active in various areas &#8211; and that I&#8217;ve been using daily for more than a year.</p>
<p>I hope you liked it and will soon make it a part of your daily routine.</p>
<p>If you want to learn more, visit the <a rel="nofollow" href="http://www.pomodorotechnique.com/" target="_blank">official website</a>, download the <a rel="nofollow" href="http://www.pomodorotechnique.com/products.html" target="_blank">free goodies</a> or buy the excellent &#8220;<a rel="nofollow" href="http://www.pomodoro-book.com/" target="_blank">Pomodoro Technique Illustrated</a>&#8220;.</p>
<p>I&#8217;d love to find out about your experience with the technique &#8211; so don&#8217;t forget to leave a comment.</p>
<p><small>(Image credits: <a rel="nofollow" href="http://www.flickr.com/photos/standout/5222790553/sizes/l/" target="_blank">standout</a>, <a rel="nofollow" href="http://www.flickr.com/photos/heliomedeiros/4730401283/sizes/l/" target="_blank">heliomedeiros</a>, <a rel="nofollow" href="http://www.flickr.com/photos/psd/4686988937/sizes/l/" target="_blank">psd</a>)</small></p>
<a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Freveloper.com%2Fblog%2Fboost-your-productivity-with-the-pomodoro-technique%2F&amp;t=Boost%20your%20productivity%20with%20the%20Pomodoro%20technique" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Boost%20your%20productivity%20with%20the%20Pomodoro%20technique%20-%20http%3A%2F%2Freveloper.com%2Fblog%2Fboost-your-productivity-with-the-pomodoro-technique%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Freveloper.com%2Fblog%2Fboost-your-productivity-with-the-pomodoro-technique%2F&amp;title=Boost%20your%20productivity%20with%20the%20Pomodoro%20technique" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Freveloper.com%2Fblog%2Fboost-your-productivity-with-the-pomodoro-technique%2F&amp;title=Boost%20your%20productivity%20with%20the%20Pomodoro%20technique&amp;bodytext=While%20documenting%20for%20an%20upcoming%20project%20that%20is%20now%20in%20the%20planning%20phase%20-%20a%20time%20management%2C%20web%20application%2C%20based%20on%20the%20Pomodoro%20technique%20-%20I%20had%20the%20great%20pleasure%20of%20re-reading%20%22Pomodoro%20Technique%20Illustrated%22%2C%20by%20Staffan%20No%CC%88teberg.%0D%0A%0D%0AHer" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Freveloper.com%2Fblog%2Fboost-your-productivity-with-the-pomodoro-technique%2F&amp;title=Boost%20your%20productivity%20with%20the%20Pomodoro%20technique&amp;notes=While%20documenting%20for%20an%20upcoming%20project%20that%20is%20now%20in%20the%20planning%20phase%20-%20a%20time%20management%2C%20web%20application%2C%20based%20on%20the%20Pomodoro%20technique%20-%20I%20had%20the%20great%20pleasure%20of%20re-reading%20%22Pomodoro%20Technique%20Illustrated%22%2C%20by%20Staffan%20No%CC%88teberg.%0D%0A%0D%0AHer" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.designfloat.com/submit.php?url=http%3A%2F%2Freveloper.com%2Fblog%2Fboost-your-productivity-with-the-pomodoro-technique%2F&amp;title=Boost%20your%20productivity%20with%20the%20Pomodoro%20technique" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/designfloat.png" class="sociable-img sociable-hovers" title="Design Float" alt="Design Float" /></a><a rel="nofollow" target="_blank"  href="http://www.friendfeed.com/share?title=Boost%20your%20productivity%20with%20the%20Pomodoro%20technique&amp;link=http%3A%2F%2Freveloper.com%2Fblog%2Fboost-your-productivity-with-the-pomodoro-technique%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/friendfeed.png" class="sociable-img sociable-hovers" title="FriendFeed" alt="FriendFeed" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/reader/link?url=http%3A%2F%2Freveloper.com%2Fblog%2Fboost-your-productivity-with-the-pomodoro-technique%2F&amp;title=Boost%20your%20productivity%20with%20the%20Pomodoro%20technique&amp;srcURL=http%3A%2F%2Freveloper.com%2Fblog%2Fboost-your-productivity-with-the-pomodoro-technique%2F&amp;srcTitle=Reveloper+Revealing+web+solutions+that+grow+business" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/googlebuzz.png" class="sociable-img sociable-hovers" title="Google Buzz" alt="Google Buzz" /></a><a rel="nofollow" target="_blank"  href="http://reddit.com/submit?url=http%3A%2F%2Freveloper.com%2Fblog%2Fboost-your-productivity-with-the-pomodoro-technique%2F&amp;title=Boost%20your%20productivity%20with%20the%20Pomodoro%20technique" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/reddit.png" class="sociable-img sociable-hovers" title="Reddit" alt="Reddit" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Freveloper.com%2Fblog%2Fboost-your-productivity-with-the-pomodoro-technique%2F&amp;submitHeadline=Boost%20your%20productivity%20with%20the%20Pomodoro%20technique&amp;submitSummary=While%20documenting%20for%20an%20upcoming%20project%20that%20is%20now%20in%20the%20planning%20phase%20-%20a%20time%20management%2C%20web%20application%2C%20based%20on%20the%20Pomodoro%20technique%20-%20I%20had%20the%20great%20pleasure%20of%20re-reading%20%22Pomodoro%20Technique%20Illustrated%22%2C%20by%20Staffan%20No%CC%88teberg.%0D%0A%0D%0AHer&amp;submitCategory=science&amp;submitAssetType=text" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Freveloper.com%2Fblog%2Fboost-your-productivity-with-the-pomodoro-technique%2F&amp;title=Boost%20your%20productivity%20with%20the%20Pomodoro%20technique&amp;source=Reveloper+Revealing+web+solutions+that+grow+business&amp;summary=While%20documenting%20for%20an%20upcoming%20project%20that%20is%20now%20in%20the%20planning%20phase%20-%20a%20time%20management%2C%20web%20application%2C%20based%20on%20the%20Pomodoro%20technique%20-%20I%20had%20the%20great%20pleasure%20of%20re-reading%20%22Pomodoro%20Technique%20Illustrated%22%2C%20by%20Staffan%20No%CC%88teberg.%0D%0A%0D%0AHer" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=Boost%20your%20productivity%20with%20the%20Pomodoro%20technique&amp;url=http%3A%2F%2Freveloper.com%2Fblog%2Fboost-your-productivity-with-the-pomodoro-technique%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Freveloper.com%2Fblog%2Fboost-your-productivity-with-the-pomodoro-technique%2F&amp;h=Boost%20your%20productivity%20with%20the%20Pomodoro%20technique" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/newsvine.png" class="sociable-img sociable-hovers" title="NewsVine" alt="NewsVine" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Freveloper.com%2Fblog%2Fboost-your-productivity-with-the-pomodoro-technique%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><br/><br/><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Freveloper.com%2Fblog%2Fboost-your-productivity-with-the-pomodoro-technique%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>]]></content:encoded>
			<wfw:commentRss>http://reveloper.com/blog/boost-your-productivity-with-the-pomodoro-technique/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;WordPress Plugins Order&#8221; plugin updated</title>
		<link>http://reveloper.com/blog/wordpress-plugins-order-plugin-updated/</link>
		<comments>http://reveloper.com/blog/wordpress-plugins-order-plugin-updated/#comments</comments>
		<pubDate>Tue, 23 Nov 2010 12:22:48 +0000</pubDate>
		<dc:creator>Adrian Salceanu</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[downloads]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[plugin order]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://reveloper.com/?p=702</guid>
		<description><![CDATA[We have just updated our recently released WordPress plugin. It&#8217;s an important bug fixing update, which eliminates an issue that caused previously deactivated plugins to be reactivated in certain conditions. Please download the new 0.2 release and update your WordPress &#8230; <a href="http://reveloper.com/blog/wordpress-plugins-order-plugin-updated/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>We have just updated our recently released WordPress plugin. It&#8217;s an important bug fixing update, which eliminates an issue that caused previously deactivated plugins to be reactivated in certain conditions.</p>
<p>Please download the new 0.2 release and update your WordPress website.</p>
<p>As always, we&#8217;re here if you need any help, have any questions or need to report any issues.</p>
<p><small>(Image credits: <a rel="nofollow" href="http://www.flickr.com/photos/bobbigmac/5036291025/" target="_blank">bobbigmac</a> and Reveloper)</small></p>
<div id="downloadbutton" class="dlbuttoncenter">
							<a href="http://reveloper.com/downloads/com.reveloper.plugins-load-order.zip">
								<span>Download</span>
								<em>WordPress Plugins Order</em>
							</a>
						</div>
<a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Freveloper.com%2Fblog%2Fwordpress-plugins-order-plugin-updated%2F&amp;t=%22WordPress%20Plugins%20Order%22%20plugin%20updated" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=%22WordPress%20Plugins%20Order%22%20plugin%20updated%20-%20http%3A%2F%2Freveloper.com%2Fblog%2Fwordpress-plugins-order-plugin-updated%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Freveloper.com%2Fblog%2Fwordpress-plugins-order-plugin-updated%2F&amp;title=%22WordPress%20Plugins%20Order%22%20plugin%20updated" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Freveloper.com%2Fblog%2Fwordpress-plugins-order-plugin-updated%2F&amp;title=%22WordPress%20Plugins%20Order%22%20plugin%20updated&amp;bodytext=We%20have%20just%20updated%20our%20recently%20released%20WordPress%20plugin.%20It%27s%20an%20important%20bug%20fixing%20update%2C%20which%20eliminates%20an%20issue%20that%20caused%20previously%20deactivated%20plugins%20to%20be%20reactivated%20in%20certain%20conditions.%0D%0A%0D%0APlease%20download%20the%20new%200.2%20release%20and" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Freveloper.com%2Fblog%2Fwordpress-plugins-order-plugin-updated%2F&amp;title=%22WordPress%20Plugins%20Order%22%20plugin%20updated&amp;notes=We%20have%20just%20updated%20our%20recently%20released%20WordPress%20plugin.%20It%27s%20an%20important%20bug%20fixing%20update%2C%20which%20eliminates%20an%20issue%20that%20caused%20previously%20deactivated%20plugins%20to%20be%20reactivated%20in%20certain%20conditions.%0D%0A%0D%0APlease%20download%20the%20new%200.2%20release%20and" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.designfloat.com/submit.php?url=http%3A%2F%2Freveloper.com%2Fblog%2Fwordpress-plugins-order-plugin-updated%2F&amp;title=%22WordPress%20Plugins%20Order%22%20plugin%20updated" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/designfloat.png" class="sociable-img sociable-hovers" title="Design Float" alt="Design Float" /></a><a rel="nofollow" target="_blank"  href="http://www.friendfeed.com/share?title=%22WordPress%20Plugins%20Order%22%20plugin%20updated&amp;link=http%3A%2F%2Freveloper.com%2Fblog%2Fwordpress-plugins-order-plugin-updated%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/friendfeed.png" class="sociable-img sociable-hovers" title="FriendFeed" alt="FriendFeed" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/reader/link?url=http%3A%2F%2Freveloper.com%2Fblog%2Fwordpress-plugins-order-plugin-updated%2F&amp;title=%22WordPress%20Plugins%20Order%22%20plugin%20updated&amp;srcURL=http%3A%2F%2Freveloper.com%2Fblog%2Fwordpress-plugins-order-plugin-updated%2F&amp;srcTitle=Reveloper+Revealing+web+solutions+that+grow+business" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/googlebuzz.png" class="sociable-img sociable-hovers" title="Google Buzz" alt="Google Buzz" /></a><a rel="nofollow" target="_blank"  href="http://reddit.com/submit?url=http%3A%2F%2Freveloper.com%2Fblog%2Fwordpress-plugins-order-plugin-updated%2F&amp;title=%22WordPress%20Plugins%20Order%22%20plugin%20updated" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/reddit.png" class="sociable-img sociable-hovers" title="Reddit" alt="Reddit" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Freveloper.com%2Fblog%2Fwordpress-plugins-order-plugin-updated%2F&amp;submitHeadline=%22WordPress%20Plugins%20Order%22%20plugin%20updated&amp;submitSummary=We%20have%20just%20updated%20our%20recently%20released%20WordPress%20plugin.%20It%27s%20an%20important%20bug%20fixing%20update%2C%20which%20eliminates%20an%20issue%20that%20caused%20previously%20deactivated%20plugins%20to%20be%20reactivated%20in%20certain%20conditions.%0D%0A%0D%0APlease%20download%20the%20new%200.2%20release%20and&amp;submitCategory=science&amp;submitAssetType=text" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Freveloper.com%2Fblog%2Fwordpress-plugins-order-plugin-updated%2F&amp;title=%22WordPress%20Plugins%20Order%22%20plugin%20updated&amp;source=Reveloper+Revealing+web+solutions+that+grow+business&amp;summary=We%20have%20just%20updated%20our%20recently%20released%20WordPress%20plugin.%20It%27s%20an%20important%20bug%20fixing%20update%2C%20which%20eliminates%20an%20issue%20that%20caused%20previously%20deactivated%20plugins%20to%20be%20reactivated%20in%20certain%20conditions.%0D%0A%0D%0APlease%20download%20the%20new%200.2%20release%20and" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=%22WordPress%20Plugins%20Order%22%20plugin%20updated&amp;url=http%3A%2F%2Freveloper.com%2Fblog%2Fwordpress-plugins-order-plugin-updated%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Freveloper.com%2Fblog%2Fwordpress-plugins-order-plugin-updated%2F&amp;h=%22WordPress%20Plugins%20Order%22%20plugin%20updated" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/newsvine.png" class="sociable-img sociable-hovers" title="NewsVine" alt="NewsVine" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Freveloper.com%2Fblog%2Fwordpress-plugins-order-plugin-updated%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><br/><br/><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Freveloper.com%2Fblog%2Fwordpress-plugins-order-plugin-updated%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>]]></content:encoded>
			<wfw:commentRss>http://reveloper.com/blog/wordpress-plugins-order-plugin-updated/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>WordPress Plugins Load Order plugin</title>
		<link>http://reveloper.com/blog/wordpress-plugins-order-plugin/</link>
		<comments>http://reveloper.com/blog/wordpress-plugins-order-plugin/#comments</comments>
		<pubDate>Fri, 19 Nov 2010 15:03:03 +0000</pubDate>
		<dc:creator>Adrian Salceanu</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[downloads]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[plugin order]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://reveloper.com/?p=681</guid>
		<description><![CDATA[Have you over wanted to change the load / execution order of your WordPress plugins? Yes, and so did we! Because many  plugins automatically output content to your blog's user interface, you need to control the load order to control the output. We just released a free plugin that will allow you to sort them plugins according to your needs. Come and get it! <a href="http://reveloper.com/blog/wordpress-plugins-order-plugin/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h2>The problem</h2>
<p>WordPress is an excellent development platform &#8211; a real time-saver in so many aspects. But for a seasoned PHP developer used to the flexibility and the power of OpenSource libraries, sometimes it&#8217;s just not flexible enough &#8211; by default.</p>
<p>The problem in case is that WordPress gives you no way of sorting the load order of your plugins. This is a huge problem, because lots of plugins output content on the user interface automatically. For instance, they automatically output content at the end of your post, or in your HTML &lt;head&gt;.</p>
<p>The default WordPress sorting is alphabetical, by plugin name. Which from a functional perspective, is the same as random.</p>
<p>A few days ago, I wanted to enable a Facebook Like Button plugin &#8211; which appends itself at the end of the post. I already had a Sociable Social Sharing plugin which also appended itself at the end of the post. The Facebook Like plugin, once enabled, was loaded first (starts with &#8220;F&#8221;). But hey! I wanted them the other way around &#8211; for functional and esthetical reasons.</p>
<p>Imagine my surprise when I found out that I wasn&#8217;t the only one needing this &#8211; and that there was no simple solution! In my opinion, this should&#8217;ve been core functionality.</p>
<h2>A plugin to load the plugins the way you want</h2>
<p>So, without further ado, here comes the plugin. You&#8217;ll get a nice interface with drag and drop that will help you arrange them the way you need. And new plugins will be added at the end of the load order.</p>
<p>Enjoy and as always &#8211; we&#8217;d love to hear from you!</p>
<div id="downloadbutton" class="dlbuttoncenter">
							<a href="http://reveloper.com/downloads/com.reveloper.plugins-load-order.zip">
								<span>Download</span>
								<em>WordPress Plugins Order</em>
							</a>
						</div>
<a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Freveloper.com%2Fblog%2Fwordpress-plugins-order-plugin%2F&amp;t=WordPress%20Plugins%20Load%20Order%20plugin" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=WordPress%20Plugins%20Load%20Order%20plugin%20-%20http%3A%2F%2Freveloper.com%2Fblog%2Fwordpress-plugins-order-plugin%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Freveloper.com%2Fblog%2Fwordpress-plugins-order-plugin%2F&amp;title=WordPress%20Plugins%20Load%20Order%20plugin" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Freveloper.com%2Fblog%2Fwordpress-plugins-order-plugin%2F&amp;title=WordPress%20Plugins%20Load%20Order%20plugin&amp;bodytext=Have%20you%20over%20wanted%20to%20change%20the%20load%20%2F%20execution%20order%20of%20your%20WordPress%20plugins%3F%20Yes%2C%20and%20so%20did%20we%21%20Because%20many%20%20plugins%20automatically%20output%20content%20to%20your%20blog%27s%20user%20interface%2C%20you%20need%20to%20control%20the%20load%20order%20to%20control%20the%20output.%20We%20just%20released%20a%20free%20plugin%20that%20will%20allow%20you%20to%20sort%20them%20plugins%20according%20to%20your%20needs.%20Come%20and%20get%20it%21" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Freveloper.com%2Fblog%2Fwordpress-plugins-order-plugin%2F&amp;title=WordPress%20Plugins%20Load%20Order%20plugin&amp;notes=Have%20you%20over%20wanted%20to%20change%20the%20load%20%2F%20execution%20order%20of%20your%20WordPress%20plugins%3F%20Yes%2C%20and%20so%20did%20we%21%20Because%20many%20%20plugins%20automatically%20output%20content%20to%20your%20blog%27s%20user%20interface%2C%20you%20need%20to%20control%20the%20load%20order%20to%20control%20the%20output.%20We%20just%20released%20a%20free%20plugin%20that%20will%20allow%20you%20to%20sort%20them%20plugins%20according%20to%20your%20needs.%20Come%20and%20get%20it%21" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.designfloat.com/submit.php?url=http%3A%2F%2Freveloper.com%2Fblog%2Fwordpress-plugins-order-plugin%2F&amp;title=WordPress%20Plugins%20Load%20Order%20plugin" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/designfloat.png" class="sociable-img sociable-hovers" title="Design Float" alt="Design Float" /></a><a rel="nofollow" target="_blank"  href="http://www.friendfeed.com/share?title=WordPress%20Plugins%20Load%20Order%20plugin&amp;link=http%3A%2F%2Freveloper.com%2Fblog%2Fwordpress-plugins-order-plugin%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/friendfeed.png" class="sociable-img sociable-hovers" title="FriendFeed" alt="FriendFeed" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/reader/link?url=http%3A%2F%2Freveloper.com%2Fblog%2Fwordpress-plugins-order-plugin%2F&amp;title=WordPress%20Plugins%20Load%20Order%20plugin&amp;srcURL=http%3A%2F%2Freveloper.com%2Fblog%2Fwordpress-plugins-order-plugin%2F&amp;srcTitle=Reveloper+Revealing+web+solutions+that+grow+business" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/googlebuzz.png" class="sociable-img sociable-hovers" title="Google Buzz" alt="Google Buzz" /></a><a rel="nofollow" target="_blank"  href="http://reddit.com/submit?url=http%3A%2F%2Freveloper.com%2Fblog%2Fwordpress-plugins-order-plugin%2F&amp;title=WordPress%20Plugins%20Load%20Order%20plugin" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/reddit.png" class="sociable-img sociable-hovers" title="Reddit" alt="Reddit" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Freveloper.com%2Fblog%2Fwordpress-plugins-order-plugin%2F&amp;submitHeadline=WordPress%20Plugins%20Load%20Order%20plugin&amp;submitSummary=Have%20you%20over%20wanted%20to%20change%20the%20load%20%2F%20execution%20order%20of%20your%20WordPress%20plugins%3F%20Yes%2C%20and%20so%20did%20we%21%20Because%20many%20%20plugins%20automatically%20output%20content%20to%20your%20blog%27s%20user%20interface%2C%20you%20need%20to%20control%20the%20load%20order%20to%20control%20the%20output.%20We%20just%20released%20a%20free%20plugin%20that%20will%20allow%20you%20to%20sort%20them%20plugins%20according%20to%20your%20needs.%20Come%20and%20get%20it%21&amp;submitCategory=science&amp;submitAssetType=text" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Freveloper.com%2Fblog%2Fwordpress-plugins-order-plugin%2F&amp;title=WordPress%20Plugins%20Load%20Order%20plugin&amp;source=Reveloper+Revealing+web+solutions+that+grow+business&amp;summary=Have%20you%20over%20wanted%20to%20change%20the%20load%20%2F%20execution%20order%20of%20your%20WordPress%20plugins%3F%20Yes%2C%20and%20so%20did%20we%21%20Because%20many%20%20plugins%20automatically%20output%20content%20to%20your%20blog%27s%20user%20interface%2C%20you%20need%20to%20control%20the%20load%20order%20to%20control%20the%20output.%20We%20just%20released%20a%20free%20plugin%20that%20will%20allow%20you%20to%20sort%20them%20plugins%20according%20to%20your%20needs.%20Come%20and%20get%20it%21" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=WordPress%20Plugins%20Load%20Order%20plugin&amp;url=http%3A%2F%2Freveloper.com%2Fblog%2Fwordpress-plugins-order-plugin%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Freveloper.com%2Fblog%2Fwordpress-plugins-order-plugin%2F&amp;h=WordPress%20Plugins%20Load%20Order%20plugin" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/newsvine.png" class="sociable-img sociable-hovers" title="NewsVine" alt="NewsVine" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Freveloper.com%2Fblog%2Fwordpress-plugins-order-plugin%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><br/><br/><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Freveloper.com%2Fblog%2Fwordpress-plugins-order-plugin%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>]]></content:encoded>
			<wfw:commentRss>http://reveloper.com/blog/wordpress-plugins-order-plugin/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Using WordPress 3 as a CMS</title>
		<link>http://reveloper.com/blog/using-wordpress-3-as-a-cms/</link>
		<comments>http://reveloper.com/blog/using-wordpress-3-as-a-cms/#comments</comments>
		<pubDate>Mon, 15 Nov 2010 19:22:57 +0000</pubDate>
		<dc:creator>Adrian Salceanu</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[reveloper]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://reveloper.com/?p=661</guid>
		<description><![CDATA[At version 3, WordPress, the venerable blogging platform, has brought a series of new CMS functionalities. We gave it a try to see how well suited WordPress really is for this task - judging from the perspective of seasoned PHP developers and WordPress beginners.  <a href="http://reveloper.com/blog/using-wordpress-3-as-a-cms/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><span class="article-intro">My first encounter with WordPress was a couple of years ago &#8211; as a blogging platform. Back then it was already a great application: easy to install, easy to setup and configure and easy to customize. At that time, I haven&#8217;t got past this point. But later, I&#8217;ve been reading more and more about the new version (3.x) and its CMS capabilities. So naturally, I wanted to give it a try and see how it works as a development platform &#8211; for a commercial product.<br />
</span></p>
<h2>WordPress vs. web application frameworks and custom CMS systems</h2>
<p>I&#8217;ve been using various PHP development frameworks over the last 7 years: starting with Fusebox, moving on to CodeIgniter and occasionally coding on CakePHP.</p>
<p>Compared to traditional PHP development, application frameworks are a huge productivity booster &#8211; they provide a coherent set of tools combined with a strongly enforced workflow, usually employing well established design patterns and modern programming and testing techniques.</p>
<p>But they are just too generic &#8211; looking back, I found that in over 80% of the cases, the clients needed a flexible, easy to use CMS. And even more important, about 80% of the functionality of the CMS was common throughout all projects. So of course, the logical step was to build a custom made CMS on top of my favorite application framework &#8211; CodeIgniter.</p>
<p>It worked like a charm, allowing us to build reusable modules and literally shape it into everything our clients needed. But still, a lot of time was being used to update core components, to implement common sense functionalities for the first time, to debug and enhance existing functionalities and push modifications on live sites.</p>
<h2>Enter WordPress</h2>
<p>WordPress seemed like an ideal solution to all the above problems:</p>
<ul class="content-list">
<li>it is a wildly used, mature, thoroughly tested application</li>
<li>there are literally tens of thousands of high quality free and commercial plugins that instantly add almost any functionality you might imagine</li>
<li>it provides a very simple and powerful update mechanism that allows developers to push core and module (plugin) updates</li>
<li>it has an excellent documentation</li>
<li>it has a huge user base, most of them non-technical bloggers, that have generated an incredible amount of Q and A&#8217;s &#8211; believe me when I tell you: any questions you might have about WordPress, it has already been asked and answered!</li>
<li>and of course, it&#8217;s free</li>
</ul>
<h2>The implementation</h2>
<p>Reveloper.com was the perfect opportunity to try out WordPress as a CMS &#8211; being our internal project, we weren&#8217;t pressed by a tight deadline and we had enough flexibility regarding the implementation.</p>
<p>We decided to go with a custom theme and use as many free plugins as possible for extending the base. Where existing plugins were not available or were not good enough, we implemented our own.</p>
<p>We used the default theme as a example and built on that.</p>
<h2>The custom theme</h2>
<p>This was obviously the first step, and really, the major part of building the website. And let me tell you right now &#8211; it was a piece of cake!</p>
<p>The WordPress hierarchy of files is very well planned &#8211; the themes are kept outside of the core so that it&#8217;s impossible to harm the main platform. Also, this makes it easy to update the core, without losing your customizations. Same goes for creating your template files &#8211; at minimum, you can go with only one view file &#8211; or you can go ahead and go crazy and create layouts for chosen sections, categories, posts and you-name-what. Once you understand the logical (application) flow and the physical (files) structure, you&#8217;re good to go.</p>
<p>As a developer, you get an awesome arsenal of tools to identify all the usage cases (is it home page, category, post, search, archive, etc? ) and build, change and enhance your pages however you see fit.</p>
<p>At first it can be a bit intimidating &#8211; there are lots of functions to learn about. And at least for me, coming from a MVC world, the lack of models and the default non-object oriented paradigm was confusing. If you need a great introduction, I recommend you the awesome &#8220;<a rel="nofollow" href="http://www.amazon.com/Smashing-WordPress-Beyond-Blog-Magazine/dp/0470684151/" target="_blank">Smashing WordPress &#8211; Beyond the Blog</a>&#8221; (from Wiley).</p>
<p>For building Reveloper.com we&#8217;ve made extensive use of custom fields to quickly and easily define the special pieces of our content &#8211; and we picked up these pieces on the front using the built-in WordPress functions.</p>
<p>Also, we used the new &#8220;Menus&#8221; feature &#8211; but we didn&#8217;t get to try out the new custom posts as custom fields were just enough.</p>
<h2>The plugins</h2>
<p>The huge library of free plugins it&#8217;s one of the main &#8220;selling&#8221; points for WordPress. I was like a kid that got a box of chocolates and tries each of them out to see which is best.</p>
<p>This is a list of plugins that we used for building Reveloper.com</p>
<ul class="content-list">
<li><a rel="nofollow" href="http://webdevstudios.com/support/wordpress-plugins" target="_blank">WP-Devel</a> &#8211; a very useful plugin for WordPress developers, especially when you&#8217;re taking the first steps into custom themes. It give you loads of info about what&#8217;s going on behind the scenes, like current template file, load times, database queries, functions, variables, etc, etc.</li>
<li><a rel="nofollow" href="http://kwebble.com/blog/2007_08_15/archives_for_a_category" target="_blank">Archives for a category</a> &#8211; we needed this one to filter out certain categories from the archives list</li>
<li><a rel="nofollow" href="http://snippets-tricks.org/proyectos/breadcrumbs-plus-plugin/" target="_blank">Breadcrumbs Plus</a> &#8211; this plugin + unobtrusive JavaScript = our lovely hover breadcrumbs <img src='http://reveloper.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </li>
<li><a rel="nofollow" href="http://wordpress.org/extend/plugins/sociable-30" target="_blank">Sociable for WordPress 3.0</a> &#8211; articles social sharing made easy. I definitely prefer this one, compared to AddThis.</li>
</ul>
<p>For your administration needs, make sure you get the followings:</p>
<ul class="content-list">
<li><a rel="nofollow" href="http://akismet.com/" target="_blank">Akismet</a> &#8211; great spam filtering for comments</li>
<li><a rel="nofollow" href="http://wpantivirus.com/" target="_blank">AntiVirus</a> &#8211; scans your WordPress for vulnerabilities and back doors</li>
<li><a rel="nofollow" href="http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/" target="_blank">Broken Link Checker</a> &#8211; great tool: it automatically scans your new posts and warns about invalid links</li>
<li><a rel="nofollow" href="http://bueltge.de/wp-suchen-und-ersetzen-de-plugin/114/" target="_blank">Search &amp; Replace</a> &#8211; simple and effective interface for searching and replacing content from the database</li>
</ul>
<p>Also, there is a whole array of SEO and Analytics plugins &#8211; we have a couple of them running on the site.</p>
<h2>So, the verdict?</h2>
<p>WordPress is an amazing platform for building CMS based websites &#8211; with great core functionalities and myriads of free plugins, a well thought structure and a super update system.</p>
<p>If you&#8217;re a veteran PHP developer you will become productive in no time &#8211; just a few hours. And though you might be disappointed with its procedural programming style, once you put your OOP ego aside, you&#8217;ll find that it&#8217;s a very efficient and productive tool, if used for the right type of project.</p>
<p>Do you have any comments or questions? Would you like to know more about our project? Do you like what we came out with? We&#8217;d love to here from you!</p>
<a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Freveloper.com%2Fblog%2Fusing-wordpress-3-as-a-cms%2F&amp;t=Using%20WordPress%203%20as%20a%20CMS" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Using%20WordPress%203%20as%20a%20CMS%20-%20http%3A%2F%2Freveloper.com%2Fblog%2Fusing-wordpress-3-as-a-cms%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Freveloper.com%2Fblog%2Fusing-wordpress-3-as-a-cms%2F&amp;title=Using%20WordPress%203%20as%20a%20CMS" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Freveloper.com%2Fblog%2Fusing-wordpress-3-as-a-cms%2F&amp;title=Using%20WordPress%203%20as%20a%20CMS&amp;bodytext=At%20version%203%2C%20WordPress%2C%20the%20venerable%20blogging%20platform%2C%20has%20brought%20a%20series%20of%20new%20CMS%20functionalities.%20We%20gave%20it%20a%20try%20to%20see%20how%20well%20suited%20WordPress%20really%20is%20for%20this%20task%20-%20judging%20from%20the%20perspective%20of%20seasoned%20PHP%20developers%20and%20WordPress%20beginners.%20" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Freveloper.com%2Fblog%2Fusing-wordpress-3-as-a-cms%2F&amp;title=Using%20WordPress%203%20as%20a%20CMS&amp;notes=At%20version%203%2C%20WordPress%2C%20the%20venerable%20blogging%20platform%2C%20has%20brought%20a%20series%20of%20new%20CMS%20functionalities.%20We%20gave%20it%20a%20try%20to%20see%20how%20well%20suited%20WordPress%20really%20is%20for%20this%20task%20-%20judging%20from%20the%20perspective%20of%20seasoned%20PHP%20developers%20and%20WordPress%20beginners.%20" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.designfloat.com/submit.php?url=http%3A%2F%2Freveloper.com%2Fblog%2Fusing-wordpress-3-as-a-cms%2F&amp;title=Using%20WordPress%203%20as%20a%20CMS" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/designfloat.png" class="sociable-img sociable-hovers" title="Design Float" alt="Design Float" /></a><a rel="nofollow" target="_blank"  href="http://www.friendfeed.com/share?title=Using%20WordPress%203%20as%20a%20CMS&amp;link=http%3A%2F%2Freveloper.com%2Fblog%2Fusing-wordpress-3-as-a-cms%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/friendfeed.png" class="sociable-img sociable-hovers" title="FriendFeed" alt="FriendFeed" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/reader/link?url=http%3A%2F%2Freveloper.com%2Fblog%2Fusing-wordpress-3-as-a-cms%2F&amp;title=Using%20WordPress%203%20as%20a%20CMS&amp;srcURL=http%3A%2F%2Freveloper.com%2Fblog%2Fusing-wordpress-3-as-a-cms%2F&amp;srcTitle=Reveloper+Revealing+web+solutions+that+grow+business" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/googlebuzz.png" class="sociable-img sociable-hovers" title="Google Buzz" alt="Google Buzz" /></a><a rel="nofollow" target="_blank"  href="http://reddit.com/submit?url=http%3A%2F%2Freveloper.com%2Fblog%2Fusing-wordpress-3-as-a-cms%2F&amp;title=Using%20WordPress%203%20as%20a%20CMS" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/reddit.png" class="sociable-img sociable-hovers" title="Reddit" alt="Reddit" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Freveloper.com%2Fblog%2Fusing-wordpress-3-as-a-cms%2F&amp;submitHeadline=Using%20WordPress%203%20as%20a%20CMS&amp;submitSummary=At%20version%203%2C%20WordPress%2C%20the%20venerable%20blogging%20platform%2C%20has%20brought%20a%20series%20of%20new%20CMS%20functionalities.%20We%20gave%20it%20a%20try%20to%20see%20how%20well%20suited%20WordPress%20really%20is%20for%20this%20task%20-%20judging%20from%20the%20perspective%20of%20seasoned%20PHP%20developers%20and%20WordPress%20beginners.%20&amp;submitCategory=science&amp;submitAssetType=text" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Freveloper.com%2Fblog%2Fusing-wordpress-3-as-a-cms%2F&amp;title=Using%20WordPress%203%20as%20a%20CMS&amp;source=Reveloper+Revealing+web+solutions+that+grow+business&amp;summary=At%20version%203%2C%20WordPress%2C%20the%20venerable%20blogging%20platform%2C%20has%20brought%20a%20series%20of%20new%20CMS%20functionalities.%20We%20gave%20it%20a%20try%20to%20see%20how%20well%20suited%20WordPress%20really%20is%20for%20this%20task%20-%20judging%20from%20the%20perspective%20of%20seasoned%20PHP%20developers%20and%20WordPress%20beginners.%20" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=Using%20WordPress%203%20as%20a%20CMS&amp;url=http%3A%2F%2Freveloper.com%2Fblog%2Fusing-wordpress-3-as-a-cms%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Freveloper.com%2Fblog%2Fusing-wordpress-3-as-a-cms%2F&amp;h=Using%20WordPress%203%20as%20a%20CMS" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/newsvine.png" class="sociable-img sociable-hovers" title="NewsVine" alt="NewsVine" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Freveloper.com%2Fblog%2Fusing-wordpress-3-as-a-cms%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><br/><br/><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Freveloper.com%2Fblog%2Fusing-wordpress-3-as-a-cms%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>]]></content:encoded>
			<wfw:commentRss>http://reveloper.com/blog/using-wordpress-3-as-a-cms/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Catalin Rusu</title>
		<link>http://reveloper.com/quotes/catalin-rusu/</link>
		<comments>http://reveloper.com/quotes/catalin-rusu/#comments</comments>
		<pubDate>Thu, 11 Nov 2010 17:35:42 +0000</pubDate>
		<dc:creator>Adrian Salceanu</dc:creator>
				<category><![CDATA[Clients quotes]]></category>

		<guid isPermaLink="false">http://localhost/reveloper/website/?p=638</guid>
		<description><![CDATA[I&#8217;ve known Adrian for 8 years now and I&#8217;ve always been impressed by his background: he has a university degree in Philosophy, he has done project management for on-line businesses, has moved on to programming and now is one of &#8230; <a href="http://reveloper.com/quotes/catalin-rusu/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><!-- p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Tahoma} -->I&#8217;ve known Adrian for 8 years now and I&#8217;ve always been impressed by his background: he has a university degree in Philosophy, he has done project management for on-line businesses, has moved on to programming and now is one of the best developers I&#8217;ve known. I feel great working with him because beyond his always-up-to-date coding skills, Adrian is a visionary business man and an excellent project manager. He understands business, he understand branding and he understand communication. What more could you ask from a developer?</p>
<a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Freveloper.com%2Fquotes%2Fcatalin-rusu%2F&amp;t=Catalin%20Rusu" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Catalin%20Rusu%20-%20http%3A%2F%2Freveloper.com%2Fquotes%2Fcatalin-rusu%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Freveloper.com%2Fquotes%2Fcatalin-rusu%2F&amp;title=Catalin%20Rusu" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Freveloper.com%2Fquotes%2Fcatalin-rusu%2F&amp;title=Catalin%20Rusu&amp;bodytext=I%27ve%20known%20Adrian%20for%208%20years%20now%20and%20I%27ve%20always%20been%20impressed%20by%20his%20background%3A%20he%20has%20a%20university%20degree%20in%20Philosophy%2C%20he%20has%20done%20project%20management%20for%20on-line%20businesses%2C%20has%20moved%20on%20to%20programming%20and%20now%20is%20one%20of%20the%20best%20developers%20I%27v" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Freveloper.com%2Fquotes%2Fcatalin-rusu%2F&amp;title=Catalin%20Rusu&amp;notes=I%27ve%20known%20Adrian%20for%208%20years%20now%20and%20I%27ve%20always%20been%20impressed%20by%20his%20background%3A%20he%20has%20a%20university%20degree%20in%20Philosophy%2C%20he%20has%20done%20project%20management%20for%20on-line%20businesses%2C%20has%20moved%20on%20to%20programming%20and%20now%20is%20one%20of%20the%20best%20developers%20I%27v" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.designfloat.com/submit.php?url=http%3A%2F%2Freveloper.com%2Fquotes%2Fcatalin-rusu%2F&amp;title=Catalin%20Rusu" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/designfloat.png" class="sociable-img sociable-hovers" title="Design Float" alt="Design Float" /></a><a rel="nofollow" target="_blank"  href="http://www.friendfeed.com/share?title=Catalin%20Rusu&amp;link=http%3A%2F%2Freveloper.com%2Fquotes%2Fcatalin-rusu%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/friendfeed.png" class="sociable-img sociable-hovers" title="FriendFeed" alt="FriendFeed" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/reader/link?url=http%3A%2F%2Freveloper.com%2Fquotes%2Fcatalin-rusu%2F&amp;title=Catalin%20Rusu&amp;srcURL=http%3A%2F%2Freveloper.com%2Fquotes%2Fcatalin-rusu%2F&amp;srcTitle=Reveloper+Revealing+web+solutions+that+grow+business" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/googlebuzz.png" class="sociable-img sociable-hovers" title="Google Buzz" alt="Google Buzz" /></a><a rel="nofollow" target="_blank"  href="http://reddit.com/submit?url=http%3A%2F%2Freveloper.com%2Fquotes%2Fcatalin-rusu%2F&amp;title=Catalin%20Rusu" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/reddit.png" class="sociable-img sociable-hovers" title="Reddit" alt="Reddit" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Freveloper.com%2Fquotes%2Fcatalin-rusu%2F&amp;submitHeadline=Catalin%20Rusu&amp;submitSummary=I%27ve%20known%20Adrian%20for%208%20years%20now%20and%20I%27ve%20always%20been%20impressed%20by%20his%20background%3A%20he%20has%20a%20university%20degree%20in%20Philosophy%2C%20he%20has%20done%20project%20management%20for%20on-line%20businesses%2C%20has%20moved%20on%20to%20programming%20and%20now%20is%20one%20of%20the%20best%20developers%20I%27v&amp;submitCategory=science&amp;submitAssetType=text" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Freveloper.com%2Fquotes%2Fcatalin-rusu%2F&amp;title=Catalin%20Rusu&amp;source=Reveloper+Revealing+web+solutions+that+grow+business&amp;summary=I%27ve%20known%20Adrian%20for%208%20years%20now%20and%20I%27ve%20always%20been%20impressed%20by%20his%20background%3A%20he%20has%20a%20university%20degree%20in%20Philosophy%2C%20he%20has%20done%20project%20management%20for%20on-line%20businesses%2C%20has%20moved%20on%20to%20programming%20and%20now%20is%20one%20of%20the%20best%20developers%20I%27v" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=Catalin%20Rusu&amp;url=http%3A%2F%2Freveloper.com%2Fquotes%2Fcatalin-rusu%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Freveloper.com%2Fquotes%2Fcatalin-rusu%2F&amp;h=Catalin%20Rusu" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/newsvine.png" class="sociable-img sociable-hovers" title="NewsVine" alt="NewsVine" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Freveloper.com%2Fquotes%2Fcatalin-rusu%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><br/><br/><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Freveloper.com%2Fquotes%2Fcatalin-rusu%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>]]></content:encoded>
			<wfw:commentRss>http://reveloper.com/quotes/catalin-rusu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Victor Costache</title>
		<link>http://reveloper.com/quotes/victor-costache/</link>
		<comments>http://reveloper.com/quotes/victor-costache/#comments</comments>
		<pubDate>Wed, 10 Nov 2010 16:45:36 +0000</pubDate>
		<dc:creator>Adrian Salceanu</dc:creator>
				<category><![CDATA[Clients quotes]]></category>

		<guid isPermaLink="false">http://localhost/reveloper/website/?p=443</guid>
		<description><![CDATA[Adrian was one of the best project managers and colleagues that I have worked with. Besides his management abilities (communication skills, organized, motivated) he is a very strong character, being honest and committed to the objectives and tasks assigned to &#8230; <a href="http://reveloper.com/quotes/victor-costache/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Adrian was one of the best project managers and colleagues that I have worked with. Besides his management abilities (communication skills, organized, motivated) he is a very strong character, being honest and committed to the objectives and tasks assigned to him. Willing to permanently improve his knowledge and to share from his experience, Adrian will be a great asset for any company and he will become for sure one of the most important members of the team.</p>
<a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Freveloper.com%2Fquotes%2Fvictor-costache%2F&amp;t=Victor%20Costache" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Victor%20Costache%20-%20http%3A%2F%2Freveloper.com%2Fquotes%2Fvictor-costache%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Freveloper.com%2Fquotes%2Fvictor-costache%2F&amp;title=Victor%20Costache" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Freveloper.com%2Fquotes%2Fvictor-costache%2F&amp;title=Victor%20Costache&amp;bodytext=Adrian%20was%20one%20of%20the%20best%20project%20managers%20and%20colleagues%20that%20I%20have%20worked%20with.%20Besides%20his%20management%20abilities%20%28communication%20skills%2C%20organized%2C%20motivated%29%20he%20is%20a%20very%20strong%20character%2C%20being%20honest%20and%20committed%20to%20the%20objectives%20and%20tasks%20as" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Freveloper.com%2Fquotes%2Fvictor-costache%2F&amp;title=Victor%20Costache&amp;notes=Adrian%20was%20one%20of%20the%20best%20project%20managers%20and%20colleagues%20that%20I%20have%20worked%20with.%20Besides%20his%20management%20abilities%20%28communication%20skills%2C%20organized%2C%20motivated%29%20he%20is%20a%20very%20strong%20character%2C%20being%20honest%20and%20committed%20to%20the%20objectives%20and%20tasks%20as" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.designfloat.com/submit.php?url=http%3A%2F%2Freveloper.com%2Fquotes%2Fvictor-costache%2F&amp;title=Victor%20Costache" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/designfloat.png" class="sociable-img sociable-hovers" title="Design Float" alt="Design Float" /></a><a rel="nofollow" target="_blank"  href="http://www.friendfeed.com/share?title=Victor%20Costache&amp;link=http%3A%2F%2Freveloper.com%2Fquotes%2Fvictor-costache%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/friendfeed.png" class="sociable-img sociable-hovers" title="FriendFeed" alt="FriendFeed" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/reader/link?url=http%3A%2F%2Freveloper.com%2Fquotes%2Fvictor-costache%2F&amp;title=Victor%20Costache&amp;srcURL=http%3A%2F%2Freveloper.com%2Fquotes%2Fvictor-costache%2F&amp;srcTitle=Reveloper+Revealing+web+solutions+that+grow+business" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/googlebuzz.png" class="sociable-img sociable-hovers" title="Google Buzz" alt="Google Buzz" /></a><a rel="nofollow" target="_blank"  href="http://reddit.com/submit?url=http%3A%2F%2Freveloper.com%2Fquotes%2Fvictor-costache%2F&amp;title=Victor%20Costache" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/reddit.png" class="sociable-img sociable-hovers" title="Reddit" alt="Reddit" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Freveloper.com%2Fquotes%2Fvictor-costache%2F&amp;submitHeadline=Victor%20Costache&amp;submitSummary=Adrian%20was%20one%20of%20the%20best%20project%20managers%20and%20colleagues%20that%20I%20have%20worked%20with.%20Besides%20his%20management%20abilities%20%28communication%20skills%2C%20organized%2C%20motivated%29%20he%20is%20a%20very%20strong%20character%2C%20being%20honest%20and%20committed%20to%20the%20objectives%20and%20tasks%20as&amp;submitCategory=science&amp;submitAssetType=text" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Freveloper.com%2Fquotes%2Fvictor-costache%2F&amp;title=Victor%20Costache&amp;source=Reveloper+Revealing+web+solutions+that+grow+business&amp;summary=Adrian%20was%20one%20of%20the%20best%20project%20managers%20and%20colleagues%20that%20I%20have%20worked%20with.%20Besides%20his%20management%20abilities%20%28communication%20skills%2C%20organized%2C%20motivated%29%20he%20is%20a%20very%20strong%20character%2C%20being%20honest%20and%20committed%20to%20the%20objectives%20and%20tasks%20as" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=Victor%20Costache&amp;url=http%3A%2F%2Freveloper.com%2Fquotes%2Fvictor-costache%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Freveloper.com%2Fquotes%2Fvictor-costache%2F&amp;h=Victor%20Costache" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/newsvine.png" class="sociable-img sociable-hovers" title="NewsVine" alt="NewsVine" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Freveloper.com%2Fquotes%2Fvictor-costache%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><br/><br/><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Freveloper.com%2Fquotes%2Fvictor-costache%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>]]></content:encoded>
			<wfw:commentRss>http://reveloper.com/quotes/victor-costache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lavi Marcu</title>
		<link>http://reveloper.com/quotes/lavi-marcu/</link>
		<comments>http://reveloper.com/quotes/lavi-marcu/#comments</comments>
		<pubDate>Tue, 09 Nov 2010 13:21:22 +0000</pubDate>
		<dc:creator>Adrian Salceanu</dc:creator>
				<category><![CDATA[Clients quotes]]></category>

		<guid isPermaLink="false">http://localhost/reveloper/website/?p=53</guid>
		<description><![CDATA[Adrian was a very important part in the development process of Captaingo. He effectively implemented the website&#8217;s frontend &#8211; the user interface and the server side processes. Besides the actual coding, he has been very active offering technical solutions for &#8230; <a href="http://reveloper.com/quotes/lavi-marcu/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Adrian was a very important part in the development process of Captaingo. He effectively implemented the website&#8217;s frontend &#8211; the user interface and the server side processes. Besides the actual coding, he has been very active offering technical solutions for achieving the desired results, always presenting the appropriate means for achieving our goals. He is a true professional, commited, honest and 100% trustworthy. I strongly recommend him!</p>
<a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Freveloper.com%2Fquotes%2Flavi-marcu%2F&amp;t=Lavi%20Marcu" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Lavi%20Marcu%20-%20http%3A%2F%2Freveloper.com%2Fquotes%2Flavi-marcu%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Freveloper.com%2Fquotes%2Flavi-marcu%2F&amp;title=Lavi%20Marcu" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Freveloper.com%2Fquotes%2Flavi-marcu%2F&amp;title=Lavi%20Marcu&amp;bodytext=Adrian%20was%20a%20very%20important%20part%20in%20the%20development%20process%20of%20Captaingo.%20He%20effectively%20implemented%20the%20website%27s%20frontend%20-%20the%20user%20interface%20and%20the%20server%20side%20processes.%20Besides%20the%20actual%20coding%2C%20he%20has%20been%20very%20active%20offering%20technical%20solu" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Freveloper.com%2Fquotes%2Flavi-marcu%2F&amp;title=Lavi%20Marcu&amp;notes=Adrian%20was%20a%20very%20important%20part%20in%20the%20development%20process%20of%20Captaingo.%20He%20effectively%20implemented%20the%20website%27s%20frontend%20-%20the%20user%20interface%20and%20the%20server%20side%20processes.%20Besides%20the%20actual%20coding%2C%20he%20has%20been%20very%20active%20offering%20technical%20solu" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.designfloat.com/submit.php?url=http%3A%2F%2Freveloper.com%2Fquotes%2Flavi-marcu%2F&amp;title=Lavi%20Marcu" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/designfloat.png" class="sociable-img sociable-hovers" title="Design Float" alt="Design Float" /></a><a rel="nofollow" target="_blank"  href="http://www.friendfeed.com/share?title=Lavi%20Marcu&amp;link=http%3A%2F%2Freveloper.com%2Fquotes%2Flavi-marcu%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/friendfeed.png" class="sociable-img sociable-hovers" title="FriendFeed" alt="FriendFeed" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/reader/link?url=http%3A%2F%2Freveloper.com%2Fquotes%2Flavi-marcu%2F&amp;title=Lavi%20Marcu&amp;srcURL=http%3A%2F%2Freveloper.com%2Fquotes%2Flavi-marcu%2F&amp;srcTitle=Reveloper+Revealing+web+solutions+that+grow+business" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/googlebuzz.png" class="sociable-img sociable-hovers" title="Google Buzz" alt="Google Buzz" /></a><a rel="nofollow" target="_blank"  href="http://reddit.com/submit?url=http%3A%2F%2Freveloper.com%2Fquotes%2Flavi-marcu%2F&amp;title=Lavi%20Marcu" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/reddit.png" class="sociable-img sociable-hovers" title="Reddit" alt="Reddit" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Freveloper.com%2Fquotes%2Flavi-marcu%2F&amp;submitHeadline=Lavi%20Marcu&amp;submitSummary=Adrian%20was%20a%20very%20important%20part%20in%20the%20development%20process%20of%20Captaingo.%20He%20effectively%20implemented%20the%20website%27s%20frontend%20-%20the%20user%20interface%20and%20the%20server%20side%20processes.%20Besides%20the%20actual%20coding%2C%20he%20has%20been%20very%20active%20offering%20technical%20solu&amp;submitCategory=science&amp;submitAssetType=text" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Freveloper.com%2Fquotes%2Flavi-marcu%2F&amp;title=Lavi%20Marcu&amp;source=Reveloper+Revealing+web+solutions+that+grow+business&amp;summary=Adrian%20was%20a%20very%20important%20part%20in%20the%20development%20process%20of%20Captaingo.%20He%20effectively%20implemented%20the%20website%27s%20frontend%20-%20the%20user%20interface%20and%20the%20server%20side%20processes.%20Besides%20the%20actual%20coding%2C%20he%20has%20been%20very%20active%20offering%20technical%20solu" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=Lavi%20Marcu&amp;url=http%3A%2F%2Freveloper.com%2Fquotes%2Flavi-marcu%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Freveloper.com%2Fquotes%2Flavi-marcu%2F&amp;h=Lavi%20Marcu" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/newsvine.png" class="sociable-img sociable-hovers" title="NewsVine" alt="NewsVine" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Freveloper.com%2Fquotes%2Flavi-marcu%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><br/><br/><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Freveloper.com%2Fquotes%2Flavi-marcu%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>]]></content:encoded>
			<wfw:commentRss>http://reveloper.com/quotes/lavi-marcu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Iulian Dobrea</title>
		<link>http://reveloper.com/quotes/iulian-dobrea/</link>
		<comments>http://reveloper.com/quotes/iulian-dobrea/#comments</comments>
		<pubDate>Mon, 08 Nov 2010 16:43:13 +0000</pubDate>
		<dc:creator>Adrian Salceanu</dc:creator>
				<category><![CDATA[Clients quotes]]></category>

		<guid isPermaLink="false">http://localhost/reveloper/website/?p=441</guid>
		<description><![CDATA[I am very glad that I had the chance to work with Adrian as he is a person you can count on and he works well under pressure. I have often assigned him heavy tasks and he managed to finish &#8230; <a href="http://reveloper.com/quotes/iulian-dobrea/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I am very glad that I had the chance to work with Adrian as he is a person you can count on and he works well under pressure. I have often assigned him heavy tasks and he managed to finish them successfully in the given time. He always came with improvements and good ideas for the working projects. Many times, I have asked for his opinion in searching for the proper technical solution as I trust his knowledge and his logical thinking</p>
<a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Freveloper.com%2Fquotes%2Fiulian-dobrea%2F&amp;t=Iulian%20Dobrea" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Iulian%20Dobrea%20-%20http%3A%2F%2Freveloper.com%2Fquotes%2Fiulian-dobrea%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Freveloper.com%2Fquotes%2Fiulian-dobrea%2F&amp;title=Iulian%20Dobrea" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Freveloper.com%2Fquotes%2Fiulian-dobrea%2F&amp;title=Iulian%20Dobrea&amp;bodytext=I%20am%20very%20glad%20that%20I%20had%20the%20chance%20to%20work%20with%20Adrian%20as%20he%20is%20a%20person%20you%20can%20count%20on%20and%20he%20works%20well%20under%20pressure.%20I%20have%20often%20assigned%20him%20heavy%20tasks%20and%20he%20managed%20to%20finish%20them%20successfully%20in%20the%20given%20time.%20He%20always%20came%20with%20impr" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Freveloper.com%2Fquotes%2Fiulian-dobrea%2F&amp;title=Iulian%20Dobrea&amp;notes=I%20am%20very%20glad%20that%20I%20had%20the%20chance%20to%20work%20with%20Adrian%20as%20he%20is%20a%20person%20you%20can%20count%20on%20and%20he%20works%20well%20under%20pressure.%20I%20have%20often%20assigned%20him%20heavy%20tasks%20and%20he%20managed%20to%20finish%20them%20successfully%20in%20the%20given%20time.%20He%20always%20came%20with%20impr" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.designfloat.com/submit.php?url=http%3A%2F%2Freveloper.com%2Fquotes%2Fiulian-dobrea%2F&amp;title=Iulian%20Dobrea" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/designfloat.png" class="sociable-img sociable-hovers" title="Design Float" alt="Design Float" /></a><a rel="nofollow" target="_blank"  href="http://www.friendfeed.com/share?title=Iulian%20Dobrea&amp;link=http%3A%2F%2Freveloper.com%2Fquotes%2Fiulian-dobrea%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/friendfeed.png" class="sociable-img sociable-hovers" title="FriendFeed" alt="FriendFeed" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/reader/link?url=http%3A%2F%2Freveloper.com%2Fquotes%2Fiulian-dobrea%2F&amp;title=Iulian%20Dobrea&amp;srcURL=http%3A%2F%2Freveloper.com%2Fquotes%2Fiulian-dobrea%2F&amp;srcTitle=Reveloper+Revealing+web+solutions+that+grow+business" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/googlebuzz.png" class="sociable-img sociable-hovers" title="Google Buzz" alt="Google Buzz" /></a><a rel="nofollow" target="_blank"  href="http://reddit.com/submit?url=http%3A%2F%2Freveloper.com%2Fquotes%2Fiulian-dobrea%2F&amp;title=Iulian%20Dobrea" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/reddit.png" class="sociable-img sociable-hovers" title="Reddit" alt="Reddit" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Freveloper.com%2Fquotes%2Fiulian-dobrea%2F&amp;submitHeadline=Iulian%20Dobrea&amp;submitSummary=I%20am%20very%20glad%20that%20I%20had%20the%20chance%20to%20work%20with%20Adrian%20as%20he%20is%20a%20person%20you%20can%20count%20on%20and%20he%20works%20well%20under%20pressure.%20I%20have%20often%20assigned%20him%20heavy%20tasks%20and%20he%20managed%20to%20finish%20them%20successfully%20in%20the%20given%20time.%20He%20always%20came%20with%20impr&amp;submitCategory=science&amp;submitAssetType=text" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Freveloper.com%2Fquotes%2Fiulian-dobrea%2F&amp;title=Iulian%20Dobrea&amp;source=Reveloper+Revealing+web+solutions+that+grow+business&amp;summary=I%20am%20very%20glad%20that%20I%20had%20the%20chance%20to%20work%20with%20Adrian%20as%20he%20is%20a%20person%20you%20can%20count%20on%20and%20he%20works%20well%20under%20pressure.%20I%20have%20often%20assigned%20him%20heavy%20tasks%20and%20he%20managed%20to%20finish%20them%20successfully%20in%20the%20given%20time.%20He%20always%20came%20with%20impr" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=Iulian%20Dobrea&amp;url=http%3A%2F%2Freveloper.com%2Fquotes%2Fiulian-dobrea%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Freveloper.com%2Fquotes%2Fiulian-dobrea%2F&amp;h=Iulian%20Dobrea" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/newsvine.png" class="sociable-img sociable-hovers" title="NewsVine" alt="NewsVine" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Freveloper.com%2Fquotes%2Fiulian-dobrea%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><br/><br/><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Freveloper.com%2Fquotes%2Fiulian-dobrea%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>]]></content:encoded>
			<wfw:commentRss>http://reveloper.com/quotes/iulian-dobrea/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Orlando Nicoara</title>
		<link>http://reveloper.com/quotes/orlando-nicoara/</link>
		<comments>http://reveloper.com/quotes/orlando-nicoara/#comments</comments>
		<pubDate>Sun, 07 Nov 2010 13:19:22 +0000</pubDate>
		<dc:creator>Adrian Salceanu</dc:creator>
				<category><![CDATA[Clients quotes]]></category>

		<guid isPermaLink="false">http://localhost/reveloper/website/?p=49</guid>
		<description><![CDATA[Although I didn&#8217;t work with Adrian directly, judging by the feedback I received from the HR department and the members of his team, I can confirm that he stood out because of his enthusiasm and his efforts as a good &#8230; <a href="http://reveloper.com/quotes/orlando-nicoara/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Although I didn&#8217;t work with Adrian directly, judging by the feedback I received from the HR department and the members of his team, I can confirm that he stood out because of his enthusiasm and his efforts as a good colleague and a trustworthy person. That&#8217;s why I recommend him for working with your company!</p>
<a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Freveloper.com%2Fquotes%2Forlando-nicoara%2F&amp;t=Orlando%20Nicoara" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Orlando%20Nicoara%20-%20http%3A%2F%2Freveloper.com%2Fquotes%2Forlando-nicoara%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Freveloper.com%2Fquotes%2Forlando-nicoara%2F&amp;title=Orlando%20Nicoara" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Freveloper.com%2Fquotes%2Forlando-nicoara%2F&amp;title=Orlando%20Nicoara&amp;bodytext=Although%20I%20didn%27t%20work%20with%20Adrian%20directly%2C%20judging%20by%20the%20feedback%20I%20received%20from%20the%20HR%20department%20and%20the%20members%20of%20his%20team%2C%20I%20can%20confirm%20that%20he%20stood%20out%20because%20of%20his%20enthusiasm%20and%20his%20efforts%20as%20a%20good%20colleague%20and%20a%20trustworthy%20person" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Freveloper.com%2Fquotes%2Forlando-nicoara%2F&amp;title=Orlando%20Nicoara&amp;notes=Although%20I%20didn%27t%20work%20with%20Adrian%20directly%2C%20judging%20by%20the%20feedback%20I%20received%20from%20the%20HR%20department%20and%20the%20members%20of%20his%20team%2C%20I%20can%20confirm%20that%20he%20stood%20out%20because%20of%20his%20enthusiasm%20and%20his%20efforts%20as%20a%20good%20colleague%20and%20a%20trustworthy%20person" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.designfloat.com/submit.php?url=http%3A%2F%2Freveloper.com%2Fquotes%2Forlando-nicoara%2F&amp;title=Orlando%20Nicoara" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/designfloat.png" class="sociable-img sociable-hovers" title="Design Float" alt="Design Float" /></a><a rel="nofollow" target="_blank"  href="http://www.friendfeed.com/share?title=Orlando%20Nicoara&amp;link=http%3A%2F%2Freveloper.com%2Fquotes%2Forlando-nicoara%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/friendfeed.png" class="sociable-img sociable-hovers" title="FriendFeed" alt="FriendFeed" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/reader/link?url=http%3A%2F%2Freveloper.com%2Fquotes%2Forlando-nicoara%2F&amp;title=Orlando%20Nicoara&amp;srcURL=http%3A%2F%2Freveloper.com%2Fquotes%2Forlando-nicoara%2F&amp;srcTitle=Reveloper+Revealing+web+solutions+that+grow+business" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/googlebuzz.png" class="sociable-img sociable-hovers" title="Google Buzz" alt="Google Buzz" /></a><a rel="nofollow" target="_blank"  href="http://reddit.com/submit?url=http%3A%2F%2Freveloper.com%2Fquotes%2Forlando-nicoara%2F&amp;title=Orlando%20Nicoara" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/reddit.png" class="sociable-img sociable-hovers" title="Reddit" alt="Reddit" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Freveloper.com%2Fquotes%2Forlando-nicoara%2F&amp;submitHeadline=Orlando%20Nicoara&amp;submitSummary=Although%20I%20didn%27t%20work%20with%20Adrian%20directly%2C%20judging%20by%20the%20feedback%20I%20received%20from%20the%20HR%20department%20and%20the%20members%20of%20his%20team%2C%20I%20can%20confirm%20that%20he%20stood%20out%20because%20of%20his%20enthusiasm%20and%20his%20efforts%20as%20a%20good%20colleague%20and%20a%20trustworthy%20person&amp;submitCategory=science&amp;submitAssetType=text" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Freveloper.com%2Fquotes%2Forlando-nicoara%2F&amp;title=Orlando%20Nicoara&amp;source=Reveloper+Revealing+web+solutions+that+grow+business&amp;summary=Although%20I%20didn%27t%20work%20with%20Adrian%20directly%2C%20judging%20by%20the%20feedback%20I%20received%20from%20the%20HR%20department%20and%20the%20members%20of%20his%20team%2C%20I%20can%20confirm%20that%20he%20stood%20out%20because%20of%20his%20enthusiasm%20and%20his%20efforts%20as%20a%20good%20colleague%20and%20a%20trustworthy%20person" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=Orlando%20Nicoara&amp;url=http%3A%2F%2Freveloper.com%2Fquotes%2Forlando-nicoara%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Freveloper.com%2Fquotes%2Forlando-nicoara%2F&amp;h=Orlando%20Nicoara" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/newsvine.png" class="sociable-img sociable-hovers" title="NewsVine" alt="NewsVine" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Freveloper.com%2Fquotes%2Forlando-nicoara%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><br/><br/><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Freveloper.com%2Fquotes%2Forlando-nicoara%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>]]></content:encoded>
			<wfw:commentRss>http://reveloper.com/quotes/orlando-nicoara/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alina Buciu</title>
		<link>http://reveloper.com/quotes/alina-buciu/</link>
		<comments>http://reveloper.com/quotes/alina-buciu/#comments</comments>
		<pubDate>Sat, 06 Nov 2010 16:47:22 +0000</pubDate>
		<dc:creator>Adrian Salceanu</dc:creator>
				<category><![CDATA[Clients quotes]]></category>

		<guid isPermaLink="false">http://localhost/reveloper/website/?p=445</guid>
		<description><![CDATA[I worked with Adrian at Cratima for about 8 months, but it was enough to remain good friends. Besides our beautiful collaboration, he&#8217;s a very creative programmer, always with new and great ideas. As project manager I could admire his &#8230; <a href="http://reveloper.com/quotes/alina-buciu/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I worked with Adrian at Cratima for about 8 months, but it was enough to remain good friends. Besides our beautiful collaboration, he&#8217;s a very creative programmer, always with new and great ideas. As project manager I could admire his communication skills, experience and dedication. I hope we&#8217;ll work together again.</p>
<a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Freveloper.com%2Fquotes%2Falina-buciu%2F&amp;t=Alina%20Buciu" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Alina%20Buciu%20-%20http%3A%2F%2Freveloper.com%2Fquotes%2Falina-buciu%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Freveloper.com%2Fquotes%2Falina-buciu%2F&amp;title=Alina%20Buciu" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Freveloper.com%2Fquotes%2Falina-buciu%2F&amp;title=Alina%20Buciu&amp;bodytext=I%20worked%20with%20Adrian%20at%20Cratima%20for%20about%208%20months%2C%20but%20it%20was%20enough%20to%20remain%20good%20friends.%20Besides%20our%20beautiful%20collaboration%2C%20he%27s%20a%20very%20creative%20programmer%2C%20always%20with%20new%20and%20great%20ideas.%20As%20project%20manager%20I%20could%20admire%20his%20communication%20s" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Freveloper.com%2Fquotes%2Falina-buciu%2F&amp;title=Alina%20Buciu&amp;notes=I%20worked%20with%20Adrian%20at%20Cratima%20for%20about%208%20months%2C%20but%20it%20was%20enough%20to%20remain%20good%20friends.%20Besides%20our%20beautiful%20collaboration%2C%20he%27s%20a%20very%20creative%20programmer%2C%20always%20with%20new%20and%20great%20ideas.%20As%20project%20manager%20I%20could%20admire%20his%20communication%20s" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.designfloat.com/submit.php?url=http%3A%2F%2Freveloper.com%2Fquotes%2Falina-buciu%2F&amp;title=Alina%20Buciu" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/designfloat.png" class="sociable-img sociable-hovers" title="Design Float" alt="Design Float" /></a><a rel="nofollow" target="_blank"  href="http://www.friendfeed.com/share?title=Alina%20Buciu&amp;link=http%3A%2F%2Freveloper.com%2Fquotes%2Falina-buciu%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/friendfeed.png" class="sociable-img sociable-hovers" title="FriendFeed" alt="FriendFeed" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/reader/link?url=http%3A%2F%2Freveloper.com%2Fquotes%2Falina-buciu%2F&amp;title=Alina%20Buciu&amp;srcURL=http%3A%2F%2Freveloper.com%2Fquotes%2Falina-buciu%2F&amp;srcTitle=Reveloper+Revealing+web+solutions+that+grow+business" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/googlebuzz.png" class="sociable-img sociable-hovers" title="Google Buzz" alt="Google Buzz" /></a><a rel="nofollow" target="_blank"  href="http://reddit.com/submit?url=http%3A%2F%2Freveloper.com%2Fquotes%2Falina-buciu%2F&amp;title=Alina%20Buciu" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/reddit.png" class="sociable-img sociable-hovers" title="Reddit" alt="Reddit" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Freveloper.com%2Fquotes%2Falina-buciu%2F&amp;submitHeadline=Alina%20Buciu&amp;submitSummary=I%20worked%20with%20Adrian%20at%20Cratima%20for%20about%208%20months%2C%20but%20it%20was%20enough%20to%20remain%20good%20friends.%20Besides%20our%20beautiful%20collaboration%2C%20he%27s%20a%20very%20creative%20programmer%2C%20always%20with%20new%20and%20great%20ideas.%20As%20project%20manager%20I%20could%20admire%20his%20communication%20s&amp;submitCategory=science&amp;submitAssetType=text" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Freveloper.com%2Fquotes%2Falina-buciu%2F&amp;title=Alina%20Buciu&amp;source=Reveloper+Revealing+web+solutions+that+grow+business&amp;summary=I%20worked%20with%20Adrian%20at%20Cratima%20for%20about%208%20months%2C%20but%20it%20was%20enough%20to%20remain%20good%20friends.%20Besides%20our%20beautiful%20collaboration%2C%20he%27s%20a%20very%20creative%20programmer%2C%20always%20with%20new%20and%20great%20ideas.%20As%20project%20manager%20I%20could%20admire%20his%20communication%20s" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=Alina%20Buciu&amp;url=http%3A%2F%2Freveloper.com%2Fquotes%2Falina-buciu%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Freveloper.com%2Fquotes%2Falina-buciu%2F&amp;h=Alina%20Buciu" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/newsvine.png" class="sociable-img sociable-hovers" title="NewsVine" alt="NewsVine" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Freveloper.com%2Fquotes%2Falina-buciu%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><br/><br/><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Freveloper.com%2Fquotes%2Falina-buciu%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>]]></content:encoded>
			<wfw:commentRss>http://reveloper.com/quotes/alina-buciu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Medicover</title>
		<link>http://reveloper.com/news/medicover/</link>
		<comments>http://reveloper.com/news/medicover/#comments</comments>
		<pubDate>Wed, 03 Nov 2010 17:40:42 +0000</pubDate>
		<dc:creator>Adrian Salceanu</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://localhost/reveloper/website/?p=271</guid>
		<description><![CDATA[With a new cheerful and playful design, a new structure and a new content, Medicover is preparing to change the way we think about our health and the medical services. The upcoming website is targeting the dynamic, busy and informed customer, with easy to understand medical information, news, events and advices. <a href="http://reveloper.com/news/medicover/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h2>Description</h2>
<p>With a new cheerful and playful design, a new structure and a new content, Medicover is preparing to change the way we think about our health and the medical services. The upcoming website is targeting the dynamic, busy and informed customer, with easy to understand medical information, news, events and advices.</p>
<a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Freveloper.com%2Fnews%2Fmedicover%2F&amp;t=Medicover" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Medicover%20-%20http%3A%2F%2Freveloper.com%2Fnews%2Fmedicover%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Freveloper.com%2Fnews%2Fmedicover%2F&amp;title=Medicover" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Freveloper.com%2Fnews%2Fmedicover%2F&amp;title=Medicover&amp;bodytext=With%20a%20new%20cheerful%20and%20playful%20design%2C%20a%20new%20structure%20and%20a%20new%20content%2C%20Medicover%20is%20preparing%20to%20change%20the%20way%20we%20think%20about%20our%20health%20and%20the%20medical%20services.%20The%20upcoming%20website%20is%20targeting%20the%20dynamic%2C%20busy%20and%20informed%20customer%2C%20with%20easy%20to%20understand%20medical%20information%2C%20news%2C%20events%20and%20advices." ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Freveloper.com%2Fnews%2Fmedicover%2F&amp;title=Medicover&amp;notes=With%20a%20new%20cheerful%20and%20playful%20design%2C%20a%20new%20structure%20and%20a%20new%20content%2C%20Medicover%20is%20preparing%20to%20change%20the%20way%20we%20think%20about%20our%20health%20and%20the%20medical%20services.%20The%20upcoming%20website%20is%20targeting%20the%20dynamic%2C%20busy%20and%20informed%20customer%2C%20with%20easy%20to%20understand%20medical%20information%2C%20news%2C%20events%20and%20advices." ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.designfloat.com/submit.php?url=http%3A%2F%2Freveloper.com%2Fnews%2Fmedicover%2F&amp;title=Medicover" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/designfloat.png" class="sociable-img sociable-hovers" title="Design Float" alt="Design Float" /></a><a rel="nofollow" target="_blank"  href="http://www.friendfeed.com/share?title=Medicover&amp;link=http%3A%2F%2Freveloper.com%2Fnews%2Fmedicover%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/friendfeed.png" class="sociable-img sociable-hovers" title="FriendFeed" alt="FriendFeed" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/reader/link?url=http%3A%2F%2Freveloper.com%2Fnews%2Fmedicover%2F&amp;title=Medicover&amp;srcURL=http%3A%2F%2Freveloper.com%2Fnews%2Fmedicover%2F&amp;srcTitle=Reveloper+Revealing+web+solutions+that+grow+business" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/googlebuzz.png" class="sociable-img sociable-hovers" title="Google Buzz" alt="Google Buzz" /></a><a rel="nofollow" target="_blank"  href="http://reddit.com/submit?url=http%3A%2F%2Freveloper.com%2Fnews%2Fmedicover%2F&amp;title=Medicover" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/reddit.png" class="sociable-img sociable-hovers" title="Reddit" alt="Reddit" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Freveloper.com%2Fnews%2Fmedicover%2F&amp;submitHeadline=Medicover&amp;submitSummary=With%20a%20new%20cheerful%20and%20playful%20design%2C%20a%20new%20structure%20and%20a%20new%20content%2C%20Medicover%20is%20preparing%20to%20change%20the%20way%20we%20think%20about%20our%20health%20and%20the%20medical%20services.%20The%20upcoming%20website%20is%20targeting%20the%20dynamic%2C%20busy%20and%20informed%20customer%2C%20with%20easy%20to%20understand%20medical%20information%2C%20news%2C%20events%20and%20advices.&amp;submitCategory=science&amp;submitAssetType=text" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Freveloper.com%2Fnews%2Fmedicover%2F&amp;title=Medicover&amp;source=Reveloper+Revealing+web+solutions+that+grow+business&amp;summary=With%20a%20new%20cheerful%20and%20playful%20design%2C%20a%20new%20structure%20and%20a%20new%20content%2C%20Medicover%20is%20preparing%20to%20change%20the%20way%20we%20think%20about%20our%20health%20and%20the%20medical%20services.%20The%20upcoming%20website%20is%20targeting%20the%20dynamic%2C%20busy%20and%20informed%20customer%2C%20with%20easy%20to%20understand%20medical%20information%2C%20news%2C%20events%20and%20advices." ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=Medicover&amp;url=http%3A%2F%2Freveloper.com%2Fnews%2Fmedicover%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Freveloper.com%2Fnews%2Fmedicover%2F&amp;h=Medicover" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/newsvine.png" class="sociable-img sociable-hovers" title="NewsVine" alt="NewsVine" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Freveloper.com%2Fnews%2Fmedicover%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><br/><br/><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Freveloper.com%2Fnews%2Fmedicover%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>]]></content:encoded>
			<wfw:commentRss>http://reveloper.com/news/medicover/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reveloper</title>
		<link>http://reveloper.com/about/reveloper/</link>
		<comments>http://reveloper.com/about/reveloper/#comments</comments>
		<pubDate>Wed, 03 Nov 2010 13:39:55 +0000</pubDate>
		<dc:creator>Adrian Salceanu</dc:creator>
				<category><![CDATA[About]]></category>
		<category><![CDATA[reveloper]]></category>

		<guid isPermaLink="false">http://localhost/reveloper/website/?p=237</guid>
		<description><![CDATA[Reveloper represents over 20 years of cumulated development experience and more that 200 websites and web applications developed - resulting in the best managerial and coding practices that make the development process simple, fast, effective and cost-efficient. <a href="http://reveloper.com/about/reveloper/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Reveloper was created by <a href="/about/adrian-salceanu/">Adrian</a> after 10 years of continuous development experience, writing code for a wide range of companies and clients, from small agencies to large corporations and from IT specialists to travel agencies and sports betting affiliates.</p>
<p>It was born out of 2 guiding principles:</p>
<ul>
<li>genuine love for coding &#8211; for building wonders our of bits and bytes; and</li>
<li>responsibility and a profound respect for our clients.</li>
</ul>
<p>We&#8217;re a small team of dedicated developers that put their hearts into what they do &#8211; focused on delivering high quality, wonderful websites and web applications to premium customers.</p>
<p>With over 20 years of cumulated development experience and more that 200 websites and web applications developed, we have picked and applied the best managerial and coding practices to make the development process simple, fast, effective and cost-efficient.</p>
<p>We believe in honesty, perseverance and the power of creative thinking carried out through rigor. We are here to reveal web solutions that push the Internet forward.</p>
<a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Freveloper.com%2Fabout%2Freveloper%2F&amp;t=Reveloper" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Reveloper%20-%20http%3A%2F%2Freveloper.com%2Fabout%2Freveloper%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Freveloper.com%2Fabout%2Freveloper%2F&amp;title=Reveloper" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Freveloper.com%2Fabout%2Freveloper%2F&amp;title=Reveloper&amp;bodytext=Reveloper%20represents%20over%2020%20years%20of%20cumulated%20development%20experience%20and%20more%20that%20200%20websites%20and%20web%20applications%20developed%20-%20resulting%20in%20the%20best%20managerial%20and%20coding%20practices%20that%20make%20the%20development%20process%20simple%2C%20fast%2C%20effective%20and%20cost-efficient." ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Freveloper.com%2Fabout%2Freveloper%2F&amp;title=Reveloper&amp;notes=Reveloper%20represents%20over%2020%20years%20of%20cumulated%20development%20experience%20and%20more%20that%20200%20websites%20and%20web%20applications%20developed%20-%20resulting%20in%20the%20best%20managerial%20and%20coding%20practices%20that%20make%20the%20development%20process%20simple%2C%20fast%2C%20effective%20and%20cost-efficient." ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.designfloat.com/submit.php?url=http%3A%2F%2Freveloper.com%2Fabout%2Freveloper%2F&amp;title=Reveloper" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/designfloat.png" class="sociable-img sociable-hovers" title="Design Float" alt="Design Float" /></a><a rel="nofollow" target="_blank"  href="http://www.friendfeed.com/share?title=Reveloper&amp;link=http%3A%2F%2Freveloper.com%2Fabout%2Freveloper%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/friendfeed.png" class="sociable-img sociable-hovers" title="FriendFeed" alt="FriendFeed" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/reader/link?url=http%3A%2F%2Freveloper.com%2Fabout%2Freveloper%2F&amp;title=Reveloper&amp;srcURL=http%3A%2F%2Freveloper.com%2Fabout%2Freveloper%2F&amp;srcTitle=Reveloper+Revealing+web+solutions+that+grow+business" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/googlebuzz.png" class="sociable-img sociable-hovers" title="Google Buzz" alt="Google Buzz" /></a><a rel="nofollow" target="_blank"  href="http://reddit.com/submit?url=http%3A%2F%2Freveloper.com%2Fabout%2Freveloper%2F&amp;title=Reveloper" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/reddit.png" class="sociable-img sociable-hovers" title="Reddit" alt="Reddit" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Freveloper.com%2Fabout%2Freveloper%2F&amp;submitHeadline=Reveloper&amp;submitSummary=Reveloper%20represents%20over%2020%20years%20of%20cumulated%20development%20experience%20and%20more%20that%20200%20websites%20and%20web%20applications%20developed%20-%20resulting%20in%20the%20best%20managerial%20and%20coding%20practices%20that%20make%20the%20development%20process%20simple%2C%20fast%2C%20effective%20and%20cost-efficient.&amp;submitCategory=science&amp;submitAssetType=text" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Freveloper.com%2Fabout%2Freveloper%2F&amp;title=Reveloper&amp;source=Reveloper+Revealing+web+solutions+that+grow+business&amp;summary=Reveloper%20represents%20over%2020%20years%20of%20cumulated%20development%20experience%20and%20more%20that%20200%20websites%20and%20web%20applications%20developed%20-%20resulting%20in%20the%20best%20managerial%20and%20coding%20practices%20that%20make%20the%20development%20process%20simple%2C%20fast%2C%20effective%20and%20cost-efficient." ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=Reveloper&amp;url=http%3A%2F%2Freveloper.com%2Fabout%2Freveloper%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Freveloper.com%2Fabout%2Freveloper%2F&amp;h=Reveloper" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/newsvine.png" class="sociable-img sociable-hovers" title="NewsVine" alt="NewsVine" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Freveloper.com%2Fabout%2Freveloper%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><br/><br/><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Freveloper.com%2Fabout%2Freveloper%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>]]></content:encoded>
			<wfw:commentRss>http://reveloper.com/about/reveloper/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Internetics</title>
		<link>http://reveloper.com/portfolio/internetics-2/</link>
		<comments>http://reveloper.com/portfolio/internetics-2/#comments</comments>
		<pubDate>Thu, 28 Oct 2010 13:00:31 +0000</pubDate>
		<dc:creator>Adrian Salceanu</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[CakePHP]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://localhost/reveloper/website/?p=46</guid>
		<description><![CDATA[The 10th anniversary edition of Internetics - the most prestigious national festival for on-line branding, marketing and advertising. <a href="http://reveloper.com/portfolio/internetics-2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h2>Description</h2>
<p>Internetics is the most prestigious Romanian festival for on-line branding, marketing and advertising. <a rel="nofollow" href="http://www.internetics.ro" target="_blank">Internetics.ro</a> is a complex online application that that allows:</p>
<ul>
<li>agencies to register in the competition and submit their works (online payments included)</li>
<li>judges to view and evaluate the submitted works</li>
<li>users to stay updated with everything that&#8217;s going on in the festival</li>
<li>admins to control every piece of data on the site &#8211; from site copy, to agencies, to artworks and account creation</li>
</ul>
<h2>What have we done</h2>
<p>The client was celebrating the 10th aniversary of the festival and needed a new design to illustrate this special occasion. So we had the opportunity and the pleasure to work with <a rel="nofollow" href="http://rusubortun.ro" target="_blank">Rusu+Bortun Brand Growers</a> at implementing the new layout.</p>
<p>A vast number of functionalities were added in the backend in order to support the new features introduced by the new design or fix existing issues reported by admins.</p>
<p>The project has demonstrated our ability to work under a very tight schedule, with a very rigid deadline, using an existing undocumented codebase.</p>
<p>So if you are planning on redesigning or extending your website, <a href="/contact">contact us</a> &#8211; we can help!</p>
<h2>Technologies</h2>
<p>PHP, MySQL, CakePHP, jQuery, CSS font-embedding</p>
<a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Freveloper.com%2Fportfolio%2Finternetics-2%2F&amp;t=Internetics" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Internetics%20-%20http%3A%2F%2Freveloper.com%2Fportfolio%2Finternetics-2%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Freveloper.com%2Fportfolio%2Finternetics-2%2F&amp;title=Internetics" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Freveloper.com%2Fportfolio%2Finternetics-2%2F&amp;title=Internetics&amp;bodytext=The%2010th%20anniversary%20edition%20of%20Internetics%20-%20the%20most%20prestigious%20national%20festival%20for%20on-line%20branding%2C%20marketing%20and%20advertising." ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Freveloper.com%2Fportfolio%2Finternetics-2%2F&amp;title=Internetics&amp;notes=The%2010th%20anniversary%20edition%20of%20Internetics%20-%20the%20most%20prestigious%20national%20festival%20for%20on-line%20branding%2C%20marketing%20and%20advertising." ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.designfloat.com/submit.php?url=http%3A%2F%2Freveloper.com%2Fportfolio%2Finternetics-2%2F&amp;title=Internetics" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/designfloat.png" class="sociable-img sociable-hovers" title="Design Float" alt="Design Float" /></a><a rel="nofollow" target="_blank"  href="http://www.friendfeed.com/share?title=Internetics&amp;link=http%3A%2F%2Freveloper.com%2Fportfolio%2Finternetics-2%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/friendfeed.png" class="sociable-img sociable-hovers" title="FriendFeed" alt="FriendFeed" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/reader/link?url=http%3A%2F%2Freveloper.com%2Fportfolio%2Finternetics-2%2F&amp;title=Internetics&amp;srcURL=http%3A%2F%2Freveloper.com%2Fportfolio%2Finternetics-2%2F&amp;srcTitle=Reveloper+Revealing+web+solutions+that+grow+business" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/googlebuzz.png" class="sociable-img sociable-hovers" title="Google Buzz" alt="Google Buzz" /></a><a rel="nofollow" target="_blank"  href="http://reddit.com/submit?url=http%3A%2F%2Freveloper.com%2Fportfolio%2Finternetics-2%2F&amp;title=Internetics" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/reddit.png" class="sociable-img sociable-hovers" title="Reddit" alt="Reddit" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Freveloper.com%2Fportfolio%2Finternetics-2%2F&amp;submitHeadline=Internetics&amp;submitSummary=The%2010th%20anniversary%20edition%20of%20Internetics%20-%20the%20most%20prestigious%20national%20festival%20for%20on-line%20branding%2C%20marketing%20and%20advertising.&amp;submitCategory=science&amp;submitAssetType=text" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Freveloper.com%2Fportfolio%2Finternetics-2%2F&amp;title=Internetics&amp;source=Reveloper+Revealing+web+solutions+that+grow+business&amp;summary=The%2010th%20anniversary%20edition%20of%20Internetics%20-%20the%20most%20prestigious%20national%20festival%20for%20on-line%20branding%2C%20marketing%20and%20advertising." ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=Internetics&amp;url=http%3A%2F%2Freveloper.com%2Fportfolio%2Finternetics-2%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Freveloper.com%2Fportfolio%2Finternetics-2%2F&amp;h=Internetics" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/newsvine.png" class="sociable-img sociable-hovers" title="NewsVine" alt="NewsVine" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Freveloper.com%2Fportfolio%2Finternetics-2%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><br/><br/><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Freveloper.com%2Fportfolio%2Finternetics-2%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>]]></content:encoded>
			<wfw:commentRss>http://reveloper.com/portfolio/internetics-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rapid, cost efficient web development</title>
		<link>http://reveloper.com/services/web-development/</link>
		<comments>http://reveloper.com/services/web-development/#comments</comments>
		<pubDate>Thu, 28 Oct 2010 12:46:15 +0000</pubDate>
		<dc:creator>Adrian Salceanu</dc:creator>
				<category><![CDATA[Services]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[services]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://localhost/reveloper/website/?p=23</guid>
		<description><![CDATA[We develop high performance, fast, secure and highly available web sites - to assist you in connecting with your market and in converting visitors into loyal customers. We have streamlined our workflow to rapidly deliver cost efficient, business critical web sites and applications. Using free and OpenSource technologies, like PHP, MySQL and Apache, or Ruby on Rails. <a href="http://reveloper.com/services/web-development/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h2>Business critical websites and web applications</h2>
<p>The website &#8211; the main component of your online identity &#8211; is, above all, a sales and a marketing tool. You need it to be highly efficient, fast, secure and highly available &#8211; to assist you in connecting with your market and in converting visitors into loyal customers.</p>
<p>With a small and agile team with more than 20 years of cumulated web development experience, we have streamlined our workflow to rapidly deliver cost efficient, business critical web sites and applications. We are with you every step of the way, from understanding your business needs to revealing the optimal solutions and to successfully deploying your website.</p>
<h2>Programming languages and technologies</h2>
<p>We are strong believers and enthusiast supporters of free, OpenSource technologies. This way everybody benefits from unrestricted access to the best and the newest technologies and takes part in a large community of top developers.</p>
<p>But most importantly, we develop and deploy solutions for our clients using programming languages, servers and database systems that have proved their value for years and continually evolve and improve.</p>
<p>Our language of choice is <a rel="nofollow" href="http://php.net/" target="_blank">PHP</a> and most of the times &#8211; depending on the project&#8217;s specifics &#8211; we use a web application framework (we love <a rel="nofollow" href="http://codeigniter.com/" target="_blank">CodeIgniter</a> but we also like <a rel="nofollow" href="http://cakephp.org/" target="_blank">CakePHP</a>) to shorten development time and reduce costs.</p>
<p>For data storage we prefer <a rel="nofollow" href="http://www.mysql.com/" target="_blank">MySQL</a>, but for light applications or embedded systems we go with <a rel="nofollow" href="http://www.sqlite.org/" target="_blank">SQLite</a>.</p>
<p>When going mobile, we employ <a rel="nofollow" href="http://www.phonegap.com/" target="_blank">PhoneGap</a> &#8211; an amazing open source development framework for building cross-platform, native, mobile applications.</p>
<h2>Excellent performance with strong security</h2>
<p>We have built some very complex web applications that literally process hundreds of Gigabits of data daily and serve tens of thousands users. In order to achieve this level of performance, we have worked on each component &#8211; from hardware, using web servers load balancing with MySQL replication and PHP caching &#8211; to software, creating our own data and web caching systems.</p>
<p>But complex applications can also be vulnerable to all sorts of threats &#8211; and a security issue can affect a website, causing damage, from a small downtime to losing priceless data. We&#8217;ve seen many such attacks so we don&#8217;t take security for granted &#8211; that&#8217;s why we are CCNA certified and <a href="/about/adrian-salceanu/">Adrian</a> has a Masters degree in IT security.</p>
<h2>Request a quotation</h2>
<p>If you need a new website or if you plan on updating your current one &#8211; or if you are concerned with your site&#8217;s performance, <a href="/contact">contact us</a> and we will reveal the optimal solution for your scenario.</p>
<a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Freveloper.com%2Fservices%2Fweb-development%2F&amp;t=Rapid%2C%20cost%20efficient%20web%20development" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Rapid%2C%20cost%20efficient%20web%20development%20-%20http%3A%2F%2Freveloper.com%2Fservices%2Fweb-development%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Freveloper.com%2Fservices%2Fweb-development%2F&amp;title=Rapid%2C%20cost%20efficient%20web%20development" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Freveloper.com%2Fservices%2Fweb-development%2F&amp;title=Rapid%2C%20cost%20efficient%20web%20development&amp;bodytext=We%20develop%20high%20performance%2C%20fast%2C%20secure%20and%20highly%20available%20web%20sites%20-%20to%20assist%20you%20in%20connecting%20with%20your%20market%20and%20in%20converting%20visitors%20into%20loyal%20customers.%20We%20have%20streamlined%20our%20workflow%20to%20rapidly%20deliver%20cost%20efficient%2C%20business%20critical%20web%20sites%20and%20applications.%20Using%20free%20and%20OpenSource%20technologies%2C%20like%20PHP%2C%20MySQL%20and%20Apache%2C%20or%20Ruby%20on%20Rails." ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Freveloper.com%2Fservices%2Fweb-development%2F&amp;title=Rapid%2C%20cost%20efficient%20web%20development&amp;notes=We%20develop%20high%20performance%2C%20fast%2C%20secure%20and%20highly%20available%20web%20sites%20-%20to%20assist%20you%20in%20connecting%20with%20your%20market%20and%20in%20converting%20visitors%20into%20loyal%20customers.%20We%20have%20streamlined%20our%20workflow%20to%20rapidly%20deliver%20cost%20efficient%2C%20business%20critical%20web%20sites%20and%20applications.%20Using%20free%20and%20OpenSource%20technologies%2C%20like%20PHP%2C%20MySQL%20and%20Apache%2C%20or%20Ruby%20on%20Rails." ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.designfloat.com/submit.php?url=http%3A%2F%2Freveloper.com%2Fservices%2Fweb-development%2F&amp;title=Rapid%2C%20cost%20efficient%20web%20development" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/designfloat.png" class="sociable-img sociable-hovers" title="Design Float" alt="Design Float" /></a><a rel="nofollow" target="_blank"  href="http://www.friendfeed.com/share?title=Rapid%2C%20cost%20efficient%20web%20development&amp;link=http%3A%2F%2Freveloper.com%2Fservices%2Fweb-development%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/friendfeed.png" class="sociable-img sociable-hovers" title="FriendFeed" alt="FriendFeed" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/reader/link?url=http%3A%2F%2Freveloper.com%2Fservices%2Fweb-development%2F&amp;title=Rapid%2C%20cost%20efficient%20web%20development&amp;srcURL=http%3A%2F%2Freveloper.com%2Fservices%2Fweb-development%2F&amp;srcTitle=Reveloper+Revealing+web+solutions+that+grow+business" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/googlebuzz.png" class="sociable-img sociable-hovers" title="Google Buzz" alt="Google Buzz" /></a><a rel="nofollow" target="_blank"  href="http://reddit.com/submit?url=http%3A%2F%2Freveloper.com%2Fservices%2Fweb-development%2F&amp;title=Rapid%2C%20cost%20efficient%20web%20development" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/reddit.png" class="sociable-img sociable-hovers" title="Reddit" alt="Reddit" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Freveloper.com%2Fservices%2Fweb-development%2F&amp;submitHeadline=Rapid%2C%20cost%20efficient%20web%20development&amp;submitSummary=We%20develop%20high%20performance%2C%20fast%2C%20secure%20and%20highly%20available%20web%20sites%20-%20to%20assist%20you%20in%20connecting%20with%20your%20market%20and%20in%20converting%20visitors%20into%20loyal%20customers.%20We%20have%20streamlined%20our%20workflow%20to%20rapidly%20deliver%20cost%20efficient%2C%20business%20critical%20web%20sites%20and%20applications.%20Using%20free%20and%20OpenSource%20technologies%2C%20like%20PHP%2C%20MySQL%20and%20Apache%2C%20or%20Ruby%20on%20Rails.&amp;submitCategory=science&amp;submitAssetType=text" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Freveloper.com%2Fservices%2Fweb-development%2F&amp;title=Rapid%2C%20cost%20efficient%20web%20development&amp;source=Reveloper+Revealing+web+solutions+that+grow+business&amp;summary=We%20develop%20high%20performance%2C%20fast%2C%20secure%20and%20highly%20available%20web%20sites%20-%20to%20assist%20you%20in%20connecting%20with%20your%20market%20and%20in%20converting%20visitors%20into%20loyal%20customers.%20We%20have%20streamlined%20our%20workflow%20to%20rapidly%20deliver%20cost%20efficient%2C%20business%20critical%20web%20sites%20and%20applications.%20Using%20free%20and%20OpenSource%20technologies%2C%20like%20PHP%2C%20MySQL%20and%20Apache%2C%20or%20Ruby%20on%20Rails." ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=Rapid%2C%20cost%20efficient%20web%20development&amp;url=http%3A%2F%2Freveloper.com%2Fservices%2Fweb-development%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Freveloper.com%2Fservices%2Fweb-development%2F&amp;h=Rapid%2C%20cost%20efficient%20web%20development" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/newsvine.png" class="sociable-img sociable-hovers" title="NewsVine" alt="NewsVine" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Freveloper.com%2Fservices%2Fweb-development%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><br/><br/><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Freveloper.com%2Fservices%2Fweb-development%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>]]></content:encoded>
			<wfw:commentRss>http://reveloper.com/services/web-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Delightful user interfaces</title>
		<link>http://reveloper.com/services/web-based-user-interfaces/</link>
		<comments>http://reveloper.com/services/web-based-user-interfaces/#comments</comments>
		<pubDate>Thu, 28 Oct 2010 12:44:10 +0000</pubDate>
		<dc:creator>Adrian Salceanu</dc:creator>
				<category><![CDATA[Services]]></category>

		<guid isPermaLink="false">http://localhost/reveloper/website/?p=20</guid>
		<description><![CDATA[To efficiently deliver your information and interact with the visitors, we use modern techniques (like HTML 5 and CSS 3 with JavaScript) to develop engaging user experiences. This way we help your customers and your potential clients easily find what they need while enjoying every minute on your site. Regardless of browser, device or operating system. <a href="http://reveloper.com/services/web-based-user-interfaces/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h2>What is the user interface?</h2>
<p>The <a rel="nofollow" href="http://en.wikipedia.org/wiki/User_interface" target="_blank">user interface (UI)</a> is the combination between web design and web page functionalities. The combination between shape and function. As far as your site&#8217;s visitors are concerned, <strong>the interface is the website</strong>.</p>
<h2>What makes a good user interface (UI)?</h2>
<p>The UI is your potential client&#8217;s gateway to the information about your products and services. A good user interface should guide the visitor to the information she seeks &#8211; and do it by providing a seamless experience that combines an esthetically fulfilling visual, a logical flow of information and clean and beautiful interactions by using unobtrusive animations, transitions and visual effects.</p>
<p>A good user interface will efficiently inform your visitors and will successfully convert them from potential customers into loyal clients.</p>
<h2>Our approach</h2>
<p>In our opinion, the content is the king &#8211; the visuals must not interfere with the copy, but instead enhance it. That&#8217;s why our user interfaces are:</p>
<ul class="content-list">
<li>accessible and unobtrusive &#8211; we use a technique called <a rel="nofollow" href="http://en.wikipedia.org/wiki/Progressive_enhancement" target="_blank">progressive enhancement</a> which effectively makes the content available on any browser, device or operating system. This way you can rest assured that everybody can learn about your products or services and benefit from the best possible user experience.</li>
<li>standards compliant &#8211; we follow the W3C standards and this means that the websites we build will provide a consistent user experience now and in the following years, thus prolonging the life time of your investment and providing more value.</li>
</ul>
<p>We build visually and functionally rich web pages using (X)HTML and CSS (including HTML 5 and CSS 3) and JavaScript. We use all the modern techniques, such as font-embedding, CSS animations, JavaScript effects and of course <a rel="nofollow" href="http://en.wikipedia.org/wiki/Ajax_%28programming%29" target="_blank">AJAX</a>. Our JavaScript library of choice is <a rel="nofollow" href="http://jquery.com/" target="_blank">jQuery</a>.</p>
<h2>Find out more</h2>
<p>If you need a new website or if you already have one that was developed a few years ago, chances are it could use an interface update to take advantages of the modern techniques &#8211; to provide a better experience to your users and lead to better conversion rates for your business. <a href="/contact">Get in touch</a> with us and we will reveal the best solution to increase your website&#8217;s effectiveness.</p>
<a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Freveloper.com%2Fservices%2Fweb-based-user-interfaces%2F&amp;t=Delightful%20user%20interfaces" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Delightful%20user%20interfaces%20-%20http%3A%2F%2Freveloper.com%2Fservices%2Fweb-based-user-interfaces%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Freveloper.com%2Fservices%2Fweb-based-user-interfaces%2F&amp;title=Delightful%20user%20interfaces" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Freveloper.com%2Fservices%2Fweb-based-user-interfaces%2F&amp;title=Delightful%20user%20interfaces&amp;bodytext=To%20efficiently%20deliver%20your%20information%20and%20interact%20with%20the%20visitors%2C%20we%20use%20modern%20techniques%20%28like%20HTML%205%20and%20CSS%203%20with%20JavaScript%29%20to%20develop%20engaging%20user%20experiences.%20This%20way%20we%20help%20your%20customers%20and%20your%20potential%20clients%20easily%20find%20what%20they%20need%20while%20enjoying%20every%20minute%20on%20your%20site.%20Regardless%20of%20browser%2C%20device%20or%20operating%20system." ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Freveloper.com%2Fservices%2Fweb-based-user-interfaces%2F&amp;title=Delightful%20user%20interfaces&amp;notes=To%20efficiently%20deliver%20your%20information%20and%20interact%20with%20the%20visitors%2C%20we%20use%20modern%20techniques%20%28like%20HTML%205%20and%20CSS%203%20with%20JavaScript%29%20to%20develop%20engaging%20user%20experiences.%20This%20way%20we%20help%20your%20customers%20and%20your%20potential%20clients%20easily%20find%20what%20they%20need%20while%20enjoying%20every%20minute%20on%20your%20site.%20Regardless%20of%20browser%2C%20device%20or%20operating%20system." ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.designfloat.com/submit.php?url=http%3A%2F%2Freveloper.com%2Fservices%2Fweb-based-user-interfaces%2F&amp;title=Delightful%20user%20interfaces" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/designfloat.png" class="sociable-img sociable-hovers" title="Design Float" alt="Design Float" /></a><a rel="nofollow" target="_blank"  href="http://www.friendfeed.com/share?title=Delightful%20user%20interfaces&amp;link=http%3A%2F%2Freveloper.com%2Fservices%2Fweb-based-user-interfaces%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/friendfeed.png" class="sociable-img sociable-hovers" title="FriendFeed" alt="FriendFeed" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/reader/link?url=http%3A%2F%2Freveloper.com%2Fservices%2Fweb-based-user-interfaces%2F&amp;title=Delightful%20user%20interfaces&amp;srcURL=http%3A%2F%2Freveloper.com%2Fservices%2Fweb-based-user-interfaces%2F&amp;srcTitle=Reveloper+Revealing+web+solutions+that+grow+business" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/googlebuzz.png" class="sociable-img sociable-hovers" title="Google Buzz" alt="Google Buzz" /></a><a rel="nofollow" target="_blank"  href="http://reddit.com/submit?url=http%3A%2F%2Freveloper.com%2Fservices%2Fweb-based-user-interfaces%2F&amp;title=Delightful%20user%20interfaces" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/reddit.png" class="sociable-img sociable-hovers" title="Reddit" alt="Reddit" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Freveloper.com%2Fservices%2Fweb-based-user-interfaces%2F&amp;submitHeadline=Delightful%20user%20interfaces&amp;submitSummary=To%20efficiently%20deliver%20your%20information%20and%20interact%20with%20the%20visitors%2C%20we%20use%20modern%20techniques%20%28like%20HTML%205%20and%20CSS%203%20with%20JavaScript%29%20to%20develop%20engaging%20user%20experiences.%20This%20way%20we%20help%20your%20customers%20and%20your%20potential%20clients%20easily%20find%20what%20they%20need%20while%20enjoying%20every%20minute%20on%20your%20site.%20Regardless%20of%20browser%2C%20device%20or%20operating%20system.&amp;submitCategory=science&amp;submitAssetType=text" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Freveloper.com%2Fservices%2Fweb-based-user-interfaces%2F&amp;title=Delightful%20user%20interfaces&amp;source=Reveloper+Revealing+web+solutions+that+grow+business&amp;summary=To%20efficiently%20deliver%20your%20information%20and%20interact%20with%20the%20visitors%2C%20we%20use%20modern%20techniques%20%28like%20HTML%205%20and%20CSS%203%20with%20JavaScript%29%20to%20develop%20engaging%20user%20experiences.%20This%20way%20we%20help%20your%20customers%20and%20your%20potential%20clients%20easily%20find%20what%20they%20need%20while%20enjoying%20every%20minute%20on%20your%20site.%20Regardless%20of%20browser%2C%20device%20or%20operating%20system." ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=Delightful%20user%20interfaces&amp;url=http%3A%2F%2Freveloper.com%2Fservices%2Fweb-based-user-interfaces%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.newsvine.com/_tools/seed&amp;save?u=http%3A%2F%2Freveloper.com%2Fservices%2Fweb-based-user-interfaces%2F&amp;h=Delightful%20user%20interfaces" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/newsvine.png" class="sociable-img sociable-hovers" title="NewsVine" alt="NewsVine" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Freveloper.com%2Fservices%2Fweb-based-user-interfaces%2F" ><img src="http://reveloper.com/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><br/><br/><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Freveloper.com%2Fservices%2Fweb-based-user-interfaces%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>]]></content:encoded>
			<wfw:commentRss>http://reveloper.com/services/web-based-user-interfaces/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced

Served from: reveloper.com @ 2012-05-19 11:44:18 -->
