site title

Topic: background

Enterprise vs Consumer: Product Development at Careers 2.0

03-02-12 by Demis Bellot. 12 comments

A few months ago I joined as a developer on the Careers 2.0 team – this is my story of bringing Careers 2.0′s new Apply button to fruition. Or, what happens when an Enterprise boy meets a Consumer Product Development company and gets exposed to how things are done on the other side.

One of my first projects after joining Stack Exchange was giving the job application process an improved, stream-lined experience. This experience gave me a different perspective on Enterprise and Consumer product development, which I’d like to share.

Probably the most eloquent explanation of the differences between Consumer and Enterprise product development comes from one of my most favourite people in tech, the late Steve Jobs:

We’re about making better products, and what I love about the consumer market that I always hated about the enterprise market, is that we come up with a product, we try to tell everybody about it, and every person votes for themselves. They go, “Yes” or “No”!

And if enough of them say “yes” we get to come to work tomorrow! …

Enterprise Development: hidden requirements and resource constraints

In Enterprise IT projects, you’re typically working towards very specific requirements for very few clients, and in most cases those requirements aren’t in the project spec you were given! The stakeholders know their business domain but aren’t very knowledgeable of IT systems, and so the written requirements often don’t match what the client originally envisioned.

This results in a lot of back-and-forth (which experience should tell you to always write down) on every iteration to ensure what is being delivered is in tune with what they expect. And each feature is under pressure from resource constraints, re-visited on each iteration; when projects are overrun features get cut, quality gets lost and shortcuts get taken. This is not an ideal environment to produce high quality solutions or high levels of customer satisfaction.

Consumer Product Development: putting the user first. All of them…

Working on a consumer product is an evolving process where you’re continually looking to improve the end-user experience in a highly competitive environment. Your guiding light is the business as a whole, and everything is done with an eye toward increasing participation, either by acquiring new customers or increasing existing customer engagement.

There is no single customer whose wishes become requirements; each new feature affects our entire user base. A feature is worthwhile if most customers will find it of value and it avoids complicating the user interface for those who don’t intend to use it. With every product feature you’re putting your customers front-and-center: what do you want to help them do?

The only real, measurable way of determining what customers find valuable is to record user analytics. For me, this was one of the key differences with consumer product development: you must continually monitor the behaviour of your user-base to ensure each change has a positive effect.

Designing Careers 2.0 for our users

For the Job Application feature, our requirements are pretty straight forward: we want to make it as easy as possible for potential candidates to apply for a job. However, we also want each application to be tailored to the employer, so we require a cover letter on each application. The problem with requiring more fields is that it adds more friction to the process (complicating the UI) which has the potential to reduce new and repeat applications. For this reason every field or screen that is added needs to be justified: if making one set of users happy drives away another, we step back and look for alternatives.

Most of our major features start with a mock-up and a spec, handed to us by our designer and containing the major elements and page-flow of each screen. Mock-ups are a great tool to accompany a developer spec, since both parties can get a birds-eye visualization of what’s going on and what needs to happen before discussing the details of each feature. A picture tells a thousand words: there have been countless times where implicit functionality was present on the mock-ups but missing from the detailed spec.

To give you an idea of what it looks like, our initial mockups for the apply feature looked like this:

Balsamic mockups for the apply workflow

By the way: those mock-ups were produced using Balsamiq, which lets us quickly throw together clean (but obviously fake) screens.  We like Balsamic Mockups so much, we partnered with them to make a light-weight version of the tool available on our UX site – check it out!

Our “Jaws” moment

In the blockbuster movie hit “Jaws”, Stephen Spielberg attributed much of the success of the film to the fact that the mechanical sharks were constantly broken down, forcing him to rewrite much of the script without the shark, instead focusing more on the human element:

“The shark not working was a godsend. It made me become more like Alfred Hitchcock than like Ray Harryhausen.”

This folk-wisdom hit home with our “online preview” feature displayed on the original mock-ups above. Initially, we wanted to show the candidate a real-time preview of the CV immediately after they uploaded it. The problems with this feature only surfaced after we implemented it.

The first was a legal issue only discovered after I implementing a Google Docs viewer solution – straightforward enough apart from the viewer needing direct Internet access to the attachment (which I enabled via a temporary generated URL). Unfortunately it was only after reviewing Google’s Terms of Service that we found the bad news, in Google’s over-reaching legalese:

“By submitting, posting or displaying the content you give Google a perpetual, irrevocable, worldwide, royalty-free, and non-exclusive license to reproduce, adapt, modify, translate, publish, publicly perform, publicly display and distribute any Content which you submit, post or display on or through, the Services.”

We didn’t want to have any of the uploaded CVs made public, so the Terms of Service meant we needed to look elsewhere.

I then tried the Zoho viewer but unfortunately it didn’t support the small resolution of our popup window.

