Marty Haught http://martyhaught.com/rss/ en-us 40 My blog covering software design. Product Development, UX and QA in Small Teams <p>In the early years of my software career, I worked in larger organizations where we had different groups of developers along with non-technical teams working collectively inside formal processes. Imagine some form of waterfall process where you had an architect group backed by business analysts, multiple teams of software engineers, and a quality assurance team all watched over by a group of project managers. It was slow and inefficient at delivering the software that business needed. During the late 90s and early 2000s, it was all I knew.</p> <p>Fast forward a decade later and now I exclusively work in small, cross-functional teams that are fully self-contained. We ship software lightning fast, can react to change requirements overnight and are incredibly efficient.</p> <p>However, one weakness that I&rsquo;ve observed lately is when the client doesn&rsquo;t own the traditional product owner role fully. It seems odd that this would happen but on two recent projects I noticed a trend where the client wasn&rsquo;t interested in completely steering product development and/or user experience. It could be that they felt comfortable with how our team at Haught Codeworks was handling both pieces. Or maybe past experience with traditional web consultancies led to bad patterns of interaction.</p> <p>When the client doesn&rsquo;t fully own the three areas of product development, UX and QA it leaves a vacuum. It&rsquo;s rare that software engineers will think of these aspects on behalf of a client. If a client asks for feature A, we assume they know what they&rsquo;re asking for and will verify after we ship the feature that it meets their needs. When a client doesn&rsquo;t take product ownership, features sometimes get built in a way that isn&rsquo;t ideal for the user experience. With no one thinking of the bigger picture features are built with a lack of context and assumptions go unchecked. Who&rsquo;s to blame in those cases? Ultimately both sides are and given that a software consultancy should be the expert on shipping quality software, it&rsquo;s become clear to me that we need to guard against this. The product needs an advocate, even if it requires the team to adopt that role.</p> <p>The trick is, who owns this piece on a small team? In a perfect world everyone on the team would own product development. In practice it&rsquo;s not realistic to spread this responsibility across the team. Product development is very time consuming when done properly and it&rsquo;s not something I want to leave for the team to &lsquo;sort of&rsquo; provide in an ad-hoc manner.</p> <p>My thoughts lately have shifted. What if I had one person own these three roles? First, product development would focus on representing the user and making sure the client understood how best to build the software to meet the user&rsquo;s needs. This person could dig a bit deeper than clients might on their own and really get the product moving in the right direction, long before any code has been written. UX could be properly handled up front with usability having a dedicated champion as features are planned out and tested. Finally, they could do the last check of finished features to make sure they match the intentions of the product owner and provide a good experience for the users. It&rsquo;s hard for engineers to reliably verify their own work, so this also functions as a second set of eyes to test a feature before the client ever gets to see it.</p> <p>I haven&rsquo;t heard of anyone mixing there three facets of product ownership into a single person&rsquo;s set of responsibilities. Is it too much of a stretch? Any other gotchas? I am curious what others have experienced in this space and if they are starting to see value in this sort of thing for smaller teams. Finally, I&rsquo;d like to add someone to the <a href="http://haughtcodeworks.com">Haught Codeworks</a> team in this capacity. If you or someone you know might be interested, <a href="/about">reach out</a>.</p> Wed, 04 Mar 2015 00:00:00 GMT http://martyhaught.com/articles/2015/03/04/product-development-ux-and-qa-in-small-teams/ http://martyhaught.com/articles/2015/03/04/product-development-ux-and-qa-in-small-teams/ Project READMEs <p>A practice that I have my projects follow is a self-guided <span class="caps">README</span> file. The concept is simple. The <span class="caps">README</span> should guide you through everything you&#8217;d need to do to get this app up and running on your local environment. It seems like an obvious must have on projects yet I&#8217;ve encountered several that don&#8217;t do this.</p> <p>As I value efficient use of time, I find having everything I need to get an app up and running in easy steps is huge. As a consultant I end up running easily a dozen apps each year. This <span class="caps">README</span> saves me time and makes sure I didn&#8217;t forget any important steps. There&#8217;s nothing as frustrating as doing the normal rails setup steps only to find an app failing due to some unusual dependency or missing data. Having the <span class="caps">README</span> avoids this issue. It&#8217;s especially helpful if I haven&#8217;t run an app in a long time and just want to make sure I don&#8217;t need to redo any of the steps.</p> <p>The <span class="caps">README</span> is particularly useful for those new to the project. I find it valuable for both newer and experienced programmers. When your team has a culture of writing these READMEs you know when you come onboard a new project that it&#8217;ll be there for you to get you up and running as fast as possible.</p> <p>Let&#8217;s explore what these READMEs should include. Before I get started, I delete all the boilerplate contents that the Rails generator puts in there.</p> <p>Start off with the project&#8217;s name at top. Even though it&#8217;s implied by its placement at the root of your Rails app, I still like it there.</p> <p>Next I like to put requirements for the app. Usually this is the version of Ruby, any required databases and other special services/libs that you may not have installed on your system. I don&#8217;t list gem dependencies in this area since Bundler handles that. I do assume that anyone installing the app has a Rails compatible environment.</p> <p>The meat of the <span class="caps">README</span> will be the steps to get the app up and running. This includes steps like configuring your database.yml, copying and adjusting any special config, running bundle and any steps to seed or bootstrap your environment with necessary data. These are typically written out as shell commands so someone could copy and paste it into their prompt.</p> <p>Next I like to include information on deploying the app along with basic data on where that is. This piece isn&#8217;t as necessary but we find it convenient. This is especially true when you have many different apps and some may be on Heroku while others are on other servers that may use Capistrano for deployment.</p> <p>If there are common tasks that we do I like to call them out here. Perhaps you have some external service you infrequently pull down data from. Maybe you process csv files.</p> <p>Finally, if there are any special notes or tips that I want the team to know about this app, they go at the end. If these notes are important to the setup process I&#8217;ll mention them above with a fuller explanation towards the bottom.</p> <p>One key principle is I want these READMEs to be self-guided. I shouldn&#8217;t need to ask questions of the team as I follow the guide. Hopefully it&#8217;s fast with clear steps. If not, that&#8217;s a red flag that the <span class="caps">README</span> needs an update.</p> <p>Speaking of that, the first task that a new person on the project (experience level doesn&#8217;t matter) has is to update the <span class="caps">README</span> as they setup their machine. If anything is stale or inaccurate, they update it. If something isn&#8217;t clear or they have questions on it, we look to see if something needs to be clarified or not. If there is room for improvement, they make it better as they go. This process also helps flush out any implicit steps that needs to be defined.</p> <p>Though it takes some extra time for the <span class="caps">README</span> to be written and kept up to date, I truly believe it&#8217;s worth every minute spent on it. Even when I am solo on a side project I still do this. On several occasions I&#8217;ve been immensely thankful that I did.</p> <p>One thought on the evolution of this idea is to do literate programming where the <span class="caps">README</span> not only provides the kind of human readable documentation mentioned above but is also executable commands. Even further is the notion of full machine setup automation or images, such as <a href="http://boxen.github.com/">Boxen</a>. Depending on your team that might be preferred. However, I&#8217;d start with getting your project READMEs into shape before going beyond.</p> Thu, 31 Oct 2013 15:38:09 GMT http://martyhaught.com/articles/2013/10/31/project-readmes/ http://martyhaught.com/articles/2013/10/31/project-readmes/ RubyConf 2013 CFP and Diversity <p>The <a href="http://rubyconf.org/program">RubyConf 2013 program</a> was partially announced yesterday and there was immediate fallout regarding the lack of women speakers. At first, there appeared to only be 2 women-led talks out of 44. Indeed this percentage is terrible and a step back from where we have been. At the same time there has been a lot of misunderstanding and jumping to conclusions that simply couldn&#8217;t be answered over Twitter. I&#8217;ve been terribly busy and traveling ever since this all came out and I finally have some time to take more than 5 minutes to respond.</p> <p>First, I want to apologize to all of you who expected better from the RubyConf program. We really should have done better on many more fronts than you realize and the lack of diversity is only one symptom. For anyone that cares to look into my background or what I&#8217;ve done with the tech community over the last several years, you&#8217;d see that I am not one to discriminate and am more like a defender of diversity. I also had the most involvement with the <span class="caps">CFP</span> process and am ultimately responsible for the end result, which I will take the blame for.</p> <p>The next thing I want to make perfectly clear is that RubyConf does support and encourage a vibrant and healthy community, of which diversity is an important part. We have the <a href="http://rubycentral.org/community#scholarship">Opportunity Scholarship</a> which is often used to promote diversity. In the next week we will open up applications for scholarships to RubyConf. It is absolutely false to claim that women or any marginalized person would not feel welcome at RubyConf. We have a solid <a href="http://rubyconf.org/policies">Anti-Harassment Policy</a> and have had this policy for some time now.</p> <p>There&#8217;s a lot to cover about the process and what was lacking that I&#8217;ll go into shortly. First, I need to clear some things up. We&#8217;ll start with some numbers. The numbers are constructed as best we can as the <span class="caps">CFP</span> process does not ask for gender or any other demographic. I can confidently say we know how many women vs. men proposed talks. I cannot say anything about people of color or any other segment of marginalized people.</p> <p>We had 278 total submissions, of which 25 were by women (9%). If you look at individual proposers then we&#8217;re at 207 total with 19 of them women (also 9%). The final program will be at 47 talks, 6 of which include women (or a girl in one case). That&#8217;s 12% representation which is lower than we&#8217;d like but not as bad as many who thought our program was at 2/44. Since our process was blind, I&#8217;d say that women actually fared much better than people are acknowledging. What&#8217;s even better was the process was driven by talk quality so this is not some quota or artificial percentage. Their talks rose above many, many others. One really important thing to point out is that we had a ton of good submissions for 47 slots. Many good talks were rejected simply because there wasn&#8217;t room. I don&#8217;t think people realize how tight the competition was.</p> <p>Let me talk a little bit about the <span class="caps">CFP</span> process. First, it was blind. This means that reviewers could not see the name or bio of the speaker and thus could only be influenced by the content of the proposal. Second, we had a review committee (8 people) where every talk got at least 4 reviews. Since I was managing the entire process and could see all the data behind the talks, I did not review a single submission, since my reviews would not have been blind. I wanted to respect the blind process that way. I was only involved in the final selection. We had decided how the <span class="caps">CFP</span> process would go months ago and this is the first year RubyConf had run it like this.</p> <p>One notable piece missing from the the <span class="caps">CFP</span> was any sort of proactive outreach. We didn&#8217;t do anything in this department and just announced the <span class="caps">CFP</span> as normal. Since we only had 9% submission rate you can&#8217;t expect better representation. This is something we need to do better for next year.</p> <p>Another piece that felt lagging was giving better instructions on the <span class="caps">CFP</span>. We gave specific instructions to reviewers and there were some things that we left implied, based on what RubyConf has been. Which I think is important to speak a bit about: this is the conference for the niche and unusual talks about Ruby. It is not a general purpose tech conference but the one time where all those really interested in Ruby come together to talk about the language. Thus reviewers rated talks that met this criteria higher. Many great talks that would be perfect at a conference didn&#8217;t meet muster as they may not have focused as much on Ruby. This criteria would not be clear to someone new to RubyConf. It seems obvious now that we should have communicated this better and we&#8217;ll get this fixed.</p> <p>The <span class="caps">CFP</span> process lacked feedback. Many reviewers simply didn&#8217;t leave comments for proposers. If we had started sooner and given feedback as talks came in, then proposers could have adjusted talks and known why their talk(s) may not have made it. When you&#8217;ve got nearly 300 talks to get through in 2-3 weeks, it&#8217;s daunting. We used our own software for the <span class="caps">CFP</span> and it lacked some important features to do this process properly. I personally finished off this code but I had to fit it into my busy schedule and thus it wasn&#8217;t ready until late August, just a week before the <span class="caps">CFP</span> closed. What would it have looked like if that would have been ready from the beginning and our review committee was ready to go as the talks slowly trickled in? Unfortunate circumstances that usually do not affect smaller conferences due to our size.</p> <p>This may not be clear to many of you, but this isn&#8217;t a full-time job for most of the organizers nor the program review committee. We&#8217;re volunteers and in my individual case, I have to balance organizing two large conferences a year with running my business, raising my family and the other obligations that come with life. I simply don&#8217;t have the time to do everything I want to do. When I ran Rocky Mountain Ruby, a small regional Ruby conference, I could take extra time because I had a 1/4 of the submissions and overall less logistics to deal with. I know many of you say you&#8217;re willing to help but that&#8217;s not as easy as it sounds. I&#8217;ve tried delegating to volunteers in the past and that&#8217;s gone poorly.</p> <p>I don&#8217;t want to make excuses as we will figure out a better way next time. However, I did want to give a fuller story to the tidbits that have come out on Twitter over the last 24 hours. It saddens me to see how quick people are to react so strongly on all sides of the issue based on assumptions without waiting to hear the real story. I don&#8217;t think there are any villains here and things are way more nuanced than they seem. I&#8217;m just sorry that I&#8217;ve let people down. Hopefully you can all make constructive actions for improving our community going forward. Yes, RubyConf will still be a great experience this year. We care too much to not let that be the case.</p> Wed, 18 Sep 2013 00:00:00 GMT http://martyhaught.com/articles/2013/09/18/rubyconf-2013-cfp-and-diversity/ http://martyhaught.com/articles/2013/09/18/rubyconf-2013-cfp-and-diversity/ Supporter Ticket at RubyConf <p>This year we&#8217;re trying out something new for <a href="http://rubyconf.org">RubyConf</a>. We&#8217;ve introduced a new kind of registration called the Supporter. At $1,000 this is in between buying a regular ticket and being a sponsor. We&#8217;re offering this as a way for the community to contribute back to RubyCentral as well as for businesses that don&#8217;t want a full blown sponsorship but would like some recognition.</p> <p>You may ask why anyone should contribute back to RubyCentral. We&#8217;ve slowly been working on our new <a href="http://rubycentral.org">rubycentral.org</a> website for the past several months to clarify what our mission is and how we&#8217;re going about it. One vital service that we provide is RubyGems infrastructure, it&#8217;s not cheap running servers that deliver all the functionality the RubyGems provide.</p> <p>RubyCentral also runs community support through our conference grant program and the new <a href="http://rubycentral.org/community#scholarship">Opportunity Scholarship</a> program. The conference grant helps new regional conferences get up and running, allowing those not able to travel to either RubyConf or RailsConf the exposure to our community-centric conference culture. The Opportunity Scholarship is a new program that I brought in from Rocky Mountain Ruby. We ran it at RailsConf 2013 and several other regionals have run similar programs with RubyCentral support this year. This program will help introduce new programmers to Ruby and our conferences. We hope this gives them a welcoming entrance into our community and sees them blossom as contributing members in the coming years.</p> <p>By choosing to register as a Supporter at RubyConf 2013, you&#8217;ll be helping fund these programs going forward. RubyCentral is a registered 501c3 non-profit in the U.S. and makes sure those funds go back to helping our community improve.</p> <p>We already have two such supporters, <a href="http://starkandwayne.com/">Wayne and Stark</a> and <a href="https://dnsimple.com/">DNSimple</a>. Check them out on our <a href="http://rubyconf.org/sponsors#supporters">sponsors page</a>. I look forward to seeing more of you listed there and thank you for the support!</p> Tue, 06 Aug 2013 00:00:00 GMT http://martyhaught.com/articles/2013/08/06/supporter-ticket-at-rubyconf/ http://martyhaught.com/articles/2013/08/06/supporter-ticket-at-rubyconf/ Blind Reviews at RailsConf 2013 <p>For RailsConf 2013, we used a different approach for reviewing all the proposals we got &#8212; all reviews were blind. This is where the reviewer can only see the proposal&#8217;s title, abstract and detailed information. We reviewers had no idea who submitted the talk, their experience level or gender/ethnicity. Though I have been organizing conferences in some fashion over the last seven years, this is the first time I&#8217;ve done a blind review process.</p> <p>Before I continue, I want to point out that I strive to not let a person&#8217;s background or identity unfairly affect how I rate their talks. I think I do a good job since I truly believe that gender, ethnicity and other ways people are discriminated against play no part in the quality of a presentation they might be offering. However, the reality is I can&#8217;t be completely objective. We all carry unconscious bias with us and seeing someone&#8217;s name or bio could well color how we value their talk. Thus the first benefit of the blind review is that these things are removed.</p> <p>Second, I know a lot of people in the community, many of which might be submitting talks. No doubt I could easily be swayed to give extra value to a talk from a good friend or a high quality speaker. Worse yet, I might not give an honest rating since it may hurt their feelings. The blind review eliminates these things as well.</p> <p>It&#8217;s quite freeing to not worry about these things. It allows me as the reviewer to totally focus on just the quality of the abstract and talk details. It also makes talk reviews faster since I don&#8217;t need to factor in the quality of the speaker or his/her background. For RailsConf, I only did initial screen and rating of the talks and allowed others to sift through nearly 400 proposals in narrowing down to around 50 talks.</p> <p>If you’re a conference organizer, I encourage you to do your first screening blind, especially if you have a review committee. I would state explicitly in your Call for Proposals that you&#8217;ll be reviewing talks blindly and ask that submissions do not reveal the speaker&#8217;s identity, gender or ethnicity. It would also be good to have someone not on the committee screen the proposals to make sure they&#8217;re sufficiently scrubbed (meaning there&#8217;s no leak of the speaker&#8217;s identity, gender or other identifying details).</p> <p>I do believe that as an organizer you&#8217;ll still want to curate the final talk selection and considering the actual speaker and their experience is important. In all of my conferences I&#8217;ve seen some submissions that looked pretty good but the speaker didn&#8217;t have the experience or savvy to pull off what they were proposing. I don&#8217;t know if you can get around this with a truly blind review process. However, I see no reason not to have initial talk review and ratings be done blind.</p> Fri, 03 May 2013 00:00:00 GMT http://martyhaught.com/articles/2013/05/03/blind-reviews-at-railsconf-2013/ http://martyhaught.com/articles/2013/05/03/blind-reviews-at-railsconf-2013/ Opportunity Scholarship at Rocky Mountain Ruby <p>I wanted to pass along a cool new program we&#8217;re trying out at Rocky Mountain Ruby. We&#8217;ve been in discussion the past couple months about diversity in our programming communities. A small community around RailsBridge has formed and they&#8217;re beginning to bring in new women programmers. We wanted to build on that by creating the &#8216;Opportunity Scholarship&#8217;. It&#8217;s a free pass for the conference and workshop for beginner programmers that are primarily women, minorities or other under-represented groups. We&#8217;re going to also match these folks up with experienced programmers to be their guide during the conference. This way the whole process isn&#8217;t as intimidating. If you or someone you know fits into this description, encourage them to read more and apply: <a href="http://rockymtnruby.com/2012/scholarship">Opportunity Scholarship</a></p> <p>Deadline is September 7th but we strongly encourage those interested to apply immediately. We have limited spots available and will be rewarding them as they come in.</p> <p>We&#8217;ll see how this turns out but I&#8217;m excited to give it a try. One component about this is that part of this program&#8217;s success will be to reach out to those that aren&#8217;t as connected as many of you. Any help on passing this along is appreciated.</p> Wed, 29 Aug 2012 00:00:00 GMT http://martyhaught.com/articles/2012/08/29/opportunity-scholarship-at-rocky-mountain-ruby/ http://martyhaught.com/articles/2012/08/29/opportunity-scholarship-at-rocky-mountain-ruby/ New Education Model <p>Paul Graham recently wrote about <a href="http://www.paulgraham.com/ambitious.html">frightening ambitious startup ideas</a>. After reading this I was struck by #3 Replacing Universities. I&#8217;ve long wondered how the cost of 4-6 years at a university studying computer science compares to the benefit. I&#8217;m pretty sure there&#8217;s a better way to teach people to program for considerably less. So given the topic my mind went to work envisioning what would be ideal and here&#8217;s what I came up with.</p> <p>First, you&#8217;d want to tune the education so that you really teach things that matter. Second, I would want most of the instructors to be industry veterans that know what it&#8217;s like to be out there. Though I would still see place for academics I think most of the program should be pragmatic and prepare students for the likely challenges they&#8217;ll face. I would also focus on doing quarter system. This is where you just sign up for a 3 month block of classes. You could just do a single quarter or 2 years worth. I&#8217;m not certain about degrees initially although I suspect you&#8217;d want to offer that. I&#8217;d personally avoid that in the beginning but it would make sense to look at that further down the road. You could tailor the program and classes to include core subjects as well as many interesting electives that relate in some way to their field &#8212; such as AI, graph theory, security and distributed systems just to name a few. I would start off focusing on web programming and design, but there&#8217;s no reason management, accounting, sales, marketing and other core business topics shouldn&#8217;t also be taught. Think of it as eventually teaching all aspects of what technology businesses would need.</p> <p>Imagine how cool it would be if some position at a tech company only need 6 months of focused training followed by 6 months of field work. All of this could be accomplished at this school. Thus companies could send potential hires to the school and a year later they&#8217;d have their employee ready to go.</p> <p>You&#8217;d want to make the education affordable and reasonable. With a smaller institution the overhead costs would be lower and thus you could easily come under what universities charge. However, I think you can go even further by making the institution multi-facted. I would pair a consulting business and incubator with the school. I see the interplay between these three as significant.</p> <p>The consulting side would give the company a solid line of revenue. It would offset some of the overhead the school would incur. Second, it would give instructors direct access to what&#8217;s happening out there now. I would see the chance for instructors to rotate into consulting to sharpen skills and keep them current while others rotate into classroom duties. Furthermore, students could have sessions with the consulting arm as they go through their classes. Imagine your lab time not always being pointless exercises but work on real projects with experienced devs.</p> <p>The incubator side would give the company some long range capital in the form of equity for access to the incubator program. The consulting arm could assist entrepreneurs when needed as well as let the incubator teams sharpen their skills if needed. It already fits with the education model that the entrepreneurs would have some classes just like the students. Their program would have less classroom time and more networking and launching their product.</p> <p>The other piece that could be wonderful is the community aspect of all these groups mingling together in one place. I would expect they&#8217;d all feed off one another in some way and make the entire institution stronger. I would also want this open to the community at large so that local tech meetups, code retreats and other tech-related events could be held there. There could even be open classes or workshops that anyone could attend.</p> <p>I also see this sort of venture functioning as a think tank on what works best in all for three sides &#8212; an organization that is constantly learning and adapting. There would also be a natural fit between the business sector and the institution to work on joint ventures for emerging technologies.</p> <p>There are already things happening that are changing the way folks can get into programming. <a href="http://codeacademy.org/">Code Academy</a> and <a href="http://hungryacademy.com/">Hungry Academy</a> are two that I&#8217;m aware of. We&#8217;re even getting something similar in Colorado called <a href="http://www.davinciinstitute.com/events/593/open-house--introducing-davinci-coders-monday-march-26-2012">DaVinci Coders</a>. These types of outfits already put into play some of the elements that I want to see. However, they don&#8217;t go as far as I&#8217;m thinking. I&#8217;d like to see something that could be that short, if that&#8217;s all you need, but could also have a deeper program that would allow students to stay longer, say 2+ years.</p> <p>The cool thing about this idea is that you could start it small, just like any other startup, and scale it up. So maybe it resembles a 3 month program in the beginning but would expand over the years to something that would rival the depth of a traditional CS department.</p> <p>Though I don&#8217;t have plans to start this sort of program any time soon, I am attracted to the idea. Maybe others are as well?</p> Sun, 18 Mar 2012 00:00:00 GMT http://martyhaught.com/articles/2012/03/18/new-education-model/ http://martyhaught.com/articles/2012/03/18/new-education-model/ Developer Opportunities, The Rest of the Story <p>Picking up where <a href="http://martyhaught.com/articles/2012/03/08/staying-a-developer/">we left off</a>, I want to go deeper into the opportunities that you have once you&#8217;ve got some meaningful experience. Whether that&#8217;s 3 years in different gigs or 10 years, it doesn&#8217;t matter. You&#8217;re skilled enough to know how to build software on your own and you can now entertain offers from just about anywhere. What do you do? I&#8217;ll break this down into two categories &#8212; Mid game and end game. What if you&#8217;re not at this point in your career? I&#8217;ve got a third post that will cover how to get started and get up to this point. Expect that in a few days to a week.</p> <h4>Mid Game</h4> <p>The mid game, as I&#8217;m calling it, is all about building up the resume and experience. You have so many options so go out and see the world of software. Travel, stretch yourself, experience. You should be able to make yourself a healthy salary while doing so. You may also want to go into business for yourself and you may not. I am going to separate these opportunities into two types: one based on work style, another based on project domain.</p> <h5>Work Style</h5> <p>There are primarily five types of work style that I see for programmers &#8212; product companies, consulting, freelance, training and content. Perhaps you&#8217;ve done one or two of these types so far in your career. Great, consider trying some of the others for a while.</p> <p>Product companies are most familiar as they exist everywhere and vary incredibly &#8212; from latest hot startup snapping up rockstar devs to the well-established corporation. You might choose one company as it has a certain culture or quality of team. Another reason, which I&#8217;ll go into further down below, is its problem domain. With product companies you also have a higher chance to become a specialist in some area, like big data or highly concurrent processing. From what I&#8217;ve seen the deepest knowledge about a domain is typically attained via a product company. My recommendation here is make sure you&#8217;re not just looking at the compensation part of the equation and make sure both the culture, team and project&#8217;s challenges help you in some way.</p> <p>Consulting and Freelance are both based on client work though there is considerable variation between these two. Consulting companies are a larger organization where your role is simply the development portion. You are not on the line for business development, marketing, sales or operations. You will be one of many consultants that provide value to clients. Pivotal Labs and Thought Works are two good examples. When looking at working for a consulting company, pick one that has really skilled developers and/or a process you&#8217;d like to have more experience with such as extreme programming. The other benefit is you can learn more about interacting with clients and recognizing when you&#8217;re delivering value. These skills are invaluable and though you can learn them elsewhere, I see more emphasis put on them at consulting gigs. The other benefit of these types of gigs is the variety both in team mates and projects. For larger consulting shops it&#8217;s common to switch teams and projects after a while.</p> <p>There are some downsides too. First, you may grow tired of doing this type of work. Perhaps you are rolled off projects before you&#8217;re ready. You may also reach a point where you feel you aren&#8217;t really growing your skills. I&#8217;d say 2-3 years seems more than enough in this type of environment. Pay is usually pretty good and wherever you end up next should be a higher level position.</p> <p>There are other flavors of consulting that I&#8217;ll touch on briefly. One is the recruiter/local placement companies. I consider these staff augmentation as you still go for an interview at the client and assuming you are selected you then work side-by-side with their team. You can be either W-2 or 1099 for the consulting gig. I consider these gigs a last resort if you can&#8217;t find other work. It&#8217;s also something I see in the earlier years of a software career though it can be useful as as fallback while you&#8217;re bootstrapping a new venture.</p> <p>Freelance is on the other spectrum of client work. The reason I consider it different is that you own the entire business. You have to do business development, marketing and sales. You have to handle your own accounting, taxes and legal needs. As you are your own boss, you have ultimate flexibility. I think freelancing is a wonderful thing you try your hand at for at least a couple years. You will learn so much about how to run a business as well as software development. There is a lot you&#8217;ll need to invest but you can easily bootstrap the business. It can also scale so you can bring in subcontractors or even hire employees yourself. I won&#8217;t go into any further advice on how to do this as that&#8217;s easily its own series of posts. There is higher risk with freelance so you should make sure you have saved up some cash to cover dry spells.</p> <p>Training is another direction you may want to go in that will take you a bit away from developing. You still get to work with software but more of your time will be spent mentoring and teaching others. I understand there is excellent money to be made in this field and it can be incredibly satisfying if you like helping others. Like freelance, you&#8217;ll have to own the business yourself. I know there are some organizations that will hire you on to be a trainer but I&#8217;m focusing more on when you take your software expertise and create your own training courses. As I have never personally done this, I can&#8217;t offer more insight. I&#8217;m pretty sure that you&#8217;ll want to make sure you really enjoy doing this before you take the plunge. It&#8217;ll require dedication and perseverance to succeed.</p> <p>Finally, I want to cover becoming a content provider. This is where you leverage your expertise and make content you can sell such as books, screencasts or other written material. The most common flavors are pay per item or subscription service. If you have the passion to create this content as well as enough expertise then I think it&#8217;s a wonderful idea. Like freelance and training, you&#8217;ll need to build up your business&#8217;s reputation. However, the potential to scale your content to thousands of developers is really nice so there&#8217;s very good earning potential in this space. I hear <a href="https://twitter.com/#!/amyhoy">Amy Hoy&#8217;s</a> <a href="http://unicornfree.com/30x500/">30&#215;500 class</a> really helps get this type of business off the ground.</p> <h5>Project Domain</h5> <p>The other direction you might take is seeking out certain kinds of project domains to round out your experience. I&#8217;ll mention a few notable examples but there are many more I won&#8217;t touch on. As you read through these keep in mind the idea I have is that you want to round out your experience.</p> <p>Rescues are very common in my line of work. These are apps that someone wrote, and typically wrote poorly, and for whatever reason are no longer maintaining them. Perhaps the company fired them or they left for greener pastures. You should expect a mess that extends beyond just code quality. They may have built the wrong features or painted themselves into a corner. Maybe the software doesn&#8217;t even work. With most rescues throwing out the code and starting fresh is not an option. Thus these can be very challenging. Not only from a technical angle but a political one as well. To successfully rescue a few apps in your career can really teach you a lot about writing and maintaining software. I personally recommend everyone do at least two of these at some point.</p> <p>Enterprise/big App is a broad category for software that is complex and has teams of developers involved. Things are harder when you start to get into 20 or more developers. If you add multiple groups with different leadership it ups the ante considerably. There are some thing you will learn about software, teams and leadership only when you play in this sort of space. Though I don&#8217;t think everyone needs to have this experience, you can learn an awful lot. Hopefully you won&#8217;t lose your mind in the process.</p> <p>High concurrency/throughput is another kind of situation that can yield a lot of experience. I personally have never worked on an app of this nature but I have friends that do. Code that works for 95% of applications out there will simply not be good enough if you&#8217;re pushing thousands of operations per second. It&#8217;s rare that many of you will need to write code at this level but what valuable experience if you do.</p> <p>The domain specific category would be something very targeted like banking, security, telecommunications or medical. The choices are incredibly numerous so I won&#8217;t bother mentioning any more. Software in these different domains can vary so you might want to try your hand in something different from your previous gigs.</p> <h4>End Game</h4> <p>The end game is what I&#8217;m referring to once you&#8217;ve got enough experience to do pretty much whatever you want. Basically you&#8217;ve been in a lot of different environments and worked on different type of projects. Maybe you haven&#8217;t &#8216;seen it all&#8217; but darn close. Perhaps you&#8217;re tired of doing what you&#8217;ve been doing and something else speaks to you. At this point the question comes should you do this for yourself? This was actually what <a href="https://twitter.com/#!/jeg2">James Edward Gray</a> was getting at on <a href="http://rubyrogues.com/044-rr-choosing-the-right-career-path-with-marty-haught/">Ruby Rogues</a> that eventually developers will want to build something for themselves, whether it&#8217;s content or their own product. Other options may appeal to you such as taking a high profile gig as a <span class="caps">CTO</span> or technical co-founder of a promising startup. Whatever you choose, it should be something fulfilling and makes you happy. Hopefully by this point you&#8217;ve made enough money so that others factors are more important that just cash.</p> <p>I would agree with James that many of us, at some point, will want to start something of our own. In the mid game section I covered a few options that put you there. Now, there&#8217;s nothing stopping anyone from going into business for yourself from the get go. Matter of fact, <a href="https://twitter.com/#!/nateabbott">Nate</a> and <a href="https://twitter.com/#!/nattyz">Natty</a> of <a href="http://www.everlater.com/">Everlater</a> decided to create the travel experience sharing service they wanted and taught themselves to program in the process. There are no rules here and if you have the passion, there&#8217;s no reason not to dive in. Let&#8217;s go over the primary choices I see.</p> <h5>Consulting, Content and Training</h5> <p>I&#8217;ve already covered these in the mid game section. Very little has changed in the here except you likely have made a name for yourself. Since that will drive business you&#8217;ll find it easier to stay busy, charge higher rates and see your business flourish. There&#8217;s no reason you can&#8217;t build an impressive business by this point. Look at <a href="https://peepcode.com/">Peepcode</a>, <a href="http://pragmaticstudio.com/">Pragmatic Studio</a> or <a href="http://envylabs.com/">Envy Labs</a> as examples.</p> <h5>VP/<span class="caps">CTO</span></h5> <p>This is where you decide to join the leadership ranks at either an existing company or a new venture where you&#8217;re not necessarily the founder. This mirrors the traditional path that great devs go into management. This isn&#8217;t bad as there is real need for technical leadership. If you&#8217;ve had enough experience and you feel draw to lead the engineering/technical part of a business, by all means go for it. There are plenty of challenges in this direction and you can really make a difference. You don&#8217;t even have to grow pointy hair. It goes without saying that you can further your reputation by taking this sort of position and doing well. Compensation should also be there but then you&#8217;re also working for others. Also, you&#8217;ll have to deal with politics like never before.</p> <h5>Entrepreneur</h5> <p>This is where you start something new with you at the helm. Starting your own consulting, training or content business also falls in the entrepreneur category but for this part I&#8217;m just referring to building a product or service for others to use. A lot will be asked of you if you take this path. I have many friends that have gone here and it&#8217;s a lot of work. However, if you are passionate about your idea you will love it. Don&#8217;t expect riches any time soon but there&#8217;s something very satisfying about working for yourself and building something meaningful. The business you create could stay small and support you for years to come. Some call this a lifestyle business. You may also build the next Facebook too. The possibilities are endless here.</p> <p>If you do go this route, I&#8217;d highly recommend trying to bootstrap and avoid taking investment. The moment other people fund your idea you will have to answer to them. This might take away a lot of the joy of doing your own thing. Additional pressures will be introduced so be prepared. I personally haven&#8217;t taken investment so this is second hand from those that have. No doubt there are plenty of businesses that would significantly benefit or require investment capital but think carefully about going in that direction.</p> <h5>Angel Investor</h5> <p>This is an interesting direction you can take after you&#8217;ve had at least one successful venture and have more money than you can put to use. You may be tired of running companies yourself and building products. If you have the capital and you still want to stay connected, doing small angel investments might be for you. You&#8217;ll have to learn the VC/investment world but it would give you a way of keeping in touch with what&#8217;s happening and giving back to a new generation of programmers building the future.</p> <h5>Or Not</h5> <p>As you can probably tell, there is a lot of ambition in some of the types of gigs. While making your own product isn&#8217;t the same as being the <span class="caps">CTO</span> of a high profile company, you will have to do many things developers aren&#8217;t asked to do. For many of us, we may welcome the new set of challenges while others may not wish to venture there. There are immense rewards for developers who take the risk and stretch themselves this way. Whether you&#8217;re willing to go there and wear some non-programmer hats will determine how big they&#8217;ll be. The thing is certain, you have a lot of great options. You can easily stay a developer if that&#8217;s your cup of tea and still be rewarded with a good paying, happy career.</p> Tue, 13 Mar 2012 00:00:00 GMT http://martyhaught.com/articles/2012/03/13/developer-opportunities/ http://martyhaught.com/articles/2012/03/13/developer-opportunities/ Staying a Developer <h4>Do you need to leave programming to advance your career?</h4> <p>This question came up recently in two places. First, during the Ruby Rogues <a href="http://rubyrogues.com/044-rr-choosing-the-right-career-path-with-marty-haught/">episode 44</a>, which I was a guest on, <a href="https://twitter.com/#!/JEG2">James Edward Gray</a> opened the discussion with a related statement. He said that ultimately most developers will want to transition into a content provider (<a href="http://railscasts.com/">railscasts</a>, <a href="https://peepcode.com/">peepcode</a>, etc.) and asked me to prove him wrong. Second, <a href="https://twitter.com/#!/tenderlove">tenderlove</a> <a href="https://twitter.com/#!/tenderlove/status/176478632980660224">asked</a> on twitter the other day about career options for developers. The premise of both of these questions is if it&#8217;s viable to remain a developer for your entire career and that you must transition to something else. Must you leave programming to advance your career?</p> <p>While I think many do leave programming to further their careers, I do not think this needs to be the case. So let&#8217;s break this down in more detail.</p> <p>First, I love to program. I love to build software and solve programs. Though I might get tired of solving the same problem over and over again, I&#8217;m not concerned that there won&#8217;t be something down the round that I won&#8217;t enjoy solving. From this standpoint, I can see a happy life of writing software for 15-30 years. Thus it is not given that I will outgrow building software. I think many others share this sentiment.</p> <p>Second, demand. This falls into the obvious category but the demand for programming isn&#8217;t going to decrease any time soon. More and more aspects of our lives involve software and someone&#8217;s going to have to write and maintain these programs. Right now there are endless opportunities for software to disrupt status quo businesses and old ways of doing things. We seem to be in a boom for startups and they need skilled programmers to bring their ideas to market. There are plenty of entrepreneurs taking their shot at this and plenty of investors giving them money. Thus I think the supply of developer jobs at all levels is ensured for the foreseeable future.</p> <p>Coming back to our question, I believe a viable career is hinging more on either money and/or happiness. Let&#8217;s start with happiness briefly.</p> <p>Happiness is relative and based on your expectations. I think it&#8217;s fair to say that you&#8217;d hope your life improves steadily over your career. Much of this could simply be that you have more control and options in your choices. That&#8217;s fair. I think it could simply boil down to where you can live the life you&#8217;ve always wanted. Definitely don&#8217;t place your happiness on some dollar amount. That is not the way to happiness. Depending on what you&#8217;re shooting for, this is definitely obtainable as a software developer. I know many of my fellow programmers that have more than enough money, have flexible schedules and have adapted their lifestyles to what they want &#8212; all while continuing to be a developer. Expanding more on happiness is its own post so I&#8217;ll leave it at that.</p> <p>Now let&#8217;s return to the money angle, where I believe most of the focus is on. Salary ranges are fairly large for software developers and I&#8217;m seeing lots of incredible offers for top notch talent. While junior and mid-level devs won&#8217;t see a huge payout, I do believe that with dedication and hard work you can get to the high levels in the software world and easily get comfortable 6 figure salaries. More importantly, you&#8217;ll get your choice of offers which can include many perks as well as a supportive culture.</p> <p>It wasn&#8217;t long ago that many developer jobs capped out at a mid level and if you wanted to &#8216;get ahead&#8217; you had to go into management. This was pretty much de facto in corporate world. While I know some startups in the 90s bucked this trend I still saw the mentality of paying your devs the typical salary and possibly enticing with options. Now I&#8217;m seeing better offers than they used to be as well as real interest in creating an attractive work environment and culture. It&#8217;s like they realized what matters most to devs and really catered to that. This is plain smart.</p> <p>More over, the demand is so high right now that I see devs in the driver&#8217;s seat. That&#8217;s probably the biggest difference I&#8217;m seeing now compared to even 2-3 years ago.</p> <p>All of this can be yours while staying dedicated as a software developer. I will follow-up this post with advice on how to get to the higher levels of software industry. Look for that in the near future. Additionally, there&#8217;s more to the picture in terms of options for software developers and their career so I will follow this post up shortly with the <a href="http://martyhaught.com/articles/2012/03/13/developer-opportunities/">rest of the story</a>. Consider that this and the upcoming posts as an extension to what was covered in the Ruby Rogues podcast. It&#8217;s just that big of a topic and hate to leave somethings unsaid. Thanks for reading and by all means, leave your thoughts on the subject as a comment below.</p> Thu, 08 Mar 2012 00:00:00 GMT http://martyhaught.com/articles/2012/03/08/staying-a-developer/ http://martyhaught.com/articles/2012/03/08/staying-a-developer/ Event Organizing 101 <p>I&#8217;ve been speaking at both conferences and user groups about building community and improving what we already have in the Ruby community. At Ruby Midwest, I am giving a sub 30 minute version of this talk and had to cut out a good number of slides. In this process I realized several of these slides might do better as a blog post on the basics of event organizing. While this is not meant to be exhaustive it does try to cover the basics on putting together your first event.</p> <p>To be more clear, this advice is mostly for ongoing local events such as user groups, hackfests, code retreats and the like. I won&#8217;t go into why you should organize, just the how.</p> <h4>Network</h4> <p>The first piece of organizing will focus on your network or connection to the local community. Hopefully you know your community somewhat. If for some reason you don&#8217;t, you&#8217;ll want to do this immediately. Get out and see what&#8217;s happening out there. Attend events, talk to people that are active in the tech community, see what they have to say. I&#8217;ve heard this a few times where someone started a new type of meetup only to find an existing one after the fact on a different night of the week. Instead of duplicating effort, exploring the option of combining efforts is much smarter and will lead to a healthier event long term.</p> <p>Communicate your idea to your network. See if there&#8217;s any interest. You might find that by talking about it you&#8217;ll not only grow interest in it but also spread the word about the possibility. Your idea may grow once others start to give you feedback. While this may seem scary to you now, it&#8217;s a good thing as you can end up with a better event because of it. Though it&#8217;s just as important to know when your idea is being hijacked and you should say no.</p> <p>Seek advice from other community leaders. It doesn&#8217;t matter if they&#8217;re in the tech sector or not, running an event is similar regardless of topic. They likely will be happy to give you advice and this can make things much easier to get your event started.</p> <p>Finally ask for help. If you don&#8217;t ask, no one may offer help. Many will say no or seem uninterested, this is fine. Some may say yes while others may connect you with another person who might help you out. Don&#8217;t be shy, ask away.</p> <h4>Core Group</h4> <p>Before you proceed with your event, I strongly recommend you identify a core group of interested people. I&#8217;ve seen a suggested number of 10-20 but honestly this just needs to be big enough for you to still be willing to go forward with the group. If you&#8217;re doing a code retreat it could just be 5 people (a facilitator and two pairs).</p> <h4>Locating your Space</h4> <p>Finding a space to hold your event is pretty important and something you&#8217;ll want to arrange early on in the planning process. As I recommend you start small, look for a small space that your event will be comfortable in as it grows. Usually you&#8217;ll want to look for a free space. There are plenty of good sources in most communities. Depending on where you are looking to have your event this might be easy or challenging. The following list is sorted with the best choices on top.</p> <ul> <li>co-working spaces &#8211; great choice that will likely have amenities you need and will likely be open to hosting you for free.</li> <li>ruby friendly tech companies &#8211; another good choice for free space, may be limiting though on how much room you can use.</li> <li>theaters, performance halls &#8211; while not free, these can be great locations for larger events of 50+ people</li> <li>universities, colleges &#8211; typically colleges have space that students can use and will often rent out rooms to the community. It really helps if you have a connection to the school.</li> <li>public libraries &#8211; I usually see these as free or very affordable. Some have restrictions if you&#8217;re charging admission though.</li> <li>public schools &#8211; like public libraries, some public school districts will let community groups use their space. Never hurts to check in.</li> <li>coffee shops &#8211; depending on the coffee shop, this can be a great space depending on the event type. I find the excessive foot traffic make it undesirable though.</li> <li>bars &#8211; like coffee shops, bars aren&#8217;t a great choice though I have seen some work out just fine.</li> </ul> <h4>Finalize Details</h4> <p>Once you have your space, core group and general idea of your event figured out, you need to work out the details of the event. Start with drafting a schedule. Imagine what takes place in each part of the meeting. As you do this make a checklist of things you need to do as well as anything you need to bring and setup. Plan out your schedule to the minute and think of the little things such as where people get water, use the restroom. What about power, internet access, seating and table space. Though this is largely common sense, it&#8217;s worth mentioning so you don&#8217;t start your event and realize you forgot something critical and now have to scramble.</p> <h4>Web Presence</h4> <p>I almost didn&#8217;t put it in but figured it&#8217;s best to briefly touch on this so it doesn&#8217;t get skipped over. If you&#8217;re holding a public event, then you should have a public face for information. Essentially someone should be able to google your event name and find all the basic information they need on it such as time, date, location, description and any other details on signing up, what to bring, requirements, cost, etc. You should have a twitter account or some other source for sending out updates on your event. Having a mailing list/google group is another good idea for any group that meets regularly.</p> <h4>Budget</h4> <p>You should determine your costs by this point. Hopefully you&#8217;re running a free event but if not you need to have a basic budget laid out. Determine all your costs and record them. In the beginning you might have to estimate placeholders until you can get firm bids on whatever it is you need to supply. Common things include space rental fee, AV equipment and food. Consider getting sponsors to cover some of this as well. Many companies interested in sponsoring might have some of what you need or at the least are happy to pick up the tab for part of it. This is especially true if you&#8217;re running a free event that is there to benefit the community.</p> <h4>Finding Sponsors</h4> <p>This is for the larger events that have a budget and will draw more attendees. There are lots of places to find sponsors but it varies by community. The following list will give you some ideas on where to look. It&#8217;s sorted with the best bets up top.</p> <ul> <li>local Ruby shops, especially consulting companies</li> <li>tech companies interested in devs</li> <li>recruiting firms</li> <li>training companies</li> <li>larger Ruby consultancies, companies not local</li> <li>Ruby Central **</li> </ul> <ul> <li>Ruby Central has in the past supported certain type events with grants. I would try to get all support locally first before approaching Ruby Central but it&#8217;s good to know the option is there.</li> </ul><p>One more thing I want to mention on sponsors is that many of them will have marketing or outreach budgets that can easily cover your costs (unless you&#8217;re doing a huge event). It&#8217;s good to seek them out early in the process and give ample time for them to review your event, what you&#8217;re asking and match it up to their budget and goals. Though I won&#8217;t get into detail on the process of negotiating sponsorship deals I will give a few pointers. First, be clear on what you&#8217;re asking for and what benefit the sponsors will get. Before approaching sponsors, have this figured out. There are plenty of cases where you might find a sponsor before you&#8217;ve planned this out which is totally fine. However, a typical sponsor will need to see this before they can consider supporting your event.</p> <h4>Reaching Out</h4> <p>This is probably the easiest and the hardest thing about event organizing. Getting the word out about your event and attracting people to it. Initially I recommend you rely on word of mouth, twitter and a blog post or two. Let it start organically and as time passes up the effort to expand your reach. The following list should give you some ideas on reaching out.</p> <ul> <li>nearby user groups</li> <li>tech friendly hang outs</li> <li>word of mouth via core group</li> <li>twitter, blogs</li> <li>sponsors’ network</li> <li>flyers at college campuses</li> <li>meet with community leaders</li> <li>local calendars</li> </ul> <p>Every community is different so you&#8217;ll just need to be creative in asking around and figuring out how to get word of your event to ears that haven&#8217;t heard it. I think this is really important if you&#8217;re trying to grow community and go beyond those already plugged into local tech events.</p> <h4>Event Upkeep</h4> <p>This part is all about the various things you need to do for ongoing events. Though planning out the first meeting is usually the most work, you can&#8217;t just sit back and let it go. Depending on your format you&#8217;ll need to keep bringing in speakers or content for your event. At the least you&#8217;ll need to monitor how things are going and make sure you&#8217;re still on track with what you envisioned for your event. If things are drifting or people are losing interest, then figure out why and make course corrections. You should be constantly talking to your attendees and seeing what they think.</p> <p>Part of this upkeep is the concept of &#8216;inviting continuously&#8217;. This can refer to speakers and content as well as reaching out to new people to come to your event. Encourage local tech companies to get involved. The shape this takes depends on your event but the point is you want as many companies as well as local speakers and devs to be invested in your event and cheering for your success.</p> <h4>Unwanted Behavior</h4> <p>The slide title for this section was &#8216;Weeds&#8217; which I think is a great way of thinking about unwanted behavior. While you might not think this is a big deal, it surely can be. When left unchecked it&#8217;ll grow like a weed and overtake whatever you&#8217;ve planned. It also has the possibility to poison the waters and turn away potential attendees over time. I believe it is likely that all groups or events will eventually have to deal with unwanted behavior. This could take shape as bullying, offensive language, inappropriate comments or solicitations of various kinds. Hopefully it&#8217;ll never come up but prepare yourself for dealing with this reality.</p> <p>One of the first things you should do is determine what sort of behavior is unwelcome. Draft up some basic language on what you expect or allow at your event. It doesn&#8217;t have to be legalese, just plain english is good enough. Some of this behavior will come from people who are unaware or insensitive to the fact that their behavior is a problem. Spelling out what is acceptable will go a long way to helping curb this sort of stuff. However, you&#8217;ll still need to be ready to deal with it. What I recommend is to be firm but tactful in asking the offender to stop the behavior. Language such as &#8220;this sort of behavior isn&#8217;t cool with the group&#8221; can be effective. Ultimately, you have to decide what&#8217;s the appropriate response based on the situation. The one thing I hope you do not do is look the other way. That how these sort of &#8216;weeds&#8217; get out of hand.</p> <p>I hope this gives you plenty of tips to get started and go build up your community. Though it can be a lot of work at times, I find it very rewarding and have stuck with it for nearly 6 years. If there&#8217;s anything I didn&#8217;t address here that is related and you&#8217;d like to know more about in terms of event organizing, please post a comment.</p> Wed, 02 Nov 2011 21:18:48 GMT http://martyhaught.com/articles/2011/11/02/event-organizing-101/ http://martyhaught.com/articles/2011/11/02/event-organizing-101/