Tar.Aldarion wrote: » I know, vim :eek:
IRLConor wrote: » Uploading code to production without testing? Why not just edit it straight on the live machines?
Sparks wrote: » Banned for a month
COYW wrote: » He replied that they don't comment code as it is "a waste of resources/time", followed by "code is code and if a developer cannot read and understand code, they shouldn't be in the business".
oscarBravo wrote: » You should do everything in really terse Perl and hand it off to him sans comments. Code is code, innit.
COYW wrote: » Anyway, I noticed that there were no comments on the code at all, and I mean absolutely none, so I asked him about code commenting and the company standards that were in place relating to same. He replied that they don't comment code as it is "a waste of resources/time", followed by "code is code and if a developer cannot read and understand code, they shouldn't be in the business".
COYW wrote: » Starting working on a new project recently and met with the technical lead of the company I will be working with. He was going through the design of the application during which we looked at some of the code. It was a case of another MVC application, which was not MVC at all. I questioned this but got a blank stare in response. Anyway, I noticed that there were no comments on the code at all, and I mean absolutely none, so I asked him about code commenting and the company standards that were in place relating to same. He replied that they don't comment code as it is "a waste of resources/time", followed by "code is code and if a developer cannot read and understand code, they shouldn't be in the business".
if(pSomething != NULL) { if(pSomeThingElse != NULL) { // 200 lines of Stuff } } // Let's change a few globals, I mean singletons here for the craic. // And now we'll block the UI thread return TRUE; // Always true and caller doesn't even check the return value
/// <summary> /// Automatics the convert. /// </summary> /// <param name="type">The type.</param> /// <param name="value">The value.</param> /// <returns></returns> private object AutoConvert(Type type, string value) /// <summary> /// Processes the and save. /// </summary> private void ProcessAndSave()
Tar.Aldarion wrote: » Not horror but how have I not seen this, pmsl.http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1732454#1732454
Assert.assertTrue("Record id's are the same!!", (recordId.longValue() != linkedRecordId.longValue() ));
Assert.assertTrue("Record id's are the same!!", (recordId.longValue() == linkedRecordId.longValue() ));
****************** Version 2 ***************** * User: [COLOR="Red"]Date: 5/01/01[/COLOR] Time: 11:10a **********/ MESSAGE "Option available soon" SKIP VIEW-AS ALERT-BOX INFORMATION BUTTONS OK. RETURN NO-APPLY.
Beef wrote: » ****************** Version 2 ***************** * User: [COLOR="Red"]Date: 5/01/01[/COLOR] Time: 11:10a **********/ MESSAGE "Option available soon" SKIP VIEW-AS ALERT-BOX INFORMATION BUTTONS OK. RETURN NO-APPLY. This code is in our production system. I only found it today. It's coming soon!
thewheel2.0 wrote: » Christ there's other people out there developing Progress 4GL/OpenEdge???