User Bob Cross - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T19:31:28Zhttp://stackoverflow.com/feeds/user/5812http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1840847/can-someone-copyright-an-sql-query/1841924#18419241Answer by Bob Cross for Can someone copyright an SQL query?Bob Cross2009-12-03T18:31:39Z2009-12-03T18:31:39Z<p>One of your many options here is to create a black box replacement. This sounds like a well-understood problem for which you can write a short requirements document. I would recommend that you include the option to parameterize variable options such as the year in question (!).</p>
<p>More importantly, I would recommend that you make <a href="http://en.wikipedia.org/wiki/SQL%5Finjection" rel="nofollow">SQL Injection</a> and similar attacks impossible in your replacement code. To my mind, if someone has created a cash cow like this, they are focused entirely on milking you for the money and not so much on producing the quality one-time solution that you really need.</p>
<p>Given your requirements document, your recommendation that you have a quality database management system so that you don't get 'hacked', you should be in a solid position to write a functional replacement.</p>
http://stackoverflow.com/questions/1841479/change-in-gc-behaviour-after-move-from-java5-to-6/1841608#18416082Answer by Bob Cross for Change in GC behaviour after move from Java5 to 6Bob Cross2009-12-03T17:40:51Z2009-12-03T17:40:51Z<p>It sounds like you would really like to have something more like a <a href="http://java.sun.com/javase/technologies/hotspot/gc/gc%5Ftuning%5F6.html#cms" rel="nofollow">concurrent collection</a> (as opposed to standard big-bang collections):</p>
<blockquote>
<p>The concurrent collector is designed
for applications that prefer shorter
garbage collection pauses and that can
afford to share processor resources
with the garbage collector while the
application is running.</p>
</blockquote>
<p>Perhaps even more important, you should ensure that you're using the correct VM with the right options, over and above the specific garbage collection options. For example, I've tripped over the <a href="http://java.sun.com/javase/technologies/hotspot/vmoptions.jsp" rel="nofollow">client vs. server VM</a> issue multiple times in my own life.</p>
http://stackoverflow.com/questions/1433632/is-there-a-findbugs-and-or-pmd-equivalent-for-c-c4Is there a Findbugs and / or PMD equivalent for C/C++?Bob Cross2009-09-16T15:14:13Z2009-12-01T21:38:45Z
<p>I was recently asked about alternatives to <a href="http://www.coverity.com/products/static-analysis-features.html" rel="nofollow">Coverity Prevent</a> for a code base that includes both C/C++ and Java. Obviously, on the Java side, the free tools available include Findbugs (compiled code analysis) and PMD (static code analysis). They are very powerful, especially when you start investigating integration with IDEs (which, again, are free).</p>
<p>However, things are dicey when you start moving into the C/C++ realm with the various compilers, architectures, etc.</p>
<p>I have proposed a variety of tools for the Java side, including both Findbugs and PMD. What I am looking for is the best option for the C/C++ side when considered using the following metrics:</p>
<ol>
<li>Price: free is better but can be beaten by better value. However, pricing models that charge per line of code are horrifying.</li>
<li>Feature set: how does this tool make my life better? In what ways does it detect my mistakes before I check them in, before we ship the code, etc.?</li>
<li>Usability: can I use the tool at my desk? Can I share the reports and / or findings? Can I integrate the tool with Fogbugz (which we use in my group)? Can I integrate the tool into CruiseControl (or the equivalent)?</li>
</ol>
<p>The ultimate tool would be something that is as useful and usable as a combination of Findbugs and PMD with identical feature set, all for zero dollars per seat.</p>
http://stackoverflow.com/questions/1401561/is-there-a-netbeans-plugin-or-issue-tracker-that-provides-connectivity-to-fogbugz2Is there a Netbeans plugin or issue tracker that provides connectivity to Fogbugz?Bob Cross2009-09-09T19:22:22Z2009-11-30T14:00:04Z
<p>I would like to be able to create FogBugz cases directly straight from the editor in NetBeans. Specifically, I would like to be able to look at a JUnit run in the IDE, examine the failures and create cases directly using the information that is right in front of me (rather than cutting and pasting into a web browser, etc).</p>
<p>I see that NetBeans 6.5.1 ships with Bugzilla available by default and JIRA connectivity in some sort of beta form. Is there an equivalent FogBugz issue tracker?</p>
<p><em>PS: I am aware of the new plugin architecture of FogBugz 7. However, I have a realistic appreciation of the time that I would be able to commit to creating my own plugin for either NetBeans and / or FogBugz and I suspect that I would be able to make just enough of a partial solution to make my life worse rather than better.</em></p>
http://stackoverflow.com/questions/396337/creating-unit-tests-semi-automatically/877732#8777322Answer by Bob Cross for creating unit tests (semi-)automatically?Bob Cross2009-05-18T13:27:01Z2009-11-20T12:20:57Z<p><strong>tl;dr:</strong> Use code inspection tools instead. They can do what you want, don't pollute your code and can be easily built into an automatic build process.</p>
<p>This doesn't sound like something that should be handled with a unit test. If you are adamant that every class must have a default constructor defined, a static code analyzer might be a better bet. <a href="http://pmd.sourceforge.net/rules/index.html" rel="nofollow">PMD</a> definitely has a detector for this sort of thing. You can also force this sort of detector with <a href="http://checkstyle.sourceforge.net/" rel="nofollow">Checkstyle</a>.</p>
<p>Both of those are easily customizable and can be made a part of your continuous integration process right along side your unit tests. </p>
<p><strong>Most critical point:</strong> This would allow you to implement the functionality that you want without polluting the code base with extra annotations. That's the major tripping point for me as I look at this idea: you've created a huge software management problem. </p>
<p>Just imagine the situation of modifying a class with a default constructor to be immutable (thus requiring that the objects be fully set up during construction). Did you remember to update all of those annotations in that class? Did you remember to change related annotations in other classes that call methods in this one? And so forth.</p>
http://stackoverflow.com/questions/56687/how-do-i-ensure-that-rmi-uses-only-a-specific-set-of-ports2How do I ensure that RMI uses only a specific set of ports?Bob Cross2008-09-11T14:31:47Z2009-11-16T01:40:11Z
<p>In our application, we are using RMI for client-server communication in very different ways:</p>
<ol>
<li>Pushing data from the server to the client to be displayed.</li>
<li>Sending control information from the client to the server.</li>
<li>Callbacks from those control messages code paths that reach back from the server to the client (sidebar note - this is a side-effect of some legacy code and is not our long-term intent).</li>
</ol>
<p>What we would like to do is ensure that all of our RMI-related code will use only a known specified inventory of ports. This includes the registry port (commonly expected to be 1099), the server port and any ports resulting from the callbacks.</p>
<p>Here is what we already know:</p>
<ol>
<li>LocateRegistry.getRegistry(1099) or Locate.createRegistry(1099) will ensure that the registry is listening in on 1099.</li>
<li>Using the UnicastRemoteObject constructor / exportObject static method with a port argument will specify the server port.</li>
</ol>
<p>These points are also covered in this <a href="http://forums.sun.com/thread.jspa?threadID=370039&messageID=1566073" rel="nofollow">Sun forum post</a>. </p>
<p>What we don't know is: how do we ensure that the client connections back to the server resulting from the callbacks will only connect on a specified port rather than defaulting to an anonymous port?</p>
<p>EDIT: Added a longish answer summarizing my findings and how we solved the problem. Hopefully, this will help anyone else with similar issues.</p>
<p>SECOND EDIT: It turns out that in my application, there seems to be a race condition in my creation and modification of socket factories. I had wanted to allow the user to override my default settings in a Beanshell script. Sadly, it appears that my script is being run significantly after the first socket is created by the factory. As a result, I'm getting a mix of ports from the set of defaults and the user settings. More work will be required that's out of the scope of this question but I thought I would point it out as a point of interest for others who might have to tread these waters at some point....</p>
http://stackoverflow.com/questions/541487/java-implements-runnable-vs-extends-thread/541527#54152718Answer by Bob Cross for Java: "implements Runnable" vs. "extends Thread"Bob Cross2009-02-12T14:37:05Z2009-11-13T00:21:31Z<p><strong>The caveat is important</strong></p>
<p>In general, I would recommend using something like <code>Runnable</code> rather than <code>Thread</code> because it allows you to keep your work only loosely coupled with your choice of concurrency. For example, if you use a <code>Runnable</code> and decide later on that this doesn't in fact require it's own <code>Thread</code>, you can just call threadA.run().</p>
<p><strong>Caveat:</strong> Around here, I strongly discourage the use of raw Threads. I much prefer the use of <a href="http://java.sun.com/javase/6/docs/api/java/util/concurrent/Callable.html" rel="nofollow">Callables</a> and <a href="http://java.sun.com/javase/6/docs/api/java/util/concurrent/FutureTask.html" rel="nofollow">FutureTasks</a> (From the javadoc: "A cancellable asynchronous computation"). The integration of timeouts, proper cancelling and the thread pooling of the modern concurrency support are all much more useful to me than piles of raw Threads.</p>
<p><strong>Follow-up:</strong> there is a <a href="http://java.sun.com/javase/6/docs/api/java/util/concurrent/FutureTask.html#FutureTask%28java.lang.Runnable,%20V%29" rel="nofollow"><code>FutureTask</code> constructor</a> that allows you to use Runnables (if that's what you are most comfortable with) and still get the benefit of the modern concurrency tools. As the javadoc suggests that, if you don't need the returned result, you should consider using this constructor (using "threadA" as you did in the question instead of the "runnable" that they used in the documentation):</p>
<pre><code>new FutureTask<Object>(threadA, null)
</code></pre>
http://stackoverflow.com/questions/323341/how-to-convince-my-boss-to-join-programmers-into-pairs-or-even-teams/1723399#17233990Answer by Bob Cross for How to convince my boss to join programmers into pairs or even teams?Bob Cross2009-11-12T16:13:01Z2009-11-12T16:13:01Z<p>Testing: assign a black hat to each project.</p>
<p>Some of the best testers are those that really understand software production. They know how to break software, they can read the source for inspiration, they have the software and bytecode inspection tools that will help them seek out the weak spots.</p>
<p>From management's point of view, you'll have delivered a variety of benefits:</p>
<ol>
<li>Better code: testing and the decision process of "what do we <em>have</em> to fix?" is good for the product.</li>
<li>Cross-training: if you get into a codebase in order to find out how to break it, you can't help but learn about it.</li>
<li>"For-free": black hat can be a part-time job. Just because someone is assigned to break another project, they don't have to stop working on their day job. </li>
<li>Morale: breaking other people's code can be a lot of nasty fun. </li>
</ol>
<p>None of the above are an immediate team-builder. Frankly, if you want a team, you have to do a lot of messy people things. That said, at least you'd have more than one person working together at a time.</p>
http://stackoverflow.com/questions/537058/do-you-get-freelance-projects-while-you-have-a-job/538985#5389851Answer by Bob Cross for Do you get Freelance projects while you have a job ?Bob Cross2009-02-11T21:50:33Z2009-11-11T03:40:26Z<p>No. </p>
<p>First, I already try to push all of my working energy into my day job. When I'm not at work or actively working on my job, I want to be at home, having fun, being a Dad, etc. Second, I want to avoid even a hint of an appearance of the possibility of a conflict of interest. </p>
<p><em>A follow-up quite a long time later:</em> the conflict of interest issue is particularly important for me. If moonlighting were to get me into a commercial relationship with a company, its subsidiary or even a close partner, I would almost certainly be prevented from working on whole classes of technical projects with any of those entities during my day job. </p>
<p>This is when it's important to have honesty-time: whatever little ramshackle boutique project I might manage to <a href="http://en.wikipedia.org/wiki/Cargo%5Fcult#Other%5Fuse%5Fof%5Fthe%5Fterm" rel="nofollow">cargo-cult</a> together is just not going to be worth missing out on the substantial (and very cool) projects that I get to work on during my day job.</p>
http://stackoverflow.com/questions/1668731/software-project-time-estimation/1669128#16691284Answer by Bob Cross for Software Project - Time EstimationBob Cross2009-11-03T18:09:46Z2009-11-10T19:30:33Z<p>Going a different direction, I would recommend that you read a fairly short article by Joel on <a href="http://www.joelonsoftware.com/articles/fog0000000245.html" rel="nofollow">Painless Software Scheduling</a>. I recommend this article for these reasons:</p>
<ol>
<li>It makes it clear that scheduling isn't really all that hard to do acceptably well.</li>
<li>It doesn't have to be scary.</li>
<li>It exposes you to some of the terminology.</li>
</ol>
<p>Here's an example of a useful snippet:</p>
<blockquote>
<p>As a rule of thumb, each task should
be from 2 to 16 hours. If you have a
40 hour (one week) task on your
schedule, you're not breaking it down
enough.</p>
</blockquote>
<p>Coupled with the requirement of engineer's estimates, you have the fundamental roots of a sensible scheduling process.</p>
<blockquote>
<p>Only the programmer who is going to do
the work can figure out what steps
they will need to take to implement
that feature. And only the programmer
can estimate how long each one will
take.</p>
</blockquote>
<p>Admittedly, he has this quote at the very top of the article. Even taking his caveat into account, I really think that you should read the old schedule first. I use evidence-based scheduling all the time (in FogBugz) but I don't think the second article is as accessible as the older one.</p>
<blockquote>
<p>This article is obsolete.</p>
<p>Over the years, I've learned a lot
more about schedules and estimates. A
newer, far better method for producing
accurate software schedules painlessly
is <a href="http://www.joelonsoftware.com/items/2007/10/26.html" rel="nofollow">Evidence-Based Scheduling</a>. Read
that instead.</p>
<p>This article remains here for archival
purposes, but please don't read it!</p>
</blockquote>
<p>Don't listen to Joel! It's still worth reading!</p>
<p><em>EDIT: following-up on Jay's comments below</em></p>
<p><strong>Why 2-16 hours?</strong> These numbers exist because the OP is the target customer for this sort of information: they're asking for useful specific guidelines. A two hour estimate minimum is useful because it forces you to think about your work day in terms of beginning, middle and end (and epilogue if you managed to fit in another two hour task). Any less than that is likely too fine-grained: if you're trying to decide whether a task will take 15 minutes vs. 20 minutes, you're just going to become frustrated and annoyed. 16 hours is a nice number also because it forces you to say, "if there's a task that's going to take me more than two days, it's really more than one task that I need to break into component parts."</p>
<p><strong>Isn't the probability distribution used in EBS useless?</strong> I use Fogbugz and use EBS reports in at least two distinct ways on a regular basis: </p>
<ol>
<li><p>Determining whether we on schedule and, if not, who needs some help (due to schedule conflicts, swine flu, and all the other realities of work life)?</p></li>
<li><p>Reporting to project management on a high level that we are / are not on time, using the probability distribution to answer the immediate question of "how do you know?" The tool automatically calculates a 5%, 50% and 95% probability dates of completion based on everyone's individual estimation histories. </p></li>
</ol>
<p>Almost no-one ever actual wants to see the data behind the dates now but, having beaten that argument to death several times, management actually believes me when I report estimates to complete.</p>
http://stackoverflow.com/questions/1702052/ways-to-prevent-over-engineering/1702076#170207613Answer by Bob Cross for Ways to prevent over-engineering?Bob Cross2009-11-09T16:20:50Z2009-11-09T16:20:50Z<p>Yes, I've seen and experienced this problem many times. The number one solution (for me) is a schedule. Not a marketing department schedule that gets determined by <em>insert Black Magic here</em>. I'm talking about something like a monthly / quarterly schedule that you inflict on yourself or your group where you say "on this date, we must have a buildable, working project that, if they cancelled our project that day, they'd still have something good."</p>
<p>What this does is put real milestones out there that you have to commit to. Remember, milestones are rocks. They don't move. Likewise, the calendar just ticks by. If you can't commit to coming up with a good-enough solution in time, you won't have <em>anything</em> worthwhile on that day.</p>
<p>Personally, I think a three weeks of development + 1 week of integration, testing, clean-up and final prep is a nice arrangement for small to mid-sized groups. Your mileage will vary.</p>
http://stackoverflow.com/questions/1697078/what-do-regular-people-think-of-programming/1697087#16970872Answer by Bob Cross for What do regular people think of programming?Bob Cross2009-11-08T16:43:05Z2009-11-08T16:43:05Z<p>Well, let me put it to you this way: I'm a doctor of Computer Science. My mother-in-law thinks that this makes me qualified to fix her printer.</p>
http://stackoverflow.com/questions/1688338/why-the-name-main-for-function-main/1688378#16883784Answer by Bob Cross for Why the name main for function main()Bob Cross2009-11-06T15:38:27Z2009-11-06T18:10:48Z<p>Quick answers:</p>
<ol>
<li>Why not?</li>
<li>Why change it? To what?</li>
<li>Because it's one of the symptoms that C, C++ and Java all share a common ancestry (specifically, that C has heavily influenced the other two). You won't see main() in Scheme or Prolog, for instance.</li>
</ol>
<p>Personally, I think the answer to questions 2a and 2b are the most important. If you really want to break every C/C++/Java program in the world in order to repair what you feel are flawed aesthetics of a single function name, I would have to ask you if you have your priorities in order.... ;-)</p>
http://stackoverflow.com/questions/1682784/how-can-i-improve-this-comparator/1683216#16832161Answer by Bob Cross for How can I improve this Comparator?Bob Cross2009-11-05T20:08:00Z2009-11-05T23:42:49Z<p><strong>tl;dr:</strong> Take guidance from the JDK. The Double comparator is not defined for either non-numbers or nulls. Make people give you useful data (Doubles, Dates, Dinosaurs, whatever) and write your comparators for that.</p>
<p>As near as I can tell, this is a case of user input validation. For example, if you are taking input from a dialog box, the correct place to ensure that you have a parseable String that is a Double, Date or whatever is in the input handler. Make sure it's good before the user can tab away, hit "Okay" or equivalent.</p>
<p>Here's why I think this:</p>
<p>First question: if the Strings aren't parseable as numbers, I think you're trying to solve the problem in the wrong place. Say, for instance, I try to compare <code>"1.0"</code> to <code>"Two"</code>. The second is clearly not parseable as a Double but is it less than the first? Or is it greater. I would argue that the users should have to turn their Strings into Doubles before they ask your which is greater (which you can easily answer with Double.compareTo, for instance).</p>
<p>Second question: if the Strings are <code>"1.0"</code> and <code>null</code>, which is greater? The JDK source doesn't handle NullPointerExceptions in the Comparator: if you give it a null, autoboxing will fail.</p>
<blockquote>
<p>The worst part is, I need to repeat
this pattern with three other classes
which compare different types of
strings and could raise three other
exceptions while parsing.</p>
</blockquote>
<p>Exactly why I would argue that the parsing should happen outside your Comparator with exception-handling dealt with before it arrives at your code.</p>
http://stackoverflow.com/questions/519405/whats-wrong-with-bringing-code-to-a-programming-job-interview/1683386#16833860Answer by Bob Cross for What's wrong with bringing code to a programming job interview ?Bob Cross2009-11-05T20:32:23Z2009-11-05T20:32:23Z<p><strong>tl;dr:</strong> I have always brought code to interviews. There are enough interesting problems out there that you can quickly write up something representative and tuck that in your bag.</p>
<p>My portfolio includes my resume, my CV (a different sort of document), important slides from presentations (downloaded from JavaOne, for example), code samples (created on my own time on my own computer), interesting design documents (for example, how I would do it now if I had to do it over), runtime images (downloaded from publication site), etc.</p>
<p>Never ever <em>ever</em> put anything in your portfolio that even hints of being a previous employers property or IP. </p>
<p>That said, one of the great things about doing public presentations is that you can download a screenshot from the publication website. You have to give proper credit to the publishing entity for appropriate fair-use, of course.</p>
<p>All that said, I interview people who want to work here who aren't carrying a code sample with them. That's largely a factor of experience: many of them are new graduates. My expectations are significantly higher for experienced professionals, though. My filters are pretty thick, too: we would rather be overworked than hire a single bad person.</p>
http://stackoverflow.com/questions/1681144/what-exactly-is-the-danger-of-using-magic-debug-values-such-as-0xdeadbeef-as-li/1682202#16822020Answer by Bob Cross for What exactly is the danger of using magic debug values (such as 0xDEADBEEF) as literals?Bob Cross2009-11-05T17:27:36Z2009-11-05T17:27:36Z<pre><code>int *i = 0xDEADBEEF;
// god knows if that location is available
int i = 0xDEADBEEF;
// what can go wrong?
</code></pre>
<p>The danger that I see is the same in both cases: you've created a flag value that has no immediate context. There's nothing about <code>i</code> in either case that will let me know 100, 1000 or 10000 lines that there is a potentially critical flag value associated with it. What you've planted is a landmine bug that, if I don't remember to check for it in every possible use, I could be faced with a terrible debugging problem. Every use of <code>i</code> will now have to look like this:</p>
<pre><code>if (i != 0xDEADBEEF) { // Curse the original designer to oblivion
// Actual useful work goes here
}
</code></pre>
<p>Repeat the above for all of the 7000 instances where you need to use <code>i</code> in your code.</p>
<p>Now, why is the above worse than this?</p>
<pre><code>if (isIProperlyInitialized()) { // Which could just be a boolean
// Actual useful work goes here
}
</code></pre>
<p>At a minimum, I can spot several critical issues:</p>
<ol>
<li><strong>Spelling</strong>: I'm a terrible typist. How easily will you spot 0xDAEDBEEF in a code review? Or 0xDEADBEFF? On the other hand, I know that my compile will barf immediately on isIProperlyInitialised() (insert the obligatory <em>s</em> vs. <em>z</em> debate here).</li>
<li><strong>Exposure of meaning</strong>. Rather than trying to hide your flags in the code, you've intentionally created a method that the rest of the code can see.</li>
<li><strong>Opportunities for coupling</strong>. It's entirely possible that a pointer or reference is connected to a loosely defined cache. An initialization check could be overloaded to check first if the value is in cache, then to try to bring it back into cache and, if all that fails, return false.</li>
</ol>
<p>In short, it's just as easy to write the code you really need as it is to create a mysterious magic value. The code-maintainer of the future (who quite likely will be you) will thank you.</p>
http://stackoverflow.com/questions/186070/whats-is-a-good-ratio-of-class-to-lines-of-code-for-object-oriented-languages/1674850#16748501Answer by Bob Cross for What's is a good ratio of Class to Lines of Code for Object-Oriented languages?Bob Cross2009-11-04T16:09:10Z2009-11-04T16:09:10Z<p>If you're really just looking for a rule of thumb then I would say that any class that can't be printed out on a single sheet of paper at a readable resolution is possibly too long and should be refactored. Your target mark might then be on the order of 100-200 lines but, to my mind, the number of pages factor is a little easier to cope with. </p>
<p>I also firmly believe that the number of pages metric should be considered as a factorial measure of badness rather than linear. If there's a ten page class in the code base, that feels like it's at least <em>three million</em> times worse to me than a small well-architected class.</p>
http://stackoverflow.com/questions/1453720/is-loc-correct-parameter-for-project-estimation/1669076#16690760Answer by Bob Cross for Is LOC correct parameter for project estimation?Bob Cross2009-11-03T17:59:47Z2009-11-03T17:59:47Z<p>No, it isn't. The reason is simple: if you produce a new line of code during your development, are you one step closer to a solution? If you estimated 1000 lines of code to complete a task, are you now 0.1% complete with that task.</p>
<p>Lines of code can be used as a metric but only in the negative sense: for a greater number of lines of code, it is reasonable to assume that you have a greater number of bugs. Based on historical data, there is generally a linear correlation between lines of code and bug count. </p>
<p>Here are some useful and measurable factors that are worth considering:</p>
<ol>
<li>Hours of labor.</li>
<li>Dollars spent: this is a good one because it strongly enforces the reality that you'd rather find bugs at the developer's desktop than in the hands of a tester or customer).</li>
<li>Milestones met: is the system available for the customers on the right date?</li>
<li>Requirements completed: this can be a funny one - what if you discover a new customer need during the project?</li>
</ol>
<p>In short, lines of code is very nearly the worst possible metric you could ever use.</p>
http://stackoverflow.com/questions/1651225/how-to-choose-the-jvm-heap-size/1651404#16514043Answer by Bob Cross for how to choose the jvm heap size ? Bob Cross2009-10-30T18:03:16Z2009-10-30T18:03:16Z<blockquote>
<p>My question is how to choose the min
and max values, and the difference
between the two (should max-min be
small or big?)</p>
</blockquote>
<p><strong>Short answer:</strong> don't guess, profile your application.</p>
<p><a href="http://java.sun.com/developer/technicalArticles/J2SE/jconsole.html#LowMemoryDetection" rel="nofollow">jconsole can give you useful high-level data</a> such as a feeling for the main resident set vs. the transient data that we normally allocate and garbage collect. What you'll see if you look at the memory tab of that display is usually something like a sawtooth. The lower corner of the sawteeth is about where I would normally set the heap minimum whereas I would use the peak or slope of the sawteeth to experiment with a heap maximum. If your teeth are very steep, you might consider a big heap just to delay the garbage collection. However, if they aren't, you could try a smaller heap maximum to see if that might leave more resources for other processes on your machine (for example).</p>
<p>You should also consider the <a href="http://java.sun.com/javase/technologies/hotspot/vmoptions.jsp" rel="nofollow">server VM</a> as that will cause different garbage collection behavior.</p>
<p>All that said, you should also use a more detailed tool such as <a href="http://java.sun.com/javase/6/docs/technotes/guides/visualvm/profiler.html" rel="nofollow">jvisualvm to profile the memory usage of your process</a>. It's possible that you have a memory leak or greedy allocator that you could tune or eliminate. That would completely change your heap needs.</p>
http://stackoverflow.com/questions/1508581/is-there-any-practical-use-for-an-esoteric-language/1649660#16496600Answer by Bob Cross for Is there any practical use for an esoteric language?Bob Cross2009-10-30T12:53:37Z2009-10-30T12:53:37Z<p>If you judge only by <a href="http://en.wikipedia.org/wiki/Esoteric%5Fprogramming%5Flanguage" rel="nofollow">the Wikipedia link</a>:</p>
<blockquote>
<p>An esoteric programming language
(sometimes shortened to esolang) is a
programming language designed as a
test of the boundaries of computer
programming language design, as a
proof of concept, or as a joke. There
is usually no intention of the
language being adopted for real-world
programming.</p>
</blockquote>
<p>then, <strong>no</strong>, there is no practical application of such a language to a real problem.</p>
<p>The reasons aren't insults to the languages, they focus on "practical":</p>
<ol>
<li>In practice, if you're solving a problem, you need to be able to convince yourself that you've solved it. If you're using a language that is specifically designed to be hard to read, it's going to be hard to visually inspect your solution and say "Yes, this is correct."</li>
<li>In practice, you're not working in a vacuum. In real life, you're always working with a non-zero set of other people (even if it's just you-in-the-future). Someone else is going to have to maintain your solution, adding a feature here, fixing a problem there or, worse, trying to document what you did and why.</li>
<li>If neither 1 nor 2 apply, you have created a solution to a problem that is (a) trivially easy to inspect and (b) never requires maintenance because it is never used in practice. It is, therefore, a trivial / non-practical problem.</li>
</ol>
http://stackoverflow.com/questions/1648551/why-do-all-java-objects-have-wait-and-notify-and-does-this-cause-a-performanc/1648697#16486976Answer by Bob Cross for Why do all Java Objects have wait() and notify() and does this cause a performance hit?Bob Cross2009-10-30T08:58:45Z2009-10-30T11:45:36Z<blockquote>
<p>Why are these so fundamental that
every object has to have them and is
there a performance hit in having them
(presumably some state is stored in
them)?</p>
</blockquote>
<p><strong>tl;dr:</strong> They are thread-safety methods and they have small costs relative to their value.</p>
<p>The fundamental realities that <a href="http://java.sun.com/javase/6/docs/api/java/lang/Object.html#notify%28%29" rel="nofollow">these methods</a> support are that:</p>
<ol>
<li>Java is always multi-threaded. Example: check out the list of Threads used by a process using jconsole or jvisualvm some time.</li>
<li>Correctness is more important than "performance." When I was grading projects (many years ago), I used to have to explain "getting to the wrong answer <strong>really fast</strong> is still wrong."</li>
</ol>
<p>Fundamentally, these methods provide some of the hooks to manage per-Object monitors used in synchronization. Specifically, if I have <code>synchronized(objectWithMonitor)</code> in a particular method, I can use <code>objectWithMonitor.wait()</code> to yield that monitor (e.g., if I need another method to complete a computation before I can proceed). In that case, that will allow one other method that was blocked waiting for that monitor to proceed. </p>
<p>On the other hand, I can use <code>objectWithMonitor.notifyAll()</code> to let Threads that are waiting for the monitor that I am going to be relinquishing the monitor soon. They can't actually proceed until I leave the synchronized block, though.</p>
<p>With respect to specific examples (e.g., long Lists of Doubles) where you might worry that there's a performance or memory hit on the monitoring mechanism, here are some points that you should likely consider:</p>
<ol>
<li>First, prove it. If you think there is a major impact from a core Java mechanism such as multi-threaded correctness, there's an excellent chance that your intuition is false. Measure the impact first. If it's serious and you <strong>know</strong> that you'll never need to synchronize on an individual Double, consider using doubles instead.</li>
<li>If you aren't certain that you, your co-worker, a future maintenance coder (who might be yourself a year later), etc., will never ever <em>ever</em> need a fine granularity of theaded access to your data, there's an excellent chance that taking these monitors away would only make your code less flexible and maintainable.</li>
</ol>
<p><em>Follow-up in response to the question on per-Object vs. explicit monitor objects:</em></p>
<p><strong>Short answer:</strong> Explicit external locks and monitors are already available in Java if you would like to use them (and you can use these methods to do so). Taking the internal monitors away would only remove easily accessible safety from the software engineer's hands.</p>
<p>My feeling is that synchronized, wait and notifyAll can be used to implement naive (in the sense of simple, accessible but perhaps not bleeding-edge performance) thread-safety. The canonical example would be one of these Doubles (posited by the OP) which can have one Thread set a value while the AWT thread gets the value to put it on a JLabel. In that case, there is no good reason to create an explicit additional Object just to have an external monitor. </p>
<p>At a slightly higher level of complexity, these same methods are useful as an external monitoring method. In the example above, I explicitly did that (see objectWithMonitor fragments above). Again, these methods are really handy for putting together relatively simple thread safety.</p>
<p>If you would like to be even more sophisticated, I think you should seriously think about reading <a href="http://www.javaconcurrencyinpractice.com/" rel="nofollow">Java Concurrency In Practice</a> (if you haven't already). Read and write locks are very powerful without adding too much additional complexity.</p>
<p><strong>Punchline:</strong> Using basic synchronization methods, you can exploit a large portion of the performance enabled by modern multi-core processors with thread-safety and without a lot of overhead. </p>
http://stackoverflow.com/questions/1624725/is-it-ok-to-learn-computer-science-programming-concepts-on-your-own-outside-of-th/1624793#16247934Answer by Bob Cross for Is it ok to learn computer science/programming concepts on your own outside of those being learned in class?Bob Cross2009-10-26T13:29:39Z2009-10-26T14:53:22Z<blockquote>
<p>What should I learn in my spare time
which will not conflict with what I
will be learning in class?</p>
</blockquote>
<p>It is always worth learning ahead. If nothing else, when the topics come up in your coursework, there's an excellent chance that your grades will be better. Worst case: at least you'll have seen the vocabulary words before.</p>
<p>However, if you're looking for specific topic recommendations for an undergraduate, here's a very short list that I think is worth your time:</p>
<ol>
<li>Academic: <strong>data structures</strong>. Learn about the features and limitations of various types of data structures. How are they implemented (or not) in your favorite toolset? How are they implemented in others? What are the time complexities of the associated algorithms? If you had to write them yourself, how would you go about it? When is a list more useful than a hash table? And so forth.</li>
<li>Practical software engineering: <strong>configuration management</strong>. What is revision control and why is it important? What is a conflict? How would you resolve one? What if you are working in a group and you and your friend are both making edits to the same file? How would you manage that?</li>
</ol>
<p>Obviously, there are plenty of other topics worth studying but, based on my time teaching undergraduates and welcoming them into their first job out of school, those are two areas where a lot of them have a hard time. </p>
http://stackoverflow.com/questions/1384036/need-advice-on-shifting-to-programming-and-a-degree/1590393#15903930Answer by Bob Cross for Need advice on shifting to Programming and a degreeBob Cross2009-10-19T18:47:25Z2009-10-19T18:47:25Z<p>It is standard career development practice for people about your age / at your point in their technical careers to get a Master's Degree. Here are some of the benefits as I see them:</p>
<ol>
<li>You get a chance to go deep on areas that interest you.</li>
<li>You have a chance to gain breadth in areas that you might be weak in or realize you need for your career.</li>
<li>It increases your promotability. This is a reality in any marketplace.</li>
<li>It increases your conversation topics in future interviews. "Tell me about course X that your took during your Master's."</li>
<li>Putting money on the table for your degree forces you to take it seriously. It's great to say "I'm going to learn this on my own." Sometimes it's even better to say "I spent cash money on this course. I'm sure as hell going to learn the material."</li>
</ol>
<p>Now for some reality:</p>
<ol>
<li>As you have the GI bill available to you (good for you, by the way), that's something that you should strongly consider leveraging.</li>
<li>There's nothing wrong with a part-time Master's degree. I would advise signing up for less coursework than you think you can handle to ensure that your schedule can really take it.</li>
<li>Look into continuing education / professional education programs at your area schools. There's a good chance that you'll be in classes with grown-ups. Your mileage may vary but people I know preferred this style rather than jumping in with the youngish day students.</li>
</ol>
<p>Punchline: </p>
<p>Around here, a committed development engineer with experience in testing (aka the School of Hard Knocks and How to Break Software) and military service would be a desirable commodity. So, yes, I would think you should go for it. Good luck.</p>
http://stackoverflow.com/questions/1586520/what-type-of-math-should-i-study-to-prepare-for-game-programming/1586526#158652611Answer by Bob Cross for What type of Math should I study to prepare for game programming?Bob Cross2009-10-19T01:04:04Z2009-10-19T01:04:04Z<p>I would say that your best bets are <a href="http://en.wikipedia.org/wiki/Linear%5Falgebra" rel="nofollow">linear algebra</a> and <a href="http://en.wikipedia.org/wiki/Discrete%5Fmath" rel="nofollow">discrete math</a>.</p>
http://stackoverflow.com/questions/1585544/do-atomic-operations-work-the-same-across-processes-as-they-do-across-threads/1585759#15857591Answer by Bob Cross for Do atomic operations work the same across processes as they do across threads?Bob Cross2009-10-18T19:13:06Z2009-10-18T19:13:06Z<p><strong>tl;dr:</strong> Read the fine print in the documentation of the atomic operations. Some will be atomic by design but may trip over certain variable types. In general, though, an atomic operation will maintain its contract between different processes just as it does between threads.</p>
<p>An atomic operation really only ensures that you won't have an inconsistent state if called by two entities simultaneously. For example, an atomic increment that is called by two different threads or processes on the same integer will always behave like so:</p>
<ol>
<li>x = initial value (zero for the sake of this discussion) </li>
<li>Entity A increments x and returns the result to itself: result = x = 1.</li>
<li>Entity B increments x and returns the result to itself: result = x = 2.</li>
</ol>
<p>where A and B indicate the first and second thread or process that makes the call.</p>
<p>A non-atomic operation can result in inconsistent or generally crazy results due to race conditions, incomplete writes to the address space, etc. For example, you can easily see this:</p>
<ol>
<li>x = initial value = zero again.</li>
<li>Entity A calls x = x + 1. To evaluate x + 1, A checks the value of x (zero) and adds 1.</li>
<li>Entity B calls x = x + 1. To evaluate x + 1, B checks the value of x (still zero) and adds 1.</li>
<li>Entity B (by luck) finishes first and assigns the result of x + 1 = 1 (step 3) to x. x is now 1.</li>
<li>Entity A finishes second and assigns the result of x + 1 = 1 (step 2) to x. x is now 1.</li>
</ol>
<p>Note the race condition as entity B races past A and completes the expression first. </p>
<p>Now imagine if x were a 64-bit double that is not ensured to have atomic assignments. In that case you could easily see something like this:</p>
<ol>
<li>A 64 bit double x = 0.</li>
<li>Entity A tries to assign 0x1122334455667788 to x. The first 32 bits are assigned first, leaving x with 0x1122334400000000.</li>
<li>Entity B races in and assigns 0xffeeddccbbaa9988 to x. By chance, both 32 bit halves are updated and x is now = 0xffeeddccbbaa9988.</li>
<li>Entity A completes its assignment with the second half and x is now = 0xffeeddcc55667788.</li>
</ol>
<p>These non-atomic assignments are some of the most hideous concurrent bugs you'll ever have to diagnose.</p>
http://stackoverflow.com/questions/1552738/is-there-a-java-equivalent-of-frexp3Is there a Java equivalent of frexp?Bob Cross2009-10-12T04:44:34Z2009-10-13T22:09:36Z
<p>Is there a Java equivalent of the C / C++ function called <a href="http://www.cplusplus.com/reference/clibrary/cmath/frexp/" rel="nofollow">frexp</a>? If you aren't familiar, frexp is <a href="http://en.wikipedia.org/wiki/Math.h#Pre-C99%5Ffunctions" rel="nofollow">defined by Wikipedia</a> to "break floating-point number down into mantissa and exponent."</p>
<p>I am looking for an implementation with both speed and accuracy but I would rather have the accuracy if I could only choose one.</p>
<p>This is the code sample from the first reference. It should make the frexp contract a little more clear:</p>
<pre><code>/* frexp example */
#include <stdio.h>
#include <math.h>
int main ()
{
double param, result;
int n;
param = 8.0;
result = frexp (param , &n);
printf ("%lf * 2^%d = %f\n", result, n, param);
return 0;
}
/* Will produce: 0.500000 * 2^4 = 8.000000 */
</code></pre>
http://stackoverflow.com/questions/1551017/what-software-engineering-areas-should-be-stressed-upon-while-interviewing-candid/1551965#15519652Answer by Bob Cross for What Software Engineering Areas should be stressed upon while Interviewing Candidate for Fulltime Software Engineering Position ?Bob Cross2009-10-11T22:28:01Z2009-10-11T22:28:01Z<p>If you're looking for the distinguishing characteristics of a "Senior" vs. "non-Senior" engineer, I'd focus on what I'd expect from such a person. Here are some example questions that I might ask. Note that they assume that the person is already a "senior": I like to drive the conversation in a positive way and assume the best (until I smell blood in the water...).</p>
<ol>
<li>A senior engineer is a leader. What technical leadership are you showing in your current position? How is that going? What are the challenges there? What would you have done differently?</li>
<li>A senior engineer is a teacher and mentor. Who are you currently mentoring? How could you improve your mentoring abilities? Is that a fun part of your job?</li>
<li>A senior engineer is expected to be an expert. Where are you currently working to improve your expertise? Tell me about something that you have done that you thought was an impressive accomplishment. Hey, it sounds like you could have done [X] differently, why did you make that choice? Are you sure about that rationale? What if you had to scale large / scale small / deal with heat problems / work underwater / etc.?</li>
</ol>
<p>My point with the third set is that the technical questions tend to be person-specific. It's very hard to line up useful questions ahead of time (unless you have a very specific set of technical capabilities). </p>
<p>On the other hand, the people-parts of the questions are much more interesting to me: I want to know about how this person would work with the rest of the team. Most importantly, why should I hire them when I could use that money to buy new monitors for the whole team. I don't care if they can type code really fast: how are they going to make the team better so we can (a) get our work done well and on time and (b) go the hell home and be ready to do it again tomorrow!</p>
http://stackoverflow.com/questions/1478071/how-do-i-play-a-sound-in-octave0How do I play a sound in Octave?Bob Cross2009-09-25T15:40:57Z2009-10-09T10:20:26Z
<p>Octave appears to assume that a specific sound playing utility will be available on a system but doesn't seem to provide the ability to specify an alternate. In the error below, Octave is looking for <code>ofsndplay</code>, which is not a utility available on all systems.</p>
<blockquote>
<p>octave:38> sound(beamformed_20) </p>
<p>sh: ofsndplay: command not found</p>
</blockquote>
<p>Is there an Octave configuration setting or code fragment that I can use to specify an system-appropriate utility?</p>
http://stackoverflow.com/questions/1478071/how-do-i-play-a-sound-in-octave/1506061#15060611Answer by Bob Cross for How do I play a sound in Octave?Bob Cross2009-10-01T19:48:54Z2009-10-09T10:20:26Z<p>On one of my Linux machines, I created the following ofsndplay script to work around the hard-wired dependency:</p>
<pre><code>$ cat /usr/bin/ofsndplay
#!/bin/sh
## Coping with stupid dependency on ofsndplay in octave
play -t au -
</code></pre>
<p>This particular script uses the SoX <code>play</code> utility.</p>
<p><em>Admittedly, the comment is unnecessary for the functionality but it certainly made me feel better....</em></p>
http://stackoverflow.com/questions/774871/why-did-you-learn-c/1541233#15412330Answer by Bob Cross for Why did you learn C?Bob Cross2009-10-09T00:12:45Z2009-10-09T00:12:45Z<p>I learned C because, while I knew TRS-80 Basic, some Z-80 Assembler and had taken a class in Pascal, the BSD Unix that we used on our PDP-11 and, later, Vaxen was written entirely in C. Essentially, there wasn't anything interesting that you could do on our big machines (and they were intimidatingly big) without C.</p>
<p>So I learned it. It wasn't that hard when you had an entire operating system serving as a set of examples.</p>
http://stackoverflow.com/questions/88455/how-do-i-represent-features-v-tasks-in-fogbugz-6/406118#406118Comment by Bob Cross on How do I represent features v. tasks in FogBugz 6?Bob Cross2009-12-02T17:24:03Z2009-12-02T17:24:03ZJoy! As a result of the semi-random ordering of equally rated answers, mine sometimes appears above Joel's. Personal vindication! ;-)http://stackoverflow.com/questions/88455/how-do-i-represent-features-v-tasks-in-fogbugz-6/127643#127643Comment by Bob Cross on How do I represent features v. tasks in FogBugz 6?Bob Cross2009-12-02T16:27:44Z2009-12-02T16:27:44Z@AviD, I agree. The sub-tasks also lead to an implicit total estimate to complete the super-task in the outline view. This prompts pretty quick question and answer sessions: "you can really deliver a fully test, documented and ready to ship feature set X in three days?" "Oh, sorry, I forgot this piece and that piece and the other piece...". ;-)http://stackoverflow.com/questions/400646/how-to-weed-out-the-bad-programmers-from-the-competent-ones-in-the-interview-proc/400678#400678Comment by Bob Cross on How to weed out the bad programmers from the competent ones in the interview processBob Cross2009-11-25T20:57:48Z2009-11-25T20:57:48Z+1 Open-ended, although I tend to talk more than 20%. I want to engage in a discussion so I'm usually in it deeply enough to ask "Why did you do it that way? Based on my understanding of your field and project as you just explained it to me, you forgot to deal with case X. Isn't that a problem?"http://stackoverflow.com/questions/1798780/using-a-take-home-coding-component-in-interview-process/1798840#1798840Comment by Bob Cross on Using a "take-home" coding component in interview processBob Cross2009-11-25T20:54:22Z2009-11-25T20:54:22Z'Fibonacci' has almost become a shorthand for "tiny coding problem that's just serving as a sanity check for the purposes of this interview." It serves the purpose of convincing the interviewer that the candidate can write any code at all in some language. I have been in a situation where we realized that the candidate could not write any code: that was a bad one.http://stackoverflow.com/questions/1799484/when-should-and-shouldnt-you-break-away-from-oop-for-speed-performance/1799506#1799506Comment by Bob Cross on When should and shouldn't you break away from OOP for speed/performance?Bob Cross2009-11-25T20:49:54Z2009-11-25T20:49:54Z+1 Profile, tune, test, swear, repair, re-test, repeat.http://stackoverflow.com/questions/1799772/java-callback-function-on-every-class-method/1799814#1799814Comment by Bob Cross on Java callback function on every class methodBob Cross2009-11-25T20:46:18Z2009-11-25T20:46:18Z+1 for "hard-to-debug." I would have written something more like "your name may be cursed by future generations...". http://stackoverflow.com/questions/1729049/how-to-tell-why-a-file-deletion-fails-in-java/1729096#1729096Comment by Bob Cross on How to tell why a file deletion fails in Java?Bob Cross2009-11-13T13:06:45Z2009-11-13T13:06:45Z@Cory, file.exists(), isDirectory() and list() can all throw SecurityExcepions.http://stackoverflow.com/questions/1729049/how-to-tell-why-a-file-deletion-fails-in-java/1729085#1729085Comment by Bob Cross on How to tell why a file deletion fails in Java?Bob Cross2009-11-13T13:06:02Z2009-11-13T13:06:02Z@BalusC, remember that file.exists() can also throw a SecurityException.http://stackoverflow.com/questions/1702052/ways-to-prevent-over-engineering/1702060#1702060Comment by Bob Cross on Ways to prevent over-engineering?Bob Cross2009-11-11T02:06:21Z2009-11-11T02:06:21Z@S. Lott, I'd modify your two steps to something like:
0. Give the job to someone who's already too busy.
1. Watch them build the smallest, simplest thing that solves the problem.
Profit!http://stackoverflow.com/questions/1668731/software-project-time-estimation/1669128#1669128Comment by Bob Cross on Software Project - Time EstimationBob Cross2009-11-10T18:52:41Z2009-11-10T18:52:41Z@Jay, given three max-length comments, it seems like you should be editing your own answer.http://stackoverflow.com/questions/1702052/ways-to-prevent-over-engineering/1702063#1702063Comment by Bob Cross on Ways to prevent over-engineering?Bob Cross2009-11-09T17:16:08Z2009-11-09T17:16:08Z@Rorschach, "I love deadlines. I like the whooshing sound they make as they fly by." Douglas Adamshttp://stackoverflow.com/questions/1702052/ways-to-prevent-over-engineering/1702076#1702076Comment by Bob Cross on Ways to prevent over-engineering?Bob Cross2009-11-09T17:13:53Z2009-11-09T17:13:53Z@sheepsimulator, right - when I was making the original business case for this monthly process, I specifically said that this builds in the opportunities for customer change of course. Every customer will eventually say "that isn't what I want!" whether or not that's what they originally said. Worst case: we went the wrong direction for 30 days.
http://stackoverflow.com/questions/297622/most-marketable-software-engineering-skill-to-switch-to/297629#297629Comment by Bob Cross on Most marketable Software Engineering skill to switch to?Bob Cross2009-11-09T16:28:10Z2009-11-09T16:28:10Z+1 Java's concurrency support is high and it's clearly mainstream. It's how I pay my bills, at least.... ;-)http://stackoverflow.com/questions/1688338/why-the-name-main-for-function-main/1688370#1688370Comment by Bob Cross on Why the name main for function main()Bob Cross2009-11-06T18:06:56Z2009-11-06T18:06:56Z@Brian Postow, +1 for the first truly worthy suggestion for a main replacement. ;-)http://stackoverflow.com/questions/1688338/why-the-name-main-for-function-main/1688378#1688378Comment by Bob Cross on Why the name main for function main()Bob Cross2009-11-06T18:05:43Z2009-11-06T18:05:43Z@Martinho, no, those aren't better choices. "program" means a collection of source code. "start" and "run" are keywords that are used by Thread. Regardless, the fact that you could think of a new word doesn't answer the previous question: "why change it?" The answer would also have to be balanced against the reality that even if you could change "main" in Java (for example), you would break every Java program in the world. Are the aesthetics of a single name really worth it?