regulation

Should programmers have to be part of a professional body to practice?

Accountants, lawyers, doctors (and many other professions) have respected professional bodies that are responsible for awarding chartered status to the members. Through this mechanism, they gain trust and respect and can demonstrate that they adhere to a code of standards and ethics, and maintain their skills to keep them current. Progr...

Tools and practices to make a large ASP.NET web application section-508-compliant

We're about to migrate an existing large ASP.NET web application to make it section-508 compliant. Are there any recommended tools and practices that can be employed for this kind of project? ...

21 CFR part 11 validation for SAAS

In a FDA regulated environment applications need to be validated. I've done that tons of times in my career but now I'm facing SAAS. Has anyone out there faced this before? Any FDA related guideline on this scheme? Besides some black box approach and much support from the provider I see this as hard to do. ...

Php regular expression to match a div

Hello This is mycode <?php /** * @author Joomlacoders * @copyright 2010 */ $url="http://urlchecker.net/html/demo.html"; $innerHtml=file_get_contents($url); //echo $innerHtml; preg_match_all("{\<div id='news-id-.*d'\>(.*)\</div\>}",$innerHtml,$matches); //<div id='news-id-160346'> var_dum...