Finally I implemented the feature with Scribd which had everything we wanted: a beautiful viewer, the ability to upload private documents… Everything except real-time speed. I tried everything to make it faster, even working with Scribd’s co-founder Jared Friedman directly. But despite all our efforts we couldn’t consistently get the preview time below 7-10 seconds – Scribd is built for producing high-quality results, but not in real-time.

Performance is a feature

At Stack Exchange, we have a strong emphasis on performance which resonates right through the company from our Co Founder, in the various high-performance libraries StackOverflow has open-sourced, to my own recommendations on the subject.

Performance is often a neglected concern in Enterprise development – especially when it doesn’t make it as a line item in the requirements doc. This has a direct impact on the overall usability of your system, but because optimization happens late in the project life-cycle it is one of the first things cut when a looming deadline approaches.

If you’re operating in an environment where your business model is hinged on maintaining a happy customer base, then it pays to go the extra mile to try and reduce response times. In general, neither we nor the user want us to keep them waiting and the more popular a particular feature is, the more we focus on performance. Here are some examples of the things I’ve done to achieve better performance:

  • Pre-loading content – So the popup page loads instantly, and user-input fields are pre-populated.
  • AJAX lookups / Client side-validation – Provides instant feedback, and avoids round-trips for bad user-input
  • AJAX file uploads – To start uploading at the earliest possible moment.
  • Hiding / showing sections – To start with an easy-to-use interface for common tasks, while avoiding round-trips to load alternate content for optional features.
  • Loading animations – To reduce the perceived response time for >1s tasks (e.g. creating a PDF from an online profile)
  • Asynchronous / Queued processing – Defer lengthy post-application processing so we can return immediately after we’ve accepted the users application.
  • Redis / Memory – Making use of Redis and avoiding disk when possible – for caching, users sessions and to power our Redis MQ
Having a user twiddling thumbs while staring at a loading sprite is a UX sin. So at the 11th hour, we decided to yank real-time previews and instead offer the candidate a download link with which they can preview the results in their own document reader. This wasn’t totally wasted effort however – we’d streamlined the rest of the process as much as possible to allow for the time needed to preview, and with it gone, the process was blazing fast.

Measuring and Analytics

User Analytics allows you to measure the performance of your feature – at Stack Exchange we use a combination of KissMetrics, Google Analytics and our own custom analytics and reporting tools to fulfill this purpose. It allows us to get valuable insights on how well our features are working and which ones see the most “drop-offs”.

An example of the importance of this feedback was when we added the ability for anonymous users to apply without using their online profile. In the original version this feature didn’t seem that useful to us. It turns out we were wrong. After deploying the new feature (unannounced), we saw an overwhelming increase in job applications, practically overnight:

Usage graph for the new apply feature

We use the high-level overview graph above to track our daily applications and the uphill climb towards the end is just after we introduced anonymous user applications by highlighting its availability in the Employers Post a new Job form. We’ve basically doubled the number of profile applications we received (seen in Red) and the mountainous blue on top are the candidates opting to apply with their own CV – by far the overwhelming majority. This tells us we have to accept (no matter how many features we add to our Career 2.0 profiles) that candidates often prefer to submit their own CVs and that we should optimize this use-case in future.

Come join us!

Working on this feature from its inception has taught me a lot about the different approaches taken for product development and after spending most of my career working in the Enterprise – it’s a refreshing change.

If you’re interested in this Career 2.0 lifestyle choice, come join us! We’re currently on the lookout for talented devs to join the team, and applying for it gives you a chance to test-drive the new Apply feature!

jobs on the Stack Exchange hiring page

Stack Exchange Open Source Projects

02-18-12 by Jeff Atwood. 15 comments

While we decided a long time ago that we wouldn’t be open-sourcing the core Stack Exchange Q&A engine, we do try very hard to open source as many useful parts of our code as we can.

As Stack Overflow is one of the most prominent Microsoft .NET-created sites for software developers in the world, we feel that it’s part of our mission to help lead fellow .NET developers — and the most effective way to do that is by contributing some of the code that we use to build Stack Overflow and Stack Exchange back to the greater .NET developer community as reusable open source packages. This isn’t just a fundamental part of every Stack Exchange developer’s “be more awesome” plan, it’s an explicit goal embedded in the very DNA of the company.

In fact, over the last few years, we’ve contributed a number of useful open source projects back to the world:

Dapper

Dapper is, quite simply, the world’s most elegant .NET micro-ORM™. We created Dapper out of frustration with all the existing .NET ORMs that were out there. It is the simplest and fastest thing that works, the thinnest sensible layer you can put over your database without getting all Enterprisey© on you like, uh, some other ORMs. It is a shining example of the KISS (Keep It Simple) and YAGNI (You Ain’t Gonna Need It) principles in action. If you need to access a SQL database from .NET, try it out. You just might fall in love with it. Read a bunch more about Dapper over on Sam’s blog.

