User David - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T08:43:31Z http://stackoverflow.com/feeds/user/2197 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/349833/what-programming-jobs-do-you-aspire-to 21 What programming jobs do you aspire to? David 2008-12-08T15:18:31Z 2009-12-17T18:09:25Z <p>I imagine that many of you are currently not in your dream job, although you may have aspirations that are not yet realized. I'm interested in learning about the big things that developers look forward to in their career. </p> <p><b>What goals would you consider the pinnacle of your programming career?</b></p> <p>(And if you already have your dream job, what makes it special to you?)</p> http://stackoverflow.com/questions/398546/technical-tips-for-writing-great-javadoc 14 Technical tips for writing great JavaDoc David 2008-12-29T20:16:52Z 2009-12-14T21:33:57Z <p>What are your <i><b>technical</b></i> tips for writing great JavaDoc?</p> <p>I'm looking for things <i>beyond</i> the standard "Explain the function well" content-based tips. We all know that! (right?)</p> <p>I'm interested in things like these:</p> <ul> <li>What tags should definitely be a part of one's JavaDoc, and which ones are not worth remembering?</li> <li>When do you use @see vs. {@link}?</li> <li>Is it always necessary to use @param for obvious parameters?</li> <li>How do you prevent the description of a method from re-iterating the @param and @return text?</li> <li>When is it appropriate to include HTML in JavaDoc?</li> </ul> <p>Finally, can anyone point to a good, succinct list of JavaDoc tags?</p> http://stackoverflow.com/questions/1889881/using-processing-on-a-server-to-create-images-behind-the-scenes 0 Using Processing on a server to create images behind the scenes David 2009-12-11T18:10:57Z 2009-12-11T18:38:31Z <p>The way I see most people use <a href="http://processing.org" rel="nofollow">Processing</a> is for drawing an image directly onto a screen or webpage on the client side.</p> <p>How would one use Processing to create an image without a visual canvas, then save this image to a file?</p> <p><strong>Here are the specific steps I'm interested in:</strong></p> <ol> <li>Someone visits a webpage, which causes the Processing program to start running</li> <li>The Processing program would work behind the scenes to create an image, then save it to a known filename</li> <li>The webpage would load the known filename (which only exists after the Processing program is run - so, how can the webpage know to load the image when it's finished?)</li> </ol> <p>I'm assuming that the Processing program is running on a server (which is contrary to how Processing usually works), and the file will be stored on the server. I'm also assuming some code in the Processing program to throttle the number of files that are created - for example, it won't create a new image if an existing image was created within 5 minutes.</p> http://stackoverflow.com/questions/1863281/philosophical-design-questions-for-oop-tetris/1863371#1863371 3 Answer by David for Philosophical Design Questions for OOP-Tetris David 2009-12-07T22:32:03Z 2009-12-11T18:35:35Z <ul> <li><strike>One <code>Piece</code> interface, with seven classes that implement that interface for the individual pieces <em>(which would also enable the OOP course to discuss interfaces)</em></strike> (<strong>EDIT:</strong> One <code>Piece</code> class. See comments)</li> <li>I would have a <code>BlockGrid</code> class that can be used for any map of blocks - both the board, and the individual pieces. <code>BlockGrid</code> should have methods to detect intersections - for example, <code>boolean intersects(Block block2, Point location)</code> - as well as to rotate a grid <em>(interesting discussion point for the course: If the <code>Board</code> doesn't need to rotate, should a <code>rotate()</code> method be in <code>BlockGrid</code>?)</em>. For a Piece, <code>BlockGrid</code> would represent be a 4x4 grid.</li> <li>I would create a <code>PieceFactory</code> with a method <code>getRandomShape()</code> to get an instance of one of the seven shapes </li> <li>For manipulating the piece, I'd get into a <em>Model-View-Controller architecture</em>. The Model is the Piece. The Controller is perhaps a <code>PieceController</code>, and would also allow or disallow legal/illegal moves. The thing that would show the Piece on the screen is a <code>PieceView</code> <em>(hrm, or is it a <code>BlockGridView</code> that can show <code>Piece.getBlockGrid()</code>? Another discussion point!)</em></li> </ul> <p><strong>There are multiple legitimate ways to architect this</strong>. It would benefit the course to have discussions on the pro's and con's of different OOP principles applied to the problem. In fact, it might be interesting to compare and contrast this with a non-OOP implementation that just uses arrays to represent the board and pieces.</p> <p><strong>EDIT:</strong> <a href="http://stackoverflow.com/users/15055/claudiu">Claudiu</a> helped me realize that the <code>BlockGrid</code> would sufficiently differentiate pieces, so there is no need for a <code>Piece</code> interface with multiple subclasses; rather, an instance of a <code>Piece</code> <em>class</em> could differ from other instances based on its <code>BlockGrid</code>.</p> http://stackoverflow.com/questions/158998/best-way-to-find-open-source-project-partners-for-non-software-tasks 3 Best way to find open-source project partners for non-software tasks David 2008-10-01T18:25:56Z 2009-12-11T16:27:31Z <p>Many of us probably have interesting hobby/free-time software project ideas that could benefit from non-software experience that we might not have ourselves, like art, graphic design, music, and so on.</p> <p><b>How do you find project partners that have artistic skills</b> to augment a software project? These people probably aren't visiting SourceForge, Kenai, etc. </p> <p>How do you find trustworthy people who want to do neat side-projects, for nothing more than the same open-source glory we'd hope to achieve ourselves? </p> http://stackoverflow.com/questions/1861612/sieve-of-eratosthenes-algorithm/1861848#1861848 0 Answer by David for Sieve of Eratosthenes Algorithm David 2009-12-07T18:12:51Z 2009-12-07T18:12:51Z <p>First, you're only checking against three numbers (3, 7, and 11). For the Sieve of Erathosthenes, you should start with a list of numbers, 2..i. Then loop through that list, and remove numbers that are factors of the number you're iterating on. For example, once you get to 7, which is prime, you'll need to remove 49, 56, and other multiples of 7.</p> <p>Second, the method I just described would scale very poorly - if you tried looking for primes from 1..10^9, you'd need 10^9 values in your list. There are other ways besides the Sieve of Erathosthenes to find prime numbers - see <a href="http://en.wikipedia.org/wiki/Prime%5Fnumber" rel="nofollow">http://en.wikipedia.org/wiki/Prime%5Fnumber</a></p> http://stackoverflow.com/questions/148905/how-did-you-first-get-interested-in-programming 9 How did you first get interested in programming? David 2008-09-29T14:28:14Z 2009-12-07T17:39:30Z <p>What was one of the first or earliest things that got you really excited about programming? How old were you at the time? If it's been a long time since that fateful event, what has maintained you interest - or what new things strengthened your interest?</p> <p>I remember doing writing really simple programs on my T1-99/4A when I was in 2nd grade. But what really kept me going was programming music and graphic applications on my Commodore 128.</p> http://stackoverflow.com/questions/284906/easily-digestible-ui-tips-for-developers 10 Easily digestible UI tips for developers David 2008-11-12T18:41:33Z 2009-12-07T15:31:50Z <p>What are some key UI design tips that every developer should know?</p> <p>While there are a number of UI resources for developers (for example, Joel Spolsky's <a href="http://rads.stackoverflow.com/amzn/click/1893115941" rel="nofollow">User Interface Design for Programmers</a>), I'm interested in more of a bullet list that can be communicated in 1 to 2 pages.</p> <p>I'm interested in more tactical, <b>day-to-day UI tips</b>, as opposed to overarching UI design goals that would be covered in a UI design meeting (presumably attended by at least one person with a good UI sense). A collection of these tips might cover about 80% of the cases that an everyday programmer would come across.</p> http://stackoverflow.com/questions/1849254/when-executing-batch-file-from-java-runtime-native-dos-commands-fail-to-run/1849298#1849298 0 Answer by David for When executing batch file from Java Runtime, native DOS commands fail to run David 2009-12-04T19:58:32Z 2009-12-04T20:02:03Z <p>Are you using double-slashes in your strings to escape the \ character?</p> <pre><code>Runtime.getRuntime().exec("c:\\targetFolder\\myBatch.bat"); </code></pre> http://stackoverflow.com/questions/158017/good-ways-to-find-startup-partners/158056#158056 9 Answer by David for Good ways to find startup partners? David 2008-10-01T14:58:28Z 2009-12-04T18:15:12Z <ul> <li>Attend entrepreneurial events in your city. Often, these events will have Idea People, Technical People, and Investors. You all wear name tags and meet others. <i>(Have an <a href="http://en.wikipedia.org/wiki/Elevator_pitch" rel="nofollow">elevator pitch</a> ready!)</i></li> <li>If you already have someone in mind (for example, someone who runs a blog, or makes insightful comments on one), never hesitate to ask them directly.</li> <li>If you're interested in meeting new people, <b>networking is key</b>. Be open with people about what talent you're looking for, and ask people to connect you to their contacts</li> </ul> http://stackoverflow.com/questions/1785909/helping-managers-and-customers-understand-soa 4 Helping managers and customers understand SOA David 2009-11-23T20:57:46Z 2009-12-03T23:02:22Z <p>I frequently hear Service-Oriented Architecture (SOA) being tossed around as a buzzword among non-technical customers or program managers with little concern or understanding for what it actually entails (example: "Can I buy a SOA?"). There's also a lot of misinformation about SOA (example: "Only web apps can use SOA") and a general lack of understanding for its capabilities (example: "SOA can make your make all of your data work together").</p> <p>What are some key facts that you, as someone who understand the technical side of SOA, use to <strong>educate program managers on the appropriate use and understanding of SOA?</strong> What's the best way to set the record straight with non-technical folks? </p> http://stackoverflow.com/questions/356577/do-independent-developers-still-make-a-living-on-their-own-products 14 Do independent developers still make a living on their own products? David 2008-12-10T15:59:24Z 2009-12-03T22:09:55Z <p>It has been said that the days of the independent developer are over, as modern applications require more professionalism in user interfaces, graphics, and so on. </p> <p>Nevertheless, I imagine that there are a number of people on StackOverflow who are their own boss, who produce their own software, and who might even be making significant hobby income or an actual salary-level profit.</p> <p><b>Are you an independent developer</b> making a living (or a significant chunk of change) on your own product? If so, what's your product? Or, <b>do you feel that the days of the independent developer are indeed over?</b></p> http://stackoverflow.com/questions/517751/java-array-of-primitive-data-types-does-not-autobox 2 Java: Array of primitive data types does not autobox David 2009-02-05T20:24:19Z 2009-12-03T17:08:37Z <p>I have a method like this: <code><pre>public static &lt;T&gt; boolean isMemberOf(T item, T[] set) { for (T t : set) { if (t.equals(item)) { return true; } } return false; }</pre></code></p> <p>Now I try to call this method using a <code>char</code> for T: <code><pre>char ch = 'a'; char[] chars = new char[] { 'a', 'b', 'c' }; boolean member = isMemberOf(ch, chars); </pre></code></p> <p>This doesn't work. I would expect the char and char[] to get autoboxed to Character and Character[], but that doesn't seem to happen.</p> <p>Any insights?</p> http://stackoverflow.com/questions/1841115/programming-math-based-images-for-use-in-high-resolution-artwork 4 Programming math-based images for use in high-resolution artwork David 2009-12-03T16:29:24Z 2009-12-03T17:06:33Z <p>I'm interested in creating poster-sized images that contain repeating patterns, similar to the two (public domain) images below, the <a href="http://en.wikipedia.org/wiki/Flower_of_life" rel="nofollow">Flower of Life</a> and a <a href="http://en.wikipedia.org/wiki/Penrose_tiling" rel="nofollow">Penrose tiling</a>:</p> <p><img src="http://upload.wikimedia.org/wikipedia/commons/6/69/Flower-of-Life-small.png" width="300"><img src="http://upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Penrose_Tiling_%28Rhombi%29.svg/500px-Penrose_Tiling_%28Rhombi%29.svg.png" width="300"></p> <p>My questions:</p> <ol> <li><b>How do people usually create images like these on a computer?</b> I'm hoping the answer isn't, "Open Adobe Illustrator and guess at intersection points," since such points can be defined mathematically. But I also imagine that not everyone with an interest in geometric patterns is also familiar with programming.</li> <li><b>What is the best environment for creating such images?</b> In particular, what's the best way to get high-resolution images out of Java, Python, Processing, etc? Or, is Mathematica the best tool?</li> </ol> <p>Actually calculating the points and doing the math isn't the hard part, in my mind (at least, it's not the focus of this question). <strong>I'm interested in the best way to get a high-quality visual product out of a program.</strong></p> http://stackoverflow.com/questions/353375/best-resources-for-a-developer-to-learn-about-electronics 13 Best resources for a developer to learn about electronics? David 2008-12-09T16:32:18Z 2009-12-03T16:50:34Z <p>I've been a developer all my life, and my brain works in ways that make sense to a developer.</p> <p>I'm interested in creating tangible, physical items using electronic circuits. I'm finding the following problems with much of the material I find:</p> <ul> <li><p>I can learn all about the physical nature of capacitors, resistors, etc., but I'm lacking the insightful connections that would let me create my own higher-order device, such as a radio.</p></li> <li><p>A lot of the things I take for granted as programmer seem difficult in electronics. For example, it's not immediately obvious how I would create a For loop electronically. I don't know how to create a circuit that can create or use a data signal (essentially, a struct. Example: "Current weather: wind=10 knots, temperature=30, humidity=20%"). I want to protect against a remote signal not being detected by a sensor.</p></li> </ul> <p><b>What are some great resources for a developer to learn about electronic circuits?</b></p> http://stackoverflow.com/questions/853600/programmatic-way-to-place-a-website-into-a-new-word-file-in-java 3 Programmatic way to place a website into a new Word file... in Java David 2009-05-12T16:11:27Z 2009-12-02T15:57:10Z <p>Is it possible to programmatically place the contents of a web page into a Word file? </p> <p>To further complicate this, I'd like to do these steps in Java (using JNI if I must). </p> <p>Here are the steps I want to do programmatically, followed by ways that I would do this manually today:</p> <ol> <li>Provide a method with a URL <em>(Manually: Open page in Firefox)</em></li> <li>Copy the contents of that URL <em>(Manually: Ctrl-A to select all)</em></li> <li>Create a new Word document <em>(Manually: Open Microsoft Word)</em></li> <li>Paste the contents of the URL into Word <em>(Manually: Ctrl-V to paste)</em></li> <li>Save the Word file <em>(Manually: Save the Word file)</em></li> </ol> http://stackoverflow.com/questions/1601893/why-are-c-c-and-lisp-so-prevalent-in-embedded-devices-and-robots 8 Why are C, C++, and LISP so prevalent in embedded devices and robots? David 2009-10-21T16:10:20Z 2009-11-21T21:15:06Z <p>It seems that the software language skills most sought for embedded devices and robots are C, C++, and LISP. Why haven't more recent languages made inroads into these applications? </p> <p>For example, <a href="http://www.erlang.org/" rel="nofollow">Erlang</a> would seem particularly well-suited to robotic applications, since it makes concurrent programming easier and allows hot swapping of code. <a href="http://www.python.org/" rel="nofollow">Python</a> would seem to be useful, if for no other reason than its support of multiple programming paradigms. I'm even surprised that Java hasn't made a foray into general robotic programming.</p> <p>I'm sure one argument would be, "Some newer languages are interpreted, not compiled" - implying that compiled languages are quicker and use fewer computational resources. Is this still the case, in a time when we can put a Java Virtual Machine on a cell phone or a SunSpot? (and isn't LISP interpreted anyway?)</p> http://stackoverflow.com/questions/116519/best-resources-for-learning-javafx 15 Best Resources for Learning JavaFX? David 2008-09-22T18:14:19Z 2009-11-17T04:25:33Z <p>For those of us learning JavaFX, what are the best resources you've found so far? </p> <p>(One of the difficulties in finding good JavaFX resources is that things written before July 2008 are often no longer valid because of changes made to beta version of the language)</p> <p>I've found:</p> <ul> <li><a href="http://learnjavafx.typepad.com/" rel="nofollow">James Weaver's JavaFX Blog</a></li> <li><a href="http://www.manning.com/morris/" rel="nofollow">JavaFX in Action</a> by Manning Press</li> <li><a href="https://openjfx.dev.java.net/" rel="nofollow">OpenJFX</a> on dev.java.net</li> </ul> <p>What have you found that I might be missing?</p> http://stackoverflow.com/questions/6361/interview-programming-questions-in-house-exam/134015#134015 0 Answer by David for Interview Programming Questions - In house Exam David 2008-09-25T15:30:50Z 2009-11-06T18:13:42Z <p>I once had two exams at an interview: a personality test, and a technical test. </p> <p>I passed the technical test with flying colors. I <em>failed</em> the personality test (I actually had a personality, I think they were looking for someone who didn't) </p> <p>The personality test questions were mapped to a graph, and it turns out they had already drawn a graph of the person they were looking for. My graph was the exact opposite.</p> <p>At least we could both agree that it wasn't the right place for me!</p> http://stackoverflow.com/questions/1668100/did-hobby-programming-magazines-inspire-your-career-and-whats-their-modern-day 2 Did hobby programming magazines inspire your career, and what's their modern-day equivalent? David 2009-11-03T15:37:22Z 2009-11-04T10:33:41Z <p>If you learned programming in the 80's (or late 70's/early 90's), you may have been influenced by one of the many hobby programming magazines that existed at the time - RUN Magazine for the C64/C128, Byte, Compute!, Ahoy!, and many others. Articles in these magazines may have sparked your imagination about graphics, games, and logic, and may have been a potent force in defining your interests and career. </p> <p>What is the modern-day equivalent of magazines like these? How do kids today get inspired and learn about computing? </p> <p>I'd like to hear your answers to these questions:</p> <p><strong>1.</strong> Did 80's-era magazines inspire you to get into programming?</p> <p><strong>2.</strong> Do you see a need for some type of modern-day equivalent to inspire kids or young adults today?</p> http://stackoverflow.com/questions/1667998/how-to-ensure-that-open-source-contributions-are-original 2 How to ensure that Open Source contributions are original? David 2009-11-03T15:23:25Z 2009-11-03T15:45:51Z <p>How do open source projects ensure that any code contributed to the project is original, not proprietary to a company or plagiarized from another source?</p> <p>Should open source contributors be required to sign something to that effect before they start contributing code? If so, is there a generally accepted legal contract that any open source project may use?</p> <p>Do you know of any cases in which an open-source project was accused of allegedly distributing proprietary or plagiarized code?</p> http://stackoverflow.com/questions/152967/can-you-use-java-libraries-in-a-vb-net-program 2 Can you use Java libraries in a VB.net program? David 2008-09-30T13:14:29Z 2009-10-31T18:41:03Z <p>I'm wondering if a Java library can be called from a VB.net application.</p> <p>(A Google search turns up lots of shady answers, but nothing definitive)</p> http://stackoverflow.com/questions/591546/design-considerations-for-a-class-full-of-static-methods 2 Design considerations for a class full of static methods David 2009-02-26T17:28:17Z 2009-10-30T18:07:32Z <p>As a Swing developer for as many years as one can possibly be a Swing developer, I've identified a lot of patterns that I use in laying out components. For example, I often create components that are associated with a JLabel. I usually write:</p> <pre><code>JPanel panel = new JPanel(new BorderLayout()); panel.add(label, BorderLayout.NORTH); panel.add(list, BorderLayout.CENTER);</code></pre> <p>I do this so often, that I've decided to create a class that contains my commonly-used layout idioms. Then I can simply say:</p> <pre><code>JPanel panel = LayoutPatterns.createNorthLabeledPanel(label, list);</code></pre> <p>...which reduces my typing load considerably.</p> <p>So, now I have a class full of about 20 static methods. The class has no state - all context is passed in through the method parameters.</p> <p>Besides Java's Math class, I haven't seen any classes that are composed entirely of static methods, and that have no state. </p> <p>On one hand, this doesn't feel right. On the other hand, I don't see anything wrong with it. </p> <p>Is this an okay pattern to use, or something that indicates a Code Smell? If this pattern were applied to a different domain, should I be concerned about multithreaded uses of a class of statics? Would you balk if you ever saw this in production-quality code?</p> http://stackoverflow.com/questions/598837/how-to-register-a-custom-keyboard-shortcut-for-a-windows-application/598872#598872 0 Answer by David for How to register a custom keyboard shortcut for a windows application David 2009-02-28T23:16:25Z 2009-10-26T20:33:55Z <p>If your application (or a shortcut to it) is available on your desktop, you can right-click to get the context menu, select Properties, and enter the Shortcut Key there. Simply click in the Shortcut Key text field, and press the desired shortcut key.</p> <p>I've assigned WIN + C to my calculator, and WIN + V to my volume control.</p> http://stackoverflow.com/questions/745048/looking-for-a-simple-java-api-for-creating-graphs-edges-nodes 4 Looking for a simple Java API for creating graphs (edges + nodes) David 2009-04-13T19:23:01Z 2009-10-23T14:35:27Z <p>I'm trying to find a simple Java API for creating graph relationships - addEdge(), addNode(), isConnected(node1, node2), findPaths(node1, node2), etc. No UI, just logic. I can find a bunch of academic projects, but none seems to be "The Definitive Graph API".</p> <p>Does anyone know if such a thing exists? </p> http://stackoverflow.com/questions/487973/inheriting-applications-at-a-new-job/487995#487995 1 Answer by David for Inheriting applications at a new job... David 2009-01-28T15:17:52Z 2009-10-23T14:31:49Z <p>If I inherit code that has obviously never been refactored, I would take that as an opportunity to impose some of my own structure. </p> <p>If people expect me to make time and cost estimates for adding functionality to the code, I'll need to be intimately familiar it, and make sure it lives up to my standards.</p> <p>If the code is already well-written, that would be a blessing that I would not mess with. But in my experience, this hasn't happened very often.</p> http://stackoverflow.com/questions/627579/running-a-javafx-program-within-a-web-page-not-launching-a-new-window 0 Running a JavaFX program within a web page, not launching a new window David 2009-03-09T19:00:32Z 2009-10-22T15:00:04Z <p>I've seen lots of examples of JavaFX in my reading, but every JavaFX app I've seen need to be launched in a separate window. The apps don't run within a web page. </p> <p>Can JavaFX applications be run within a web page, just like we would expect a Flash app (or, for that matter, an applet) to run? Is there a reason why people aren't letting JavaFX apps run within their web pages?</p> <p>Is there a particular bit of HTML code that needs to be used to get a JavaFX app to run Flash/applet-style?</p> http://stackoverflow.com/questions/1595346/estimating-of-testing-effort-as-a-percentage-of-development-time/1595412#1595412 0 Answer by David for estimating of testing effort as a percentage of development time David 2009-10-20T15:19:46Z 2009-10-20T15:19:46Z <p>Testing time is probably more closely correlated to feature scope than development time. I'd also argue (perhaps controversially) that testing time is correlated to the skill of your development team.</p> <p>For a 6-to-9 month development effort, I demand a absolute minimum of 2 weeks testing time, performed by actual testers (not the development team) who are well-versed in the software they will be testing (i.e., 2 weeks does not include ramp-up time). This is for a project that has ~5 developers. </p> http://stackoverflow.com/questions/262182/why-arent-voting-machines-open-source/1546675#1546675 0 Answer by David for Why aren't voting machines open source? David 2009-10-10T00:30:54Z 2009-10-10T00:30:54Z <p>So far, most replies have been technical in nature, but most likely, <b>voting machines are not open source because the company under contract to develop them has no incentive to make them open source</b>.</p> <p>If a company develops an open source voting system, anyone came come around later to support that system. And, quite honestly, I doubt the government would accept the equivalent of a SourceForge project as the basis for an entire election.</p> <p>Perhaps there should be an honest-broker authority that oversees the development of an open-source voting system, and contributors to that system should be vetted before they can view or commit source code. </p> http://stackoverflow.com/questions/1545404/compare-between-flex-javafx-and-silverlight/1545421#1545421 3 Answer by David for Compare between FLEX, JavaFX and Silverlight David 2009-10-09T18:40:02Z 2009-10-10T00:17:17Z <p>Try the Bubblemark animation test: <a href="http://bubblemark.com/" rel="nofollow">http://bubblemark.com/</a></p> <p>It runs with multiple versions of Silverlight, JavaFX, Flash/Flex, and even includes DHTML and some other frameworks.</p> http://stackoverflow.com/questions/1889881/using-processing-on-a-server-to-create-images-behind-the-scenes Comment by David on Using Processing on a server to create images behind the scenes David 2009-12-11T18:30:26Z 2009-12-11T18:30:26Z Valid question. I like Processing because it makes non-trivial graphics easy to create. But I suppose I'm not beholden to it, if it doesn't make sense within the system (am I trying to jam a square peg in a round hole?) http://stackoverflow.com/questions/1863281/philosophical-design-questions-for-oop-tetris/1863371#1863371 Comment by David on Philosophical Design Questions for OOP-Tetris David 2009-12-08T04:19:20Z 2009-12-08T04:19:20Z That's a good point. If Piece were a class instead of an interface, and each Piece differed only by the content of its BlockGrid, then yes, only one Piece class would be needed. http://stackoverflow.com/questions/220658/what-is-the-difference-between-a-closure-and-a-lambda/220728#220728 Comment by David on What is the difference between a 'closure' and a 'lambda'? David 2009-12-08T03:07:13Z 2009-12-08T03:07:13Z Good, clear answer! http://stackoverflow.com/questions/1863281/philosophical-design-questions-for-oop-tetris/1863371#1863371 Comment by David on Philosophical Design Questions for OOP-Tetris David 2009-12-08T02:55:14Z 2009-12-08T02:55:14Z Oops, I said, &quot;BlockGrid is an interface&quot;, I should have said, &quot;BlockGrid is a class&quot;. Corrected. http://stackoverflow.com/questions/1863281/philosophical-design-questions-for-oop-tetris/1863371#1863371 Comment by David on Philosophical Design Questions for OOP-Tetris David 2009-12-08T02:54:09Z 2009-12-08T02:54:09Z Perhaps I wasn't clear in defining BlockGrid. BlockGrid is essentially an n*n array of bits. The collision detection function would be similar to saying, &quot;if ((array1(x,y) == TRUE) &amp;&amp; (array2(x,y) == TRUE)) { collision = TRUE; }&quot; (with proper math for offsetting the location of one BlockGrid over another) http://stackoverflow.com/questions/1861612/sieve-of-eratosthenes-algorithm/1861848#1861848 Comment by David on Sieve of Eratosthenes Algorithm David 2009-12-07T18:28:00Z 2009-12-07T18:28:00Z Good point. I should have added, &quot;in this naive implementation, ...&quot; http://stackoverflow.com/questions/1861787/finding-date-difference Comment by David on Finding Date Difference David 2009-12-07T18:23:12Z 2009-12-07T18:23:12Z 5 calendar days? 5 business days? http://stackoverflow.com/questions/1849254/when-executing-batch-file-from-java-runtime-native-dos-commands-fail-to-run/1849298#1849298 Comment by David on When executing batch file from Java Runtime, native DOS commands fail to run David 2009-12-05T22:11:49Z 2009-12-05T22:11:49Z (And BTW I upvoted your answer, which is more complete than mine, so I guess I should take mine down!) http://stackoverflow.com/questions/1849254/when-executing-batch-file-from-java-runtime-native-dos-commands-fail-to-run/1849298#1849298 Comment by David on When executing batch file from Java Runtime, native DOS commands fail to run David 2009-12-05T22:10:45Z 2009-12-05T22:10:45Z Ah, and I see that also added syntax coloring. I was wondering how to get that. Thanks! http://stackoverflow.com/questions/1849254/when-executing-batch-file-from-java-runtime-native-dos-commands-fail-to-run/1849298#1849298 Comment by David on When executing batch file from Java Runtime, native DOS commands fail to run David 2009-12-04T20:00:35Z 2009-12-04T20:00:35Z Which, interestingly, I needed to type with triple-slashes to show up right on StackOverflow! http://stackoverflow.com/questions/1785909/helping-managers-and-customers-understand-soa Comment by David on Helping managers and customers understand SOA David 2009-11-23T20:58:58Z 2009-11-23T20:58:58Z I'm anticipating &quot;make it a community wiki&quot; comments... I'd argue that the best (i.e., most complete / well thought-out) answer should get the most votes and be accepted as an answer http://stackoverflow.com/questions/1668100/did-hobby-programming-magazines-inspire-your-career-and-whats-their-modern-day/1668238#1668238 Comment by David on Did hobby programming magazines inspire your career, and what's their modern-day equivalent? David 2009-11-03T16:16:09Z 2009-11-03T16:16:09Z It used to be that computers came with BASIC, but you're right - these days, computers don't come with a default programming language. Even if they did, it takes a lot more effort to make Doom than it did to make Pac-Man. http://stackoverflow.com/questions/1667998/how-to-ensure-that-open-source-contributions-are-original/1668032#1668032 Comment by David on How to ensure that Open Source contributions are original? David 2009-11-03T15:38:52Z 2009-11-03T15:38:52Z Are there lawyers that help out the open source community? I can't have a side project turn into a financial burden. http://stackoverflow.com/questions/432154/do-you-use-design-marker-interfaces-to-document-your-java-code/432171#432171 Comment by David on Do you use design marker interfaces to document your Java code? David 2009-10-20T15:03:43Z 2009-10-20T15:03:43Z For that matter, an @Immutable annotation would really solve the problem! http://stackoverflow.com/questions/140376/what-easter-eggs-have-you-placed-in-code/176329#176329 Comment by David on What Easter Eggs have you placed in code? David 2009-10-15T18:59:39Z 2009-10-15T18:59:39Z It's a 1-7-14-21 chord. If the root is a C5 (C in 5th octave), this plays C5 + G5 + D6 + A6 - which happen to be four consecutive notes in the Circle of Fifths.