Startups Stack Exchange Archive

How can I know if my developer is doing a good job?

I don’t know anything about code except some basic HTML.

Recently, I hired a freelance developer to do some front-end updates on my e-commerce website. Because of the nature of e-commerce websites, I care a lot about showing up in search results and having fast page loads.

I’m pretty happy with the result so far, but I have no idea whether my developer has coded well, or if they have any talent or skill at it. On top of that, he charged me for twelve hours of work, and I really can’t judge if that’s a reasonable amount of time for my update and if he’s being honest about working time.

How can I, without a technical background, judge the technical skill and honesty of a freelance developer like this? I would be open to hiring a code review service, if there is such a thing.

Answer 3114

If you own a car, and get it repaired, how do you know the repair was needed and that the related time and materials were billed at fair rates?

Fact is that the way coders solve problems and the problems they solve vary so much that for a small company issues like code quality and costs are just a fact of life.

There is no silver bullet, and in my opinion it is foolish to believe there is.

The best way to know if a coder is good is to have them do work and have a meaningful way to measure the outcome of that work that best aligns to the goals of the company.

In the end it comes down to you being able to trust the coder, and for some trust is harder than for others no matter how trustworthy someone might be.

Answer 3117

Get a cofounder or a technical advisor

First off, if you’re creating a business that is deeply technical, you want a technical co-founder. If it’s only moderately technical, you still want a good programmer around if only to oversee cheaper code grunts – someone who you trust will steer things in the right directions and who is able to give educated insights on the quality of their work.

But if you really must evaluate yourself…

Good programmers tend to live by the mantra: “Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live.”

In practice, it means they write code that is reasonably understandable by a non-programmer, either because it’s self-explanatory, or because comments lying around allow you to get the gist of what’s going on.

Another characteristic is a consistent coding style. But as rightfully noted by some commenters, noticing this kind of stuff takes some programming expertise, and you don’t necessarily want to spend time acquiring it. In a nutshell though, a random mix of CamelCase and snake_case, unindented code, inconsistent use of tabs and spaces for indents, kilometer-long functions, or seemingly identical code blocks repeated all over the place, are some red flags to have in mind.

Good programmers additionally use source control to document small, incremental change sets. Doing so allows to go back in time when a bug is identified, in order to know precisely when the bug first appeared and how it was introduced. If your programmer left dead code commented out all over the place or wrapped in if (false) blocks, that usually is a sign that they’re not using source control.

There are more aspects to it, of course, but for a non-programmer who needs to evaluate code quality produced by a cheap coder hired on eLance, the above are reasonably good proxies. They’re not magic bullets however; only proxies. So again, get a good programmer as a co-founder – or at least as a part-time technical advisor.

Your current recruit is likely dishonest… but against himself

With respect to honesty: if he says it took him 12h, it probably means he spent more time than that if you additionally account for the time he took interacting with you. (And that, btw, is why very good freelances invariably switch to billing by the day or week rather than by the hour.)

Hire another programmer for code reviews: it’s another pair of eyes

As for code reviews, consider sourcing that particular task to a second programmer on e.g. eLance, until you locate a good programmer to join your team on a full or part-time basis.

Answer 3116

If you are running an IT business you should be familiar with codes (and everything else related to your business) so the first way to solve this problem is

For example if you are ranked around 30 in google and you want to get in top 5 measure it by going to google through various proxies. Or if your site loads in 0.8secs and you want to bring it down to 0.4 measure it by using an online tool such as web speed test. Though to measure and estimate every task like this you must search the internet and learn how it works for every single goal.

Answer 3128

Quis custodiet ipsos custodes?
("Who will guard the guards?")

If you hire someone to check-up on the work of your freelance developer, how do you know they know what they're talking about (unless they're Jon Skeet, of course)?

The bottom line is, you need to be able to trust someone - how someone gains your trust in an area (development) you're unfamiliar with is not straightforward. Having a "technical co-founder" is great, but how are you accessing their credentials - I've met many a CTO whose technical knowledge just wasn't there (beyond a light surface understanding and vocabulary of trendy buzzwords...).

