Home > Articles > Programming > Ruby

Putting the "Journey" in Journeyman Software Developer: An Interview with Corey Haines

When it comes to putting the craft back into programming, a handful of names might come to mind, and Corey Haines is one of them. Matthew Heusser talked with Corey about software craft, his journeyman project, and that great big project he is working on next.
Like this article? We recommend

When it comes to colorful careers in software development, it's hard to top Corey Haines. Yes, he had the classic career as a programmer, earning a college degree in mathematics and spending fourteen years programming and developing software. Then, in 2008, Corey did something different.

He took a road trip.

Corey took a classic journeyman approach to software development, by actually going on a journey, spending around nine months on the road, offering to pair program with anyone who would give him space and put him up for the night.

Along the way, he got exposure to dozens of different organizations, the technologies they used, and the way they develop software.

Shortly after announcing his trip, the emergent field of software as craft began to develop. Corey attended the 2008 Software Craftsmanship Summit, helped author its manifesto, helped organize the Software Craftsmanship North America Conference in 2009, and provided the closing keynote in 2010. He'll be giving a keynote at this year's conference, as well.

Still focusing on craft and what programmers do, Corey has been talking more and more about value--what value the technical staff can bring to the table, how to translate that into value for the customers, how to focus on it, communicate about it, and deliver more of it.

Matt Heusser: Can you tell us a little bit about software as craft? How is that different than being a "good programmer"?

Corey Haines: Software craftsmanship is more than just being a "good programmer." It is about the reasons and values behind why you would want to be a good programmer. At the 2010 SCNA, Enrique Comba gave a talk on the forgotten value in the manifesto: productive partnerships. Because the general talk around craftsmanship is centered in the development communities, the focus is on development-type topics: practices, processes, techniques, methodologies, etc. However, these are there to provide concrete value to our clients.

So, for example, test-driven development is a core practice, both as a design tool and a method for generating a comprehensive, fast regression suite of verification checks. It is important to ask why we want these particular things. The loosely-coupled designs to which TDD guides and supports us takes advantage more fully of the promised benefit of modular design: minimizing the cost of change of a system. The comprehensive suite of regression tests allows us to save time and money by shrinking the feedback loop between doing something and finding out if we broke something. On my application, MercuryApp, for example, our entire release-focused test suite takes less than 5 minutes. This means that I can click a button and find out within 5 minutes if the application worked like it did yesterday. This also adds to the ability to change our software fairly easily. Why do we want to minimize the cost of change? What value does that give? Businesses change. Businesses evolve. The more rapidly the software supporting the business can evolve, the more easily a business can adapt to change. This is especially true in small businesses and startups: you need to be able to rapidly try things out, as you are looking to learn what works.

Matt: Tell us about MercuryApp. What does it do? How large is the codebase? What kind of apps do you think should have a test suite that runs in five minutes--all of them? Are there cases where that is not good advice?

Corey: MercuryApp is a tool to help tools and individuals make better decisions by capturing how they feel about things over time. Think of micro-journaling with a bit of extra information about your general feeling. You pick a topic that you want to track, and at certain intervals (every day, several times a day, every few days, etc.), MercuryApp contacts you and asks you how you are feeling about that topic and why. Responding can be done via email (and soon to be via twitter dm), and feedback from our users has shown this takes less than 30 seconds. Then, you can view a graph of your feelings linked with the notes you have left.

Often, we think we are making decisions based on quantified, hard data, but just as often we make our choices based on a gut feeling. Take a team that is experimenting with some specific process change or new toolset to improve their productivity. They might time-box the experiment and set up a decision-making meeting. We've all been in that situation where the decision is based on our “at the moment” feeling of the topic. Perhaps you struggled with the tool yesterday or had one-to-many meetings yesterday and are in a bad mood. This has a serious impact on our objectivity. But, with MercuryApp, you come into the meeting with concrete information captured over the course of time. While at the time of decision you might be feeling negative, looking back at your journal illuminates your real views over time.

