Questions tagged [industry-standard]

23 questions
139
votes
13 answers

Are design patterns frowned upon?

I had a discussion with one of our senior developers who's been in the business for 20 years. He's pretty well known in Ontario for a blog he writes. The strange thing is what he told me: he said that there is a piece of code that is a nightmare to…
Igneous01
  • 2,343
  • 2
  • 15
  • 18
36
votes
2 answers

Separating data access in ASP.NET MVC

I want to make sure I'm following industry standards and best practices with my first real crack at MVC. In this case, it's ASP.NET MVC, using C#. I will be using Entity Framework 4.1 for my model, with code-first objects (the database already…
scott.korin
  • 543
  • 1
  • 5
  • 9
31
votes
6 answers

Do we need to test 32-bit software in 64-bit Windows?

I'm working in a software development team as software developer. I've been working on the same project for three years now. The software is a 32-bit desktop based C# application in .NET 4. Our target platform in Windows 7 (we had to support Windows…
Donotalo
  • 1,219
  • 1
  • 12
  • 19
24
votes
1 answer

What is the name for the non-extension part of a filename?

Given the file path: /some/path/abc.txt The filename is "abc.txt", and extension is "txt". What is the "industry standard", unambiguous name for the "abc" part? For reference, in both java's older java.io and newer java.nio libraries, filename…
Bohemian
  • 1,956
  • 2
  • 17
  • 24
8
votes
1 answer

Change Management Standard

Is there any Change Management Standard which is widely accepted in software and other industries? I worked at several companies with absolutely different target domains (investment banking and telecommunications). Companies had very similar Global…
altern
  • 757
  • 2
  • 7
  • 17
7
votes
3 answers

Is it common practice to hire third parties to do code reviews for contractors?

I recently observed some contract offers which included a "code review by third party" clause - the contract would not pay out fully until the code review was completed and it received a pass. I was surprised, especially considering that these were…
blueberryfields
  • 13,200
  • 8
  • 51
  • 87
7
votes
4 answers

is it okay to use negative numbers to extend an industry standard data model

I'm working on a project with client that needs to rely on a proprietary data set. They also have custom data that logically fits alongside the proprietary data. What they do is use the same tables but with negative ids. So an Example would be…
6
votes
2 answers

Hard Coded File Paths - Solution?

Say you have an application that saves image(.jpg, .png etc) and text(.txt, .xml) files, and the application has all of the files paths hard coded throughout code, per the example below. Assuming the following file path structure exists: jpg -…
Elias
  • 193
  • 1
  • 6
6
votes
2 answers

How would I make a suggestion for a change to the SQL standard

If I wanted to make a suggestion to a change to how the UPDATE statement works in SQL, how would I go about it? Is there a website for the next standard? I googled, but just kept getting the Wikipedia page.
Toby Allen
  • 397
  • 1
  • 11
5
votes
6 answers

Benefit of non-volatile access to volatile objects being undefined?

This is a question about ISO C, which contains this sentence: If an attempt is made to refer to an object defined with a volatile-qualified type through use of an lvalue with non-volatile-qualified type, the behavior is undefined. In ISO9899:1999…
Kaz
  • 3,572
  • 1
  • 19
  • 30
5
votes
5 answers

Standards in Enterprise Development

Is it perhaps time for enterprise systems to be developed to strict enforced standards? Many books list optional 'standards' and best practices, but these are purely suggested practices. Still, every time I look at the code for an enterprise system…
4
votes
2 answers

Are there any industry standards that define code quality?

Our specific situation is that we are creating an agreement between ourselves and another team for shared control or use of a PHP based web application that we have been building. We have a set of standards and conventions documented in our…
CLo
  • 368
  • 1
  • 11
3
votes
1 answer

Avoiding Arrow Anti-Pattern in MISRA-C

For a safety-critical domain, with a code standard including the MISRA C 2004 guidelines, a "simple" piece of code becomes obtuse, chiefly because of the requirements both that all if() statements have an else and that there is only 1 return per…
2
votes
1 answer

Any standard expansions to RFC 4122 for generating a name based UUID using SHA256

I am doing some code review for a project and they have generated a name based UUID using SHA256 as the hashing algorithm. I found a some Java code that created a Name-based (hashing) UUIDs using SHA-256 in Java The Java code takes the first 16…
gnash117
  • 149
  • 6
1
vote
3 answers

How relevant is DSDM nowadays?

After recent years working mostly with SLA, Incident Management and ITSM, I'm considering moving back to software development management and agile methodology. I'm returning to SCRUM lessons and would like to learn another framework alongside.…
Danmaxis
  • 127
  • 3
1
2