Suggestions from other answerers telling you to use code quality tools is not a good one. Just as an experiment, I just ran a well written part of the jQuery library through JSLint and it comes back showing 53 "errors". Most automated code quality tools have (at least some) rules that are either highly contentious or very academic / superficial. A "good developer" will know which "errors" need to be acted upon, which ones should be addressed (given the time / budget) and which ones can be ignored completely (and still have a "quality" code base). If you don't know enough to correctly interpret the reports you get back (whether from a tool or reviewer you hire), you'll be causing yourself more problems than you solve.

As with any form of engineering, there's a way to get things done quickly, an "ideal / preferred" approach and there are lazy / unskilled "cowboy" ways to fulfil a brief. Where do you draw the line?

If your freelance developer ran your whole code base through JSLint, fixed every error and delivered an academically perfect solution, but billed for you 1000 hours, would you be happy?

You need to communicate your expectations up front - what is "quality code", what's the maximum time you'd like them to spend on an issue / feature (what's your budget)? What browsers / platforms are you supporting? How much time should be spent refactoring or fixing issues in existing code?

For all of your expectations, you need a way of measuring success against them. If you can't measure it, why ask for it? If you've asked for a feature to be added, testing its (end-user) functionality should be part of a showcase on delivery. If you've asked for well tested software, get them to show you their (documented) test cases and any unit tests added. Some things can't be practically measured - time spent gaining knowledge of a system, time spent understanding a requirement and drafting potential solutions, time spent testing (which is no guarantee of coverage), so there's no avoiding at least an element of trust.

You're primary mitigation is to try and ensure you have a robust way of hiring, which may include looking at (in no particular order):

Even then there are no guarantees. Trust is the key - after all, they could be writing great code, while stealing your customer data...

TL;DR

Use all the information you do have to assess them using your best guess, then trust them until they give you a reason not to.

Answer 3126

The question is entirely equivalent to the more generic question “How do I know if someone working outside my field of expertise is doing a good job?” How do you know if your sales guy is good at selling your product, or if they are just good at making you set low targets?

The short answer is, you don’t. But you can always hire someone (i.e. an audit) to get their opinion on the quality of the work - but how do you know they are doing a good job?


One important thing to keep in mind is that the immediately relevant question is not if the person is doing a good job. The immediately relevant question is if the job the person is performing is actually worth doing at the quality+speed+salary/compensation of that person.

You may then have other questions, such as: “Can another developer take over if the original developer gets hit by a bus?” - This question can easily be addressed by letting the original developer know of that concern and then hire another developer for the next change request, just to make sure another developer can work with the code.

Answer 3133

This is a human problem

I’m a developer. I’d say this is more of a human problem than a technical one.

How do you know your accountant, lawyer, surgeon, or mechanic is good? You probably use reputation and “how do they answer my questions?” as proxies.

If you want to verify the quality of their work, you might get a second opinion from another expert in the same field. In this case, the other developer could look at the code before and after the changes to see whether what was done seems logical.

Verifying the speed of their work is harder. Estimating software tasks is notoriously hard, so “was that done reasonably quickly?” is a hard question to answer. It’s probably better to ask, “if this feature cost me $X, was it worth that to my business?” If you consistently say “no”, there may be a problem with this developer. Then again, maybe your code is particularly tricky to modify, and another developer will have the same problems.

In any case, it will always be hard for a non-expert to judge an expert’s work. Preferably you’d have a team of developers you trust and would let them evaluate one another.

Answer 3136

Even developers can’t agree what makes a good developer. And in my experience most of them will be able to present a sensible argument for their own position, whatever it is. Whether that makes sense for you is another matter:

Personally, if I were a manager with little technical expertise, I would base a hiring decision on whether the person has any kind of track record with other companies or open source projects (preferably in relevant technologies) and human factors like cooperation, trust, and whether they admit to errors at least once in a while.

Answer 3143

Let me suggest Audit as others have but gives you a specific methodology for getting there.

I am a software development veteran of 15 years and I can definitely sympathize.

Here is how you approach this:

  1. Decide how often you will need this service. No one vetts the guy who puts the tires on his car or changes his oil but a good babysitter is hard to find.
  2. Decide how important it is to you in $ terms. Assuming you found a contractor you really like, how much would you be willing to pay to acquire and keep him?
  3. Now Audit him with outside contractors. It’s validation through corroboration

I found a website where you can pay to have this done. Basically, grant them license to your whole repository, including history, so they can review it. This sort of thing is generally reserved for interviews. Have it done, say, 3 times for everytime you have him do work. If the results from the audit consistently come back positive, then treat the guy right to keep him around.

If this has real similarities to hiring and employee, performance reviews and HR hassles from a corportate world it’s for a reason: It is the same! You’re just contracting out the whole process.

Ultimately, if you’re happy with the result (Time to deliver, cost, features, bug free) then it’s good software.

Answer 3125

I would strongly advise you against dabbling in programming, and then asking questions about code - “Which design patterns are you using?” etc (although learning a bit of programming is never bad). However, you could educate yourself about other aspects of development, and inquire about those.

As mentioned by Denis, good developers should use distributed source control (some standard tools being Git and Mercurial). That’s one thing you could ask about. You could also try running source code analysis programs, such as jslint for programs written in JavaScript. These analyse how nicely written code is. They won’t tell you if code works or not, but if source code fails them, the programmer may have some bad habits. In some cases, you could also ask if they have automated the build process, but that probably doesn’t apply as much to front-end development.

Answer 3127

How can you know if any of these answers are good answers?

You should be able to clearly state what you want the developer to do before you engage them, and if they deliver you something that meets your requirements, they have probably coded well enough.

As for price, ask around for quotes like you would for anything else.

Personally, I would focus on the site as a whole and how it interacts with your business requirements rather than worrying about how cost effective your SEO is.

e.g.

Answer 3187

Check nr1: Test the changes. Do they work as you expected? If yes, that is the most basic check and the most important one.

Check nr2: Let several other coders/companies audit the code. I think that’s excessive here (and would cost significantly more than the code itself).

After that, you should be looking first at your bottom line. Will the return on investment offset the costs of the developer? If yes, then you did what’s right for the business. You might have been able to make a bit more had you found a cheaper/faster, but equally skilled developer. Ideally, you should estimate the ROI before and you could then talk with your developer up front about the changes you want, how much time he thinks he’ll charge for the work and see if your expectations line up.

More long term, you want to take various things into account. How much time it takes to make changes to the system, how often bugs are introduced, how well estimates work out, … All of those require you to have a longer working relationship with your developer. I would advise you to build up that kind of relationship. It is time-consuming to learn a new project and its business, you get to skip that cost if you keep the same developer. You also skip the cost of multiple craftsmen each working in their own way, which tends to clutter the system for later developers.

How to pick a developer that you want to build a longer relationship with? Most important factor here is probably whether you guys get along. Judging skill is a hard problem. You could try to go by reputation, but that’s sketchy at best as a lot of developers tend to be introverted. Other things are important too: if there is a critical bug in the middle of the night, can you call your developer? At what price?

Answer 4020

Taking the analogy with the car, when it gets repaired, there are visible and invisible results. It is obvious what the visible are, but the invisible ones can become visible in course of the time but not necessarily immediately. Say your car runs perfectly for several months and then suddenly breaks down and your new repairman tells you the one who fixed it was an idiot :)