My girlfriend, Sarah, and I have been working on MercuryApp for around a year now, and the codebase is between 10 and 15 thousand lines of code. It is built using Ruby on Rails, which dramatically decreases the lines of code needed to get the same feature as some other tools. It is a really fun codebase to work in. It has been refreshing to really work on my own project, because I've been able to take all of the techniques and ideas that I have around writing maintainable code and apply them. So, after a year, the codebase is still pretty malleable, accepting new features fairly readily. We do our best to keep it clean, especially after building a new feature in.

I've also been able to use it as a guide for improving my understanding of doing TDD on a framework-based application. As an example, our unit test suite was beginning to reach the outer edge of acceptability for me; we had around 800 examples that were starting to push upwards of 15 seconds. This necessarily makes the TDD workflow cumbersome, as you want to be running your unit tests very frequently. Even when just running a focused set of tests around the current area of development, I was seeing multi-second run times. I like to say that the main difference between test-first and test-driven development is your reaction to pain in the testing process: with test-first, you alter your tests; with test-driven, you alter your system design. So, I took a look at what was causing this pain. The major culprit was loading the Rails framework. As your system gets larger, the startup time for the framework increases. I did some research and investigation into my codebase and realized that I was definitely coupling myself too tightly to Rails. Parts of my system that were business-logic, independent of the database or the web, were still reliant in some way or another on the Rails framework. Or, if they weren't directly coupled to it, their tests were still loading up the framework. So, I took a couple hours one night, found the code that was completely independent of the web and the database and set up a way to run them without loading Rails. This immediately brought the run down to a couple seconds. I continued to investigate and found that one tool I was using, Bundler, added overhead of 1.2 seconds to the suite. So, I looked to see if that was necessary. It wasn't. I cut that out of my development process tool chain. I had now taken a >10 second run for about 100 unit tests and dropped it to sub-second. I then began looking at a few other business-logic-oriented components that were coupled to the Rails framework. I took a few of them and isolated the code from Rails-coupled techniques, such as a heavy reliance on ActiveRecord finders. I was able to bring over a lot more unit tests into the sub-second range. Now, we still have 800 tests that are in the Rails-dependent test suite, which takes around 20-30 seconds to run. We have a "no rails" test suite that contains about 400 tests and runs in about .5 seconds, and a majority of that is actually the overhead of loading and parsing the files. As we make changes to existing parts of the codebase that is being tested with the slow suite, we move the tests over to the fast suite. So, as I'm working on a specific unit, and I need to run only one or two test files, I can run them almost instantaneously.

To the question of what kind of apps should have a test suite that runs in five minutes, my answer would probably be any one that I've ever worked on. And frankly, probably on any one that the readers of this interview work on. Often times we blame our test suite on other factors, but I find that a slow test suite, especially at the unit level, is because of a poor design, not because of inherent problem in the tools. This generally comes out via sloppy or inexperienced design practices around coupling.

Are there cases where a fast test suite is not good advice? I don't know. I haven't seen one. I've heard a lot of people give me examples, but, after further discussion, it boils down to a design issue. Are there very large systems, such as an operating system, that might potentially have enough parts to it that you can't have a complete test suite that runs in 5 minutes? I don't know. But, if you apply good modular design techniques, I think you can break it up in such a way that any individual subsystem can be tested independently and effectively within a reasonable amount of time. Most of the people I deal with, though, are building business applications, web applications, etc., and the long test suites I've seen have always been because of faulty designs.

Matt: You went from “enterprise software developer” to traveling software journeyman within the course of a year. Can you tell us about how that happened?

