Questions tagged [project]
A project is a collaborative and planned activity for attaining a particular goal.
128 questions
-2 votes
1 answer
329 views
What is a component in C#?
Introduction Components are an important building block of software. In terms of software architecture, there are a lot of principles regarding components that should be adhered to (high cohesion, low ...
3 votes
1 answer
2k views
"User" requirements vs "system" requirements
I'm taking Software Engineering class and my professor is absolutely terrible at explaining anything. It's only the 3rd week and me and my group mates are already deeply confused. We were given a ...
-4 votes
1 answer
89 views
Question about the tutorial purgatory in coding path
Dear all the programmers and overflow friend, First, I want to say thank you to stack overflow users for helping me finish 20% of my PhD project since last year (using python to draw some technical ...
2 votes
2 answers
2k views
Are pre-commit or pre-push hooks that run lint and unit test scripts worth it? [closed]
I guess the argument for pre-commit hooks that lint and run unit tests would be that every single commit is clean. The argument against them is that they take a lot of time to run, which can add up ...
4 votes
2 answers
396 views
What is considered good/best practice around handling ad-hoc coding requests?
I am a data scientist and do lots of programming in R/RStudio. I like to be organised (as I'm sure (hope) most programmers do) and as such I always use the Project feature in RStudio to keep my work ...
0 votes
2 answers
111 views
Justifications for developing applications that work on beta versions of iOS?
I'm a participant of the Apple Developer Program and have been downloading and testing beta versions of iOS for a number of years now. When updating to a new iOS version I sometimes notice that a ...
-2 votes
1 answer
874 views
what are cons and pros between the two version control designs of a project: multiple repositories, vs single repository [duplicate]
I am working on a project which is split into multiple git repositories instead of just one. Each repository is for a library or an application. The libraries are used by the projects or other ...
1 vote
1 answer
108 views
How to share new features in a large multi module project [duplicate]
I have been working in large multi module projects over a period of time. One major issue I faced is, how to communicate to other teams of a new feature which they may be interested in. Consider this ...