StackID

On Stack Exchange, you can log in with any OpenID provider and any OAuth 2.0 provider, including Google, Facebook, Yahoo, and so on. But as of May 2011, we also issue our own credentials for those people who want to have a traditional username/password arrangement. StackID is the .NET OpenID provider we created, so we can be both an OpenID consumer (we accept all OpenIDs, as well as OAuth 2.0 where available) and an OpenID provider — that is, we issue our own OpenIDs that are valid on any website that accepts an OpenID. This in turn is based on the excellent work of the open source dotNetOpenAuth library.

MiniProfiler

Here at Stack Exchange, Performance is a Feature, and we found the absolute best way to emphasize our shared family value of performance is to keep webapp performance numbers front and center in every .NET developer’s web browser. Yes, even in production. If you are a developer you’ll see a little number in the upper right hand corner on every single Stack Exchange page you load — that’s how long it took to render the page. And it’s a one click operation to drill down, two clicks to take those performance numbers and share them with blame them on someone else on the team. It’s a wonderful system that I can’t recommend highly enough to every .NET developer who works on a webapp. If that’s you, go download it. Now. Remember, we use .NET partly because it really is blindingly fast, but all it takes is a few lines of errant code to throw all those performance benefits (and more) in the toilet. So download and use MiniProfiler to make sure your fast code stays fast!

MarkdownSharp and PageDown

Markdown is, of course, the simple plain-text-alike markup language that we use throughout Stack Exchange for formatting. But we have to convert it from “raw” Markdown to “cooked” HTML and that takes code. We provide two implementations, for server-side C# Markdown use MarkdownSharp and for client-side JavaScript real time Markdown preview use PageDown. I did a lot of the work on MarkdownSharp, but Ben did most everything on PageDown and is now officially maintaining both of these.

Since this gets asked all the time, yes, it is legal to mix HTML of any kind within Markdown. MarkdownSharp and PageDown don’t do any cleanup of the HTML, they only guarantee that valid Markdown will be converted to valid HTML for display purposes. You must bolt on your own HTML sanitization to taste. If you’re looking for basics, start with this C# sanitization routine and this tag balancing routine. They are mostly loops and regular expressions, so trivially translatable to most languages.

Booksleeve

Redis is our in-memory key-value store of choice. We started out using it just a little, but now it’s become an absolutely critical and totally indispensable part of our infrastructure, much like HAProxy. We use Booksleeve for pipelined, asynchronous, multiplexed and thread-safe access to Redis via our C# code. Performance here is beyond critical, as we talk to Redis from every web server constantly, and we’ve been through several passes of refinements and improvements already. If you, too, need an in-memory key-value store for your .NET webapp, consider the Redis and Booksleeve combination we use. Works great for us!

Data Explorer

Everything contributed to Stack Exchange is under a Creative Commons license. Stack Exchange Data Explorer is the open source .NET tool that we built so anyone can browse and analyze our creative commons data via standard SQL, at data.stackexchange.com. So if you’re looking for a highly flexible, general front end to a bunch of SQL data, SEDE is your huckleberry. For more, see the blog entries we wrote about it.

Protobuf-net

This is technically something Marc Gravell created before he joined Stack Exchange, but we use protobuf-net extensively (and AFAIK exclusively) for high performance, compact serialization of .NET objects before storing them — and I daresay that our heavy use has driven the current version of Protobuf-net to be at least 3x as awesome as it would otherwise be. I don’t think you’ll find a faster and more elegant .NET serialization library in the world.

ServiceStack.Text

This is part of Demis Bellot’s excellent open source Service Stack REST web service framework. And again, something that he created before he joined us at Stack Exchange. We switched to ServiceStack.Text for all our .NET JSON serialization duties a while ago because it was blindingly fast, much faster than any other JSON serializer we could find for .NET. All of Demis’ open source work is of similarly high quality.

And that’s not all! There are a few more awesome bits of our infrastructure we’ll be open sourcing later this year, and someone (sadly, not me) will update this post to include them too.

If any of this looks useful or interesting, please check it out! And if you have the time or inclination, contribute patches and forks back to the greater community. I know we will!

2011 Stack Overflow User Survey Results

02-10-12 by Alison Sperling. 18 comments

In December we launched the 3rd ever Stack Overflow Annual User Survey to measure changes in user demographics and trends from last year.  First, a big thank you to everyone who participated, and now on to the results!

View the survey results

Demographics

Let’s start off with some basic demographics: the majority (50.3%) of users are between ages 25-34 and very experienced (64.3% of users have 6+ years of programming experience). So, where do all of these developers work?  The percentage of developers working at a start-up remained strong with 30.7% of respondents.  We then took a look at salary by company size, and, not surprisingly, users who work at larger companies tend to make more money.