Corey: In 2007, I was increasingly frustrated with the large corporate environment. At the same time, I was getting more and more frustrated with the technology I was using. I was deeply entrenched in the Microsoft ecosystem, having spent most of my professional career using their tools. As I was getting more experience with evolutionary design and test-driven development, it felt like the tools I was using were actively battling me. I had been fooling around with Ruby for a bit of time, and I really enjoyed the time that I spent working in that language. So, I decided I was going to get a job doing Ruby on Rails. I spend the summer and fall of 2007 writing small web applications, and I finally was approached to work at a startup in Cleveland, OH, where I was living at the time. So, in February of 2008, I left the enterprise behind and joined a small startup. They were beginning a redo of their application and platform. I spent the summer in a haze, working a lot of hours, seeing the effect of the "we need to get users so we can sell the company" mentality. In the end, my attitude and approach to software development, deeply grounded in XP, caused a lot of stress and misunderstandings in a team that did not share those values and practices. So, in the end, when you have a member of a team that does not fit in, the time comes when you have to cut that person. I got fired.

I spent a month thinking and relaxing, then decided to take a sabbatical. Over the years, my friend and mentor, Joe Rainsberger, and I had thought wistfully about how much fun it would be to go wandering out, Paul Erdos-style, programming with lots of different people. It occurred to me that this might just be my opportunity. I knew a lot of people who worked from home, independents, remote workers, etc. So, I figured it wouldn't be hard to take a few weeks and visit them.

I was working on the idea when I went to the 2008 RubyConf, and spent some time with David Chelimsky. He and I always seemed to end up pairing whenever we saw each other, and this was no different. I mentioned my idea to him, and he told me to come to Chicago. So, I set out on a three-week trip to spend time programming with people in exchange for room and board. When I left Cleveland at the beginning of December, heading to David Chelimsky's in Chicago, I barely had the first week of places organized. By mid-week, I had the entire three weeks planned, ranging from Chicago, through Indiana, down to Cincinnati and Columbus finally back to Cleveland. The idea started to gain popularity and following, so I figured I would just keep going. I started doing smaller trips in the winter and spring of 2009, mostly around the Ohio, Illinois, Michigan area, then organized a three-month trip along the east coast for the summer.

Matt: Can you tell us about the results of that trip? Not just the blogs, videos and talks, though we'd be happy to check them out, but also, how were your opinions and ideas shaped by those new experiences? What did you learn?

Corey: The trip was definitely one of the most formative experiences of my career and life. While there were a lot of intangibles--network building, fun, etc.--I'll talk about two specific take-aways: dropping in on a codebase and adding value, and having a more realistic view of my own skill level.

Moving from place to place, spending anywhere from one to five days, I was often in the situation where I needed to add value to a system with only a cursory understanding of it. Think about sitting down at a codebase with one day to add some value. What are the techniques you'd use, how would you apply the right focus? I learned the extreme value of pairing in this situation. I've loved pair-programming since I first started doing it in 2004, and I've seen a lot of different benefits to it. The sheer power of using it to bring someone (in this case, me) up to speed on a codebase was amazing. It allowed me to clear my mind of larger concerns, relying on my partner to have the larger context, and I could focus on the detail of what we were working on. After doing this repeatedly over the course of the year, I found myself incredibly comfortable just focusing on a small part of the system that I'm working in. Sometimes you need to have the larger context, but not always. Now that I'm doing a lot more technical consulting and training, I find this skill to be incredibly useful to increase the value that I can provide for my clients.

For most of the time, we work and surround ourselves with the same people, and we have a good sense of our skill level relative to this group. Have you ever had that experience where you sit down at a conference with a developer you've never coded with and are completely blown away by how good they are? You thought you were pretty high level, based on your normal group, then you code with someone who blows your mind. Or, you think you aren't that great, but you sit down with someone and realize that you are much more advanced in your understandings than they are. Now, imagine going around and doing this constantly for a year, working with new people. You would definitely get a great sense of your own skill level. It is a fantastically grounding experience. As I've facilitated coderetreat trainings around the world, as well, one of the most common responses I get during the closing circle reflection is that a person gets a real sense of their strengths and weaknesses by pairing with 6 other people during the day; now imagine doing that for a year.

