72 questions
0 votes
1 answer
66 views
Difference between functional and regression test cases
I am aware of the definition of functional and regression test case. But I am not able to distinguish which test case should fall in functional and which one should fall in regression test. For ...
0 votes
1 answer
2k views
XSS Payload That Can Bypass Special Character Check
I developed the following C# algorithm to prevent XSS attacks: private bool Is_There_XSS_Payload(string arg) { Regex regex = new Regex(@"^[a-zA-Z0-9]+$"); bool result = ...
2 votes
1 answer
406 views
conda environments in team and shared Linux environment - best practices?
Conda is great, but it assumes that people code completely independently much like the complete lack of namespace hierarchy in public python modules. Looking for best practices with 6 people all ...
-1 votes
1 answer
64 views
Which is correct approach promoting code or promoting binaries? [closed]
I've been debating promoting code vs promoting binaries. Are best practices the same or different in web vs native application. I seem vaguely to remember a mantra promote code not binaries. A couple ...
0 votes
0 answers
79 views
How does the Angular team manage feature flags in the framework?
The Angular team uses a website to document upgrades https://update.angular.io/ In that website, one can select how to upgrade from version to version and it displays a detailed list of steps to ...
4 votes
2 answers
2k views
Can one Activity Diagram Depict only One process
I am Working on a project for Orders data visualization Dashboard. This is the use case Diagram: Currently I'm working on the activity diagram and my question is: Can the Manager and the Shipper ...
1 vote
1 answer
101 views
How do I move Source Code from a local GitLab to AWS GitLab environment using automation?
As a part of my job, I have to automate Sorce code movement from development environment to Production environment. The developers push the code to GitLab that is hosted in the organization's local ...
0 votes
2 answers
1k views
What is software physical specification and logical specification?
What is software physical specification and logical specification? I understand about logical specifications which could be derived from user requirements like identifying attributes, entities and use-...
1 vote
2 answers
562 views
How to fix this Syntax error in query expression?
I am working on Standard Access. I wrote this code: SELECT * FROM room WHERE price < 40 AND type IN ('Double", "Single") ORDER BY price; when I run it, it's telling me this message ...
0 votes
1 answer
577 views
How git tag can add more meaning to artifact name?
Currently we give artifact name as releasenumber-sprintnumber-jenkinsbuildnumber-SNAPSHOT.jar But we are planning to map every commit tag to the version of artifact generated from build. So, ...
1 vote
1 answer
149 views
Configuring Azure ServiceFabric for development lifecycle - how to parameterize host name?
What's a good way to manage deploying code changes to Dev, Test, and Prod environments in Azure? The Azure / Service Fabric site provides an article for specifying port numbers using parameters under ...
-2 votes
1 answer
63 views
'Inferential data' and the Secure Software Development Life Cycle
As part of exam revision I am studying past exam papers - One question that keeps popping up is related to 'Inferential Data' or 'Inference' A typical example might be... "Discuss the term inference ...
0 votes
1 answer
2k views
TFS Work Items: Workaround for dashboard widgets unable to show tree of work item type queries
We have a work item structure in TFS 2015 (Will soon be upgraded to 2017, in case there are features there which may be relevant) which consists of the usual CMMI template hierarchy: Epic->Feature->...
1 vote
3 answers
2k views
Is it possible to generate code from Use Case, Activity or Sequence Diagram in Enterprise Architect?
I'm a student of software engineering. My lecturer of "Software Architecture and Design" has told us that we can generate source code from all the UML diagrams (or most). I already can / have ...
-2 votes
1 answer
169 views
ASP WebPages -> MVC (project transition strategy); RAD tools for ASP MVC
Especially in today fast moving environment there is a commercial pressure to rapidly deliver products in short development life cycles . Nothing new here, this is Agile methodology we all know. An ...