Knowledge

The top 5 languages users reported knowing were: SQL, JavaScript, CSS, C#, Java.  Coincidentally, the most common projects were “Web Platform” at 37.1%, followed by “Enterprise” at 24.4%.  We dug a little deeper to see if language knowledge impacted salary, and it certainly does.  There is a strong correlation between number of languages known and a higher salary.

Mobile

On the mobile front, smart phone usage showed a dramatic increase.  In particular, Android usage actually surpassed iPhone usage with 48.0% of respondents saying they own an Android phone as compared to 34.1% who own an iPhone.  Last year, the iPhone was the most popular device (34.3%) and Android trailed in second place (30.4%).  RIM’s Blackberry continued to fall out of favor with only 6% of respondents owning one.

Reputation

Last year, many of you asked to segment the data by reputation, so here goes.  First we segmented all of the respondents into three reputation groups and then we cross tabulated the results to see if there were any differences in these groups.  You can draw your own conclusions from the table below, but higher rep users tend to be older and more likely to be happy in their jobs than those with little or no rep (however we can’t quite go so far as to say that the WAY to be happier in your job is to spend more time earning rep on Stack Overflow).

If you’d like to receive the entire data set, please email me alison@stackexchange.com.

Welcome Valued Associates Anna, Rachel, CarleeJean and Charles!

01-26-12 by Alison Sperling. 6 comments
Anna Lear is joining the Stack Exchange Team as a Community Manager working remotely from Ontario Canada. Many of you may know or recognize her from her role as a Programmers moderator, and – most recently – Stack Overflow moderator. Anna is a software developer and a longtime SO user. In her spare time she writes code for fun, plays video games, occasionally acts on stage, and tries to carve out time to learn guitar as well.
Anna Lear

The Stack Overflow Careers Sales Team welcomes three new members to Stack Exchange’s NYC office!

Rachel Boyman was born & raised in Michigan.  Rachel has a background in media and she loves to read books, magazines and newspapers the “old school” way.  In her spare time, Rachel enjoys travelling, especially to Michigan games (Go Blue!), practicing yoga and exploring NYC.

Rachel Boyman

CarleeJean Cook originally hails from Denver, so needless to say she’s an avid skier.  Although she’s quite cooped up in NYC’s concrete jungle, CarleeJean makes the most of her time indoors; she’s a conferences/professional events junkie and has taken courses to become a wine sommelier.  During the summer months, CarleeJean loves living on the Jersey Shore.

CarleeJean Cook

New Jersey born and raised, Charles Bernoskie spent his college years in Washington D.C. playing baseball for Georgetown University.  When he’s not at work or spending time outdoors, Charles loves reading reddit and also epic fantasy series novels.  Charles is particular about his beverages, preferring black coffee and craft beers.

Charles Bernoskie

Welcome Anna, Rachel, CarleeJean and Charles!

Stack Exchange Gives Back 2011

12-23-11 by Robert Cartaino. 4 comments

I’m sitting up late this evening trying to think of an inspirational way to end this year with some grandiloquent statement about our growth and the great job everyone has done this year. I don’t know; maybe it’s the glow of the Christmas tree behind me, or the eggnog recipe I’ve been experimenting with… but, really, anything I can say here can only lessen the outpouring that comes following this…

Greetings to the Stack Exchange Moderators,

In a yearly tradition at Stack Exchange, we set aside this time of year to make sure we are “giving back” to effect positive change in the world. As a moderator, you play such a crucial role in our success, and we would like to include you in that effort.

As a small gesture of thanks, we would like to make a $100 donation to charity on behalf of each community moderator. The link below leads to a brief form where you can select which charity you wish to receive the donation.

Select Your “Giving Back” Charity

It is my hope that, together, we can continue this tradition year after year — and with 220+ moderators, that donation will only continue to increase.

So, thanks to everyone who participated in Stack Exchange. Thank you for generously contributing your time, your passion, and your leadership, all of which made these donations possible.

- The Stack Exchange Team

We started with 12 moderators, then 130 — and now on behalf of the 228 moderators of Stack Exchange, we made a donation to the following charities this holiday season:

We also want to give back to the people, tools, and projects that inspired us and helped us build this Stack Exchange Q&A network:

The notes returned in kind — the notes of “thank you” and heart-warming well-wishes — are a great way to end the year knowing that sometimes you just get it right, and that what you do matters. Let me end this year by extending a sentiment from the “giving back” letter to you, the users of Stack exchange:

Thank you for generously contributing your time, your passion, and your knowledge, all of which made this fantastic resource possible. Cheers! - The Stack Exchange Team

Coming up next: 2012. Stay tuned.