These are just two of the many things that immediately spring to mind.

Matt: Along those same lines, what are you working on right now? What is new and exciting in the world of software craft, and, more importantly, in your world?

Corey: There are a couple major things I'm focusing on these days. First, my own coding projects. I spend a lot of time traveling to speak and hold trainings. This is a wonderful thing to do, but it comes with the danger of skill atrophy. So, I make sure that I deliver actual working, complete software frequently. This is a great way to keep my skills up-to-date. My main focus right now is on MercuryApp, plus a few other projects that Sarah and I are starting.

Also, Sarah and I are actively working with non-technical founders of startups to help them better understand the software development process. We keep hearing horrific war stories from founders that could be alleviated with some guidance and education. So, we are sitting down and talking about concrete value they can demand from software development freelancers and workshops. Rather than focus on the technical practices, we start with an understanding of the end result. As an example, it is reasonable to expect working software every week. Rather than receiving a status report of what is being worked on, they should be provided with a URL that they can see and use. Shrinking the feedback loop between asking for something and seeing it actually implemented allows the founder to adjust their idea more quickly. We also talk about the ability to replace the human, “click around the application to see if works” process with a computer doing the same tasks. Having the ability to rapidly verify that the system continues to work like it did yesterday (or five minutes ago) can allow much more freedom when adjusting priorities and the specifics of features. While explaining these things they can expect, we also talk about trade-offs if they choose not to demand this. That way, they have a bit more information in their hands when they are talking to a prospective contractor.

On the side, I've been having an absolute blast playing with Scratch. I'm helping a friend teach a game design course to high school students this summer, and so I have been learning Scratch. It is an amazing environment, and I'm finding myself smiling and laughing when I build things in it. It was amazing to see a group of high school students with no programming experience build a functioning version of Pong during a 1.5-hour class. The Software Craftsmanship community talks a lot about our responsibility to others, especially the way people are brought into a software development career and how we mentor them in skill improvement. This small amount of time with Scratch has really given me a new energy towards helping young people learn about programming. With the teacher that I'm helping this summer, I'm planning to put together a four-week night course for parent-child pairs to learn to build games using Scratch. I caught the programming bug early on through games, and I hope that I can share it the same way.

And last, but not least, I'm focused on taking the last two-and-a-half years of coderetreat to the next level. I've spent the time establishing the coderetreat format, and I've seen the format go from an idea in a hallway to a world-wide phenomenon. I've started using the format effectively at companies for in-house private trainings, and the feedback there has been outstanding. I'm also planning an event called "Global Day of Coderetreat" with the goal of 32 hours where there is a coderetreat going on somewhere the whole time. My dream is to facilitate the first one (most likely in Australia) and the last one (most likely in Hawaii).

Matt: Thank you for participating. One final question: say the reader saw something here that sparked their interest. Where can people go to learn more?

Corey: Twitter! A lot of fantastic discussions happen there. The 140-character limit is a big constraint, but it also is a bit freeing. Say I have an offhand idea. I can put it on Twitter and immediately start getting feedback on it. Last fall, I was sitting in a hotel room in Belgium, and I put out the statement, "Design Patterns are inappropriate to teach to beginners. Discuss," and had a fantastic conversation with people all over the world.

The Software Craftsmanship mailing list often has interesting discussions, as does the XP and TDD mailing lists.

And conferences! Come to the Software Craftsmanship North America conference. Go to the Software Craftsmanship UK conference. There are loads of Software Craftsmanship user groups around the world. Attend a coderetreat in your area. If there is nothing happening in your area, then start something. Put out word that you are going to be sitting at the local coffee shop on Tuesday night, doing some hacking. Invite people. Don't think you have to make some huge plan and organization. Just Do It!

In the end, it all boils down to one piece of advice. Software development is a community activity. If you aren't taking part, then you are missing out.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020