Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am working with developers right now that write code the way they want and when i tell them to do it other way they respond that its just matter of preference how to do it and they have their way and i have mine.

I am not talking about the formatting of code, but rather of way site is organized in classes and the way the utilize them. and the way they create functions and process forms etc.

Their coding does not match my standards, but again they argue that its matter of preference and as long as goal achieved the can be different way's to do it. I agree but their way is proven to have bugs and we spend a lot of time going back and forth with them to fix all problems security or functionality, yet they still write same code no matter how many times i asked them to stop doing certain things.

Now i am ready to dismiss them but friend of mine told me that he has same exact problem with freelance developers he work with. So i don't want to trade one bad apple for another.

Question is is there some world wide (or at least europe and usa) accepted standard or compliance on how write web based applications.

Is there are some general standard that can be used for any language ruby php or java govern security and functionality and quality of code? Or at least for PHP and MySQL i use for my website. So i can make them follow this strict standard and stop making excuses.

share|improve this question
4  
There are no international standards (some languages have strong conventions, but PHP is not one of those languages). If you wish to define strict standards for your developers to use, then define them on paper, and make compliance with your standards a part of your contract with them. This question is off topic here. -- better on programmers.SE – Michael Berkowski Jun 22 '12 at 19:28
1  
vote to close belongs at programmers? – dm03514 Jun 22 '12 at 19:33

closed as off topic by Michael Berkowski, dm03514, watcher, David Thomas, casperOne Jun 22 '12 at 19:34

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

3 Answers

Unfortunately as far as I know, there isn't a set book of standards, but what I would recommend is you put together yours and when hiring a developer, make sure they agree to write it to those standards. It is very difficult to find good programmers that do it the way you want. Some is preference, but if you can prove your way is better and make them understand, I believe that you can achieve what you desire.

share|improve this answer

Sure there are constructs that are close to standards.

Designing and programming an application using an MVC design pattern and framework will lend structure to any application.

When using a framework coding is more or less done within the confines of the MVC pattern and the way it is implemented in the framework. THere is less room for interpretation.

Once learned frameworks allow develepers to rapidly pick up other prjoects developed in the same framework because there are a set of consistant standards. Not only project structure but frameworks often provide a number of very ipmortant tools that to handle sessions/caching/data storage/forms. These are generally very mature for the popular frameworks and do an excellent job of prevent against common security exploits.

There are a number of great frameworks for every language.

share|improve this answer

The issue today with professional development is becoming more and more security related. Check out https://www.securecoding.cert.org/confluence/display/seccode/CERT+Secure+Coding+Standards and that should give you an idea if what a standard should look like. I know you were speaking in more syntactic terms but this should help answer that question as well

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.