<?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>Karmona Pragmatic Blog &#187; Software</title>
	<atom:link href="http://blog.karmona.com/index.php/category/software/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.karmona.com</link>
	<description>Pragmatic Software Management, Internet Trends, Life and more...</description>
	<lastBuildDate>Wed, 14 Jul 2010 19:40:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Code Review Movie</title>
		<link>http://blog.karmona.com/index.php/2009/12/13/code-review-movie/</link>
		<comments>http://blog.karmona.com/index.php/2009/12/13/code-review-movie/#comments</comments>
		<pubDate>Sun, 13 Dec 2009 18:17:10 +0000</pubDate>
		<dc:creator>Moti Karmona &#124; מוטי קרמונה</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Mercury]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Software Management]]></category>

		<guid isPermaLink="false">http://blog.karmona.com/?p=585</guid>
		<description><![CDATA[
I have found this &#8220;old&#8221; movie we made back in 2002 during my work at Mercury to &#8220;educate&#8221; new employees on our code review procedure.
p.s. Raz Yalov was nominated for best supporting actor that year ;)
Enjoy&#8230;
************************************************************************
I have also copy-pasted the presentation transcript below&#8230;

The Golden Rules of Code Review

Do a self-review first
Stick to the requirements
If you [...]]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/olCVHBPZvwM&amp;hl=en_US&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/olCVHBPZvwM&amp;hl=en_US&amp;fs=1&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>I have found this &#8220;old&#8221; movie we made back in 2002 during my work at Mercury to &#8220;educate&#8221; new employees on our code review procedure.</p>
<p>p.s. Raz Yalov was nominated for best <strong>supporting </strong>actor that year ;)</p>
<p>Enjoy&#8230;</p>
<p>************************************************************************</p>
<p>I have also copy-pasted the presentation transcript below&#8230;</p>
<ul>
<li><strong>The Golden Rules of Code Review</strong>
<ul>
<li>Do a self-review first</li>
<li>Stick to the requirements</li>
<li>If you need to explain it, document it!</li>
<li>It’s about the code &#8211; not about you!</li>
<li>Unit testing</li>
</ul>
</li>
<li><strong>Do a self-review first</strong>
<ul>
<li>Have you checked all extreme cases?</li>
<li>Is your solution KISS?</li>
<li>Is your code self-explanatory?</li>
<li>Check it as if it was written by someone else</li>
<li>Ask yourself the questions you think you are about to be asked…</li>
</ul>
</li>
<li><strong>Keep It Simple Stupid&#8230;</strong></li>
<li><strong>Stick to the requirements</strong>
<ul>
<li>Make sure all aspects of the requirements are filled</li>
<li>Make sure you have tested both trivial and extreme cases</li>
<li>Document all thoughts and limitations in the code</li>
<li>Reference the requirements documents from your code</li>
<li>I18N – make sure the code supports multilingual capability where needed</li>
</ul>
</li>
<li><strong>Documentation</strong>
<ul>
<li>Document your files and your functions</li>
<li>Give informative comments</li>
<li>Explain the logic behind your decisions</li>
<li>If you did something that is not logical or intuitive, explain why</li>
<li>If you learned historical info while learning the code, document it (be creative :)</li>
<li>Follow a standard documentation format</li>
<li>When possible, use known design patterns and document the design pattern you chose</li>
</ul>
</li>
<li><strong>Unit Testing</strong>
<ul>
<li>Make sure your unit test is part of the change</li>
<li>If you can’t automate the test, check-in a manual procedure to run it</li>
<li>Make sure all aspects of the requirements are covered by the tests</li>
<li>Document all the tests you wanted to do but couldn’t</li>
<li>Test the I18N behavior of your code</li>
</ul>
</li>
<li><strong>The Code Review Life Cycle</strong>
<ul>
<li>“Self-review” your code</li>
<li>Schedule a code review</li>
<li>Schedule enough time for both people involved</li>
<li>When possible, schedule for a time during the morning</li>
<li>Split  the review into a few sessions, if needed</li>
<li>Switch your mind to “listener” mode</li>
<li>Write down all comments</li>
<li>After the code review is done, apply the necessary fixes and schedule a second review if needed</li>
<li>Check-in your changes</li>
</ul>
</li>
<li><strong>Code Review Tips</strong>
<ul>
<li>When you program, remember the last code review</li>
<li>If you disagree with the reviewer, invite a 3rd person to review and decide</li>
<li>In special cases, invite special guests to review your code</li>
<li>When change is small/simple/intuitive, do an &#8220;e-review” by mailing your change to the reviewer(s)</li>
<li>When self-reviewing, fix mistakes on the spot&#8230; :)</li>
</ul>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.karmona.com/index.php/2009/12/13/code-review-movie/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>High Level Design Review Check-List</title>
		<link>http://blog.karmona.com/index.php/2009/12/12/high-level-design-review-check-list/</link>
		<comments>http://blog.karmona.com/index.php/2009/12/12/high-level-design-review-check-list/#comments</comments>
		<pubDate>Sat, 12 Dec 2009 17:07:54 +0000</pubDate>
		<dc:creator>Moti Karmona &#124; מוטי קרמונה</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://blog.karmona.com/?p=573</guid>
		<description><![CDATA[This is my recommended check-list for high level design review.
***********************************************************************
*** keep it simple and make sure it answers all the requirements ***
***********************************************************************


Reverify your Requirements

Functional specification, use cases and requirements are clear and publicly documented
Technical Requirements
Performance requirements
Security requirements
Resources (CPU, Memory, Storage, IO) consumptions limits
Audit requirements
Out of scope &#8211; What does the component NOT do?  What NOT support?
Future [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.karmona.com/wp-content/uploads/2009/12/dilbert.jpg"><img class="alignleft size-thumbnail wp-image-574" title="Dilbert in a Meeting" src="http://blog.karmona.com/wp-content/uploads/2009/12/dilbert-150x150.jpg" alt="Dilbert in a Design Review Meeting" width="150" height="150" align="left" /></a>This is my recommended check-list for high level design review.</p>
<p>***********************************************************************<br />
<strong>*** keep it simple and make sure it answers all the requirements ***</strong><br />
***********************************************************************<br />
<br/><br/></p>
<ul>
<li>Reverify your Requirements
<ul>
<li>Functional specification, use cases and requirements are clear and publicly documented</li>
<li>Technical Requirements</li>
<li>Performance requirements</li>
<li>Security requirements</li>
<li>Resources (CPU, Memory, Storage, IO) consumptions limits</li>
<li>Audit requirements</li>
<li>Out of scope &#8211; What does the component NOT do?  What NOT support?</li>
<li>Future extendibility of the component (options for future extension, generic features etc.)</li>
</ul>
</li>
<li>High Level Design
<ul>
<li>Main components involved</li>
<li>Main Data flows</li>
<li>Components and sub-systems and how they relate to the component</li>
<li>Which sub-systems does it communicate with (e.g. Relation Façade)</li>
<li>Communication mechanisms (e.g. HTTP, WCF)</li>
<li>Which subsystems it is dependent on (e.g. Database, Gigaspaces) – What are the requirements?</li>
<li>Which sub-systems depend on it (e.g. App.) – What is the expectation?</li>
</ul>
</li>
<li>Architectural Strategy
<ul>
<li>High availability and load balancing</li>
<li>Error detection, fault and recovery</li>
<li>Logging and statistics gathering</li>
<li>Capacity limitation, planning &amp; resource management:
<ul>
<li>Memory consumption and management policies</li>
<li>CPU usage management</li>
<li>IO requirements</li>
<li>Storage requirement</li>
</ul>
</li>
</ul>
</li>
<li>Technical Assumptions
<ul>
<li>Limitations</li>
<li>Compromises
<ul>
<li>What does this design compromise? (Security, high availability, capacity, performance, quality&#8230;)</li>
<li>What are the engineering tradeoffs of this design, and why was the current design chosen?</li>
</ul>
</li>
<li>Risks and weak points</li>
</ul>
</li>
<li>Operation
<ul>
<li>Backward compatibility</li>
<li>Logging and Monitoring</li>
<li>Administration issues</li>
<li>Deployment issues:
<ul>
<li>How to deploy (e.g. can it be part of the regular release package?)</li>
<li>Required downtime?</li>
<li>Deployment risks?</li>
<li>Rollback capability</li>
</ul>
</li>
</ul>
</li>
<li>Testing strategy
<ul>
<li>What to focus on (80/20)</li>
<li>Functional test plan review</li>
<li>Deployment, environments, and setups</li>
<li>Fault and recovery</li>
<li>Load and capacity planning</li>
</ul>
</li>
<li>Execution plan (phases, timeline, milestones, critical path, dependencies etc.)</li>
</ul>
<p>Please comment if you think I  forgot something&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.karmona.com/index.php/2009/12/12/high-level-design-review-check-list/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Chubby Hubby</title>
		<link>http://blog.karmona.com/index.php/2009/08/10/chubby-hubby/</link>
		<comments>http://blog.karmona.com/index.php/2009/08/10/chubby-hubby/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 05:15:41 +0000</pubDate>
		<dc:creator>Moti Karmona &#124; מוטי קרמונה</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[People]]></category>
		<category><![CDATA[Peopleware]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://blog.karmona.com/?p=556</guid>
		<description><![CDATA[
Recently, I have encountered an interesting paper (2006) about Chubby &#8211; Google&#8217;s (Paxos based) distributed lock service.
I was especially amazed by the observations made on the Google engineering capabilities and mindset inside a &#8220;formal&#8221; research publication.
Although one can easily get into a cynical state of mind reading this paper&#8230; I feel that this &#8220;pragmatic view&#8221; which combines [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.karmona.com/wp-content/uploads/2009/08/chubby_hubby.gif"><img class="alignleft size-full wp-image-557" title="Chubby Hubby" src="http://blog.karmona.com/wp-content/uploads/2009/08/chubby_hubby.gif" alt="Chubby Hubby" width="150" height="180" align="left" /></a></p>
<p>Recently, I have encountered an <a title="The Chubby Lock Service for Loosely-Coupled Distributed Systems" href="http://labs.google.com/papers/chubby.html">interesting paper</a> (2006) about Chubby &#8211; Google&#8217;s (<a title="Paxos Made Simple" href="http://research.microsoft.com/en-us/um/people/lamport/pubs/pubs.html#paxos-simple">Paxos</a> based) distributed lock service.<br />
I was especially amazed by the observations made on the Google engineering capabilities and mindset inside a &#8220;formal&#8221; research publication.</p>
<p>Although one can easily get into a cynical state of mind reading this paper&#8230; I feel that this &#8220;pragmatic view&#8221; which combines a deep architectural and algorithmic know-how with keen understanding of the social factor in software development is exactly the key to create legendary software.</p>
<p>Anyway, very well written &#8211; highly recommended reading…</p>
<p>*** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***</p>
<p><em>&#8220;Our developers <span style="color: #ff0000;">sometimes do not plan for high availability in the way one would wish</span>. Often their systems start as prototypes with little load and loose availability guarantees; invariably the code has not been specially structured for use with a consensus protocol. As the service matures and gains clients, availability becomes more important; replication and primary election are then added to an existing design.&#8221;</em></p>
<p><em>&#8220;Developers are often <span style="color: #ff0000;">unable to predict how their services will be used in the future</span>, and how use will grow.  A module written by one team may be reused a year later by another team with disastrous results &#8230; <span style="color: #ff0000;">O</span><span style="color: #ff0000;">ther developers may be less aware of the cost of an RPC</span>.&#8221;</em></p>
<p><em>&#8220;<span style="color: #ff0000;">Despite attempts at education</span>, our developers regularly write loops that retry indefinitely when a file is not present, or poll a file by opening it and closing it repeatedly when one might expect they would open the file just once.&#8221;<br />
</em></p>
<p><em>&#8220;<span style="color: #ff0000;">Developers rarely consider availability. We find that our developers rarely think about failure probabilit<span style="color: #ff0000;">ies</span></span><span style="color: #ff0000;">.</span>&#8220;</em></p>
<p><em>&#8220;<span style="color: #ff0000;">Developers also fail to appreciate the difference between a service being up, and that service being available to their applications.</span>&#8220;</em></p>
<p><em>&#8220;Unfortunately, <span style="color: #ff0000;">many developers chose to crash their applications on receiving [a failover] event</span>, thus decreasing the availability of their systems substantially&#8221;</em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.karmona.com/index.php/2009/08/10/chubby-hubby/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google-App-Engine Development Environment</title>
		<link>http://blog.karmona.com/index.php/2008/11/21/google-app-engine-development-environment/</link>
		<comments>http://blog.karmona.com/index.php/2008/11/21/google-app-engine-development-environment/#comments</comments>
		<pubDate>Fri, 21 Nov 2008 18:36:43 +0000</pubDate>
		<dc:creator>Moti Karmona &#124; מוטי קרמונה</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://blog.karmona.com/?p=271</guid>
		<description><![CDATA[
&#8220;You can always start a weekend experiment but you can never know how it will end&#8221;  (Moti Karmona, 2008 ;)
I was very curios and wanted to take the GAE for a quick test drive but the Google documentation have few inaccuracies and isn&#8217;t sufficient if it is your first Python encounter so I lost three [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.karmona.com/wp-content/uploads/2008/11/google_app_engine.png"><img class="alignleft size-thumbnail wp-image-272" style="margin: 5px; float: left;" title="Google App Engine" src="http://blog.karmona.com/wp-content/uploads/2008/11/google_app_engine-150x150.png" alt="google app engine 150x150 Google App Engine Development Environment " width="150" height="150" /></a></p>
<p><em>&#8220;You can always start a weekend experiment but you can never know how it will end&#8221;  (Moti Karmona, 2008 ;)</em></p>
<p>I was very curios and wanted to take the GAE for a quick test drive but the Google documentation have few inaccuracies and isn&#8217;t sufficient if it is your first Python encounter so I lost three hours of precious beauty sleep and compiled this blog-post-capsule for future generations.</p>
<p>How to setup your <a title="GAE Development Environment" href="http://code.google.com/appengine/docs/gettingstarted/devenvironment.html">development environment</a> to work with <a title="What is Google App Engine" href="http://code.google.com/appengine/docs/whatisgoogleappengine.html">Google-App-Engine</a> </p>
<ul>
<li>Get yourself a <a title="GAE" href="http://appengine.google.com/">GAE Account</a>  </li>
<li>Install <a title="Download GAE " href="http://code.google.com/appengine/downloads.html">Google App Engine SDK</a>, <a title="Download Python" href="http://www.python.org/download/">Python</a> and <a title="Download Eclipse" href="http://www.eclipse.org/downloads/">Eclipse</a>.</li>
<li>Install the PyDev Eclipse extension
<ul>
<li>Help &#8211;&gt; Software Updates &#8211;&gt; Available Software &#8211;&gt; Add the http://pydev.sourceforge.net/updates site &#8211;&gt; Install it &#8211;&gt; Restart Eclipse</li>
<li>Configure Eclipse to use the Python interpreter by navigating to Window &#8211;&gt; Preferences &#8211;&gt; PyDev &#8211;&gt; Interpreter &#8211;&gt; Python &#8211;&gt; New and select the location of <em>python.exe</em> on your system</li>
</ul>
</li>
<li>Create your first project
<ul>
<li>File &#8211;&gt; New &#8211;&gt; PyDev project and click next &#8211;&gt; Name your project and make sure Python 2.5 is selected.  </li>
<li>Add necessary App Engine libraries to your project | Right click your Project folder &#8211;&gt; Properties &#8211;&gt; PyDev – PythonPath (see image below)
<ul>
<li><em>C:\Program Files\Google\google_appengine</em></li>
<li><em>C:\Program Files\Google\google_appengine\lib\django</em></li>
<li><em>C:\Program Files\Google\google_appengine\lib\webob</em></li>
<li><em>C:\Program Files\Google\google_appengine\lib\yaml\lib</em></li>
</ul>
</li>
</ul>
</li>
</ul>
<p><a href="http://blog.karmona.com/wp-content/uploads/2008/11/add_gae_sdk_to_eclipse.jpg"><img class="alignnone size-full wp-image-273" title="Add GAE SDK to Eclipse" src="http://blog.karmona.com/wp-content/uploads/2008/11/add_gae_sdk_to_eclipse.jpg" alt="add gae sdk to eclipse Google App Engine Development Environment " width="500" height="364" /></a></p>
<ul>
<li>Create your project files (e.g. <a title="GAE HelloWorld" href="http://code.google.com/appengine/docs/gettingstarted/helloworld.html">GAE examples</a>)
<ul>
<li>app.yaml  </li>
</ul>
<ul>
<li>Your first python file </li>
</ul>
</li>
<li>Test your Local application
<ul>
<li>Update your Run configuration (see image below)
<ul>
<li>Change the Main Module field to <em>C:\Program Files\Google\google appengine\dev_appserver.py</em></li>
<li>On the Arguments tab, type in <em>&#8220;${project_loc}/src&#8221;</em> </li>
<li>Name this configuration and click apply and click run.</li>
</ul>
</li>
<li>Open http://localhost:8080 with your browser and enojoy your stupid app :)</li>
</ul>
</li>
</ul>
<p><a href="http://blog.karmona.com/wp-content/uploads/2008/11/gae_eclipse_run_configuration.jpg"><img class="alignnone size-full wp-image-274" title="GAE Eclipse Run Configuration" src="http://blog.karmona.com/wp-content/uploads/2008/11/gae_eclipse_run_configuration.jpg" alt="gae eclipse run configuration Google App Engine Development Environment " width="500" height="313" /></a></p>
<ul>
<li><a title="Uploading your code to GAE" href="http://code.google.com/appengine/docs/gettingstarted/uploading.html">Upload your code to Google App Engine </a>
<ul>
<li>Open a command prompt and navigate to your application directory.</li>
<li>Type <em>appcfg.py &#8211;email=yourgmailaccount@gmail.com update src\ </em></li>
<li>To publish code within Eclipse, open Run &#8211;&gt; Run configurations and make a copy of your previous run configuration.  Change the Main Module to <em>appcfg.py</em>, and change the argument tab to <em>&#8211;email=yourgmailaccount@gmail.com update &#8221;${project_loc}/src&#8221;</em></li>
<li>Your code is now live! Test it by going to http://yourapp.appspot.com</li>
</ul>
</li>
</ul>
<p>Enjoy :)</p>
<p> </p>
<p> </p>
<p>P.S. More about the framework in future posts.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.karmona.com/index.php/2008/11/21/google-app-engine-development-environment/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Yahoo Open Strategy</title>
		<link>http://blog.karmona.com/index.php/2008/10/28/yahoo-open-strategy/</link>
		<comments>http://blog.karmona.com/index.php/2008/10/28/yahoo-open-strategy/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 23:54:59 +0000</pubDate>
		<dc:creator>Moti Karmona &#124; מוטי קרמונה</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Disruptive Technology]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://blog.karmona.com/?p=235</guid>
		<description><![CDATA[Yahoo have released the Y!OS (Yahoo Open Strategy) 1.0 platform.
This is a cool set of simple APIs that can give you access to everything you ever wanted in Y! but was afraid to ask for&#8230;
Yahoo! Social Platform (YSP)
// The Yahoo Social Platform is a set of RESTful APIs for Profiles, Connections, Updates, Contacts and Status.
Yahoo! [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.karmona.com/wp-content/uploads/2008/10/yos_diagram.jpg"><img class="alignleft size-thumbnail wp-image-236" style="float: left;" title="Y!OS" src="http://blog.karmona.com/wp-content/uploads/2008/10/yos_diagram-150x150.jpg" alt="yos diagram 150x150 Yahoo Open Strategy" width="150" height="150" /></a>Yahoo have <a title="Y!OS 1.0 Launch" href="http://developer.yahoo.net/blog/archives/2008/10/yos_10_launch.html">released</a> the <a title="Y!OS Introduction" href="http://developer.yahoo.com/yos/intro/index.html">Y!OS</a> (Yahoo Open Strategy) 1.0 platform.</p>
<p>This is a cool set of simple APIs that can give you access to everything you ever wanted in Y! but was afraid to ask for&#8230;</p>
<p><strong>Yahoo! Social Platform</strong> (<a title="YSP | Y! Social Platform" href="http://developer.yahoo.com/social/">YSP</a>)<br />
<span style="color: #008000;">// The Yahoo Social Platform is a set of RESTful APIs for Profiles, Connections, Updates, Contacts and Status.</span></p>
<p><strong>Yahoo! Query Language</strong> (<a title="YQL | Y! Query Language" href="http://developer.yahoo.com/yql/docs/">YQL</a>)<br />
<span style="color: #008000;">// The Yahoo Query Language is a web service that functions much like SQL (see example below)</span></p>
<p><strong>OAuth Authentication</strong><br />
<span style="color: #008000;">// OAuth is the authentication and authorization standard Yahoo has decided to use when giving third parties access to Yahoo user data.</span></p>
<p><strong>Yahoo! Applications Platform </strong>(<a title="YAP | Y! Application Platform" href="http://developer.yahoo.com/yap/guide/">YAP</a>)<br />
<span style="color: #008000;">// Currently very limited and in a restricted sandbox.</span></p>
<p>________________________________</p>
<p><strong>Example: How to use YQL APIs to access MyBlogLog profiles?</strong></p>
<p>Simply ask for all the community members of MyBlogLog community with this YQL:</p>
<p><em>select * from mybloglog.members.find where community_id in (select id from mybloglog.community.find where name=&#8221;Karmona Pragmatic Blog&#8221;) </em></p>
<p>And once you have the IDs you can ask for my personal profile by:</p>
<p><em>select * from mybloglog.member where member_id =&#8221;2008070609482910&#8243; </em><span style="color: #008000;"></span><br />
<a title="YQL Console" href="http://developer.yahoo.com/yql/console/"></a></p>
<p>Well… together with the existing <a title="Y! BOSS API" href="http://developer.yahoo.com/search/boss/">BOSS API,</a> this set of APIs is a powerful enablers to the Y! development network and I am sure some cool stuff are going to emerge from this innovative move…</p>
<p>Amazing!!!</p>
<p>________________________________</p>
<p>* You can have more YQL experiments using the <a title="YQL Console" href="http://developer.yahoo.com/yql/console/">YQL Console</a></p>
<p>** <a title="BOSS HACK Day | 2008" href="http://developer.yahoo.net/blog/archives/2008/10/boss_hack_day_h.html">Boss Hack Day</a> is coming to Tel-Aviv | November 6, 2008 @ Feature (!!!)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.karmona.com/index.php/2008/10/28/yahoo-open-strategy/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Chronicle of a Death Foretold</title>
		<link>http://blog.karmona.com/index.php/2007/09/20/chronicle-of-a-death-foretold/</link>
		<comments>http://blog.karmona.com/index.php/2007/09/20/chronicle-of-a-death-foretold/#comments</comments>
		<pubDate>Thu, 20 Sep 2007 20:32:13 +0000</pubDate>
		<dc:creator>Moti Karmona &#124; מוטי קרמונה</dc:creator>
				<category><![CDATA[Agile]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[Planning]]></category>
		<category><![CDATA[Project Management]]></category>
		<category><![CDATA[Scrum]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Software Management]]></category>

		<guid isPermaLink="false">http://blog.karmona.com/index.php/2007/09/20/chronicle-of-a-death-foretold/</guid>
		<description><![CDATA[Chronicle of a Death Foretold = Waterfall Shmoterfall = Checkmate in 10 moves
 * Note: I did see, participate and lead some successful waterfall projects (mainly due to some adoption of agile methodologies ;-) and this is my view of the projects which failed…

Release scoping start with marketing high-level-copy-paste-from-last-year-marketing-presentations MRD in ~1 month delay
1 month [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.karmona.com/wp-content/uploads/2007/09/waterfall.jpg" title="Chronicle of a Death Foretold = Waterfall Shmoterfall = Checkmate in 10 moves"><img src="http://blog.karmona.com/wp-content/uploads/2007/09/waterfall.thumbnail.jpg" title="Chronicle of a Death Foretold=Waterfall Shmoterfall=Checkmate in 10 moves" alt="Chronicle of a Death Foretold=Waterfall Shmoterfall=Checkmate in 10 moves" align="left" /></a><strong>Chronicle of a Death Foretold = Waterfall Shmoterfall = Checkmate in 10 moves</strong><br />
<em> * Note: I did see, participate and lead some successful waterfall projects (mainly due to some adoption of agile methodologies ;-) and this is my view of the projects which failed…</em></p>
<ol>
<li>Release scoping start with marketing high-level-copy-paste-from-last-year-marketing-presentations MRD in ~1 month delay</li>
<li>1 month of quick lets-write-all-the-features-we-can PRD – This is also the last time you hear from the product manager until the next milestone-demo-crisis.</li>
<li>High level design for a couple of weeks which sum-up to a Very Rough Time Guesstimate a.k.a. VeRTiGo</li>
<li>Release time-frame is set ~1 year ahead with the needed VeRTiGo &#8220;squeezing&#8221; and high level time-frame is determined:
<ul>
<li>2 months of the waste above and last release leftover</li>
<li>1-2 months of Planning (functional and technical design)</li>
<li>4-5 months of Development – with ~3 Major Milestones</li>
<li>3 months of QA &amp; stabilization</li>
<li>1 month of Project Buffer</li>
</ul>
</li>
<li>Very soon the development teams are scattered like lonely wolfs &#8211; everyone for himself until the next integration or major milestones months away.</li>
<li>First milestone is ending with:
<ul>
<li>20% of the content is really Done a.k.a. &#8220;Even a Blind Chicken Finds a Kernel of Corn Now and Then&#8221;</li>
<li>50% is “done” with dirty bugy code, low quality, performance issues with missing or wrong functionality</li>
<li>30%  is just not ready</li>
</ul>
</li>
<li>Developers and low level management remind themselves yet again to put more buffers…</li>
<li>The PMO suggest (in relax and trusting tone) to postpone the milestone or remove content.</li>
<li>Management doesn&#8217;t get in panic (they have seen it before ;-) and decide not to decide: &#8220;<em>Let’s see if we can cut the drawback in the next Milestone</em>” a.k.a. The classic <em>do {} while(timeRemaining &gt; Last Milestone)</em></li>
<li>Next milestone has much more content and the pressure builds up… until the last milestone blaming game which usually ends up with ~2 month delay and half of the planned content.</li>
</ol>
<p><strong>Checkmate</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.karmona.com/index.php/2007/09/20/chronicle-of-a-death-foretold/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java vs. .Net</title>
		<link>http://blog.karmona.com/index.php/2007/08/04/java-vs-net/</link>
		<comments>http://blog.karmona.com/index.php/2007/08/04/java-vs-net/#comments</comments>
		<pubDate>Sat, 04 Aug 2007 21:32:00 +0000</pubDate>
		<dc:creator>Moti Karmona &#124; מוטי קרמונה</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://blog.karmona.com/index.php/2007/08/04/java-vs-net/</guid>
		<description><![CDATA[Before getting into the Java vs. Net battle lets start with some other options ;-)
If you like challenges then you must try the brainfuck language which was created by Urban Dominik Muller and noted for its extreme minimalism &#8211; 240 bytes compiler download here
e.g. you can easily print &#8220;Hello World!&#8221; and a newline to the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://bp1.blogger.com/_yHZeAQccbHo/RrT2tctakqI/AAAAAAAAAfo/lurpm_ouVWw/s1600-h/fighting.jpg"></a><a href="http://blog.karmona.com/wp-content/uploads/2007/08/fighting.jpg" title=".Net vs. Java"><img align="left" src="http://blog.karmona.com/wp-content/uploads/2007/08/fighting.thumbnail.jpg" alt=".Net vs. Java" title=".Net vs. Java" /></a>Before getting into the Java vs. Net battle lets start with some other options ;-)</p>
<p>If you like challenges then you must try the brainfuck language which was created by Urban Dominik Muller and noted for its extreme minimalism &#8211; 240 bytes compiler download <a href="http://aminet.net/package.php?package=dev/lang/brainfuck-2.lha">here</a></p>
<p>e.g. you can easily print &#8220;Hello World!&#8221; and a newline to the screen with the line below:</p>
<blockquote><p>++++++++++[&gt;+++++++&gt;++++++++++&gt;+++&gt;+&lt;&lt;&lt;&lt;-]&gt;++.&gt;+.+++++++..+++.&gt;++.&lt;&lt;+++++++++++++++.&gt;.+++.&#8212;&#8212;.&#8212;&#8212;&#8211;.&gt;+.&gt;.</p></blockquote>
<p>If you favor comments then you might consider using CPL which was created out of a need for advance commenting features, not found in any other existing programming language (e.g. nested comments…) @ <a href="http://sourceforge.net/projects/c-p-l/">http://sourceforge.net/projects/c-p-l/</a>So…</p>
<p>Without copy-pasting a word &#8211; I think the best references to the Java vs. Net debate are:</p>
<ul>
<li><a href="http://www.oreillynet.com/pub/a/oreilly/java/news/farley_0800.html">http://www.oreillynet.com/pub/a/oreilly/java/news/farley_0800.html</a></li>
<li><a href="http://web.archive.org/web/20070228175432rn_1/www.adtmag.com/article.aspx?id=10993">http://www.adtmag.com/print.aspx?id=10993</a></li>
<li>&amp; nothing like a good flammable <a href="http://developers.slashdot.org/developers/03/09/05/1855250.shtml?tid=108&amp;amp;amp;tid=109&amp;tid=126&amp;tid=156&amp;tid=187">Slashdot discussion</a> to get under-the-hood of this debate…</li>
</ul>
<p>…Personally, after many years of Java-Java; I really like .Net-ing for the past year… especially after watching Steve Balmer, &#8220;Developers dance&#8221; @ <a href="http://youtube.com/watch?v=NSIMeRtVebM">http://youtube.com/watch?v=NSIMeRtVebM</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.karmona.com/index.php/2007/08/04/java-vs-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
