User Totophil - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T12:24:17Zhttp://stackoverflow.com/feeds/user/22088http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1830455/how-to-reduce-maintenance-costs/1832226#18322261Answer by Totophil for How to reduce maintenance costsTotophil2009-12-02T11:04:56Z2009-12-02T17:58:58Z<p>The options are:</p>
<ul>
<li>Automate</li>
<li>Delegate</li>
<li>Fix root cause</li>
<li>Get more people</li>
<li>Organise</li>
<li>Skip and take the risk</li>
<li>Or a combination of the above.</li>
</ul>
<p>But the first step is to collect some data and then do a quick analysis:</p>
<ol>
<li><p>Categorise present and historic issues by <a href="http://en.wikipedia.org/wiki/Five%5Fwhys" rel="nofollow">root cause</a>, source, frequency and effort required.</p></li>
<li><p>When use <a href="http://en.wikipedia.org/wiki/Pareto%5Fchart" rel="nofollow">Pareto Charts</a> to visualise the areas that require most effort or come from the a single source. Paying attention to these areas will give the biggest benefits and will free people to deal with other maintenance problems.</p></li>
</ol>
<p><strong>Fix Root Cause</strong></p>
<p>Always aim at fixing the root cause of an issue. The solution need not to be expensive, “the art of engineering is to do with one dollar that any damn fool can do with two”. Use analytical techniques such as <a href="http://en.wikipedia.org/wiki/Five%5Fwhys" rel="nofollow">Five Whys</a> to get to the bottom of a problem.</p>
<p>Reading the question one of the root causes seems to be related to the current software development process and the pressure that is exerted to add functionality to existing system quickly, which leads to low quality code delivered through a stream of projects increasing the burden of maintenance. This would normally be caused due to an incorrect project planning and budgeting when project budget does not include any maintenance costs and the plan ends abruptly once the change is delivered to the users. The correct way would be to include and track maintenance costs over the lifetime of the deliverable which then would be added to the organisational budget. The figure will give more incentive to deliver robust code in the first place and help making a better choice between various project options.</p>
<p>Try to see if there are any other "hidden incentives" for maintenance growth.</p>
<p><strong>Delegate</strong></p>
<p>IT Department or a project team can often be seen as a free resource within the organisation to train users, run data conversions, reports, do routine system configuration, data corrections and other tasks that could really be done by other departments. </p>
<p>These tasks can be either delegated back to other business units (through providing them with the tools to do the job) or outsourced to external vendors (in case of non-business critical or specific system you might be able to source a better quality service or hosted application from outside the company). </p>
<p>Either simplify the tasks of educate users to carry out more complex tasks. Organise and support user community so they can resolve most common problems without having to rely on your time. </p>
<p><strong>Automate</strong></p>
<p>Automate things that can be automated, including day-to-day monitoring. There things cannot be fully automated at least automate them partially, provide a way of maintaining a library of scripts to do parts of a process. Help team members to learn scripting tools and languages.</p>
<p><strong>Organise</strong></p>
<p>Group similar issues together and do them at once. The resolution time might go up, but it takes less work to reset 5 passwords at once within the same system that do each one individually.</p>
<p>Provide a way for users to report and track the issues that will give you an ability to deal the with the maintenance in a more organised way, that is to say instead of having someone on the phone waiting for an issue to be resolved straight away have an issue tracking system with priorities, so the things can be dealt with in a more orderly way and give you more room for manoeuvre as to how and when you deal with specific category of issues. </p>
<p><strong>Skip the Maintenance and Take the Risk</strong></p>
<p>Assess the risk and impact of not doing some of the maintenance. If sufficiently low then make everyone aware the work will not get done and move on.</p>
http://stackoverflow.com/questions/1824937/how-do-you-manage-a-large-software-project-you-are-developing-all-alone/1825634#18256341Answer by Totophil for How do you manage a large software project you are developing all alone?Totophil2009-12-01T11:42:15Z2009-12-01T14:35:08Z<p>All the usual stuff, but very briefly:</p>
<ol>
<li><p>Write down in couple of paragraphs what problem the system needs to solve; who it’s for, specifically. who are the actual users and who is paying for the end result.</p></li>
<li><p>Write a specification, that describes the way in which you plan the system to solve the problem, what the constraints are, what choices you have to make and why you’re taking one decision or another. Don’t worry about getting the spec perfect, you’ll be updating it as you get more info. The whole point of writing the spec is to force you into thinking more than one step ahead, and there is no better way of doing that. As a minimum you want to cover end-to-end at least the most common flow or usage pattern. Some useful reading:</p>
<ul>
<li><a href="http://www.joelonsoftware.com/articles/fog0000000036.html" rel="nofollow">http://www.joelonsoftware.com/articles/fog0000000036.html</a></li>
<li><a href="http://www.ericsink.com/articles/Requirements.html" rel="nofollow">http://www.ericsink.com/articles/Requirements.html</a></li>
<li><a href="http://www.volere.co.uk/" rel="nofollow">http://www.volere.co.uk/</a></li>
</ul></li>
<li><p>Then break the spec down onto tasks each up to one working day long. Write down initial estimate against every task. Include any auxiliary tasks, such as making interim demos, building releases, keeping documentation up to date, writing tests, testing, fixing bugs, talking to users, setting up dev environment, setting up test environment, training and so on. Don’t worry about getting every estimate 100% accurate; however be realistic about how long things take. </p>
<p>In my experience then a plan goes pear-shaped it’s because of the tasks that were not included initially: overlooked or forgotten. For a reasonably granular list of tasks (say each no longer than 8 hours of effort) an error in estimate will only give a <a href="http://en.wikipedia.org/wiki/Orders%5Fof%5Fapproximation" rel="nofollow">second-order errors</a> in the overall schedule, whereas missing several tasks altogether will lead to zeroth- or first-order errors. Simply put, miss a task and you have a great chance of blowing the plan, get an estimate or two wrong and the errors might just cancel each other out. </p>
<p>One useful trick of working out what needs to be done is taking a target (for example a deadline, a budget, or fully operable system that users use to solve the problem) and then working your way backwards through the things that need to be done to get into this position: train users, create user accounts within the system, configure the system, install the system, test, create a release and so on. This is opposed to starting with nothing and trying to figure out what needs to be done to arrive at the destination.</p></li>
<li><p>Once you have the spec and the task list you’ll be able to start prioritising, in other words to start looking at which tasks are more important and what can be done later. If you have to do some risky things or there are unknowns (like new technology to work with) it might be worth putting them on top of the task list, so you could attempt this task early and re-plan as necessary, instead of discovering problems late and having to re-work the entire spec and the schedule. Assume that problems will occur.</p></li>
<li><p>Ok, at this stage you have the problem definition, a spec and a task list. Great! You’ll need to keep these up to date as you make progress. Now start organising: get a dev environment up and running, test environment, automatic builds, some real-world test data, issue tracking to record any defects and outstanding issues (a <a href="http://www.joelonsoftware.com/articles/fog0000000245.html" rel="nofollow">simple spreadsheet</a> might do to keep track of tasks, issues and defects). Agree interim milestones, demos, get the equipment, software, licenses for the dev, set up source control, et cetera. </p></li>
<li><p>Now being all organised it’s time to start writing some code. As you progress update the spec and the list of tasks and issues daily. If you see that there is a lot of deviation from the initial plan just stop, and iterate through the steps 1-5 again. You might want to change quite a few things, however you will know so much more about the problem and the project at this point.</p></li>
<li><p>Well, the system is nearly finished now or at least it seems to be. There is a point when you’ll need to make a decision to freeze the development of any new features and concentrate on getting what you’ve already got working reasonably well. Users or project sponsor (one who pays for the system) might be able to give you some guidance on what defects they really care about and what things they could happily live with. But ultimately, you’ll need to go through every outstanding issue and make a decision whether you need to resolve it or just ship whatever you’ve got and move any outstanding work into the next version.</p></li>
<li><p>More testing, installation, configuration, training, post implementation support (of course, you‘ve thought about organising and planning for support in advance, right?)</p></li>
<li><p>Bring any documentation up to date and either wind any resources you don’t need any longer down (such as dev environment) or hand things over. But think about any issues that are going to come out of system being used first. You might want to take some notes for future self about what went well and what went wrong.</p></li>
<li><p>Champaign.</p></li>
</ol>
http://stackoverflow.com/questions/1819523/what-is-better-set-up-underestimated-or-overestimated-deadlines/1821485#18214851Answer by Totophil for What is better: set up underestimated or overestimated deadlines?Totophil2009-11-30T18:22:50Z2009-11-30T18:30:10Z<p>Ask for <strong>best</strong>, <strong>likely</strong> and <strong>worst case scenario estimates</strong> instead. Then use <a href="http://blogs.techrepublic.com.com/project-management/?p=120" rel="nofollow">Program Evaluation and Review Technique</a>. However you may want to take a look at some <a href="http://herdingcats.typepad.com/my%5Fweblog/2006/02/deterministic%5Fv.html" rel="nofollow">PERT critique</a> first. </p>
<p>For individual tasks or tasks making up the <a href="http://stackoverflow.com/questions/1176634/what-is-critical-path/1176734#1176734">critical path</a> it’s simply not prudent to go for the best case estimates. It’s like saying that the project is absolutely free of any risk and uncertainty. If the actual job turns out to be anything but the best case scenario you’ll end up blowing the schedule. It’s better to end up with some extra time on your hands and fill the time by implementing some nice-to-haves as opposed to having to work nights and weekends.</p>
<p>On the other hand if managers mostly went for the worst case estimates and in software world they can easily be an order of magnitude greater than the best case figures most projects would never make it past the feasibility and planning stage. Not all of the risks going to materialise.</p>
<p>Going for the best case estimate won't help fighting <strong>student syndrome</strong>. Include interim milestones and deliverables instead, beside being helpful at combating the student syndrome they're pre-requisite for having a trustworthy data on the project progress and uncovering early any potential issues.</p>
http://stackoverflow.com/questions/1774679/how-do-estimate-the-time-line-to-an-research-and-development-task/1803070#18030700Answer by Totophil for How do estimate the time line to an Research and Development taskTotophil2009-11-26T11:13:01Z2009-11-26T11:13:01Z<p><strong>Pure Research Projects</strong></p>
<p>Set a time or resource cap in addition to a number of interim milestones / reviews, to re-evaluate whether you can afford to continue. Ideally before embarking on the research you will have a good idea of potential benefits of succeeding. You might also want to define different grades of success and a contigency plan in case the effort will not come to fruition, before you start. </p>
<p><a href="http://en.wikipedia.org/wiki/Spiral%5Fmodel" rel="nofollow">Spiral model</a> of development will come handy.</p>
<p><strong>Applying Existing Technology to a Problem</strong></p>
<p>For current mainstream technologies such as WPF you might try to find out how long would it take for someone with comparable experience to learn the technology. Evidence might be collected from other people experience and available training courses.</p>
<p>For non-current or niche technologies you might be better off hiring a consultant or sub-contracting the job (bear in mind <a href="http://stackoverflow.com/questions/8044/what-the-difference-between-consulting-and-contracting/746854#746854">the difference between consultant and contractor</a>). </p>
<p>Grade the project on</p>
<p><em>Keeping Status Quo - Bug Fixing - Enhancement - New Functionality - New Product - Revolutionary</em> </p>
<p>scale. Each position on the scale will usually mean a factor of 2..5 of risk and effort increase. Having a reference point which is to say if it normally takes 2 days in your organisation end-to-end to fix a bug, you can gauge that an enhancement will take two to five times longer, anything between 4 to 10 days, of course coding will only be a small proportion of the this effort.</p>
http://stackoverflow.com/questions/578359/hiring-a-programmer-looking-for-the-right-attitude25Hiring a programmer: looking for the "right attitude"Totophil2009-02-23T16:47:59Z2009-11-25T12:28:52Z
<p>It's actually two questions in one:</p>
<ul>
<li><p>What is the right attitude for a programmer?</p></li>
<li><p>How do you (or would you) look for one when interviewing or during hiring process?</p></li>
</ul>
<p>Please note this question is not about personality or traits of a candidate, it is about their attitude towards what they do for living. This is also not about reverse of programmers pet peeves.</p>
<p>The question has been made community wiki, since I am interested in a good answer rather than reputation. I disagree that the question is purely subjective and just a matter of opinion: clearly some attitudes make a better programmer than others. Consecutively, there might quite possibly exist an attitude that is common to the most of the better programmers.</p>
<p><hr /></p>
<p><strong>Update</strong>:</p>
<p>After some deliberation I came up with the following attitude measurement scales:</p>
<ul>
<li><p>identifies themselves with the job ↔ fully detached</p></li>
<li><p>perceives code as a collection of concepts ↔ sees code as a sequence of steps</p></li>
<li><p>thinks of creating software as an art ↔ takes 100% rational approach to design and development</p></li>
</ul>
<p>Answers that include some sort of a comment on the appropriateness of these scales are greatly appreciated.</p>
<p><hr /></p>
<p><a href="http://wordnetweb.princeton.edu/perl/webwn?s=attitude" rel="nofollow">Definition of "attitude"</a>: <em>a complex mental state involving beliefs and feelings and values and dispositions to act in certain ways; "he had the attitude that work was fun"</em> </p>
<p>The question came as a result of some reflection on the top voted <a href="http://stackoverflow.com/questions/534624/how-do-you-ensure-code-quality/534672#534672">answer</a> to "<a href="http://stackoverflow.com/questions/534624/how-do-you-ensure-code-quality">How do you ensure code quality</a>?" here on Stack Overflow.</p>
http://stackoverflow.com/questions/1686074/should-people-only-having-management-background-be-heading-software-engineering-p/1687857#16878571Answer by Totophil for Should people only having management background be heading software engineering projects / departments Totophil2009-11-06T14:11:52Z2009-11-06T14:17:03Z<p>I can see two questions here:</p>
<ol>
<li><p>Can a generalist without specialist software development knowledge and experience make a successful software manager?</p></li>
<li><p>Why incompetent software managers love meetings?</p></li>
</ol>
<p>I’ll answer the latter first: meetings have several very attractive properties for incompetent managers:</p>
<ul>
<li><p>Meetings are group activity. Decisions are made by committee. A manager can sit back, listen and then sell other people ideas as his or her decisions.</p></li>
<li><p>Meetings are visible. As opposed to someone just siting behind a desk doing some thinking and having to deliver regularly in order to justify the absence of visible physical activity. Meeting produces a set of tangible deliverables (i.e. meeting minutes), failure to deliver the project can always be blamed on an external cause.</p></li>
<li><p>Meetings consist mainly of communication with very few managers doing any preparation in advance, I dare to say that most meeting are easier to engage in than prolonged periods of concentrations required to write a good spec, a project plan, create WBS, determine dependencies.</p></li>
</ul>
<p>Hence a meeting can be turned into a group activity that requires minimum effort, but still creates a visibility of ongoing work. </p>
<p>The former question, i.e. can a generalist without specialist skills make a successful manager is much tougher to answer. Just two hundred years ago not much specialist knowledge existed (including management as a specialist discipline) and a good classical education was all what was needed to lead people. Twentieth century saw the explosion in technology, specialist knowledge and rate of knowledge change. Keeping up with a limited area of knowledge became a full time job. I dare saying that all modern highly successful companies have a management structure with people who have good understanding of the underplaying specialist detail forming its core. Eric Sink has a great article titled “<a href="http://www.ericsink.com/bos/Geeks%5FRule.html" rel="nofollow">Geeks Rule and MBAs Drool</a>” on how technical detail influences drives financial and strategical decisions.</p>
<p>Still generalist can function fairly successfully as a head of technical unit, as long as he or she carries out administrative and political tasks, relying on specialists for getting done any actual work and trying not to cripple their efforts too much. I’m talking manager rather representing the unit, than managing day-to-day work and trusting the specialists to manage themselves. Right now this is a dominant scenario for most <a href="http://en.wikipedia.org/wiki/Cost%5Fcentre%5F%28business%29" rel="nofollow">cost centres</a> in modern run-of-the-mill companies.</p>
http://stackoverflow.com/questions/1678999/does-team-leader-have-to-take-blame-for-subordinate-errors/1680911#16809112Answer by Totophil for Does team leader have to take blame for subordinate errors?Totophil2009-11-05T14:29:14Z2009-11-05T14:29:14Z<p>Imagine for a second being Microsoft CEO, with over 50 000 people working for you and something going awfully wrong every day making someone incredibly unhappy. If things never went wrong, there never were any incidents to deal with, no dissatisfied customers with urgent issues, and the team never ever failed, then you wouldn’t really have learnt much as a team lead, would you? </p>
<p>And can you see yourself in Microsoft CEO shoes whilst shifting the blame “That’s due to Steve’s not doing his job properly!” during one of these important business meetings?</p>
<p>Team lead represents both the team and the company. Apportioning blame to someone else might seem as an intuitive and easy way of making the unpleasant incident go away, become someone else’s problem. Works really well for anyone responsible just for themselves with modest expectations placed by others. Small kids, for instance.</p>
<p>Shifting the blame to subordinate won’t work for a team lead:</p>
<ol>
<li><p>Since he or she represents the team and the company, the problem won’t go away as long it remains even remotely linked with the company in the customer’s mind. </p></li>
<li><p>Team lead is expected to deal with the difficult situations. This is what having “more responsibility” which is often associated with a better pay and higher position exactly looks like in the real life. </p></li>
<li><p>Concentrating on the blame raises expectations of penalty. No one wants to be accused or penalised and would naturally attempt re-attribute the blame. And be assured there is good chance of the accusations to boomerang having caused an irreparable damage on the way.</p></li>
</ol>
<p>Often blame is irrelevant to the problem resolution. </p>
<p>Some tips on approaching the “unhappy customer” scenario:</p>
<ul>
<li><p>Keep customer informed of any change in production environment and potential impact in advance. Prepare a contingency plan.</p></li>
<li><p>When a customer calls after the change took place it’s much more likely that they seek help with an issue, rather than intend to praise your efforts.</p></li>
<li><p>Ease the tension by acknowledging the complaint, but not the source or cause of the problem then ask for time to investigate and let them know when you plan to get back with the results. </p></li>
<li><p>Focus the conversation on the way forward and interim remedy where possible.</p></li>
<li><p>Don’t be disillusioned, in the world of business customers are more likely to seek quick resolution and concessions rather than just aimlessly take their personal frustrations out on you. It’s not like a personal fight. They might throw a little tantrum first but if you keep your cool, show empathy, stay rational they’ll fairly soon move on to the actual need. Just make sure you understand the impact of the problem on them and steer the conversation to the ways the issue can be resolved (if it’s not already apparent).</p></li>
<li><p>Be first to tell the customer about any known issues that are going to have a negative affect on them.</p></li>
<li><p>Be first to tell your management about any problems to secure their support. </p></li>
<li><p>Conduct a fair investigation with the primary aims of providing an interim and long term solution and also fixing the process that led to the incident. As a team lead you’re responsible for the process and the chances are this is the process and not the team members to blame.</p></li>
<li><p>Change the process as appropriate.</p></li>
<li><p>Inform the customer and management about your findings and any changes but keep the communication relevant to the relationship involved. </p></li>
<li><p>It’s only when a team member has violated an existing process, see if the process is reasonable, and discuss the incident with the team member casually in private without attributing the blame for what has happened. It’s likely there is a good reason, i.e. lack of resource, time, poor estimates, emergency or miscommunication. </p></li>
<li><p>Collect information first before making any decisions.</p></li>
</ul>
<p>And one last thing, there is a surprising evidence that customers who had something go wrong and then dealt with swiftly and appropriately by a company become more loyal and more likely to recommend the company to the others than customers who had never made a complaint.</p>
http://stackoverflow.com/questions/610466/indexoutofboundsexception-when-trying-to-read-ms-excel-file-using-apache-poi-hssf0IndexOutOfBoundsException when trying to read MS Excel file using Apache POI-HSSF Totophil2009-03-04T13:07:12Z2009-11-05T13:38:57Z
<p>Whilst trying to parse MS Excel file using <a href="http://poi.apache.org/spreadsheet/index.html" rel="nofollow">POI-HSSF v3.2</a> I am getting IndexOutOfBoundsException. The spreadsheet I am trying to read isn't empty it has been created using MS Excel 2003 and BiffViewer included with the POI package has no problem parsing it.</p>
<p>My code is as follows:</p>
<pre><code>package src;
import java.io.*;
import org.apache.poi.hssf.record.*;
import org.apache.poi.hssf.eventusermodel.*;
class Excel implements HSSFListener
{
public static void main (String[] args) throws Exception
{
FileInputStream stream = new FileInputStream("c:\\temp\\a.xls");
HSSFEventFactory f = new HSSFEventFactory();
HSSFRequest req = new HSSFRequest();
req.addListenerForAllRecords(new Excel());
f.processEvents(req,stream);
stream.close();
}
public void processRecord (Record r)
{
System.out.println(r);
}
}
</code></pre>
<p>And here is the stack trace I am getting:</p>
<p><sub>
Exception in thread "main" java.lang.IndexOutOfBoundsException
at java.io.FileInputStream.readBytes(Native Method)
at java.io.FileInputStream.read(FileInputStream.java:199)
at org.apache.poi.hssf.record.RecordInputStream.nextRecord(RecordInputStream.java:106)
at org.apache.poi.hssf.eventusermodel.HSSFRecordStream.getNextRecord(HSSFRecordStream.java:128)
at org.apache.poi.hssf.eventusermodel.HSSFRecordStream.nextRecord(HSSFRecordStream.java:93)
at org.apache.poi.hssf.eventusermodel.HSSFEventFactory.genericProcessEvents(HSSFEventFactory.java:141)
at org.apache.poi.hssf.eventusermodel.HSSFEventFactory.processEvents(HSSFEventFactory.java:98)
at src.Excel.main(Excel.java:21)
</sub></p>
<p>Many thanks! I know, I am being plain lazy and could have looked at the POI source myself, but, hopefully, someone here will be able to point out swiftly whatever silly thing I've done within my code.</p>
http://stackoverflow.com/questions/1640911/role-of-testers-in-agile/1643589#16435895Answer by Totophil for Role of Testers in Agile?Totophil2009-10-29T13:06:09Z2009-10-29T13:06:09Z<p>Ideally QA and testers should be involved if not from the day one then from very early stages of a software development project, regardless of the process used (waterfall or agile). The test team will need to:</p>
<ul>
<li><p>Ensure that project or sprint requirements are clear, measurable and testable. In an ideal world each requirement will have a fit criterion written down at this stage. Determine what information needs to be automatically logged to troubleshoot any defects. </p></li>
<li><p>Prepare a project specific test strategy and determine which QA steps are going to be required and at which project stages: integration, stress, compatibility, penetration, conformance, usability, performance, beta testing etc. Determine acceptable defect thresholds and work out classification system for defect severity, specify guidelines for defect reporting.</p></li>
<li><p>Specify, arrange and prepare test environment: test infrastructure and mock services as necessary; obtain, sanitise and prepare test data; write scripts to quickly refresh test environment when necessary; establish processes for defect tracking, communication and resolution; prepare for recruitment or recruit users for beta, usability or acceptance testing.</p></li>
<li><p>Supply all the relevant information to form project schedule, work break down structure and resource plan.</p></li>
<li><p>Write test scripts.</p></li>
<li><p>Bring themselves up to speed with the problem domain, system AS-IS and proposed solution.</p></li>
</ul>
<p>Usually this is not a question of whether a test team may provide any useful input into the project on an early stage, nor if such an input is beneficial. It is a question, however, of the extent to which an organisation can afford the aforementioned activities. There is always a trade off between available time, budget and resource versus the level of known quality of the end result.</p>
http://stackoverflow.com/questions/1592724/best-quickest-way-to-learn-java-for-a-seasoned-net-c-and-c-developer/1593229#15932291Answer by Totophil for Best/quickest way to learn Java for a seasoned .NET/C# and C++ developerTotophil2009-10-20T08:43:10Z2009-10-20T10:57:28Z<ol>
<li><p>I suggest starting with <a href="http://java.sun.com/docs/books/jls/" rel="nofollow">The Java Language Specification</a>. I don't think there is any quicker or more comprehensive way of gaining an understanding of the language for a seasoned programmer.</p></li>
<li><p>Followed by <a href="http://java.sun.com/docs/books/jls/" rel="nofollow">Java Collections Tutorial</a>.</p></li>
<li><p>Followed by <a href="http://java.sun.com/javase/6/docs/api/java/lang/package-summary.html" rel="nofollow"><code>java.lang.*</code></a> and <a href="http://java.sun.com/javase/6/docs/api/java/util/package-summary.html" rel="nofollow"><code>java.util.*</code></a> classes, interfaces and packages.</p></li>
</ol>
<p>This will give a good basis for learning and understanding any other branch of Java as it becomes necessary.</p>
http://stackoverflow.com/questions/1543269/what-do-you-find-to-be-difficult-and-frustrating-about-managing-software-developm1What do you find to be difficult and frustrating about managing software development?Totophil2009-10-09T11:36:52Z2009-10-15T18:16:06Z
<p>If you ever managed a software development effort or parts of it in any capacity when what bits did you find difficult or frustrating? What did happen at the end?</p>
<p>UPDATE: It would be nice to hear some actual stories as opposed to "geeks are difficult people". Thanks!</p>
http://stackoverflow.com/questions/1567094/connecting-to-progress-database-from-mac-osx/1572130#15721301Answer by Totophil for Connecting to Progress database from Mac OSXTotophil2009-10-15T12:44:33Z2009-10-15T12:44:33Z<p>You need Progress SQL92 Client Access, Mac is unsupported, RedHat, SuSe and several flavours of Unix are.</p>
<p>See Progress Version 9 product <a href="http://www.progress.com/progress%5Fsoftware/products/docs/bu%5Fsep/pavail.pdf" rel="nofollow">availability matrix</a>, look for ODBC and JDBC. </p>
<p>As far as I know there are only two companies in the world that produce ODBC/JDBB connectivity drivers for Progress DB: OpenLink and DataDirect (now acquired by Progress). </p>
<p>Another way is to connect using Progress AppServer, then you'd be able to run Progress 4GL (or ABL - Advanced Business Language) queries/logic on AppServer and output resulting datasets to Java.</p>
<p>The third way is to migrate the data (if this is an option).</p>
<p>Other options include exposing DB via WebSpeed (web application server) or using sockets, files, getting OpenEdge and exposing the data through 4GL web services etc. This will really depend on your data access needs. However all of these methods are non-trivial and require Progress platform and 4GL expertise.</p>
http://stackoverflow.com/questions/1310634/how-to-send-a-pdf-file-to-a-progress-appserver/1572096#15720960Answer by Totophil for How To Send a PDF File to a Progress AppServer?Totophil2009-10-15T12:37:59Z2009-10-15T12:37:59Z<p>Use raw datatype, you might need to send the file in chunks. Another alternative is to use character+BASE64.</p>
http://stackoverflow.com/questions/1560235/if-management-decided-opensource-projects-could-fulfill-business-requirements-wo/1565642#15656420Answer by Totophil for If management decided opensource projects could fulfill business requirements. Would you (Java Developer) learn PHP? Totophil2009-10-14T11:10:24Z2009-10-14T11:10:24Z<p>Being able to understand, maintain, develop and have control over own technology is very much a business requirement and a very important one. And here you have to trust and respect the opinion of the most technologically experienced member of your team. Either this or look for a new partner.</p>
<p>It sounds as if you have a very ambitious business plan and you’ll need more than 3 persons to put it into life, perhaps you could hire some PHP or Java gurus? Sanitizing 300K+ product descriptions and entering them into the system is going to be a challenge on its own, in addition to setting up the system, failover, testing, customisation (even if you started off with a OSS product) etc. </p>
<p>Are you sure you’ve really got the necessary resource to go that big that quick and still achieve a service of satisfactory quality? Would your business plan still work at a much slower pace or does it rely on the ability to set up a massive operation very early to grab the land?</p>
<p>Another person who understands technology well on the board level could have been beneficial, since your friend needs to cover a lot of ground to set up all the systems necessary for trading and possibly could make use of some help.</p>
<p>Answering your question: PHP and Java are two different universes, and imposing a requirement of learning PHP on your friend will just make the enterprise even more technologically risky. And since your friend doesn't seem to be comfortable with the idea will simply not work.</p>
http://stackoverflow.com/questions/1533588/im-a-developer-how-do-i-become-a-technical-manager/1544144#15441441Answer by Totophil for I'm a developer. How do I become a technical manager?Totophil2009-10-09T14:31:31Z2009-10-09T14:31:31Z<p>The “how to land a position as a technical manager at another company” question doesn’t seem to provide any obvious, nor practical answer, at least to me. Thinking of technical managers who I personally know I realise that there are about a gazillion ways of becoming one, some of which seem to do more with luck rather than a fail-safe method. One thing for sure developers don’t seem to morph into managers automatically as they grow older. Notoriously there is also chicken and egg problem with the management experience needed to get the job.</p>
<p>Instead let’s approach the problem from the other end by asking “why do companies hire technical managers externally”? Is there anything in you currently that you could use to substitute for much needed chicken or egg (depending on the side you take in the debate)? Here the answers are a tad more obvious:</p>
<ul>
<li>The company ran out of capable people they can promote internally to do the job.</li>
<li>No one internal wants to do the job.</li>
<li>There are both capable and willing people within the company, but they need someone above all loyal to the hiring manager and can be trusted (for reasons possibly involving unpopular things such as lay-offs, off-shoring and re-structuring). </li>
</ul>
<p>Hence from the point of view of whoever makes the hiring decision you need to appear as capable, willing, loyal and trustworthy to land the job. </p>
<p>Loyalty and trust are the easy ones. New hires as a rule are loyal to whoever has hired them. Who you know or who you have worked with in the past can help here a lot as well. </p>
<p>The qualities of willingness and ability to do the job however are not quite clear and best answered with yet another question: <a href="http://stackoverflow.com/questions/229257/what-do-project-managers-do-all-day/233610#233610">what do technical managers do</a>? </p>
<p>Managerial job boils down to the same things developers do: creation, maintenance, support, fixing, monitoring and troubleshooting of complex systems. Just when programmers deal with the systems primarily made of software, hardware and data, managers work in the domain of systems concerned with people, money and ways of doing things.</p>
<p>The practical implications of this difference as far as willingness concerned is that manager needs to be comfortable dealing with people, large sums of money and processes. Companies are not interested in managers who’re simply willing to do the job because it pays well, but rather these who know and understand <a href="http://stackoverflow.com/questions/1543269/what-do-you-find-to-be-difficult-and-frustrating-about-managing-software-developm">difficulties of the job</a> and then still genuinely want to be doing it. </p>
<p>What abilities are necessary, apart from the basic politeness and charisma which are fundamental to dealing with people? It’s evident that in case company doesn’t have any more internal people capable to do the job it’s because they either exhausted their pool of potential managers, or they want things to be run significantly differently from the way they are now. If the former is the reason all you’ll need is to be skilled as a manager, i.e. know how to handle different aspects of managerial job. One straightforward way to obtain the initial skill is to get some training.</p>
<p>However when a company is looking for someone to come and change the way things are done that’s where it gets interesting. The development might be done using COBOL and Waterfall but they would really want someone to help make a transition into C# and Scrum, or just migrate onto a new version of COBOL. Or their support cannot cope with the flow of bugs and requests and they need someone to organise the operation and up the quality without increasing the head count and spending too much extra money. Or the company plans to go into the mobile software market or car insurance industry and not sure how. In other words something that you consider to be common knowledge might be exactly what they are looking for as long as you’re able to establish and run a new system of doing thing for them.</p>
<p>Granted this kind of experience might be not valuable enough to land a technical manager job with a well-known name or company large enough to offer a compensation package that will put Steve Ballmer to shame. But sure somewhere on the market there is a company that will be happy to accept hard work in exchange for the ability to get the initial experience. </p>
http://stackoverflow.com/questions/1543269/what-do-you-find-to-be-difficult-and-frustrating-about-managing-software-developm/1543808#15438081Answer by Totophil for What do you find to be difficult and frustrating about managing software development?Totophil2009-10-09T13:37:47Z2009-10-09T13:37:47Z<p>Computers do what was said instead of what was meant. People do what they think was meant instead of what had been said. </p>
<p>People have agendas. And there are as many agendas as there are people on your team.</p>
<p>Quality is the biggest variable in any software project. </p>
http://stackoverflow.com/questions/1524456/java-static-fields-behaviour-in-different-executions/1524482#15244821Answer by Totophil for Java : static fields behaviour in different executionsTotophil2009-10-06T09:15:02Z2009-10-06T09:15:02Z<p>You've launched two copies of JVM and each copy has loaded an instance of Static. By the way, static classes are unique per class loader, so it's possible to actually get two instances within the same JVM.</p>
<p>It's best to avoid using keywords as identifiers (Static) even if capitalised.</p>
http://stackoverflow.com/questions/1487102/what-factors-do-you-consider-when-deciding-what-to-work-on-next/1519880#15198801Answer by Totophil for What factors do you consider when deciding what to work on next?Totophil2009-10-05T12:46:20Z2009-10-05T12:52:35Z<p>Since you didn't specify whether you talk from developer or manager perspective, I'll try to cover both.</p>
<p>Providing a framework for prioritisation of efforts is a management’s direct job. The immediate day-to-day prioritisation may stay with management or be handed over to developers. </p>
<p>The decision who should work on what and when in average company is likely to be perceived as a matter of power, control and prestige by both groups and one who makes the most prioritisation decisions as clearly more important player. </p>
<p>In shrewd companies, however, it is well understood that decisions have several interesting properties:</p>
<ul>
<li><p>Each takes time and effort to make, which is diverted from doing the actual work.</p></li>
<li><p>Every decision is a trade off</p></li>
<li><p>To make a good trade off one who makes the decision needs all the right information in her or his disposal</p></li>
</ul>
<p>Subsequently, management doesn’t have all the information to make every decision and nor they likely to have right information to make a good trade off in each case, but developers cannot spend their time doing hundreds of prioritisation decisions per day instead of producing software, nor do all necessary co-ordination.</p>
<p>Hence the solution is for management to create a simple framework for task assessment and prioritisation and hand it to developers who will quickly apply it on case by case basis, filling the gaps. In management lingo such framework is called strategy; it saves time by removing repetitive redundant decision making, gives focus and consistency to the efforts, and provides direction. It should be detailed enough to remove the burden of re-assessing the situation each time, but loose enough to allow developers to make right choices when it matters. </p>
<p>The framework itself may give very straightforward rules for making decisions or, alternatively, provide some analytical methods such as Pareto, SWOT, Cost Benefit, Expected Return analysis or Porter Five Forces etc. However, it is worth keeping the rules simple, unambiguous and as straightforward as possible.</p>
<p>Joel Spolsky made available to the world several very good internal software strategy documents written in plain English. Not all documents are directly to do with developing software (showing that it viable actually to have a different unrelated decision frameworks for various aspects of the company life). Also since the documents are several years apart it’s actually possible to see how these frameworks kept changing to suit the situation:</p>
<ol>
<li><a href="http://www.joelonsoftware.com/articles/fog0000000038.html" rel="nofollow">Fog Creek Compensation</a> </li>
<li><a href="http://www.joelonsoftware.com/articles/Our.NetStrategy.html" rel="nofollow">Our .NET Strategy</a> </li>
<li><a href="http://www.joelonsoftware.com/articles/SetYourPriorities.html" rel="nofollow">Set Your Priorities</a></li>
<li><a href="http://www.joelonsoftware.com/items/2009/07/20.html" rel="nofollow">Fruity treats, customization, and supersonics: FogBugz 7 is here</a> </li>
</ol>
<p>If you're intrested in choosing what things to work on from a personal point of view one of the best advices around in my opinion is the one given by Paul Graham in his essay "<a href="http://www.paulgraham.com/hs.html" rel="nofollow">What You'll Wish You'd Known</a>". </p>
http://stackoverflow.com/questions/1513046/dangers-that-threaten-a-project-near-completion/1519443#15194436Answer by Totophil for Dangers that threaten a project near completionTotophil2009-10-05T11:08:32Z2009-10-05T11:08:32Z<p>If the project has been managed correctly all the way through (iterations, interim targets, user involvement, end-to-end testing including integration testing etc) then there unlikely to be any serious scope or quality issues just prior to the completion that cannot be rectified given you have all the right people on a standby. </p>
<p>That’s it, as long as you have all the right people on a standby. The biggest risk with “nearly completed” projects, in my experience, is that they’re perceived as low risk, “a done deal” by everyone involved. If you managed well the number of known issues towards the completion decreases, so does the development workload. People are assigned to look at other projects; upper management diverts its attention to “more urgent “ and newer projects. The hand-over might be perceived as a bare formality and thus might drag forever. </p>
<p>These are real risks of not having instant executive level support when things go wrong and loosing people to other projects and not having them on a standby during the transition period should something go wrong.</p>
<p>The seamy side of the coin is not having another project in the pipeline for the project team to go to, no clearly communicated plan of what will happen to them once the project is finished. As a result the team might unintentionally drag the completion to prolong the project and the established status quo (especially if the experience of development was a positive one).</p>
<p>The opposite might also be true; people might be willing to leave as soon as possible not to see the project through the deployment phase and hanging any inherent problems to the support team to take care of. In the absence of the original team the success will be very difficult to achieve. </p>
<p>And of course, there might be much more political opposition to the project being deployed coming from the actual users than it was initially expected. Even if user group representatives have been happily accepting the functionality all the way through they might change their opinion pretty much overnight (typically the night after deployment) saying vague things like “nothing works”, “software lacks fundamental functionality” and “we’ve got a loads to do, haven’t got around yet to try the new functionality” etc. But the actual reasons behind the resistance to the change can be rooted in the way the new software forces them into greater efficiency, imposes more transparency and prevents them from doing all sorts of optimisations to make the system work in their favour. </p>
<p>It’s worth planning the delivery of any significantly new or different functionality during quiet periods when usage is going to be minimal. </p>
<p>Obviously whenever the “big-bang” approach is chosen to go live the overall level of risk and severity of possible impact increases by an order of magnitude. “Big-bang” simplifies greatly migration from any existing software but still needs to be used only when there is not other viable alternative. Going live gradually buys the team time for sorting out any issues that appear in relative isolation, as for the “all-or-nothing” approach if several things go up in flames at the same time (and sure they would) co-ordination of fire-fighting and prioritisation between usually limited number of available specialists becomes a real test of PM abilities.</p>
<p>As far as any transition or closure concerned as the last stage of a software project it needs to be watched as closely as any other phase in the project lifecycle, it has to have a clear and realistic completion criteria, deadlines and all the right specialists and management support, instead of a sole project manager left to frantically try and pinch a developer here and there to brush up the defects and talk everyone concerned into signing the final paperwork. Of course, not that this would ever happen in a real-world software company!</p>
http://stackoverflow.com/questions/1513344/how-to-get-the-last-key-pressed-without-stopping-the-c-programm/1513379#15133791Answer by Totophil for How to get the last key pressed without stopping the C programm ? Totophil2009-10-03T09:57:51Z2009-10-03T09:57:51Z<p>Multiple threads?</p>
http://stackoverflow.com/questions/1478882/boss-doesnt-believe-my-time-estimate-advice-backup/1497469#14974691Answer by Totophil for Boss doesn't believe my time estimate... advice/backup?Totophil2009-09-30T11:09:47Z2009-09-30T11:09:47Z<p>The situation described is very common especially on software development definition and planning stage and it is incredibly important to learn how to handle it. When making new things, frequently it’s not only the solution that is fuzzy, but the problem statement itself lacks clarity and requires re-definition. </p>
<p>Essentially the scenario implies at least one of the three things:</p>
<ol>
<li><p>Your boss doesn’t know what he is talking about nor has realistic expectations.</p></li>
<li><p>You don’t know what you’re taking about or not smart enough or just plain lazy. </p></li>
<li><p>You and your boss have wildly different idea of what the problem is or what the solution is going to be or probably both.</p></li>
</ol>
<p>It’s not difficult to see how the first two implications are really offensive. It’s very easy to naturally digress into situation when you might take the position implying that your boss is a loony incompetent dreamer and simultaneously for your boss to adopt the view involving you being both slothful and incompetent techie who’s unaware of business realities. </p>
<p>Hence the only sane way out that will help you maintain good relationship and make some progress on the work that keeps the company going seems to be the third option. Normally one of you would say: “Right, such a big discrepancy in the figures can mean only one thing: we understand the problem or the solution rather differently, lets talk through the problem and the solution again, now in much greater detail, until we see where these differences are and manage to get to a common understanding”.</p>
<p>Eventually it might turn out that both the understanding of the problem and the proposed solution were incorrect. It might turn out that you need to work to a target, meet a deadline to cash the sale; maybe with a simple solution which is just 60% there and then further expand it to 80% in version two, instead of honouring the initial 100% scope and including less valuable but dev time hungry features that can be easily sacrificed.</p>
<p>In a small start-up no one can be defensive; it’s hard enough to bring the new work in and everyone needs to be very resourceful about solving problems given the circumstances. Thus you and the boss need to equally persist in trying to re-formulate the problem and looking for a realistic solution until you agree on a single sensible way to go about the project.</p>
http://stackoverflow.com/questions/1287844/what-is-software-development-plan7What is software development plan?Totophil2009-08-17T13:02:39Z2009-09-22T05:21:48Z
<p>Whilst browsing through answers on SO I came across something that is, in my view, one of the more frequent software development management misconceptions: "[software development] plan is a reasonably detailed description of all the activities you need to undertake".</p>
<p>Hence the question: what is good software development plan? Can it be boiled down just to a work breakdown structure; is WBS the single most important thing for a software development plan anyway?</p>
http://stackoverflow.com/questions/225929/what-is-the-exact-problem-with-multiple-inheritance10What is the exact problem with multiple inheritance?Totophil2008-10-22T14:17:50Z2009-09-02T14:54:44Z
<p>I can see people asking all the time whether multiple inheritance should be included into the next version of C# or Java and C++ folks, who are fortunate enough to have this ability, say that this is like giving someone a rope to eventually hang themselves. </p>
<p>What’s the matter with the multiple inheritance? Are there any concrete samples? </p>
http://stackoverflow.com/questions/1256600/scrum-are-you-a-chicken-or-a-pig/1299603#12996030Answer by Totophil for Scrum - Are you a chicken or a pig?Totophil2009-08-19T12:27:13Z2009-08-19T12:38:32Z<p><strong>Summary:</strong> swapping pig and chicken roles during Sprint can endanger initial contract made prior to it's start, thus endangering successful delivery.</p>
<p>The concept of pig and chicken is just a Scrum’s metaphor for what is otherwise known in project management field as <a href="http://www.google.co.uk/search?hl=en&q=product+development+cycle+direct+and+indirect+stakeholders&meta=&aq=f&oq=" rel="nofollow">direct and indirect stakeholders</a> of the product development cycle.</p>
<p>The short, memorable and funny <a href="http://en.wikipedia.org/wiki/The%5FChicken%5Fand%5Fthe%5FPig" rel="nofollow">story of pig and chicken</a> starting up an eatery makes a great metaphor and helps explaining the stakeholder concept without resorting to management lingo. </p>
<p>One of the great things about <a href="http://en.wikipedia.org/wiki/Scrum%5F%28development%29" rel="nofollow">Scrum</a> is that it makes current management technology accessible to non-managers. Making it consumer-grade or user-friendly as we would say about software systems.</p>
<p>So can a chicken (indirect stakeholder) turn into pig (direct stakeholder) and vice versa during the development cycle? Can a person be both a chicken and a pig at the same time?</p>
<p>Answering the latter it’s a definite “no”: a person can only be either a chicken or a pig in the context of a single project, whichever stake is greater. The whole chicken and pig division idea is about giving greater decision making power and responsibility during a project stage to the people who are directly involved and intrested in the positive outcome (pigs), limiting interference coming from sometimes powerful external players (chickens). </p>
<p>Can the role change during the project? Yes it can, but not during <a href="http://en.wikipedia.org/wiki/Sprint%5F%28scrum%29" rel="nofollow">Sprint</a>. Scrum being <a href="http://agilemanifesto.org/" rel="nofollow">Agile</a> development methodology it aims at putting collective responsibility for the outcome on the entire team. Agile (and especially Scrum) promotes “one-for-all and all-for-one” attitude. Not all structured methods do that, for instance one of <a href="http://en.wikipedia.org/wiki/Waterfall%5Fmodel" rel="nofollow">Waterfall</a> weaknesses is that some team members’ responsibility ends as soon as an interim deliverable is accepted (i.e. functional spec) which shifts the weight of any issues that surface much further into the project onto the shoulders of unfortunate team members who have the responsibility to make project successful during the later development stages (usually developers).</p>
<p>Scum iteration, called Sprint is aimed at delivering a complete change from spec to ready-to-use product, instead of some sort of interim deliverable. The team provides a lot of input into deciding what goes into Sprint and subsequently has to collectively commit itself to delivering the change. That creates a contract between the team and outside world.</p>
<p>Changing the roles during the Sprint can endanger this contract. If a pig becomes a chicken he or she is no longer responsible for seeing the Sprint to completion putting the burden of dealing with any shortcomings in their work onto the shoulders of remaining team members. When a chicken becomes a pig during a Sprint they cannot realistically commit themselves to something that has been agreed before they came on board. Hence it’s best when the roles stay unchanged for the duration of Sprint.</p>
http://stackoverflow.com/questions/865215/constituents-of-a-good-relational-database-design7Constituents of a good relational database designTotophil2009-05-14T19:29:27Z2009-08-17T13:05:11Z
<p>What are the constituents of a good relational database design?</p>
<p>I'd want to ask this question in a bit unusual way, lets see if anyone likes the idea. Also read on to see how it's not a duplicate of the question about <a href="http://stackoverflow.com/questions/387339/database-design-best-practices">DB design best practices</a> (or any other question for that matter). The idea is that as a result of voting we will have constituents ranked by their perceived importance. </p>
<p>I'd appreciate if you could:</p>
<ol>
<li>Specify 1 (one) constituent of a good relational database design per answer, give multiple answers if you must.</li>
<li>State the idea in a fewest number of words possible on the top of your answer.</li>
<li>Then give possibly two illustrations:
<ul>
<li>benefit of having the constituent</li>
<li>cost of not paying enough attention to the constituent </li>
</ul></li>
</ol>
<p>Please avoid (again if possible) posting duplicate constituents, if something you'd like to highlight is already submitted please choose something else, unless, of course you can give a better illustration. I'm sure there are at least two dozens highly important things one needs to incorporate into the design.</p>
http://stackoverflow.com/questions/1276998/proof-of-concept/1277021#12770211Answer by Totophil for Proof of ConceptTotophil2009-08-14T09:58:00Z2009-08-14T09:58:00Z<p>As obvious as it sounds it's best to concentrate on proving the central idea of the concept beyond reasonable doubt as quickly and cheaply as possible. </p>
<p>If the essential idea behind the concept is “achieving manual data entry functionality in WPF” then obviously stick with WPF, if the central idea is GUI framework agnostic then go for WinForms.</p>
http://stackoverflow.com/questions/1231913/lock-free-array-element-swapping/1232239#12322392Answer by Totophil for Lock Free Array Element SwappingTotophil2009-08-05T09:53:17Z2009-08-06T12:33:13Z<p>Regardless of API used you won't be able to achieve both thread-safe and lock-free array element swapping in Java.</p>
<p>The element swapping requires multiple read and update operations that need to be performed atomically. To simulate the atomicity you need a lock.</p>
<p>EDIT: </p>
<p>An alternative to lock-free algorithm might be micro-locking: instead of locking the entire array it’s possible to lock only elements that are being swapped. </p>
<p>The value of this approach fully is questionable. That is to say if the algorithm that requires swapping elements can guarantee that different threads are going to work on different parts of the array then no synchronisation required. </p>
<p>In the opposite case, when different threads can actually attempt swapping overlapping elements then thread execution order will matter. For example if one thread tries to swap elements 0 and 1 of the array and the other simultaneously attempts to swap 1 and 2 then the result will depend entirely on the order of execution, for initial {‘a’,’b’,’c’} you can end up either with {‘b’,’c’,’a’} or {‘c’,’a’,’b’}. Hence you’d require a more sophisticated synchronisation.</p>
<p>Here is a quick and dirty class for character arrays that implements micro locking:</p>
<pre><code>import java.util.concurrent.atomic.AtomicIntegerArray;
class SyncCharArray {
final private char array [];
final private AtomicIntegerArray locktable;
SyncCharArray (char array[])
{
this.array = array;
// create a lock table the size of the array
// to track currently locked elements
this.locktable = new AtomicIntegerArray(array.length);
for (int i = 0;i<array.length;i++) unlock(i);
}
void swap (int idx1, int idx2)
{
// return if the same element
if (idx1==idx2) return;
// lock element with the smaller index first to avoid possible deadlock
lock(Math.min(idx1,idx2));
lock(Math.max(idx1,idx2));
char tmp = array[idx1];
array [idx1] = array[idx2];
unlock(idx1);
array[idx2] = tmp;
unlock(idx2);
}
private void lock (int idx)
{
// if required element is locked when wait ...
while (!locktable.compareAndSet(idx,0,1)) Thread.yield();
}
private void unlock (int idx)
{
locktable.set(idx,0);
}
}
</code></pre>
<p>You’d need to create the SyncCharArray and then pass it to all threads that require swapping:</p>
<pre><code>char array [] = {'a','b','c','d','e','f'};
SyncCharArray sca = new SyncCharArray(array);
// then pass sca to any threads that require swapping
// then within a thread
sca.swap(15,3);
</code></pre>
<p>Hope that makes some sense.</p>
<p>UPDATE:</p>
<p>Some testing demonstrated that unless you have a great number of threads accessing the array simulteniously (100+ on run-of-the-mill hardware) a simple synchronise (array) {} works much faster than the elaborate synchronisation.</p>
http://stackoverflow.com/questions/1204734/what-are-the-possible-obstacles-for-a-project-if-team-members-are-geographical-fa/1205879#12058790Answer by Totophil for What are the possible obstacles for a project if team members are geographical far from each other?Totophil2009-07-30T11:01:51Z2009-07-30T11:01:51Z<p>Bandwidth when exchanging info face to face or being in the same office is several orders of magnitude higher than when using a combination of instant messaging, wiki, issue tracking, phone, skype and screen sharing.</p>
<p>It's also much more difficult just to initiate the exchange of info when in different locations geographically.</p>
http://stackoverflow.com/questions/1191385/how-to-deal-with-managers-who-always-seem-to-know-best/1205734#12057340Answer by Totophil for How to deal with managers who always seem to know best?Totophil2009-07-30T10:27:55Z2009-07-30T10:27:55Z<p>Let’s try to get things in a perspective. Look for a moment at the responsibilities within the company and the way they are distributed. The director gets her mandate directly from the company owners; she is ultimately responsible for running the company and might even end up in prison if she or her company fails to comply with the law.</p>
<p>She delegates part of her responsibilities and decision making power down the ladder; however she is still responsible for any consequences of your action as long as you performed within your remit. Actually she is responsible for setting up controls, checks and balances to catch you out if you go outside your remit.</p>
<p>The bottom line is that her legal responsibility for company performance is all encompassing and much greater than that of any of her subordinates.</p>
<p>The way delegation of power and responsibility works it is based partly on formal legal agreements, laws and mostly on trust. If you were ever caught out quietly executing your own agenda (as some of the answers suggest) on the expense the company objectives she has clearly set the trust is going to be badly damaged. The consequences would vary proportionally to the offence, but in the mildest case it is likely that you will find yourself on a periphery with much less responsibility and power to change things. </p>
<p>So don’t fight, acknowledge the facts: it’s her game; it’s her ultimate responsibility and her decisions. The things that could help handle the situation:</p>
<ul>
<li>Act within your remit.</li>
<li>When in doubt discuss your remit with the boss, to clear up any misunderstandings about your responsibilities.</li>
<li>Bring anything up that can realistically affect your ability to fulfil your responsibilities and openly ask for her support with these issues (extra resources, time, guidance etc). If in doubt discuss what kind of support you can and cannot expect.</li>
<li>Build up the trust by standing behind directors decisions (even when you disagree) and acting in her interests.</li>
<li>Present any important issues in a form that is meaningful to her and relevant to her objectives.</li>
<li>Don’t expect her to do your job: if the job involves providing a robust web site within constraints of budget, time and human resources don’t keep going about irrelevant table locks, talk in terms she understands (money, man-hours, uninterrupted service, priorities), but be prepared for a deep drill down into some of the issues.</li>
</ul>
<p>Apart from handing over the responsibilities she implicitly agrees to give you a certain level of support necessary for you to be able to fulfil them. If the director fails to do so then start looking for another job. Don’t try to change or educate her, just look after yourself and the responsibilities you have taken. </p>
<p>Hope this doesn’t sound as a pile of useless business-speak and actually helps.</p>
<p>P.S. Look up <a href="http://en.wikipedia.org/wiki/Agency%5Ftheory" rel="nofollow">agency theory</a> for better understanding of how your relationship with the director supposed to work and how to make it work productively.</p>
http://stackoverflow.com/questions/1175671/understanding-the-role-of-the-species-known-as-pm/1193454#11934541Answer by Totophil for Understanding the role of the species known as "PM"Totophil2009-07-28T11:20:48Z2009-07-28T11:37:49Z<p><strong>Project Manager</strong> a person responsible for managing project, specifically its scope, quality of deliverables, deadlines, time spent, and budget. PM bears responsibility for all project deliverables. See my <a href="http://stackoverflow.com/questions/229257/what-do-project-managers-do-all-day">other answer</a> for a drill down on PM responsibilities. On small projects PM wears multiple hats, but during bigger ventures may have others to help her (or him), such auxiliary jobs might carry the titles of:</p>
<ul>
<li><p><strong>Project Co-ordinator</strong> is someone who co-ordinates project work between various parties involved and individual stakeholders.</p></li>
<li><p><strong>Project Administrator</strong> keeps reporting up to date, including project status, does all kinds of other administrative tasks.</p></li>
<li><p><strong>Project Expeditor</strong> does exactly what the title says: chases everyone up, removes obstacles from the project team’s path and makes sure there is always steady progress.</p></li>
</ul>
<p><strong>Product Manager</strong> takes responsibility for a product and <a href="http://en.wikipedia.org/wiki/Product%5Flife%5Fcycle%5Fmanagement" rel="nofollow">full product lifecycle</a>. The products are normally created and evolved through a series of projects. The relationship between products and projects is many-to-many. A single project may contribute to many products’ evolution and a single product requires several projects to keep carrying it from one lifecycle stage to another. It’s also important that product lifecycle constitutes a series of states (such as “shipping the product” or “supporting the product”) that are usually carried on as processes and state changes done as projects. Read on the <a href="http://stackoverflow.com/questions/604748/difference-between-project-management-and-process-management">difference between a project and a process</a>.</p>
<p><strong>Program Manager</strong> manages a series of interdependent projects aimed towards a common end. Some of the projects are executed in parallel, some sequentially. Program Management is fairly similar to project management, where individual tasks are replaced by entire projects. Think in terms of the space exploration program.</p>
<p>Obviously these titles are not set in stone and companies would often attribute a somewhat different meaning or completely redefine them. The definitions I’ve given are generally accepted within the management community.</p>
http://stackoverflow.com/questions/156893/write-a-program-in-30-minutes-for-a-c-programmer-candidate-interview-question/157150#157150Comment by Totophil on Write a program in 30 minutes (for a C# programmer candidate interview question).Totophil2009-11-16T11:36:05Z2009-11-16T11:36:05ZGood one, but I'd be very careful about asking this question though. The candidate might be under NDA and depending on the circumstances the practise may lead to the company taken to court.http://stackoverflow.com/questions/1728781/interface-vs-abstractclass-classComment by Totophil on interface Vs abstractclass classTotophil2009-11-13T12:10:52Z2009-11-13T12:10:52ZSeems as homework or Java course assessment questions to me.http://stackoverflow.com/questions/1572226/how-necessary-is-managers-diploma-to-be-a-team-leader-project-manager-etc/1572237#1572237Comment by Totophil on How Necessary is Manager's Diploma to be a Team-Leader, Project Manager etc.?Totophil2009-10-15T14:37:05Z2009-10-15T14:37:05ZProgram — several inter-dependent or related projects, aimed at achieving the same set of goals. http://stackoverflow.com/questions/1487102/what-factors-do-you-consider-when-deciding-what-to-work-on-next/1512125#1512125Comment by Totophil on What factors do you consider when deciding what to work on next?Totophil2009-10-13T14:18:16Z2009-10-13T14:18:16ZSome key things about company identity and strategy, particularly in the field of new product development, cannot be justified in terms of effort and value to customer (a legendary sample would be Google’s “I’m feeling lucky” button: costs millions, but doesn’t add much direct value). Moreover, SO wouldn’t have been created if the decision was made based on effort-value, Experts-Exchange on the contrary would.http://stackoverflow.com/questions/1487102/what-factors-do-you-consider-when-deciding-what-to-work-on-next/1512125#1512125Comment by Totophil on What factors do you consider when deciding what to work on next?Totophil2009-10-13T14:17:46Z2009-10-13T14:17:46ZSome things are impossible to convert into direct monetary value: human life, environment, health, good repute, legal compliance, some are very hard to convert accurately enough to make useful judgements. Cost-benefit (or effort--value) analysis is likely to produce a short-term, “quick win” approach and neglect mid- or long-term strategy or any possible emergence. Unfortunately, it’s seems as one the simplest practical analytical tools for decision making to grasp, explain and use as a justification and hence probably it’s popularity. http://stackoverflow.com/questions/357233/what-dead-programming-languages-do-you-know/357509#357509Comment by Totophil on What dead programming languages do you know?Totophil2009-10-10T18:43:50Z2009-10-10T18:43:50Z+1 and 15 charactershttp://stackoverflow.com/questions/1531412/putting-data-from-2-classes-into-one-array-with-2-packages/1531503#1531503Comment by Totophil on putting data from 2 classes into one array with 2 packagesTotophil2009-10-07T13:13:22Z2009-10-07T13:13:22Z+1 won't compile, Java identifiers should have unique full names.http://stackoverflow.com/questions/1531412/putting-data-from-2-classes-into-one-array-with-2-packages/1531459#1531459Comment by Totophil on putting data from 2 classes into one array with 2 packagesTotophil2009-10-07T13:10:03Z2009-10-07T13:10:03Z@Aaron Digulla, in Java interfaces can have fields. However in that case they are implicitly final, public and static.http://stackoverflow.com/questions/1448092/can-i-have-different-copies-of-a-static-variable-for-each-different-type-of-inher/1448613#1448613Comment by Totophil on Can I have different copies of a static variable for each different type of inheriting classTotophil2009-10-06T09:23:39Z2009-10-06T09:23:39ZNot override, but hide.http://stackoverflow.com/questions/590445/should-i-learn-openedge-as-a-c-programmer/1002382#1002382Comment by Totophil on Should I learn Openedge as a C# programmerTotophil2009-09-11T09:20:44Z2009-09-11T09:20:44Z+1 for "being stuck in mud" metaphorhttp://stackoverflow.com/questions/1276998/proof-of-concept/1277029#1277029Comment by Totophil on Proof of ConceptTotophil2009-08-14T10:06:57Z2009-08-14T10:06:57Z"I would let him decide. He is the one paying for it." — more frequently than not people pay to delegate decision making to experts: Don't discuss solution, discuss requirements (<a href="http://stackoverflow.com/questions/416779/when-the-client-asks-for-something-ludicrous-and-insists/423932#423932" rel="nofollow" title="when the client asks for something ludicrous and insists">stackoverflow.com/questions/416779/…</a>) http://stackoverflow.com/questions/1231913/lock-free-array-element-swapping/1232239#1232239Comment by Totophil on Lock Free Array Element SwappingTotophil2009-08-06T09:45:37Z2009-08-06T09:45:37ZTom, the way I understand it that would need to be an atomic swap operation supported on the hardware level. Although it's possible to swap using microlocking through CAS the synchronisation need to extend past the swap operation itself, because the order of swaps matter.http://stackoverflow.com/questions/1176634/what-is-critical-path/1176683#1176683Comment by Totophil on What is Critical Path?Totophil2009-07-24T10:16:30Z2009-07-24T10:16:30ZMatW, in fact product development within manufacturing is also iterative, versioned and products are patched. Car marks and face-lifts are versions (normally referred to as "engineering levels"), development of a new car goes through iterations and rarely started from scratch, cars are patched (patches are referred to as "manufacturer re-call", and often done as part of scheduled maintenance). Similarly to manufacturing, software needs to be released in working configuration regadless of features included. Similar to software, in manufacturing products during development have wish lists.http://stackoverflow.com/questions/1157935/what-should-be-the-differences-between-the-team-leader-and-team-member-in-a-inter/1157950#1157950Comment by Totophil on What should be the differences between the team leader and team member in a internal development team? Totophil2009-07-21T10:59:19Z2009-07-21T10:59:19Z+1 for accountabilityhttp://stackoverflow.com/questions/1131303/best-professional-cv-editing-service-for-developer-in-the-uk/1131327#1131327Comment by Totophil on Best professional CV editing service for developer in the UKTotophil2009-07-15T13:46:05Z2009-07-15T13:46:05ZJesse, as a rule agent might remove your personal info (if they don't have exclusive representation) and add a short summary table on the top stating availablility (both for the job and interview), preferred salary range or daily rate + their commission, and a small paragraph highlighting your expirience relevant to the role. It will normally be clearly indicated that the summary is added by the agency. Adding to CV as opposed to a separate file helps keeping info about the candidate together.