It is not much different in software. You can try your site now and see what works immediately, but there are lots of other things called technical debt that you can't easily see. Like bad inefficient code violating best practices, outdated and unsupported 3rd party technologies, mobile support, performance issues etc.

You might get a quick'n'dirty work that makes your site look like it is running, then you notice few things here'n'there and specifically those things will be fixed, then your developer will call it a day. Now your site is running and that is where things start getting interesting. What worked before, suddenly stops working, 3rd party libraries you use get old and abandoned, your site makes customers' browsers crash and so on. Now you invite a new developer who tells you, your code is no good and everything has to be rewritten from scratch...


So how can you protect yourself from those troubles?

Then there are basic questions you can ask your developer. Such as:

Next if you in the interview mode, ask these and see what he says:


Finally, no top skill will replace good trustworthy relationship. Here is an answer I wrote explaining my view.

Answer 7678

You mentioned updates, speed, and search results. There is a lot between those objectives and code.

In large business you have role CIO that sits between IT and the business to make effective use of IT and hold them accountable. You need to take on the CIO role. You also need to take on a roles of product manager and project manager.

You may not be a programmer but you do control the requirements. Have very clear written requirements and acceptance testing. Even if they are by the hour ask them how long they think it will take. Have a maximum on the number of hours they can bill without a status.

