Newest Questions

2 votes
2 answers
221 views

The scenario I'm thinking about is a build pipeline, but I imagine there are plenty of other scenarios where this would be the case as well. Imagine you've got a build pipeline that runs static checks ...
dwjohnston's user avatar
  • 2,769
2 votes
3 answers
639 views

Sometimes, you inherit from a class that defines the semantics of your type (Shape – Ellipse – Circle). Other times, you inherit simply because it's convenient to do so. A superclass may have ...
Sergey Zolotarev's user avatar
2 votes
3 answers
228 views

So I have this setup with a factory: class Base; class A : public Base; class B : public Base; ... class Factory { public: Base* CreateBase(std::string TypeToCreate, const Parameters& P) ...
sayanel's user avatar
  • 509
1 vote
0 answers
65 views

While modeling the As-Is state for the enterprise architecture of Big Organization IT main department, where the IT sub-departments provide internal services to various branches, factories, and ...
SHOOG SAAD's user avatar
0 votes
1 answer
163 views

We want a GitHub workflow that syncs EF migrations across all branches and automates ClickOnce desktop app deployments. The key requirements of this question are highlighted in bold at the bottom. ...
EMN's user avatar
  • 795
1 vote
2 answers
260 views

Suppose you have a panel with a table, which I will call a pane. The table has a toolbar above it, including an edit button. Editing involves showing an editing dialog. It allows the user to edit the ...
Sergey Zolotarev's user avatar
0 votes
2 answers
204 views

I’m refactoring a microservice project where multiple services share the same domain objects. Over time, these objects have diverged across services, causing inconsistencies. To solve this, I plan to ...
Ryley38's user avatar
  • 111
0 votes
1 answer
129 views

I'm designing a system that manages multiple hardware boards. Each board has a class that provides core functionality, such as: Device enumeration Capability enumeration (power management, polling, ...
bielu000's user avatar
  • 351
7 votes
1 answer
514 views

I am in the process of engineering some UML state diagrams to explicitly model the transitions among Git’s file states: TRACKED, UNTRACKED, UNMODIFIED, MODIFIED, UNSTAGED, and STAGED. The diagrams I’...
Alex's user avatar
  • 87
9 votes
9 answers
3k views

Using Big O notation, it is clear that I should go with the more efficient approach, but I know that there is a significant cost in terms of initialization for more efficient solutions. The Problem: ...
BlueyRules's user avatar
0 votes
3 answers
206 views

When writing unit tests, I always doubt whether I should put preconditions into the unit test itself (as the "arrange" step) or in a fixture. Is there a difference between the two? When ...
PieterV's user avatar
  • 233
1 vote
2 answers
239 views

I am writing a review of a small browser extension which is useful. But its benefit comes with considerable costs, which are non-monetary. I would like to express that the sum of time needed to "...
Philippe Cloutier's user avatar
1 vote
1 answer
249 views

In general, to get Open Graph protocol (OGP) data for a given web page, one would need to retrieve the actual HTML, and then extract the meta tags from it. However, this has two problems: Instead of ...
Lamron's user avatar
  • 119
6 votes
5 answers
3k views

I want to build a low-latency chess backend (something similar to live chess on chess.com or basically any other online real-time chess), but there are a couple of questions I am unable to get answers ...
Pawan Sharma's user avatar
3 votes
3 answers
325 views

I would like to know how many Final States an UML State Machine diagram can have. In this OpenCF online book, I read this: Some models may have more than one initial state or more than one final ...
Pascal's user avatar
  • 155

15 30 50 per page
1
3 4
5
6 7
4293