bradheintz

1,556
reputation
229 views

Registered User

name bradheintz
member for 1 year
seen 3 hours ago
website
location New York, NY
age 38

Ruby, Rails, Java,Hadoop, iPhone, SQL, TDD, Training. Freelance.

Brad on Twitter

BradHeintz.com - personal site

Kickass Labs - coder cabal

GuitarCardio.com - guitar exercises for stamina & accuracy

1d
revised what is the best way to fix IE6 png trancparency with javascript and Jquery
edited tags
Nov
30
awarded  Nice Answer
Nov
25
comment Declaring a variable in an if-else block in C++
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 "spurious", or to call a suggested refinement of Brian R. Bondy's good advice "cluttering" without supporting the assertion, go for it.
Nov
25
comment Declaring a variable in an if-else block in C++
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 Player*. So your main method becomes Player &player = *getPlayerByType(argv[3]);, and the if statements in getPlayerByType() each return directly, thus avoiding all that local variable ugliness.
Nov
24
awarded  Yearling
Nov
23
answered Why are Perl source filters bad and when is it OK to use them?
Nov
22
accepted Caching of Map applications in Hadoop MapReduce?
Nov
20
answered How do you use MapReduce/Hadoop?
Nov
20
answered Caching of Map applications in Hadoop MapReduce?
Nov
17
accepted Refactoring Studies
Nov
12
comment MKMapView refresh after pin moves
Doesn't work in 3.1.2 either.
Nov
11
comment Resources for TDD best practices, methods, etc
I might have said "Clean Code", by Robert Martin. Or maybe "Design Patterns" 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.
Nov
11
revised Refactoring Studies
fixed punctuation issue
Nov
11
answered Managing a dev vs production environment for a web app?
Nov
10
answered Resources for TDD best practices, methods, etc
Nov
10
comment Why should methods have a single entry and exit points?
Thanks! It means a lot to me that you felt strongly enough to comment.
Nov
9
answered Refactoring Studies
Nov
9
answered Why should methods have a single entry and exit points?
Nov
5
comment Experiences with Test Driven Development (TDD) for logic (chip) design in Verilog or VHDL
By "synthesis run", I'm guessing you mean something akin to what we'd call an "integration test" or "acceptance test" 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?
Nov
5
comment iPhone SDK: Return to RootController is crashing my app.
Do you have a stack trace?
Nov
4
accepted TDD/BDD in particular for a Rails application
Nov
3
accepted Questions to answer before proposing to use a new language?
Nov
3
answered Questions to answer before proposing to use a new language?
Nov
3
answered Experiences with Test Driven Development (TDD) for logic (chip) design in Verilog or VHDL
Nov
2
revised TDD/BDD in particular for a Rails application
added 511 characters in body; added 250 characters in body
Nov
2
answered TDD/BDD in particular for a Rails application
Oct
30
answered Best way to build websites or applications with modular / reusable components
Oct
29
answered Mapping switch statements to data classes
Oct
29
revised Developers are dissatisfied with TDD. Is TDD really the problem, or is it lack of skill in novice practicitioners?
Minor grammar tweak
Oct
28
answered Designing a poker parser in Ruby
Oct
28
comment If you change code that has a unit test against it, which do you change first?
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.
Oct
28
comment If you change code that has a unit test against it, which do you change first?
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 defines correct behavior, rather than rubber-stamping a "PASS" after the fact.
Oct
28
comment If you change code that has a unit test against it, which do you change first?
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.
Oct
28
answered If you change code that has a unit test against it, which do you change first?
Oct
28
answered In test driven development, do you write every possible test first, then the code?
Oct
27
answered What is Best for Defect Rate Tracking? Defects per KLOC?
Jul
18
awarded  Necromancer