I am developer and I will get loose verbal requirements and then when it is done they will change this and that. Then when they get the bill they act like they are the victim when they are the cause. Think thru what you want and clearly articulate in writing.

Many non-technical (and some technical) have problems with requirement versus a design. A requirement does not have an implementation. I will often get these elaborate designs that are going to be expensive and when I extract what they are trying to achieve I can suggest a less expensive implementation. If they don’t want my suggestion then I am happy with billing for a more expensive functional design. These interviews are time and money. Take the time to document the requirement in writing up front. A design can start to take a life of its own and you forget what you were trying to achieve. It is called scope creep and it is expensive.

If you need 5 things done then it will be more cost effective to have the programmer do all 5 rather than 1 at a time.

Speed is lot about the site architecture as a whole. I need this button to return in 0.1 second may be costly. Be open to a cost versus performance discussion. Some times that next increment in speed means changing out a lot of code. And some times poor performance is just plain sloppy code.

SEO is a lot in your control. Some words hit better. There is a lot of free information out there. All the search engines have information on how to make your site more searchable. Educate yourself on SEO. The non-technical site is as important as the technical side.

So in the end it is code and you have some good answers on code review.

What I suggest is even if you are not technical there is a lot in the process that is in your control.

Control the keys to web site. Don’t let the programmer register themselves as any of the domain registration roles as they can hold you hostage. Give them password / physical / certificate access to the site and be able to take that away. Make a copy of the site before you give them access. You can get a bad / unethical programmer that may take down your site. Yes that should not happen but you still should protect yourself with a simple copy.

Answer 7358

You can simply check if your developer is good by checking out the website worked for you. In checking, take a look and validate the code, if you see two or three errors in the page, assume that they didn’t do a good work. Next is check the technical details. Lastly is to double check if the website displays correctly in the major browsers. If the website performs well in all those areas, you can say that your developer did a good and proper job. Actually there’s much more. But these three steps are the basics of a good website. Therefore they are a good indicator if the developer is good and basically knew what they were doing.

Answer 9352

As you say, you want to show up on the search engine. The best way to do that is to focus on the SEO part of your website.

There are several faktors for SEO some of them are: On-page SEO, linkbuilding, technical SEO and speed optimization.

You need to learn something about all of them. I can show you this guide about how you can get SEO friendly content.

But alot of people like you probably have no time at all. If this is the case for you as well, then I will suggest that you get in touch with a SEO agency. It can be a bit expensive but I think the money are well given.

Answer 3942

In my opinion the question is irrelevant and wrong. It does not meter how much time the developer invested in the creation of what you need (it does not meter if it was really 12 hours or just 30 minutes). The main question is if you get what you need and how much money you are ready to pay for the implemented feature. In other words, the main question is: “How important (valuable) the implemented feature for you?” and not: “How hard was it for him/her to implement it?”


All content is licensed under CC BY-SA 3.0.