<?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>Answer to Life, the Universe, and Everything</title>
	<atom:link href="http://www.cerberis.eu/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.cerberis.eu/blog</link>
	<description>Software development, testing and more!</description>
	<lastBuildDate>Wed, 04 Aug 2010 19:59:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Top Ten Performance Problems</title>
		<link>http://www.cerberis.eu/blog/?p=154</link>
		<comments>http://www.cerberis.eu/blog/?p=154#comments</comments>
		<pubDate>Wed, 04 Aug 2010 19:59:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.cerberis.eu/blog/?p=154</guid>
		<description><![CDATA[#1: Too Many Database Calls The problem we see the most are too many database query per request/transaction. There are 3 specific phenomena to witness: More data is requested is than actually required in the context of the current transaction, e.g.: requesting all account information instead of those that we need to display on the [...]]]></description>
			<content:encoded><![CDATA[<p><strong>#1: Too Many Database Calls</strong><br />
The problem we see the most are too many database query per request/transaction.</p>
<p>There are 3 specific phenomena to witness:</p>
<ol>
<li>More data is requested is than actually required in the context of  the current transaction, e.g.: requesting all account information  instead of those that we need to display on the current screen.</li>
<li>The same data is requested multiple times. This usually happens when  different components involved in the same transaction act independently  from one another and each requests the same set of data. It is unknown  what type of data has already been loaded in the current context so we  end up with the same queries multiple times.</li>
<li>Multiple queries are executed to retrieve a certain set of data.  This is often a result of not taken full advantage of complex SQL  statements or stored procedures to retrieve the data in one batch.</li>
</ol>
<p>Further Reading: <a href="http://blog.dynatrace.com/2009/04/30/linq2sql-prevent-performance-issues-when-operating-on-multiple-rows-with-stored-procedures" target="_blank">Blog on Linq2Sql Performance Issues on Database</a>,  <a href="http://blog.dynatrace.com/2009/10/16/video-on-common-performance-antipatterns-online/" target="_blank">Video on Performance Anti-Patterns</a></p>
<p><strong>#2: Synchronized to Death</strong><br />
There is no question that  synchronization is necessary to protect shared data in an application.  Too often developers make the mistake to over-synchronize, e.g.:  excessively-large code sequences are synchronized. Under low load (on  the local developers workstation) performance won’t be a problem. In a  high-load or production environment over-synchronization results in  severe performance and scalability problems.</p>
<p>Further Reading: <a href="http://blog.dynatrace.com/2009/04/02/performance-analysis-how-to-identify-synchronization-issues-under-load/" target="_blank">How to identify synchronization problems under load</a></p>
<p><strong>#3: Too chatty on the remoting channels</strong><br />
Many libraries out  there make remote communication seem like a piece of cake. There is  hardly any difference for the developer to call a local vs. remote  method. The lack of understanding of what is really going on under the  remoting-hood makes people forget about things like latency,  serialization, network traffic and memory usage that come with every  remoting call. The easy way of using these technologies results in too  many calls across these remoting boundaries and in the end causes  performance and scalability problems.</p>
<p>Further Reading: <a href="http://blog.dynatrace.com/2009/09/28/performance-considerations-in-distributed-applications/" target="_blank">Performance Considerations in Distributed Applications</a></p>
<p><strong>#4: Wrong usage of O/R-Mappers</strong><br />
Object-Relational Mappers  take a big burden off developers’ shoulders – loading and persisting  objects in the database. As with any framework there usually are many  configuration options to optimize the usage of the O/R Mapper for  current application use cases. Faulty settings and incorrect usage of  the framework itself too often results in unexpected performance and  scalability problems within these frameworks. Make sure you make  yourself familiar with all options and learn about the internals of  these libraries that you rely on.</p>
<p>Further Reads: <a href="http://blog.dynatrace.com/2009/02/16/understanding-caching-in-hibernate-part-one-the-session-cache/" target="_blank">Understanding Hibernate Session Cache</a>, <a href="http://blog.dynatrace.com/2009/02/16/understanding-caching-in-hibernate-part-two-the-query-cache/" target="_blank">Understanding the Query Cache</a>, <a href="http://blog.dynatrace.com/2009/03/24/understanding-caching-in-hibernate-part-three-the-second-level-cache/" target="_blank">Understanding the Second Level Cache</a></p>
<p><strong>#5: Memory Leaks</strong><br />
Managed runtime environments such as Java  and .NET have the advantage of helping with memory management by  offering Garbage Collectors. A GC, however, does not prevent memory  leaks. Objects that are “forgotten” will stick around in memory and  ultimately lead to a memory leak that may cause an OutOfMemoryException.  It is important to release object references as soon as they are no  longer needed.</p>
<p>Further Read: <a href="http://blog.dynatrace.com/2010/03/03/week-5-hunting-lost-treasures-understanding-and-finding-memory-leaks/" target="_blank">Understanding and finding Memory Leaks</a></p>
<div>
<div>CIO, CTO &amp; Developer Resources</div>
</div>
<p><strong>#6: Problematic Third-Party Code/Components</strong><br />
Nobody is  writing all of the functionality of a new application on their own. We  use existing 3rd party libraries to speed up our development process.  Not only do we speed up our output – but we also increase performance  risks introduced by these components. Even though most frameworks are  well documented and have been thoroughly tested, there is no guarantee  that these frameworks run as expected in every use case they are  included. 3rd party code is often used incorrectly or in ways that have  not been tested. It is therefore important to make an in-depth check of  every framework before introducing it into your code.</p>
<p>Further Read: <a href="http://blog.dynatrace.com/2010/03/18/how-to-avoid-the-top-5-sharepoint-performance-mistakes/" target="_blank">Top SharePoint Performance Mistakes</a></p>
<p><strong>#7: Wasteful handling of scarce resources</strong><br />
Resources such as  memory, CPU, I/O or the database are scarce. Wasteful handling of these  resources results in lack of access to these resources by others and  ultimately leads to performance and scalability issues. A good example:  database connections that are kept open for too long. Connections must  only be used for the time period they are really needed, e.g.: for a  query – and then returned to the connection pool. We often see that  connections are requested early on in the request handler and are not  released until the very end which leads to a classic bottleneck  situation.</p>
<p>Further Read: <a href="http://blog.dynatrace.com/2009/02/25/resource-leak-detection-in-net-applications/" target="_blank">Resource Leak detection in .NET Applications</a></p>
<p><strong>#8: Bloated web front ends</strong><br />
Thanks to high-speed web access  many users have a better end-user experience in the World Wide Web. The  downside of this trend is that many applications get packed with too  much stuff – they become bloated – which ultimately leads to bad  browsing behavior. Particularly  users that do not yet have high-speed  internet access suffer the most. Too many images that are too large;  failure to use or incorrect usage of the browser cache; or  overly-aggressive usage of JavaScript/AJAX – all result in performance  problems in the browser. Following the existing Best Practices on Web  Site Performance Optimization can solve most of these problems:</p>
<p>Further Read: <a href="http://blog.dynatrace.com/2010/04/21/how-better-caching-helps-frankfurts-airport-website-to-handle-additional-load-caused-by-the-volcano/" target="_blank">How Better Caching would help speed up Frankfurt Airport Web Site</a></p>
<p><strong>#9: Wrong Cache Strategy leads to excessive Garbage Collection</strong><br />
Caching  objects in memory to avoid constant roundtrips to the database is one  way to boost performance. Caching too many objects – or objects that are  hardly ever used quickly changes the advantage of caching into a  disadvantage due to higher memory usage and increased GC activity.  Before implementing a caching strategy you have to figure out which  objects to cache and which objects not to cache in order to avoid these  types of performance and scalability problems:</p>
<p>Further Reads: <a href="http://blog.dynatrace.com/2009/08/13/java-memory-problems/" target="_blank">Java Memory Problems</a>, <a href="http://blog.dynatrace.com/2009/04/08/performance-analysis-identify-gc-bottlenecks-in-distributed-heterogeneous-environments/" target="_blank">Identify GC Bottlenecks in Distributed Applications</a></p>
<p><strong>#10: Intermittent Problems</strong><br />
Intermittent problems are hard  to find. These are usually problems that occur with specific input  parameters or only happen under certain load conditions. Full test  coverage – functional as well as load and performance coverage – will  uncover most of these problems early on before they become real problems  for real users.</p>
<p>Further Reads: <a href="http://blog.dynatrace.com/2009/12/02/tracing-intermittent-errors-guest-blog-by-lucy-monahan-from-novell/" target="_blank">Tracing Intermittent Errors by Lucy Monahan from Novell</a>, <a href="http://blog.dynatrace.com/2009/01/07/how-to-find-invisible-performance-problems/" target="_blank">How to find invisible performance problems</a></p>
<p><strong>(Bonus Problem) #11: Expensive Serialization</strong><br />
With remoting  communication – such as Web Services, RMI or WCF – objects need to  serialized by the caller in order to be transferred over the network.  The callee on the other side needs to de-serialize the object before it  can be used. Transformation therefore happens on both sides of the call  resulting in some overhead while doing so. It is important to understand  what type of serialization is required by both ends and what the  optimal choice of serialization and transport type is. Different types  of serialization have a different impact on performance, scalability,  memory usage and network traffic.</p>
<p>Further Read: <a href="http://blog.dynatrace.com/2009/09/28/performance-considerations-in-distributed-applications/" target="_blank">Performance Considerations in Distributed Applications</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cerberis.eu/blog/?feed=rss2&amp;p=154</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Password recovery</title>
		<link>http://www.cerberis.eu/blog/?p=151</link>
		<comments>http://www.cerberis.eu/blog/?p=151#comments</comments>
		<pubDate>Thu, 29 Jul 2010 13:47:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://www.cerberis.eu/blog/?p=151</guid>
		<description><![CDATA[http://www.rixler.com/]]></description>
			<content:encoded><![CDATA[<p>http://www.rixler.com/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cerberis.eu/blog/?feed=rss2&amp;p=151</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Try not to call your objects DTOs</title>
		<link>http://www.cerberis.eu/blog/?p=149</link>
		<comments>http://www.cerberis.eu/blog/?p=149#comments</comments>
		<pubDate>Mon, 10 May 2010 17:39:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.cerberis.eu/blog/?p=149</guid>
		<description><![CDATA[Strictly speaking, the DTO (Data Transfer Object) pattern was originally created for serializing and transmitting objects. But since then, DTOs have proven useful for things like commands, parameter objects, events, and as intermediary objects when mapping between different contexts (e.g. importing rows from an Excel worksheet). One consequence of this widespread use is that, now [...]]]></description>
			<content:encoded><![CDATA[<p>Strictly speaking, the DTO (<a href="http://martinfowler.com/eaaCatalog/dataTransferObject.html">Data  Transfer Object</a>) pattern was originally created for serializing and  transmitting objects. But since then, DTOs have proven useful for things  like commands, parameter objects, events, and as intermediary objects  when mapping between different contexts (e.g. importing rows from an  Excel worksheet).</p>
<p>One consequence of this widespread use is that, now days, naming a  class <em>SomeSortOfDto</em> doesn’t tell me much about what the object  is for — only that the object carries data, and has no behaviour.</p>
<p>Here’s a few suggestions for better names that might help indicate  its <strong>purpose</strong>:</p>
<ul>
<li>SomeSortOf<strong>QueryResult</strong></li>
<li>SomeSortOf<strong>QueryParameter</strong></li>
<li>SomeSortOf<strong>Command</strong></li>
<li>SomeSortOf<strong>ConfigItem</strong></li>
<li>SomeSortOf<strong>Specification</strong></li>
<li>SomeSortOf<strong>Row</strong></li>
<li>SomeSortOf<strong>Item</strong> (for a collection)</li>
<li>SomeSortOf<strong>Event</strong></li>
<li>SomeSortOf<strong>Element</strong></li>
<li>SomeSortOf<strong>Message</strong></li>
</ul>
<p>By no means this is a definitive list — it’s just a few examples I  can remember using off the top of my head right now. But you get the  general idea — try not to call your objects as just DTOs, but give them  names that describe their purpose too.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cerberis.eu/blog/?feed=rss2&amp;p=149</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Performance testing check list</title>
		<link>http://www.cerberis.eu/blog/?p=146</link>
		<comments>http://www.cerberis.eu/blog/?p=146#comments</comments>
		<pubDate>Fri, 07 May 2010 06:14:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.cerberis.eu/blog/?p=146</guid>
		<description><![CDATA[Great new documentation for performance testing http://blogs.msdn.com/edglas/archive/2010/04/12/great-new-documentation-for-performance-testing-now-online.aspx]]></description>
			<content:encoded><![CDATA[<p>Great new documentation for performance testing</p>
<p><a href="http://blogs.msdn.com/edglas/archive/2010/04/12/great-new-documentation-for-performance-testing-now-online.aspx" target="_blank">http://blogs.msdn.com/edglas/archive/2010/04/12/great-new-documentation-for-performance-testing-now-online.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cerberis.eu/blog/?feed=rss2&amp;p=146</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Six must have tools for every software project</title>
		<link>http://www.cerberis.eu/blog/?p=144</link>
		<comments>http://www.cerberis.eu/blog/?p=144#comments</comments>
		<pubDate>Thu, 25 Feb 2010 08:53:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.cerberis.eu/blog/?p=144</guid>
		<description><![CDATA[Version Control System A version control system provides versions of not just the software but also of all the documents. Even if a software project consists of just one person, it is always healthy to maintain a version control system. It is good to maintain versions not just for the backup but also because it [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Version Control System</strong><br />
A version control system provides versions of not just the software but  also of all the documents. Even if a software project consists of just  one person, it is always healthy to maintain a version control system.  It is good to maintain versions not just for the backup but also because  it is easy to revert back changes by selecting any previous version  that we want. Popular version control systems are CVS, SVN, VSS. A  version control system also provides a method of creating branches, so  that we can have development on one branch which we set as the stable  version. And we can have a bug fixing branch where we fix bugs. Later  once most of the bugs are fixed, we can merge the bug fixes into the  stable branch.</p>
<p><strong>Unit Test Framework</strong><br />
Following the concept of test driven development, one part of testing  which is under the control of developers is unit testing. Ideally, unit  tests should be written along with (or perhaps even before) the  implementation. A particular tried and tested unit testing framework  such as CUnit can be used. Many of us as developers tend to ignore unit  testing and are satisfied by random testing of the system that we  create. This is definitely an invitation for letting off unnecessary  bugs which will come back far later in the project to haunt us.</p>
<p><strong>Automated Build System</strong><br />
It should be possible to have in addition to manual builds, an automated  build system which is triggered by certain events such as nightly  builds, change in critical files, etc. An automated build system can  help detect a break in the system early. Reports can be generated  automatically and sent to the concerned personnel by email. Automated  build systems can be created using scripting languages such as perl or  python.</p>
<p><strong>Automated Test Framework</strong><br />
One of the most important tools in a software project is the automated  test framework. Ideally, the automated tests should be run after every  nightly build has successfully completed. As with the build, the test  reports if any failure can be generated automatically and sent by email.  Automated Test frameworks may be specific to projects.</p>
<p><strong>Task/Defect tracking system</strong><br />
Most useful when the project consists of several members. More so if the  members are geographically distributed. A task management system helps  to assign tasks, prioritize tasks, set the percentage completed. Charts  can be generated to analyse the work done in the project. Microsoft  Project is an example of task management or rather project management. A  defect tracking system is useful for developers and testers to report  bugs, track the progress of fixing those bugs and to analyse the overall  defects in the system. Bugzilla, Jira are examples of defect tracking  systems.</p>
<p><strong>Wiki/site</strong><br />
Maintain a wiki, website or blog about your project. This can contain  the project milestones that are set and achieved. Also information such  as project presentations can be added. This can be used not just for  team clarity in project achievements but also as a front end for  management whenever they need a gist or status of the project.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cerberis.eu/blog/?feed=rss2&amp;p=144</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Symbols used in command prompt</title>
		<link>http://www.cerberis.eu/blog/?p=141</link>
		<comments>http://www.cerberis.eu/blog/?p=141#comments</comments>
		<pubDate>Tue, 23 Feb 2010 09:12:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.cerberis.eu/blog/?p=141</guid>
		<description><![CDATA[&#62; Sends output to a named file. If file does not exist, it creates one. Overwrites existing file command &#62; somefile &#62;&#62; Appends output to contents of a named file or creates a file if none exists command &#62;&#62; somefile &#60; Uses contents of a named file as input to a command command &#60; somefile [...]]]></description>
			<content:encoded><![CDATA[<table border="1" cellspacing="3" cellpadding="3" width="100%">
<tbody>
<tr>
<td width="5%">&gt;</td>
<td>Sends output to a named file. If file does not exist, it creates  one.       Overwrites existing file</td>
<td width="25%">command &gt; somefile</td>
</tr>
<tr>
<td>&gt;&gt;</td>
<td>Appends output to contents of a named file or creates a file if  none       exists</td>
<td>command &gt;&gt; somefile</td>
</tr>
<tr>
<td>&lt;</td>
<td>Uses contents of a named file as input to a command</td>
<td>command &lt; somefile</td>
</tr>
<tr>
<td>¦</td>
<td>Sends (&#8220;pipes&#8221;) the output of command1 to the input of command2</td>
<td>command1 ¦ command2</td>
</tr>
<tr>
<td>&amp;</td>
<td>Used to combine two commands. Executes command1 and then  command2</td>
<td>command1 &amp; command2</td>
</tr>
<tr>
<td>&amp;&amp;</td>
<td>A conditional combination. Executes command2<em> if</em> command1 completes       successfully</td>
<td>command1 &amp;&amp; command2</td>
</tr>
<tr>
<td>¦¦</td>
<td>Command2 executes only if command1 does <strong>not</strong> complete successfully.</td>
<td>command1 ¦¦ command2</td>
</tr>
<tr>
<td>@</td>
<td>Used in batch files at the beginning of a line to turn off the  display       of commands</td>
<td>@echo off</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.cerberis.eu/blog/?feed=rss2&amp;p=141</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reliability Features of the .NET Framework</title>
		<link>http://www.cerberis.eu/blog/?p=138</link>
		<comments>http://www.cerberis.eu/blog/?p=138#comments</comments>
		<pubDate>Tue, 26 Jan 2010 15:40:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://www.cerberis.eu/blog/?p=138</guid>
		<description><![CDATA[Interesting article about writing highly available code: Reliability Features of the .NET Framework This article discusses: * Understanding OutOfMemoryException, StackOverflowException, and ThreadAbortException * Constrained Execution Regions * Critical Finalizers and SafeHandle * FailFast and MemoryGates]]></description>
			<content:encoded><![CDATA[<p>Interesting article about writing highly available code:<br />
<a href="http://msdn.microsoft.com/en-us/magazine/cc163716.aspx">Reliability Features of the .NET Framework</a></p>
<p>This article discusses:<br />
* Understanding OutOfMemoryException, StackOverflowException, and ThreadAbortException<br />
* Constrained Execution Regions<br />
* Critical Finalizers and SafeHandle<br />
* FailFast and MemoryGates</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cerberis.eu/blog/?feed=rss2&amp;p=138</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Enable GodMode On Windows 7</title>
		<link>http://www.cerberis.eu/blog/?p=136</link>
		<comments>http://www.cerberis.eu/blog/?p=136#comments</comments>
		<pubDate>Fri, 22 Jan 2010 06:45:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.cerberis.eu/blog/?p=136</guid>
		<description><![CDATA[Did you know that Windows 7 has a GodMode? What GodMode does is enable you to have a place where you can get to all the settings without having to browse around and click through options and folders in control panel. Add a new folder to your desktop and name it GodMode.{ED7BA470-8E54-465E-825C-99712043E01C} Now when you [...]]]></description>
			<content:encoded><![CDATA[<p>Did you know that Windows 7 has a GodMode? What GodMode does is enable you to have a place where you can get to all the settings without having to browse around and click through options and folders in control panel.</p>
<p>Add a new folder to your desktop and name it GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}<br />
Now when you click on that icon you it will open up the following folder&#8230;</p>
<p>Warning&#8230;although GodMode works on Vista 32 bit and 32 bit Windows Server 2008 it does not work on Vista 64 bit sp2 and 64 bit Windows Server 2008&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cerberis.eu/blog/?feed=rss2&amp;p=136</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The High Cost of Losing a Developer</title>
		<link>http://www.cerberis.eu/blog/?p=134</link>
		<comments>http://www.cerberis.eu/blog/?p=134#comments</comments>
		<pubDate>Tue, 24 Nov 2009 12:49:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.cerberis.eu/blog/?p=134</guid>
		<description><![CDATA[You&#8217;ve probably heard statistics about the &#8220;high cost of losing a customer.&#8221; The theory is simple and true (fact?): keeping existing customers and repeat business is much more profitable than attracting new customers. Here are a few facts from BusinessCoach.com: &#8211; For every customer who bothers to complain, there are 26 others who remain silent. [...]]]></description>
			<content:encoded><![CDATA[<p>You&#8217;ve probably heard statistics about the &#8220;high cost of losing a customer.&#8221; The theory is simple and true (fact?): keeping existing customers and repeat business is much more profitable than attracting new customers. Here are a few facts from BusinessCoach.com:</p>
<p>    &#8211; For every customer who bothers to complain, there are 26 others who remain silent.<br />
    &#8211; The average “wronged” customer will tell 8 to 16 people.<br />
    &#8211; 91% of unhappy customers will never purchase services from you again.<br />
    &#8211; It costs about five times as much to attract a new customer as it costs to keep an old one.<br />
    &#8211; Each one of your customers has a circle of influence of 250 people or potential customers who hear bad things about you!</p>
<p>The point of this post is simple: RETAIN YOUR GOOD DEVELOPERS. Getting someone up to speed on a legacy codebase takes a long time and is an expensive undertaking. A large part of the software coach&#8217;s or manager&#8217;s job is attracting, developing and keeping talent. And that talent becomes more valuable over time.</p>
<p>Yes, you might be able to replace someone at a lower annual salary, but you have to take into account the complexity of your code portfolio in how long it&#8217;ll take to make that person productive. A $60K/annum employee may very well take $120K before reaching the productivity level and contribution of the developer who left the team.</p>
<p>Also, the big red warning sign when you get rid of a developer for cost reasons is the hidden investment. You may be paying that developer 30K, but you&#8217;ve also spent (hopefully) on training and many other costs that are not as visible. This is investment and should be considered the same as investment in plant. When the developer disappears, so does that investment.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cerberis.eu/blog/?feed=rss2&amp;p=134</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multiple skype instances</title>
		<link>http://www.cerberis.eu/blog/?p=131</link>
		<comments>http://www.cerberis.eu/blog/?p=131#comments</comments>
		<pubDate>Tue, 01 Sep 2009 09:35:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://www.cerberis.eu/blog/?p=131</guid>
		<description><![CDATA[Skype, Multiple instances, Windows]]></description>
			<content:encoded><![CDATA[<p>If you have more than one Skype account – say one for business and another for personal use – you can run two Skype applications at the same time! Provided you have Skype version 4 or better. The following “tip” applies only to Windows&#8230;</p>
<p>Step 1: Go to the location to where you installed Skype. For example:<br />
C:\Program Files\Skype\Phone<br />
Step 2: Right-click on the Skype.exe icon and select “Send to” -> “Desktop (as shortcut)” to create a new shortcut to it on your Desktop.<br />
Step 3: Now go to your Desktop and right-click on the newly created shortcut. Select “Properties”.<br />
Step 4: Append the following to the “Target:” text field without changing the existing text:<br />
/secondary</p>
<p>Enjoy</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cerberis.eu/blog/?feed=rss2&amp;p=131</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
