-
1. Break down in .css files in a logical manner so I can better locate a selector / class id instead of using the ubiquitous CTRL-F. 2. Get into the habit of using LINQ and Entity Framework more. 3. Create more logical business objects with properties and methods instead of directly using data tables...
-
Ubraa my 1st open source project is conceived at the PHPUGPH forum. ============== SUMMARY PAGE =================== Project Name: PMS Project (Code Release Name: UBRAA) Description: PHP based project management software Technical Data: -Built on Zend Framework 1.0.0 -Uses jQuery library for UI interactivity...
-
Last week I have been reviewing some implemented features on our product, it works fine but not well written, got to have some refactoring specially my rule on comments. Perhaps this is one the most disputed practices in software development, code comments. Personally, I seldom/don't comment my code...
-
I've been working with alot of Ajax lately(this includes code and laundry :P) and just realized that i've been doing some unecessary code after reading this article . I think I got hooked so much with the Ajax-hoopla that I forgot that not everything should be done via Ajax. Below is an outline of what...
-
I have read the Exception Handling Best Practices article in .NET in CodeProject and all this time I thought that rethrowing exceptions is this way: [code language="C#"] try { // Some code that throws an exception } catch (Exception ex) { // some code that handles the exception throw ex; } [/code] I...