User bradheintz - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T07:36:31Z http://stackoverflow.com/feeds/user/40093 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1785852/why-are-perl-source-filters-bad-and-when-is-it-ok-to-use-them/1786060#1786060 4 Answer by bradheintz for Why are Perl source filters bad and when is it OK to use them? bradheintz 2009-11-23T21:21:13Z 2009-11-23T21:21:13Z <p>The problem I see is the same problem you encounter with any C/C++ macro more complex than defining a constant: It degrades your ability to understand what the code is doing by looking at it, because you're not looking at the code that actually executes.</p> http://stackoverflow.com/questions/331291/how-do-you-use-mapreduce-hadoop/1772769#1772769 0 Answer by bradheintz for How do you use MapReduce/Hadoop? bradheintz 2009-11-20T19:37:26Z 2009-11-20T19:37:26Z <p>My two uses so far have been analysis of large behavioral data sets (gathered from the web, mobile handsets, &amp;c) and parallelizing approaches to large problems (e.g., using genetic algorithms to find local optima in an NP-complete problem space).</p> <p>In the general case, MR flows are multi-stage, so I'm frequently running against data generated by an earlier MR stage.</p> http://stackoverflow.com/questions/1693165/caching-of-map-applications-in-hadoop-mapreduce/1772743#1772743 1 Answer by bradheintz for Caching of Map applications in Hadoop MapReduce? bradheintz 2009-11-20T19:30:30Z 2009-11-20T19:30:30Z <p>If you're looking to avoid running the Map step each time, break it out as its own step (either by using the IdentityReducer or setting the number of reducers for the job to 0) and run later steps using the output of your map step.</p> <p>Whether this is actually faster than recomputing from the raw data each time depends on the volume and shape of the input data vs. the output data, how complicated your map step is, etc.</p> <p>Note that running your mapper on new data sets won't append to previous runs - but you can get around this by using a dated output folder. This is to say that you could store the output of mapping your first batch of files in <code>my_mapper_output/20091101</code>, and the next week's batch in <code>my_mapper_output/20091108</code>, etc. If you want to reduce over the whole set, you should be able to pass in <code>my_mapper_output</code> as the input folder, and catch all of the output sets.</p> http://stackoverflow.com/questions/1564493/refactoring-studies/1703073#1703073 2 Answer by bradheintz for Refactoring Studies bradheintz 2009-11-09T19:08:49Z 2009-11-11T16:08:55Z <p>A quick search turned up:</p> <ul> <li><a href="http://repositories.lib.utexas.edu/handle/2152/ETD-UT-2009-05-147" rel="nofollow">This UTexas study</a></li> <li><a href="http://eprints.kfupm.edu.sa/14885/" rel="nofollow">Another from King Fahd University</a></li> <li><a href="http://www.infoq.com/news/2009/03/TDD-Improves-Quality" rel="nofollow">An InfoQ summary of a study on TDD and quality</a> (Refactoring, of course, is an indispensable component of TDD.)</li> </ul> <p>Questions about software engineering practices are, in general, very difficult to study objectively, because how often do you run the same project from the same requirements with the same tech tools and two teams of precisely identical knowledge and talent, but with different processes? Still, studies do get run, usually comparing large projects in similar fields, and using measures like defect rates and various code metrics as proxies for fuzzier things like "productivity".</p> <p>There's more out there, but those should get you started.</p> <p><strong>Edit:</strong> I'd like to expand on a good point ArneRie made in another answer: Refactoring working code that you don't plan to change costs effort rather than saving it. A large part of the value of refactoring is that it lowers the cost of change (by encouraging modularity &amp; single responsibilities, eliminating logic duplication, &amp;c). It follows, though, that you lose this value if you have no intent to change the code. Refactoring efforts should be focused on code being modified.</p> http://stackoverflow.com/questions/1333197/managing-a-dev-vs-production-environment-for-a-web-app/1716126#1716126 1 Answer by bradheintz for Managing a dev vs production environment for a web app? bradheintz 2009-11-11T15:56:55Z 2009-11-11T15:56:55Z <p>In addition to the excellent answers you've gotten already, I'd like to emphasize that if there are differences between your dev and production <em>code,</em> you're adding risk. You should be using the same, well-tested code in both locations; any difference between the environments should be expressed in configuration files. Any configuration files in source control should be samples only; your deployment script should not push new configuration files to production.</p> <p>This, in combination with tagged releases and a staging environment that mimics production, should help you promote your code smoothly to the production environment.</p> http://stackoverflow.com/questions/1708910/resources-for-tdd-best-practices-methods-etc/1711948#1711948 3 Answer by bradheintz for Resources for TDD best practices, methods, etc bradheintz 2009-11-10T23:18:12Z 2009-11-10T23:18:12Z <p>You want <em>Test-Driven Development: By Example</em> by Kent Beck and <em>Refactoring</em> by Martin Fowler. IMHO, they should be sold as a 2-volume set. <em>TDD:BE</em> covers things largely from a the testing side, and shows you some refactoring techniques. <em>Refactoring</em> covers things largely from the refactoring side, and brings up good testing practices. Between the two of them, you should have all you need to get started.</p> http://stackoverflow.com/questions/1701686/why-should-methods-have-a-single-entry-and-exit-points/1701813#1701813 7 Answer by bradheintz for Why should methods have a single entry and exit points? bradheintz 2009-11-09T15:38:38Z 2009-11-09T15:38:38Z <p>The stricture of having a single exit point is an instance of a good guideline turned into a bad rule.</p> <p>If you have many return statements or other exit points in your code, it can make it difficult to read and reason about what it's doing and how changes can affect it. A long method with multiple return statements will likely be more bug-prone and costlier to change than the same method with one return statement at the end.</p> <p>Of course, if your methods are long enough that they're getting tough to scan, that's a problem in itself - you might wish to break the long method into a set of smaller ones that are easier to reason about.</p> <p>Instances where it makes sense to exit mid-method include:</p> <ul> <li><strong>Input validation:</strong> It's acceptable to return immediately on invalid input, or on any input that's simple to evaluate and doesn't need to go through the whole method body. These returns should be clustered at the top of the method for readability, and the rest of the method will probably benefit from keeping it simple and having that single exit point at the end.</li> <li><strong>Exceptions:</strong> If you've run across a problem where it makes no sense to do anything but abort the method and throw an exception, there's no need to wait until the end.</li> </ul> <p>Finally: I'll agree with Jonathan Feinberg in that a method as short as he describes does not sacrifice any readability by returning directly rather than stashing the answer and returning later. Though brevity could be further enhanced by changing it to:</p> <pre><code>public void shortAndSweet(final int hamsandwich) { return (hamsandwich % 2 == 0) ? 27 : 13; } </code></pre> <p>Which, funnily enough, takes us back to a single exit point...</p> http://stackoverflow.com/questions/1669730/questions-to-answer-before-proposing-to-use-a-new-language/1670102#1670102 11 Answer by bradheintz for Questions to answer before proposing to use a new language? bradheintz 2009-11-03T20:59:25Z 2009-11-03T20:59:25Z <p>Productivity with a language is neither the only factor, nor a simple scalar in itself. Important questions include:</p> <ul> <li>How easy is it to learn the language, if it's not already familiar to people on the team?</li> <li>How easy is it to become expert at the language?</li> <li>Does the team have access to one or more language experts who have the bandwidth to do the necessary mentoring?</li> <li>Are good learning materials (books, blogs, tutorials) and support channels (fora, IRC, mailing lists) available?</li> <li>Does the language (or some framework in that language) allow a competent programmer to write the software faster than what you're using now?</li> <li>How maintainable is the language? How readable is the syntax to a competent programmer encountering someone else's code for the first time? (Think of APL and Perl.)</li> <li>Is the language somehow better applicable to your problem domain than what you're using now (e.g., functional languages for distributed computing)?</li> <li>How well does the language/platform meet business needs not related to development speed (e.g., performance, scalability)?</li> <li>What are the available tools like, and what do they cost? Is there a debugger available? An IDE? Refactoring and unit test support built into the IDE? Build management and deployment tools?</li> </ul> http://stackoverflow.com/questions/1633559/experiences-with-test-driven-development-tdd-for-logic-chip-design-in-verilog/1669982#1669982 2 Answer by bradheintz for Experiences with Test Driven Development (TDD) for logic (chip) design in Verilog or VHDL bradheintz 2009-11-03T20:34:59Z 2009-11-03T20:34:59Z <p>I don't know a lot about hardware/chip design, but I am deeply into TDD, so I can at least discuss suitability of the process with you.</p> <p>The question I'd call most pertinent is: How quickly can your tests give you feedback on a design? Related to that: How quickly can you add new tests? And how well do your tools support refactoring (changing structure without changing behavior) of your design?</p> <p>The TDD process depends a great deal on the "softness" of software - good automated unit tests run in seconds (minutes at the outside), and guide short bursts of focused construction and refactoring. Do your tools support this kind of workflow - rapidly cycling between writing and running tests and building the system under test in short iterations?</p> http://stackoverflow.com/questions/1661160/tdd-bdd-in-particular-for-a-rails-application/1662027#1662027 1 Answer by bradheintz for TDD/BDD in particular for a Rails application bradheintz 2009-11-02T15:40:56Z 2009-11-02T15:48:21Z <p>I wouldn't drill that far down. In fact, I don't usually test my migrations, and it's certainly not worth your time (in general) to test getters and setters. Stick to tests that teach you about the system, and express non-trivial functional requirements of the code.</p> <p>As far as where to start: Pick a requirement that you know how to test - one without outside dependencies, one where the path is absolutely clear. Write the test(s) to describe the desired behavior, implement it, and refactor the code to remove any ugliness you may have added during the implementation. After you've done this for a few features on the list, you'll probably find that some of the fuzzier features are coming into focus because you've made the building blocks/dependencies that they need.</p> <p>A good book that goes into more detail on testing practices than <em>AWDR</em> or <em>The Rails Way</em> is <em><a href="http://www.pragprog.com/titles/achbd/the-rspec-book" rel="nofollow" title="The RSpec Book">The RSpec Book</a></em>, a beta of which is available in electronic form.</p> http://stackoverflow.com/questions/1647831/best-way-to-build-websites-or-applications-with-modular-reusable-components/1649967#1649967 0 Answer by bradheintz for Best way to build websites or applications with modular / reusable components bradheintz 2009-10-30T13:58:14Z 2009-10-30T13:58:14Z <p>Are you sure you want to be writing your own login system? If you're using a web app framework (which is a collection of "modular/reusable components") such as Spring MVC, Ruby on Rails, or Symfony, you should have a user login system available as part of the framework or as a plugin.</p> <p>In fact, there are enough hairy security issues involved in doing session authentication securely that unless you have a really compelling reason for rolling your own, you're probably much better off using a well-tested package than rolling your own, even if you're a security wizard.</p> http://stackoverflow.com/questions/1617990/mapping-switch-statements-to-data-classes/1644124#1644124 0 Answer by bradheintz for Mapping switch statements to data classes bradheintz 2009-10-29T14:27:52Z 2009-10-29T14:27:52Z <p>What you really have here is a four-way setter. The canonical refactoring here is "Replace Parameter with Explicit Methods" (p285 of <em>Refactoring</em> by Martin Fowler). The Java example he gives is changing:</p> <pre><code>void setValue(String name, int value) { if (name.equals("height")) { _height = value; return; } if (name.equals("width")) { _width = value; return; } } </code></pre> <p>to:</p> <pre><code>void setHeight(int arg) { _height = arg; } void setWidth(int arg) { _width = arg; } </code></pre> <p>Assuming that the caller of <code>CreateMetaDataFrom()</code> knows what it's passing in, you could skip the <code>switch/case</code> and use the actual setters for those properties.</p> http://stackoverflow.com/questions/303701/developers-are-dissatisfied-with-tdd-is-tdd-really-the-problem-or-is-it-lack-o/312892#312892 1 Answer by bradheintz for Developers are dissatisfied with TDD. Is TDD really the problem, or is it lack of skill in novice practicitioners? bradheintz 2008-11-23T20:09:12Z 2009-10-29T03:19:21Z <p>The first thing that caught my eye was: "Test code is throwaway code anyway". I mean, <em>wow.</em></p> <p>Of course, the opposite is true with TDD. Your tests become your regression firewall, and allow you to refactor and add features with confidence.</p> <p>In my experience, there are two things you must have to introduce a practice like this into a resistant (but not utterly recalcitrant) company culture: You must have the practice mandated by a manager who gets it, and you must have an engineer on the team who has made it work before. This engineer's time will have to be split between actual project work and mentoring, with the mentoring taking the form of a group presentation, code reviews, and (brace for it) bouts of pair programming to show people directly how the practice may be applied to the problems they're trying to solve.</p> <p>Beyond having made it work in the past, this engineer must also be a skilled teacher and (because you're asking people to change, which most will take as a personal attack) have a non-threatening personality and approach to teaching.</p> <p>Good luck with it.</p> http://stackoverflow.com/questions/1537455/designing-a-poker-parser-in-ruby/1639693#1639693 0 Answer by bradheintz for Designing a poker parser in Ruby bradheintz 2009-10-28T19:55:37Z 2009-10-28T19:55:37Z <p>I'd recommend the book <em>Refactoring</em> by Martin Fowler (available in both dead-tree and electronic formats, IIRC). He covers object-oriented remedies for exactly the design problems you're asking about, all in a test-driven context. This is one of those books that everyone in the profession should read.</p> http://stackoverflow.com/questions/1569168/if-you-change-code-that-has-a-unit-test-against-it-which-do-you-change-first/1639559#1639559 2 Answer by bradheintz for If you change code that has a unit test against it, which do you change first? bradheintz 2009-10-28T19:33:55Z 2009-10-28T19:33:55Z <p>I'll admit that I sometimes cheat. If a change is simple enough that I can know the outcome with certainty, I will sometimes change code, then tests. Like if I'm multiplying one number by a constant, and all I'm doing is changing the constant, I'll go ahead with the change and update the test case afterward.</p> <p>If you're doing anything even slightly more complex, though, I'd advise sticking to the TDD orthodoxy and change the test first. Define what you want to do before doing it. Also, I'd recommend putting new tests <em>after</em> pre-existing tests, so that tests related to existing functionality that you want preserved are run first, assuring you that you haven't broken anything (or alerting you as early as possible that you have).</p> http://stackoverflow.com/questions/1572669/in-test-driven-development-do-you-write-every-possible-test-first-then-the-code/1639472#1639472 1 Answer by bradheintz for In test driven development, do you write every possible test first, then the code? bradheintz 2009-10-28T19:16:02Z 2009-10-28T19:16:02Z <p>You could do that, but you wouldn't be doing TDD. The problem (well, one of them, anyway) with writing all of your tests up front is that in any case where the requirements are non-trivial, your tests will be building in a lot of assumptions about the structure of the code you're test-driving. Big steps lead to missteps.</p> <p>One of the keys of successful TDD involves taking small steps. Small steps mean fewer changes to back out when something goes wrong. Small steps mean you can more often get your head around the effects of the changes you're making. And because small steps are easier to take with confidence, they have the paradoxical effect of <em>increasing</em> your velocity.</p> <p>The TDD cycle starts with requirements. Start by choosing a requirement you know how to define through tests immediately, in a few short steps. If you look at a requirement and you're not sure how to test it, or you think, "Yeah, but to do that, I'd need to [insert ill-defined steps] first", then you should either skip to another requirement that you know how to do, or you should break this requirement into smaller requirements that you know how to do.</p> <p>Once you have that, you work in a short red-green-refactor cycle: Write a test that quantifies some part of the requirement ("red", because it fails, because it has no implementation to test yet), write any code that will pass the test ("green"), then rework the code to remove duplication, magic numbers, and other code smells ("refactor"). During the refactoring phase, you should continue working in small steps, frequently re-running the test to make sure you haven't broken anything. Continue this cycle until you can look your boss/client in the eye and call the requirement met.</p> <p>Now that you have one simple piece of your system defined, you've opened up the list of requirements available to implement - requirements that are adjacent to or dependent on the one you just implemented can now be tested and implemented in smaller steps building on what you've already done.</p> <p>So the upshot of all that is: Don't try to do all your tests at once. One (small) thing at a time.</p> http://stackoverflow.com/questions/1595644/what-is-best-for-defect-rate-tracking-defects-per-kloc/1633409#1633409 1 Answer by bradheintz for What is Best for Defect Rate Tracking? Defects per KLOC? bradheintz 2009-10-27T20:19:29Z 2009-10-27T20:19:29Z <p>I'm skeptical of all LOC-related measurements, not just because of different relative expressiveness of languages, but because individual programmers will vary enough in the expressiveness of their code as to make this metric "fuzzy" at best.</p> <p>The things I would measure in the interests of project management are:</p> <ul> <li><strong>Number of open defects on the project.</strong> There's no single scalar that can tell you where the project is and how close it is to a releasable state, but this is still a handy number to have on hand and watch over time.</li> <li><strong>Defect detection rate.</strong> This is not the rate of introduction of new defects into the system, but it's probably the closest proxy you'll find.</li> <li><strong>Defect resolution rate.</strong> If this is less than the detection rate, you're falling behind - if it's greater, you're getting ahead.</li> </ul> <p><em>All of these numbers are more useful if you combine them with severity information.</em> A product with 20 minor bugs may well closer to release than one with 2 crashing bugs. If you're clearing the minor bugs but not the severe ones, you have to get the developers to refocus their attention.</p> <p><em>I would track these numbers per project and per developer.</em> The reason for doing them per project should be clear. The per-developer numbers are certainly not the whole picture of an individual contributor's skill or productivity, but can point you to people who might need training or remediation.</p> <p>You may also wish to tag all the tickets in your defect tracking system by project module as well (especially for larger projects), so that you can tell when critical modules are in a fragile state.</p> http://stackoverflow.com/questions/332353/mysql-permissions-issue-should-be-non-issue 3 MySQL permissions issue - should be non-issue bradheintz 2008-12-01T21:44:54Z 2009-08-21T23:43:20Z <p>This is making me kind of crazy: I did a mysqldump of a partitioned table on one server, moved the resulting SQL dump to another server, and attempted to run the insert. It fails, but I'm having difficulty figuring out why. Google and the MySQL forums and docs have not been much help.</p> <p>The failing query looks like this (truncated for brevity and clarity, names changed to protect the innocent):</p> <pre><code>CREATE TABLE `my_precious_table` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `somedata` varchar(20) NOT NULL, `aTimeStamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`,`aTimeStamp`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 DATA DIRECTORY='/opt/data/data2/data_foo/' INDEX DIRECTORY='/opt/data/data2/idx_foo/' /*!50100 PARTITION BY RANGE (year(aTimeStamp)) SUBPARTITION BY HASH ( TO_DAYS(aTimeStamp)) (PARTITION p0 VALUES LESS THAN (2007) (SUBPARTITION foo0 DATA DIRECTORY = '/opt/data/data2/data_foo' INDEX DIRECTORY = '/opt/data/data2/idx_foo' ENGINE = MyISAM), PARTITION p1 VALUES LESS THAN (2008) (SUBPARTITION foo1 DATA DIRECTORY = '/opt/data/data2/data_foo' INDEX DIRECTORY = '/opt/data/data2/idx_foo' ENGINE = MyISAM), PARTITION p2 VALUES LESS THAN (2009) (SUBPARTITION foo2 DATA DIRECTORY = '/opt/data/data2/data_foo' INDEX DIRECTORY = '/opt/data/data2/idx_foo' ENGINE = MyISAM), PARTITION p3 VALUES LESS THAN MAXVALUE (SUBPARTITION foo3 DATA DIRECTORY = '/opt/data/data2/data_foo' INDEX DIRECTORY = '/opt/data/data2/idx_foo' ENGINE = MyISAM)) */; </code></pre> <p>The error is:</p> <blockquote> <p>ERROR 1 (HY000): Can't create/write to file '/opt/data/data2/idx_foo/my_precious_table#P#p0#SP#foo0.MYI' (Errcode: 13)</p> </blockquote> <p>"Can't create/write to file" looked like a permissions issue to me, but permissions on the targeted folders look thus:</p> <pre><code>drwxrwxrwx 2 mysql mysql 4096 Dec 1 16:24 data_foo drwxrwxrwx 2 mysql mysql 4096 Dec 1 16:25 idx_foo </code></pre> <p>For kicks, I've tried chowning to root:root and myself. This did not fix the issue.</p> <p>Source MySQL server is version 5.1.22-rc-log. Destination server is 5.1.29-rc-community. Both are running on recent CentOS installations.</p> <p><strong>Edit:</strong> A little more research shows that Errcode 13 is, in fact, a permissions error. But how can I get that on <code>rwxrwxrwx</code>?</p> <p><strong>Edit:</strong> Bill Karwin's excellent suggestion didn't pan out. I'm working as the root user, and have all privilege flags set.</p> <p><strong>Edit:</strong> Creating the table WITHOUT specifying data directories for the individual partitions works - but I need to put these partitions on a larger disk than the one on which this MySQL instance puts tables by default. And I can't just specify the DATA/INDEX DIRECTORY at the table level - that's not legit in the version of MySQL I'm using (5.1.29-rc-community).</p> <p><strong>Edit:</strong> Finally came across the answer, thanks to the MySQL mailing list and internal IT staff. See below.</p> http://stackoverflow.com/questions/679928/how-to-get-stories-to-work-with-restfulauthentication-and-cucumber/682542#682542 0 Answer by bradheintz for How to get stories to work with restful_authentication and cucumber? bradheintz 2009-03-25T17:10:18Z 2009-03-25T17:10:18Z <p>I don't have a lot of guidance to offer, just sympathy - I've spent a few hours recently dealing with the same problem. On the up side, it's how I learned RSpec.</p> <p>One thing I did find is that a lot of the failures were things I wanted to change anyway - e.g., I didn't want to redirect to '/' on login, but someplace else.</p> <p>In the end, most of the failures were simple to fix, once I'd figured out where to look.</p> http://stackoverflow.com/questions/607382/how-to-build-a-distributed-robust-linked-list-on-several-computers-on-the-net/615516#615516 1 Answer by bradheintz for How to build a distributed robust linked list on several computers on the net? bradheintz 2009-03-05T16:23:18Z 2009-03-05T16:23:18Z <p>I've seen both Hadoop and the Google File System mentioned, but nobody has specifically mentioned <a href="http://hadoop.apache.org/core/docs/r0.19.1/hdfs%5Fdesign.html" rel="nofollow" title="HDFS">HDFS</a> - the distributed filesystem that comes with Hadoop. You can set the desired level of redundancy, and lose the occasional node without losing your data.</p> <p>One caveat: You need to make sure the one machine that holds the "namenode" (the master machine and single point of failure in an HDFS cluster) is solid - RAID mirroring, backups, the works. You lose the namenode, you lose the cluster.</p> http://stackoverflow.com/questions/614961/running-rails-and-php-on-dreamhost/615415#615415 4 Answer by bradheintz for Running Rails and PHP on Dreamhost bradheintz 2009-03-05T16:01:47Z 2009-03-05T16:01:47Z <p>In the Dreamhost control panel menu, go to "Manage Domains" under "Domains".</p> <p>Add the domain example.com as a fully hosted domain, and keep the default settings. PHP is set up on fully hosted domains by default, so you're good to go there.</p> <p>Go back to the "Manage Domains" panel and set up the subdomain test.example.com. This time, check the box marked "Ruby on Rails Passenger (mod_rails)?" and fill in the form to specify the public folder of your Rails app. For full details on how to set up a Passenger app in DH, you should check out <a href="http://wiki.dreamhost.com/Passenger" rel="nofollow" title="Passenger/mod_rails on DreamHost">the relevant DH wiki article</a> - the instructions are pretty straightforward.</p> <p>Best of luck!</p> http://stackoverflow.com/questions/607069/using-activerecord-is-there-a-way-to-get-the-old-values-of-a-record-during-after/607115#607115 0 Answer by bradheintz for Using ActiveRecord, is there a way to get the old values of a record during after_update bradheintz 2009-03-03T16:28:36Z 2009-03-03T16:28:36Z <p>Idea 1: Wrap the update in a database transaction, so that if the update fails your Totals table isn't changed: <a href="http://www.railsbrain.com/api/rails-2.2.2/doc/index.html?a=C00000598&amp;name=ActiveRecord::Transactions::ClassMethods" rel="nofollow" title="ActiveRecord Transactions">ActiveRecord Transactions docs</a></p> <p>Idea 2: Stash the old value in @old_total during the before_update.</p> http://stackoverflow.com/questions/467911/hadoop-on-windows-server/570951#570951 4 Answer by bradheintz for Hadoop on windows server bradheintz 2009-02-20T19:40:44Z 2009-02-20T19:40:44Z <p>From the <a href="http://hadoop.apache.org/core/docs/r0.19.0/quickstart.html#Supported+Platforms" rel="nofollow">Hadoop documentation</a>:</p> <blockquote> <p>Win32 is supported as a <em>development platform</em>. Distributed operation has not been well tested on Win32, so it is not supported as a <em>production platform</em>.</p> </blockquote> <p>Which I think translates to: "You're on your own."</p> <p>That said, there might be hope if you're not queasy about installing Cygwin and a Java shim, according to the <a href="http://wiki.apache.org/hadoop/GettingStartedWithHadoop" rel="nofollow">Getting Started page of the Hadoop wiki</a>:</p> <blockquote> <p>It is also possible to run the Hadoop daemons as Windows Services using the Java Service Wrapper (download this separately). This still requires Cygwin to be installed as Hadoop requires its df command.</p> </blockquote> <p>I guess the bottom line is that it doesn't sound impossible, but you'd be swimming upstream all the way. I've done a few Hadoop installs (on Linux for production, Mac for dev) now, and I wouldn't bother with Windows when it's so straightforward on other platforms.</p> http://stackoverflow.com/questions/521118/can-ror-deal-with-char1-fields-as-boolean-fields/521200#521200 1 Answer by bradheintz for Can RoR deal with char(1) fields as "boolean" fields? bradheintz 2009-02-06T17:15:41Z 2009-02-06T17:25:13Z <p>I'd probably attack it at the model level - when you load a row into a model instance, compute a boolean attribute based on the char. Add a getter for the virtual attribute that returns this value, and a setter that updates both the boolean and the underlying char.</p> http://stackoverflow.com/questions/428571/do-smarter-compilers-languages-and-frameworks-make-dumber-programmers/428637#428637 3 Answer by bradheintz for Do smarter compilers, languages, and frameworks make dumber programmers? bradheintz 2009-01-09T16:07:21Z 2009-01-09T16:07:21Z <pre><code>s/make/allow/ </code></pre> <p>Being a little less glib: They're tools. <em>Tools</em> don't make anything, and they don't make any craftsman better or worse. Powerful tools don't either - they merely act as a lever, amplifying a particular craftsman's competence (or lack thereof).</p> <p>Some programming tools have had the effect of lowering barriers to entry, if not to the software engineering profession, then at least to getting an app running. Shortening the amount of thought that has to go into producing a working (or "working") app cuts both ways: Competent experts are freed from scut work and may do great things, but fumbling novices will sometimes get bad code into production that they never would have gotten working without the "smart" tools. The latter effect has probably had a greater impact than the former in shaping the reputations of BASIC, VB, PHP, and the recent spate of MVC rapid-development frameworks for the web - and indeed on the notion of such tools in general.</p> http://stackoverflow.com/questions/329423/parallelizing-the-reduce-in-mapreduce/425368#425368 0 Answer by bradheintz for Parallelizing the "Reduce" in "MapReduce" bradheintz 2009-01-08T18:43:21Z 2009-01-08T20:33:15Z <p>It depends on your Reduce step. In a Hadoop-style implementation of MapReduce, your Reducer is getting called once <em>per key,</em> with all the rows relevant to that key.</p> <p>So, for example, your Mapper might be taking in a lot of unordered web server logs, adding some metadata (e.g., geocoding), and emitting [key, record] pairs with a cookie ID as the key. Your Reducer would then be called once per cookie ID and would be fed all the data for that cookie, and could compute aggregate info such as visit frequency or average pages viewed per visit. Or you could key on geocode data, and gather aggregate stats based on geography.</p> <p>Even if you're not doing per-key aggregate analysis - indeed, even if you're computing something over the whole set - it might be possible to break your computation into chunks, each of which could be fed to a Reducer.</p> http://stackoverflow.com/questions/413977/is-there-real-value-in-multi-touch-interface-for-a-desktop/414597#414597 5 Answer by bradheintz for Is there real value in multi-touch interface for a desktop? bradheintz 2009-01-05T21:31:26Z 2009-01-05T21:55:24Z <p>Apple bought the patent portfolio of a company called <a href="http://www.fingerworks.com/" rel="nofollow" title="FingerWorks">FingerWorks</a> so that it could build multitouch into its own devices. FingerWorks made a keyboard replacement called the TouchStream that was the single best input device I have ever owned.</p> <p><img src="http://www.fingerworks.com/images/frontlp.jpg" alt="alt text" /></p> <p>As a keyboard, it allowed me to touch type at full speed with zero force required for a key "press" to register. The right half of the keyboard also acted as a mousepad, complete with left-, right-, and middle-click, double-click, etc. It included multi-finger gestures for cut, copy, paste, zoom in, zoom out, page up, page down, switching apps, and dozens of other common operations for which you'd ordinarily use key combos, special keys, or menus. It allowed me to attach macros to application-sensitive gestures - with a twitch of my left hand, I could compile the app I was working on in Visual C++; the same twitch did other things in other apps. A different twitch could be tied to another macro, or insert an HTML template, etc.</p> <p>My productivity was improved greatly by this device - I never had to move my hands away from the home row to use a mouse or to execute a gesture, and I could still use regular old Ctrl-Alt-Shift-foo key combos if I needed to (which of course one does, in emacs).</p> <p>I miss the TouchStream greatly, but unfortunately the mechanical design of the thing was fragile, and after the company disappeared I opted to sell the keyboard (for significantly more than I paid for it - the TouchStream enthusiast community is still out there) rather than put up with an unplanned breakage.</p> <p>All this to say: Those who pooh-pooh the idea of multi-touch being the primary interface - <em>especially</em> for programmers - have simply not seen it done well. I have. And I'm ready for it to come back.</p> http://stackoverflow.com/questions/342371/rubys-mysql-driver-not-finding-required-libraries/353586#353586 2 Answer by bradheintz for Ruby's MySQL driver not finding required libraries bradheintz 2008-12-09T17:28:53Z 2008-12-30T17:42:40Z <p>I had issues as well (on Mac OS X), and was just as frustrated that <code>gem install mysql</code> wasn't as simple as it used to be.</p> <p>The short-sighted answer is that the mysql gem needs to build native extensions, and to do that, it needs some path information (specific to your system) about MySQL libraries. The most reliable way to get that information is for you to provide it.</p> <p>The larger answer is that this is a design bug in the gem system. When nearly every other gem installs with <code>gem install foo</code>, the system and the gem submitters need to provide users with some kind of instruction for important exceptional cases - even if it's just feedback with the error message that tells you that you must provide more information to install this gem, and what that information is.</p> <p>A bit of googling around eventually got me to the answer, but got me a lot more instances of other people blindsided by a simple process that turned complex without warning.</p> http://stackoverflow.com/questions/400540/best-practice-for-managing-data-model-changes-in-a-released-system/400561#400561 4 Answer by bradheintz for Best practice for managing data-model changes in a released system bradheintz 2008-12-30T15:31:06Z 2008-12-30T15:31:06Z <p>What platform are you using? Ruby on Rails gives you migration scripts as part of the package. If you're in Java-land, you might want to check out <a href="http://migrate4j.sourceforge.net/" rel="nofollow" title="migrate4j">migrate4j</a>.</p> <p>In the end, I'd suggest doing both things: Warn your users that they're using alpha software, and employ migration scripts with the intent of preserving their data whenever you can (lest they become peeved and lose interest).</p> http://stackoverflow.com/questions/399792/inadvertent-use-of-instead-of/400545#400545 0 Answer by bradheintz for Inadvertent use of = instead of == bradheintz 2008-12-30T15:24:32Z 2008-12-30T15:24:32Z <p>As pointed out in other answers, there are cases where using assignment within a condition offers a brief-but-readable piece of code that does what you want. Also, a lot of up-to-date compilers will warn you if they see an assignment where they expect a condition. (If you're a fan of the zero-warnings approach to development, you'll have seen these.)</p> <p>One habit I've developed that keeps me from getting bitten by this (at least in C-ish languages) is that if one of the two values I'm comparing is a constant (or otherwise not a legal lvalue), I put it on the left-hand side of the comparator: <code>if (5 == x) { whatever(); } </code> Then, if I should accidentally type <code>if (5 = x)</code>, the code won't compile.</p> http://stackoverflow.com/questions/1793807/declaring-a-variable-in-an-if-else-block-in-c/1793825#1793825 Comment by bradheintz on Declaring a variable in an if-else block in C++ bradheintz 2009-11-25T18:00:36Z 2009-11-25T18:00:36Z I'm not sure what's spurious about packaging the object creation into a single-responsibility function, eliminating an unnecessary local variable, and making the main() function more scannable - but if it makes you happier to call my advice &quot;spurious&quot;, or to call a suggested refinement of Brian R. Bondy's good advice &quot;cluttering&quot; without supporting the assertion, go for it. http://stackoverflow.com/questions/1793807/declaring-a-variable-in-an-if-else-block-in-c/1793825#1793825 Comment by bradheintz on Declaring a variable in an if-else block in C++ bradheintz 2009-11-25T00:25:45Z 2009-11-25T00:25:45Z This advice is sound, but I'd suggest that you could avoid the whole pointer/reference switcheroo at the end by having a factory method that takes your type parameter and returns a <code>Player&#42;</code>. So your main method becomes <code>Player &amp;player = &#42;getPlayerByType(argv[3]);</code>, and the <code>if</code> statements in <code>getPlayerByType()</code> each return directly, thus avoiding all that local variable ugliness. http://stackoverflow.com/questions/1190270/mkmapview-refresh-after-pin-moves/1205230#1205230 Comment by bradheintz on MKMapView refresh after pin moves bradheintz 2009-11-12T00:12:55Z 2009-11-12T00:12:55Z Doesn't work in 3.1.2 either. http://stackoverflow.com/questions/1708910/resources-for-tdd-best-practices-methods-etc/1711948#1711948 Comment by bradheintz on Resources for TDD best practices, methods, etc bradheintz 2009-11-11T18:47:55Z 2009-11-11T18:47:55Z I might have said &quot;Clean Code&quot;, by Robert Martin. Or maybe &quot;Design Patterns&quot; by Gamma et al - there are a lot of good add-ons to this list. But really, the two I mentioned are the core volumes in my mind. http://stackoverflow.com/questions/1701686/why-should-methods-have-a-single-entry-and-exit-points/1701813#1701813 Comment by bradheintz on Why should methods have a single entry and exit points? bradheintz 2009-11-10T16:32:42Z 2009-11-10T16:32:42Z Thanks! It means a lot to me that you felt strongly enough to comment. http://stackoverflow.com/questions/1633559/experiences-with-test-driven-development-tdd-for-logic-chip-design-in-verilog/1669982#1669982 Comment by bradheintz on Experiences with Test Driven Development (TDD) for logic (chip) design in Verilog or VHDL bradheintz 2009-11-05T17:19:27Z 2009-11-05T17:19:27Z By &quot;synthesis run&quot;, I'm guessing you mean something akin to what we'd call an &quot;integration test&quot; or &quot;acceptance test&quot; in software - not so useful for driving development, but important once you have the pieces in place. 10 seconds isn't bad - that's somewhere around the boundary between productive/unproductive unit tests (i.e., the point at which people will either stop running them at each iteration, or will switch over to reading Metafilter while they run). Are there any facilities for mocking/stubbing submodules? http://stackoverflow.com/questions/1682077/iphone-sdk-return-to-rootcontroller-is-crashing-my-app Comment by bradheintz on iPhone SDK: Return to RootController is crashing my app. bradheintz 2009-11-05T17:11:48Z 2009-11-05T17:11:48Z Do you have a stack trace? http://stackoverflow.com/questions/1569168/if-you-change-code-that-has-a-unit-test-against-it-which-do-you-change-first/1569204#1569204 Comment by bradheintz on If you change code that has a unit test against it, which do you change first? bradheintz 2009-10-28T19:44:31Z 2009-10-28T19:44:31Z The good news is, you don't have to take it for granted - you can run the tests. Because I find the TDD process useful in my own work, I'd suggest writing the tests first - quantitatively define what you want the code to do before you implement. See my answer for more detail. http://stackoverflow.com/questions/1569168/if-you-change-code-that-has-a-unit-test-against-it-which-do-you-change-first/1569181#1569181 Comment by bradheintz on If you change code that has a unit test against it, which do you change first? bradheintz 2009-10-28T19:41:26Z 2009-10-28T19:41:26Z Writing tests after code carries the implicit assumption that the code is correct. If this is your assumption, writing the test is a waste of time. In trivial cases, this may even be a safe assumption, but a) I assume you're dealing with a lot of non-trivial cases in your daily work, and b) if the code is that trivial, writing tests for it is probably not a wise use of your time. Writing tests first <i>defines</i> correct behavior, rather than rubber-stamping a &quot;PASS&quot; after the fact. http://stackoverflow.com/questions/1569168/if-you-change-code-that-has-a-unit-test-against-it-which-do-you-change-first/1569258#1569258 Comment by bradheintz on If you change code that has a unit test against it, which do you change first? bradheintz 2009-10-28T19:37:53Z 2009-10-28T19:37:53Z If you break half your tests, you're not refactoring; you're making functional changes. Refactoring does not change the observable behavior of the software. http://stackoverflow.com/questions/129267/why-no-static-methods-in-interfaces-but-static-fields-and-inner-classes-ok/130023#130023 Comment by bradheintz on Why no static methods in Interfaces, but static fields and inner classes OK? bradheintz 2009-03-10T21:05:18Z 2009-03-10T21:05:18Z This doesn't address the OP's question about static methods. http://stackoverflow.com/questions/413977/is-there-real-value-in-multi-touch-interface-for-a-desktop/414597#414597 Comment by bradheintz on Is there real value in multi-touch interface for a desktop? bradheintz 2009-01-06T07:21:43Z 2009-01-06T07:21:43Z Steve: I was worried about that too, but it really wasn't an issue once I'd had a few days to adjust - you get all the feedback you need from the screen. It helps to be an experienced touch typist. http://stackoverflow.com/questions/413977/is-there-real-value-in-multi-touch-interface-for-a-desktop/414597#414597 Comment by bradheintz on Is there real value in multi-touch interface for a desktop? bradheintz 2009-01-05T22:21:49Z 2009-01-05T22:21:49Z Actually, mine was Dvorak (not QWERTY) and had maroon instead of silver - but otherwise, it was the identical device. Thanks for adding the pic! http://stackoverflow.com/questions/400935/how-do-i-completely-mirror-a-web-page Comment by bradheintz on How do I completely mirror a web page? bradheintz 2008-12-30T17:48:03Z 2008-12-30T17:48:03Z There's a lot that's unclear here. Do you have access to the server? If so, then there are better ways than the brute file copy via web client that you suggest. If not, what are you doing scraping and posting content from a server not your own? Please provide specifics; it would help us answer. http://stackoverflow.com/questions/386695/option-for-inheritance Comment by bradheintz on option for inheritance bradheintz 2008-12-22T17:32:08Z 2008-12-22T17:32:08Z I second the question from Milhous. Some more details about what you're trying to accomplish would allow people to give you more thorough answers.