<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>IT/e-business/programming</title>
	<atom:link href="http://ebusy.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ebusy.wordpress.com</link>
	<description>Come N get e-Busy</description>
	<lastBuildDate>Tue, 07 Oct 2008 08:25:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='ebusy.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>IT/e-business/programming</title>
		<link>http://ebusy.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://ebusy.wordpress.com/osd.xml" title="IT/e-business/programming" />
	<atom:link rel='hub' href='http://ebusy.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Do not unnecessary load session or other scopes</title>
		<link>http://ebusy.wordpress.com/2008/10/07/do-not-overload-session-or-other-scopes/</link>
		<comments>http://ebusy.wordpress.com/2008/10/07/do-not-overload-session-or-other-scopes/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 08:23:45 +0000</pubDate>
		<dc:creator>ebusy</dc:creator>
				<category><![CDATA[Programming (generic)]]></category>
		<category><![CDATA[overload scope]]></category>
		<category><![CDATA[session application scopes]]></category>

		<guid isPermaLink="false">http://ebusy.wordpress.com/?p=102</guid>
		<description><![CDATA[Scenario: settings file: database_conn = instantiate.object session_scope.conn_obj = database_conn or application_scope.conn_obj = database_conn or others script file: object.init(application_scope.conn_obj) You should not do that. It&#8217;s easy, indeed, because you can forget now about where and how is defined the object and you always have it handy in your application/session/other scope. BUT you will load your scope [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ebusy.wordpress.com&amp;blog=4702178&amp;post=102&amp;subd=ebusy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Scenario:</p>
<p><strong><em>settings file:<br />
</em></strong><span style="color:#0000ff;">database_conn                     = instantiate.object</span><br />
<span style="color:#0000ff;">session_scope.conn_obj      = database_conn</span> <strong>or</strong><br />
<span style="color:#0000ff;">application_scope.conn_obj = database_conn</span> <strong>or others</strong></p>
<p><em><strong>script file:</strong></em><br />
<span style="color:#0000ff;">object.init(application_scope.conn_obj)</span></p>
<p>You should not do that. It&#8217;s easy, indeed, because you can forget now about where and how is defined the object and you always have it handy in your application/session/other scope. BUT you will load your scope with unnecessary data and it&#8217;s a bad practice.</p>
<p>Instead, you should give the objects/variables as arguments wherever you need (in a good <a title="MVC frameworks" href="http://ebusy.wordpress.com/2008/09/11/programming-frameworks-mvc/" target="_blank">MVC framework</a> you need to do things only once as in the module controller or settings file).</p>
<p><span style="color:#0000ff;">object.init(</span><span style="color:#0000ff;">database_conn)</span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ebusy.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ebusy.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ebusy.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ebusy.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ebusy.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ebusy.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ebusy.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ebusy.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ebusy.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ebusy.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ebusy.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ebusy.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ebusy.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ebusy.wordpress.com/102/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ebusy.wordpress.com&amp;blog=4702178&amp;post=102&amp;subd=ebusy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ebusy.wordpress.com/2008/10/07/do-not-overload-session-or-other-scopes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5b3870d7fac5f8455636953a41309088?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">ebusy</media:title>
		</media:content>
	</item>
		<item>
		<title>Fusebox framework &#8211; some cons</title>
		<link>http://ebusy.wordpress.com/2008/09/30/fusebox-framework-some-cons/</link>
		<comments>http://ebusy.wordpress.com/2008/09/30/fusebox-framework-some-cons/#comments</comments>
		<pubDate>Tue, 30 Sep 2008 11:24:08 +0000</pubDate>
		<dc:creator>ebusy</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[fusebox cons]]></category>
		<category><![CDATA[manual]]></category>
		<category><![CDATA[poor documentation]]></category>

		<guid isPermaLink="false">http://ebusy.wordpress.com/?p=99</guid>
		<description><![CDATA[As a newcomer to ColdFusion you will quickly find out that Fusebox is your framework. It&#8217;s the oldest and the best CF framework out there. It&#8217;s easy to put your hands on the last Fusebox core release, which is 5.5 the moment I&#8217;m writing this post. But the next step is to learn it. So [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ebusy.wordpress.com&amp;blog=4702178&amp;post=99&amp;subd=ebusy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As a newcomer to ColdFusion you will quickly find out that Fusebox is your framework. It&#8217;s the oldest and the best CF framework out there.</p>
<p>It&#8217;s easy to put your hands on the last Fusebox core release, which is 5.5 the moment I&#8217;m writing this post. But the next step is to learn it. So you search for the manual, tutorials, articles. And you find a poor official documentation and many commercial online articles and books. It&#8217;s somewhat frustrating and a feeling of old and deja-vu overhelm you. It&#8217;s years since others popular products have entered the free and open knowledge communities era. At least the manual should be a much more better one because the users knowledge is rated at a high price.</p>
<p>Another con is the difference between versions with poor organized documentation. I&#8217;ve seen a company portfolio with several projects built on Fusebox3, 4 and 5. The newcomers junior programmers were dizzy switching from one to another by rights.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ebusy.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ebusy.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ebusy.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ebusy.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ebusy.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ebusy.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ebusy.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ebusy.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ebusy.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ebusy.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ebusy.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ebusy.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ebusy.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ebusy.wordpress.com/99/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ebusy.wordpress.com&amp;blog=4702178&amp;post=99&amp;subd=ebusy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ebusy.wordpress.com/2008/09/30/fusebox-framework-some-cons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5b3870d7fac5f8455636953a41309088?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">ebusy</media:title>
		</media:content>
	</item>
		<item>
		<title>Multi rows generating with &#8220;select from dual&#8221;</title>
		<link>http://ebusy.wordpress.com/2008/09/30/multi-rows-generating-with-select-from-dual/</link>
		<comments>http://ebusy.wordpress.com/2008/09/30/multi-rows-generating-with-select-from-dual/#comments</comments>
		<pubDate>Tue, 30 Sep 2008 10:50:28 +0000</pubDate>
		<dc:creator>ebusy</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[connect by lots rows]]></category>
		<category><![CDATA[multi rows generating]]></category>

		<guid isPermaLink="false">http://ebusy.wordpress.com/?p=89</guid>
		<description><![CDATA[Sometimes you may need to get some rows out of your magic hat. So, what&#8217;s the trick? Ebusy had the need this morning to filter a &#8220;select&#8221; query to only the last 6 months. Of course there are several possibilities to do this, but because I needed to keep all the last six months even [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ebusy.wordpress.com&amp;blog=4702178&amp;post=89&amp;subd=ebusy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sometimes you may need to get some rows out of your magic hat. So, what&#8217;s the trick? Ebusy had the need this morning to filter a &#8220;select&#8221; query to only the last 6 months. Of course there are several possibilities to do this, but because I needed to keep all the last six months even if there were no records for each of them, I chose to do a right join with a &#8220;last six months generating&#8221; query.</p>
<p>So, you don&#8217;t need a table with months. You only need to correctly generate them from DUAL.</p>
<p><strong><span style="color:#0000ff;">SELECT TO_CHAR (ADD_MONTHS (TRUNC (SYSDATE, &#8216;MM&#8217;), -1 * LEVEL), &#8216;MONTH&#8217; ) months<br />
FROM DUAL<br />
CONNECT BY LEVEL &lt;= 6</span></strong></p>
<p>MONTHS<br />
&#8212;&#8212;&#8212;&#8212;&#8211;<br />
AUGUST<br />
JULY<br />
JUNE<br />
MAY<br />
APRIL<br />
MARCH</p>
<p>The output, as you can see, is the last 6 months for a September current month. If you need last 6 months including current month:</p>
<p><strong><span style="color:#0000ff;">SELECT TO_CHAR (ADD_MONTHS ( ADD_MONTHS(TRUNC (SYSDATE, &#8216;MM&#8217;), 1), -1 * LEVEL), &#8216;MONTH&#8217; ) months<br />
FROM DUAL<br />
CONNECT BY LEVEL &lt;= 6</span></strong></p>
<p>MONTHS<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
SEPTEMBER<br />
AUGUST<br />
JULY<br />
JUNE<br />
MAY<br />
APRIL</p>
<p>Of course, you may output the dates as you wish (as you need), this is a &#8220;months&#8221; example. Now, why did I need this?</p>
<p><strong>SELECT how_many_books, last_six_months.month per_month FROM<br />
(<br />
(SELECT count(book_id) how_many_books, month FROM books GROUP BY month) books_per_month<br />
RIGHT JOIN<br />
(</strong><strong><span style="color:#0000ff;">SELECT TO_CHAR (ADD_MONTHS ( ADD_MONTHS(TRUNC (SYSDATE, &#8216;MM&#8217;), 1), -1 * LEVEL), &#8216;MONTH&#8217; ) month<br />
FROM DUAL<br />
CONNECT BY LEVEL &lt;= 6</span>) last_six_months<br />
ON last_six_months.month = books_per_month.month<br />
)</strong></p>
<p>how_many_books | per_month<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
0    |  SEPTEMBER<br />
24  |  AUGUST<br />
3    |  JULY<br />
0    |  JUNE<br />
12  |  MAY<br />
9    |  APRIL</p>
<p>As you can see I did a right join without needing another table.</p>
<p>Although it&#8217;s easy to use CONNECT BY for generating lots of rows, you <strong>should do it safely</strong>. It&#8217;s memory consuming (and it&#8217;s not the workarea memory, therefore the normal PGA size restriction constraints like PGA_AGGREGATE_TARGET don’t apply) and for more complex queries (with more rows) you should use cartesian merge joins. Please read more on <a href="http://blog.tanelpoder.com/2008/06/08/generating-lots-of-rows-using-connect-by-safely/" target="_blank">http://blog.tanelpoder.com/2008/06/08/generating-lots-of-rows-using-connect-by-safely/</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ebusy.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ebusy.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ebusy.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ebusy.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ebusy.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ebusy.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ebusy.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ebusy.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ebusy.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ebusy.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ebusy.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ebusy.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ebusy.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ebusy.wordpress.com/89/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ebusy.wordpress.com&amp;blog=4702178&amp;post=89&amp;subd=ebusy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ebusy.wordpress.com/2008/09/30/multi-rows-generating-with-select-from-dual/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5b3870d7fac5f8455636953a41309088?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">ebusy</media:title>
		</media:content>
	</item>
		<item>
		<title>Google &#8211; user generated/managed search results?</title>
		<link>http://ebusy.wordpress.com/2008/09/16/google-user-generated-managed-search-results/</link>
		<comments>http://ebusy.wordpress.com/2008/09/16/google-user-generated-managed-search-results/#comments</comments>
		<pubDate>Tue, 16 Sep 2008 08:38:57 +0000</pubDate>
		<dc:creator>ebusy</dc:creator>
				<category><![CDATA[e-Business]]></category>
		<category><![CDATA[generated search results]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google new features]]></category>
		<category><![CDATA[managed search results]]></category>

		<guid isPermaLink="false">http://ebusy.wordpress.com/?p=78</guid>
		<description><![CDATA[There are rumours on this one since a couple of years. But it&#8217;s more than rumours because Google is testing &#8220;an experiment that lets you comment on search results and move them around on the result page&#8221; (Ben Gomes, Distinguished Engineer, Google blog link). What do you think, should we expect this feature to be [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ebusy.wordpress.com&amp;blog=4702178&amp;post=78&amp;subd=ebusy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There are rumours on this one since a couple of years. But it&#8217;s more than rumours because Google is testing &#8220;<em>an experiment that lets you comment on search results and move them around on the result page</em>&#8221; (Ben Gomes, Distinguished Engineer, <a href="http://googleblog.blogspot.com/2008/08/search-experiments-large-and-small.html" target="_blank">Google blog link</a>).</p>
<div id="attachment_79" class="wp-caption alignnone" style="width: 410px"><img class="size-full wp-image-79" title="gomes_6" src="http://ebusy.files.wordpress.com/2008/09/gomes_6.gif?w=480" alt="user managed search results at Google"   /><p class="wp-caption-text">User managed search results at Google</p></div>
<p>What do you think, should we expect this feature to be public soon? My opinion is negative as the experience shows us we cannot rely on user generated/managed content without heavy supervising or strong and complex filtering/management software robots. Especially when it&#8217;s about very large projects like Google&#8217;s search engine. I&#8217;m pretty sure that this will be a late feature and much different from what we understand it to be today. Of course, a quick release could be the usual &#8220;client side management&#8221; feature which means the user will affect the search results on his side/account only (without needing a real login account, based on cookies, temps, sessions, ip etc, you know what I mean <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ).</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ebusy.wordpress.com/78/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ebusy.wordpress.com/78/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ebusy.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ebusy.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ebusy.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ebusy.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ebusy.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ebusy.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ebusy.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ebusy.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ebusy.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ebusy.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ebusy.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ebusy.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ebusy.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ebusy.wordpress.com/78/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ebusy.wordpress.com&amp;blog=4702178&amp;post=78&amp;subd=ebusy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ebusy.wordpress.com/2008/09/16/google-user-generated-managed-search-results/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5b3870d7fac5f8455636953a41309088?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">ebusy</media:title>
		</media:content>

		<media:content url="http://ebusy.files.wordpress.com/2008/09/gomes_6.gif" medium="image">
			<media:title type="html">gomes_6</media:title>
		</media:content>
	</item>
		<item>
		<title>Programming frameworks &#8211; MVC</title>
		<link>http://ebusy.wordpress.com/2008/09/11/programming-frameworks-mvc/</link>
		<comments>http://ebusy.wordpress.com/2008/09/11/programming-frameworks-mvc/#comments</comments>
		<pubDate>Thu, 11 Sep 2008 15:36:31 +0000</pubDate>
		<dc:creator>ebusy</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming (generic)]]></category>
		<category><![CDATA[mvc frameworks]]></category>
		<category><![CDATA[programming frameworks]]></category>

		<guid isPermaLink="false">http://ebusy.wordpress.com/?p=73</guid>
		<description><![CDATA[If you have no ideea what MVC (Model-View-Controller) is about please read here, here, here and/or here. When you start-up as a programmer, no matter what language, you first learn iterative programming, then your teacher learns about recursive programming and he shows to you and you are both happy, then you hurry up to do [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ebusy.wordpress.com&amp;blog=4702178&amp;post=73&amp;subd=ebusy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you have no ideea what MVC (Model-View-Controller) is about please read <a href="http://en.wikipedia.org/wiki/Model-view-controller" target="_blank">here</a>, <a href="http://www.enode.com/x/markup/tutorial/mvc.html" target="_blank">here</a>, <a href="http://www.oreillynet.com/onlamp/blog/2007/06/what_is_mvc.html" target="_blank">here</a> and/or <a href="http://www.querycat.com/faq/ccbec5d346d62f9c44e2a9bee0ff1b22" target="_blank">here</a>.</p>
<p>When you start-up as a programmer, no matter what language, you first learn iterative programming, then your teacher learns about recursive programming and he shows to you and you are both happy, then you hurry up to do <a href="http://en.wikipedia.org/wiki/Spaghetti_code" target="_blank">spaghetti</a> programming for tens of projects, then your five years younger neighbour tells you about structured programming and you start to spend weeks on adjusting your projects code, and later you read about OOP in a cookbook and you delete all your projects to start new ones <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>From the beginning of his career the programmer tries to design and improve nice and efficient <a href="http://en.wikipedia.org/wiki/Software_framework" target="_blank">frameworks</a>. Depending on the programming language the frameworks have different characteristics, of course, therefore you can&#8217;t use the exactly same framework characteristics.</p>
<p>But, as general programming behavior, I&#8217;d like to propose some guidelines regarding frameworks:</p>
<ul>
<li><strong>Try as much as possible to build/choose MVC frameworks from the beginning for your applications</strong></li>
<li><strong>Though we don&#8217;t like too much theory learning, read and learn about the  MVC notions and specialists&#8217; articles</strong> in order to improve your architecture logic; you may be surprised to find out that most of the time your application may run faster or be easier to maintain if you do the right customization, even if it&#8217;s related to one module of your application only</li>
<li><strong>If it&#8217;s working and it suits your projects, your team is using it and you&#8217;ve already built the documentation,  stick to it.</strong> Don&#8217;t try to change the projects&#8217; frameworks on the fly, especially when you have a team using it. It takes lot of time and many issues keeps popping up, trust me. You should only change the framework if it&#8217;s bad from the beginning and it can&#8217;t be improved.</li>
<li><strong>Try to choose/buy from the beginning a good framework that suits your needs.</strong> There are so many frameworks for almost all programming languages that it&#8217;s almost impossible not to find a suitable one. Learn the choosed one, they usually come with good manuals, and adjust it as you wish. It always takes less time and money. Just remember, if you have very complex projects that need too much  out-of-the-box-framework customization for power and speed improvement (web big projects usually do), you might be considering as well to start you framework from scratch.</li>
</ul>
<p>MVC frameworks examples: <a href="http://cakephp.org/" target="_blank">CakePHP</a> (php), <a href="http://www.fusebox.org/" target="_blank">FuseBox</a> (coldfusion, php), <a href="http://www.ibm.com/developerworks/library/j-struts/" target="_blank">Struts</a> (java), <a href="http://www.springframework.org/" target="_blank">Spring</a> (java) and many others (just google).</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ebusy.wordpress.com/73/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ebusy.wordpress.com/73/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ebusy.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ebusy.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ebusy.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ebusy.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ebusy.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ebusy.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ebusy.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ebusy.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ebusy.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ebusy.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ebusy.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ebusy.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ebusy.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ebusy.wordpress.com/73/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ebusy.wordpress.com&amp;blog=4702178&amp;post=73&amp;subd=ebusy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ebusy.wordpress.com/2008/09/11/programming-frameworks-mvc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5b3870d7fac5f8455636953a41309088?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">ebusy</media:title>
		</media:content>
	</item>
		<item>
		<title>Internet slang should have DYC!</title>
		<link>http://ebusy.wordpress.com/2008/09/10/internet-slang-should-have-dyc/</link>
		<comments>http://ebusy.wordpress.com/2008/09/10/internet-slang-should-have-dyc/#comments</comments>
		<pubDate>Wed, 10 Sep 2008 11:12:22 +0000</pubDate>
		<dc:creator>ebusy</dc:creator>
				<category><![CDATA[Programming (generic)]]></category>
		<category><![CDATA[comment code]]></category>
		<category><![CDATA[document your code]]></category>
		<category><![CDATA[programming best practice]]></category>

		<guid isPermaLink="false">http://ebusy.wordpress.com/?p=67</guid>
		<description><![CDATA[Document Your Code! Document Your Code! Document Your Code! Internet slang should accept the DYC (or DYFC if you&#8217;re very angry) acronym. I&#8217;m going nut when I have to take over or to debug someone&#8217;s else UNCOMMENTED or poor commented code. I will write a tutorial on how one should comment and document his/her applications&#8217; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ebusy.wordpress.com&amp;blog=4702178&amp;post=67&amp;subd=ebusy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Document Your Code! Document Your Code! Document Your Code!</p>
<p><a href="http://en.wikipedia.org/wiki/Internet_slang" target="_blank">Internet slang</a> should accept the DYC (or DYFC if you&#8217;re very angry) acronym. I&#8217;m going nut when I have to take over or to debug someone&#8217;s else UNCOMMENTED or poor commented code. I will write a tutorial on how one should comment and document his/her applications&#8217; code.</p>
<p>So, please DYC!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ebusy.wordpress.com/67/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ebusy.wordpress.com/67/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ebusy.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ebusy.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ebusy.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ebusy.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ebusy.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ebusy.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ebusy.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ebusy.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ebusy.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ebusy.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ebusy.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ebusy.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ebusy.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ebusy.wordpress.com/67/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ebusy.wordpress.com&amp;blog=4702178&amp;post=67&amp;subd=ebusy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ebusy.wordpress.com/2008/09/10/internet-slang-should-have-dyc/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5b3870d7fac5f8455636953a41309088?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">ebusy</media:title>
		</media:content>
	</item>
		<item>
		<title>CERN &#8211; science to the limit</title>
		<link>http://ebusy.wordpress.com/2008/09/10/cern-science-to-the-limit/</link>
		<comments>http://ebusy.wordpress.com/2008/09/10/cern-science-to-the-limit/#comments</comments>
		<pubDate>Wed, 10 Sep 2008 10:56:57 +0000</pubDate>
		<dc:creator>ebusy</dc:creator>
				<category><![CDATA[Et Cetera (English)]]></category>
		<category><![CDATA[cern]]></category>
		<category><![CDATA[humankind evolution]]></category>
		<category><![CDATA[science]]></category>

		<guid isPermaLink="false">http://ebusy.wordpress.com/?p=64</guid>
		<description><![CDATA[Last days the press went crazy. The CERN experiment is the topic of the day and we have hundreds of doomsday scenarios. Like the 2K virus, but now it&#8217;s more juicy, with so many scientifically hypothesises full of buzzwords I am personally happy with hi-tech science experiments. Of course, only when I know there is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ebusy.wordpress.com&amp;blog=4702178&amp;post=64&amp;subd=ebusy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Last days the press went crazy. The CERN experiment is the topic of the day and we have hundreds of doomsday scenarios. Like the 2K virus, but now it&#8217;s more juicy, with so many scientifically hypothesises full of buzzwords <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I am personally happy with hi-tech science experiments. Of course, only when I know there is an army of hi-IQ professionals scientists to supervise <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  That&#8217;s because I believe the mankind evolution is based half on science half on spirit <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  And I think it&#8217;s time to improve our material world, so goooo science.</p>
<p><a href="http://ebusy.files.wordpress.com/2008/09/5095611_thw.jpg"><img class="aligncenter size-full wp-image-65" title="crazy science" src="http://ebusy.files.wordpress.com/2008/09/5095611_thw.jpg?w=480" alt="crazy science" /></a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ebusy.wordpress.com/64/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ebusy.wordpress.com/64/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ebusy.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ebusy.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ebusy.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ebusy.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ebusy.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ebusy.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ebusy.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ebusy.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ebusy.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ebusy.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ebusy.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ebusy.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ebusy.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ebusy.wordpress.com/64/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ebusy.wordpress.com&amp;blog=4702178&amp;post=64&amp;subd=ebusy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ebusy.wordpress.com/2008/09/10/cern-science-to-the-limit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5b3870d7fac5f8455636953a41309088?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">ebusy</media:title>
		</media:content>

		<media:content url="http://ebusy.files.wordpress.com/2008/09/5095611_thw.jpg" medium="image">
			<media:title type="html">crazy science</media:title>
		</media:content>
	</item>
		<item>
		<title>PHP 6.0 peek (unknown release date)</title>
		<link>http://ebusy.wordpress.com/2008/09/08/php-60-peek-unknown-release-date/</link>
		<comments>http://ebusy.wordpress.com/2008/09/08/php-60-peek-unknown-release-date/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 13:24:38 +0000</pubDate>
		<dc:creator>ebusy</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[php 6.0]]></category>
		<category><![CDATA[php news]]></category>
		<category><![CDATA[php6]]></category>

		<guid isPermaLink="false">http://ebusy.wordpress.com/?p=62</guid>
		<description><![CDATA[It&#8217;s long since we&#8217;ve had the first inside info about the 6th version of PHP. Actually, the very first time I heard about PHP 6 was back in 1999, long before good old PHP 4.3.0 (http://cvs.php.net/viewvc.cgi/php-src/NEWS?view=markup) This Mid Octomber we will have the PHP 5.3.0 release. No word on the PHP6 release date, so we [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ebusy.wordpress.com&amp;blog=4702178&amp;post=62&amp;subd=ebusy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s long since we&#8217;ve had the first inside info about the 6th version of PHP. Actually, the very first time I heard about PHP 6 was back in 1999, long before good old PHP 4.3.0 <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  (<a href="http://cvs.php.net/viewvc.cgi/php-src/NEWS?view=markup">http://cvs.php.net/viewvc.cgi/php-src/NEWS?view=markup</a>)</p>
<p>This Mid Octomber we will have the PHP 5.3.0 release. No word on the PHP6 release date, so we still have to wait.  But the news is that PHP 5.3.0 will already have some of the 6th release announced features/improvements (namespace support, improved XML support through use of XMLReader and XMLWriter, SOAP support and others). So no Unicode support yet and you may still play with ereg (you have more time to switch to preg_match, hurry up <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  )</p>
<p>If you want to peek (again?) on what we&#8217;ll have in the PHP 6.0, I have some quick picks for you:</p>
<p><a href="http://php.net/~derick/meeting-notes.html" target="_blank">http://php.net/~derick/meeting-notes.html</a><br />
<a href="http://www.ibm.com/developerworks/opensource/library/os-php-future/" target="_blank">http://www.ibm.com/developerworks/opensource/library/os-php-future/</a><br />
<a href="http://www.phpro.org/articles/PHP6-Preview.html" target="_blank">http://www.phpro.org/articles/PHP6-Preview.html</a><br />
<a href="http://snaps.php.net/" target="_blank">http://snaps.php.net/</a> (php 6 snapshot, developer build)</p>
<p>PS: but of course, we already have the PHP 6 book <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  (<a href="http://www.amazon.co.uk/gp/product/032152599X/ref=cm_cr_pr_product_top" target="_blank">http://www.amazon.co.uk/gp/product/032152599X/ref=cm_cr_pr_product_top</a>)</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ebusy.wordpress.com/62/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ebusy.wordpress.com/62/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ebusy.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ebusy.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ebusy.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ebusy.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ebusy.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ebusy.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ebusy.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ebusy.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ebusy.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ebusy.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ebusy.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ebusy.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ebusy.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ebusy.wordpress.com/62/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ebusy.wordpress.com&amp;blog=4702178&amp;post=62&amp;subd=ebusy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ebusy.wordpress.com/2008/09/08/php-60-peek-unknown-release-date/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5b3870d7fac5f8455636953a41309088?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">ebusy</media:title>
		</media:content>
	</item>
		<item>
		<title>boring social networks</title>
		<link>http://ebusy.wordpress.com/2008/09/06/boring-social-networks/</link>
		<comments>http://ebusy.wordpress.com/2008/09/06/boring-social-networks/#comments</comments>
		<pubDate>Sat, 06 Sep 2008 11:58:26 +0000</pubDate>
		<dc:creator>ebusy</dc:creator>
				<category><![CDATA[e-Business]]></category>
		<category><![CDATA[Et Cetera (English)]]></category>
		<category><![CDATA[social networks]]></category>

		<guid isPermaLink="false">http://ebusy.wordpress.com/?p=55</guid>
		<description><![CDATA[Is there any single day without a new social network website launch? How many are still to come? I&#8217;m getting bored of this trend. And when they ask you all your email accounts and passwords, what you eat in the morning, your shoes size and so on, I&#8217;m really starting to dislike what an original [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ebusy.wordpress.com&amp;blog=4702178&amp;post=55&amp;subd=ebusy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Is there any single day without a new social network website launch? How many are still to come? I&#8217;m getting bored of this trend. And when they ask you all your email accounts and passwords, what you eat in the morning, your shoes size and so on, I&#8217;m really starting to dislike what an original great ideea has become.</p>
<p>There are THE social networks and 98% copycats.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ebusy.wordpress.com/55/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ebusy.wordpress.com/55/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ebusy.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ebusy.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ebusy.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ebusy.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ebusy.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ebusy.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ebusy.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ebusy.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ebusy.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ebusy.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ebusy.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ebusy.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ebusy.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ebusy.wordpress.com/55/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ebusy.wordpress.com&amp;blog=4702178&amp;post=55&amp;subd=ebusy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ebusy.wordpress.com/2008/09/06/boring-social-networks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5b3870d7fac5f8455636953a41309088?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">ebusy</media:title>
		</media:content>
	</item>
		<item>
		<title>e-Business romanesc: content si servicii supraestimate?</title>
		<link>http://ebusy.wordpress.com/2008/09/05/e-business-romanesc-content-si-servicii-supraestimate/</link>
		<comments>http://ebusy.wordpress.com/2008/09/05/e-business-romanesc-content-si-servicii-supraestimate/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 15:54:12 +0000</pubDate>
		<dc:creator>ebusy</dc:creator>
				<category><![CDATA[e-Business]]></category>
		<category><![CDATA[romania online e-business]]></category>
		<category><![CDATA[romanian e-business]]></category>
		<category><![CDATA[romanian online market]]></category>

		<guid isPermaLink="false">http://ebusy.wordpress.com/?p=48</guid>
		<description><![CDATA[Ma intreb daca nu cumva efervescenta din web-ul romanesc nu este putin fortata. De ceva timp se tot aud, periodic, voci si opinii exclamative legate de animatia si boom-ul pietei romanesti de online. De 2-3 ani asistam la anunturi pline de entuziasm ale agentiilor de publicitate si ale regiilor jucatoare (dezvoltatoare). &#8220;Anul 2007 va fi [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ebusy.wordpress.com&amp;blog=4702178&amp;post=48&amp;subd=ebusy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ma intreb daca nu cumva efervescenta din web-ul romanesc nu este putin fortata. De ceva timp se tot aud, periodic, voci si opinii exclamative legate de animatia si boom-ul pietei romanesti de online.</p>
<p>De 2-3 ani asistam la anunturi pline de entuziasm ale agentiilor de publicitate si ale regiilor jucatoare (dezvoltatoare). &#8220;Anul 2007 va fi marcat de o explozie a pietei, ca la imobiliare la inceputul anilor 2000&#8243;, &#8220;anul 2008 va fi anul tranzactiilor si proiectelor spectaculoase&#8221;, &#8220;veniturile din publicitate online vor urca prin tavan&#8221; etc. Si totusi, ca utilizator obisnuit, nu observi decat cateva miscari legate de relansari, re-brand-uiri, redesenari, adica aproape acelasi continut in alte forme sau culori noi si ceva mai multa interactivitate. Parca tot timpul esti pus in garda ca vei experimenta cat de curand noi orizonturi iar acestea nu prea isi fac aparitia <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p><span id="more-48"></span></p>
<p>Sa se datoreze faptului ca ni se insufla asteptari mai mari, motiv pentru care rezultatul ne este indiferent sau ne dezamageste? Sau ne intindem singuri capcana unui bubble in care ne supraevaluam activitatile si rezultatele?</p>
<p>Cele mai mari miscari in onlineul romanesc vin din 2 directii:</p>
<p style="padding-left:30px;">- <strong>intarirea plus extinderea sustinuta a pozitiilor existente in online ale jucatoriilor mari din massmedia</strong> (MediaPro, Realitatea-Catavencu, Ringier etc)</p>
<p style="padding-left:30px;"><strong>-</strong> <strong>preluarea si duplicarea unor servicii si aplicatii existente</strong> (si de cele mai multe ori arhicunoscute, pe segmente saturate)</p>
<p>Asadar nu avem dezvoltari extraordinare, idei inovatoare sau servicii noi si complexe. Mai degraba pluteste senzatia nerabdarii dezvoltatorilor si a publicitarilor ca piata sa creasca o data de la sine iar preturile sa se alinieze la cele occidentale pentru produsele existente. Din fericire pentru ei ii ajuta apetitul pentru internet al romanilor si cresterea conexiunilor, dovada fiind cresterea traficului in general si a veniturilor din publicitate pe aproape acelasi volum de unitati in productie, insa asteptarile unora ca numai user-generated content sa ii umple de bani sunt mai mult decat hilare.</p>
<p>Au loc unele tranzactii si se lanseaza infinit mai multe speculatii, legate de achizitii si manifestari de interes la preturi deosebite din partea unor jucatori mari externi. Insa majoritatea raman doar speculatii. Sau wishful things, cum este situatia pentru produse ca okazii.ro, acasa.ro si multe altele ce se supraevalueaza si asteapta Google sau eBay sa ii imbogateasca. Iar restul de tranzactii care se concretizeaza sunt obiectul unor investitii de asemenea speculative, in asteptare cresterii pietii si a profitului de exit.</p>
<p>Nu pot decat sa banuiesc ca la un moment dat cineva sau mai multi intreprinzatori cu dorinta si pasiune pentru e-business vor da cu adevarat trezirea, iar toti ceilalti care umbla cu cifre si vesnice relansari ori sa renunte sau sa vanda la un pret realist, mult sub ce pretind la ora actuala, ori sa puna gaz in rezervoare si sa intre in business cu adevarat. S-a intamplat in alte tari, o sa se intample si la noi.</p>
<p>Iar atunci nu pot decat sa ma gandesc la piata de resurse umane deficitara <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  Dar asta intr-un episod viitor</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ebusy.wordpress.com/48/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ebusy.wordpress.com/48/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ebusy.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ebusy.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ebusy.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ebusy.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ebusy.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ebusy.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ebusy.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ebusy.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ebusy.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ebusy.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ebusy.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ebusy.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ebusy.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ebusy.wordpress.com/48/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ebusy.wordpress.com&amp;blog=4702178&amp;post=48&amp;subd=ebusy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ebusy.wordpress.com/2008/09/05/e-business-romanesc-content-si-servicii-supraestimate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5b3870d7fac5f8455636953a41309088?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=PG" medium="image">
			<media:title type="html">ebusy</media:title>
		</media:content>
	</item>
	</channel>
</rss>
