On Jan 27, 2011, at 1:02 AM, Jan Vlčinský (CAD) jan.vlcinsky@cad-programs.com wrote:
PS: One of my former clients was crazy about speed. Dream solution he was asking for was program with just one button called Quick. Push it and have the work done within few seconds. Once I implemented it (partially).
That reminds me of a class a colleague of mine once made upon yet another unreasonable request:
public class Miracle { public void sacrifice(Object o) {} public void perform() throws Exception { throw new Exception("Insufficient sacrifice"); } }
From time to time it comes in quite handy.
Mark