Questions tagged [industry-standard]
The industry-standard tag has no summary.
24 questions
1 vote
2 answers
348 views
Is there some standard or virtually standard way to document code in a language agnostic and IDE agnostic fashion? [closed]
In java we generally do it the java-docs way and in js the popular method these days is vscode documentation using @param, @returns, @example etc but I would prefer if there were some language ...
-2 votes
1 answer
145 views
What is standard/considered best practice for the media used for different documentation? [closed]
I have just started my first position as a software engineer after finishing my degree, and, as warned, software is much different in industry than in academia. The startup that hired me does not have ...
0 votes
1 answer
162 views
What to consider in choosing an approach to dev environment creation for existing production system?
Our team has not had dev and test environments since it started 2-3 years ago. We had decided to give this (creation of dev and test environments) more priority. Current Environment One production ...
0 votes
0 answers
92 views
Is there a standard for describing information about Java Beans (Bean Introspections)
In many situations we need access to meta information about Java Beans. The Java Reflection API itsself does not work for projects were performance matters so the bigger Frameworks like Spring or ...
-5 votes
2 answers
704 views
Current industry standard with regards to C macros [closed]
I have read from several authors that macros in C should be avoided whenever possible, and use inline functions instead. It's true that inline only 'requests' the compiler to replace the function call ...
3 votes
1 answer
2k views
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-...
3 votes
1 answer
979 views
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 ...
1 vote
3 answers
1k views
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 ...
0 votes
1 answer
301 views
How to manage model(s) between web client (DMZ) and web API?
I have this web API project which handle all database access via entity framework. I have another web client reside in DMZ to call those APIs (via ajax or c#) in the web API project. When I make API ...
7 votes
4 answers
803 views
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 ...
-2 votes
1 answer
199 views
Industry Prevalence of JML Specification
In the Java course I'm currently doing at university, a lot of emphasis is placed on using JML constructs like @require and @ensure clauses in Javadoc comments. I understand that this is implementing ...
26 votes
1 answer
7k views
What is the name for the non-extension part of a filename? [closed]
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 ...
139 votes
13 answers
23k views
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 ...
5 votes
6 answers
509 views
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 ...
0 votes
1 answer
107 views
Do I need any special approval to operate my own MLS or IDX system?
I'm currently building a enterprise MLS / IDX system and I'm just wondering if there is any type of special considerations to be taken outside of outputting the data in the forms that external web ...