Skip to main content
Filter by
Sorted by
Tagged with
Best practices
0 votes
2 replies
56 views

I am developing an application with Angular (frontend) and ASP.NET Core 8 (backend). The application is available on both web and mobile platforms. My requirement is to allow only one active session ...
SP007's user avatar
  • 1
Advice
4 votes
7 replies
276 views

I am learning backend development using Java and Spring Boot and have built REST APIs using it. I noticed that newer technologies like Node.js and Go are becoming popular for backend development. ...
Bhukya Praveen's user avatar
Best practices
0 votes
0 replies
40 views

I’ve been using DiagramDeck (a browser-based diagramming tool with draw.io compatibility) to create architecture diagrams, flowcharts, and some UML diagrams for our team. So far it’s been working well,...
Anna Mihalchan's user avatar
Tooling
0 votes
1 replies
39 views

I'm building a SIP-based Telepresence Gateway using OpalVoIP that needs to connect hardware room systems (Polycom, Lifesize) to a web conferencing platform. The requirement is to deliver separate ...
Sagar Joshi's user avatar
Best practices
0 votes
0 replies
51 views

I am building a kind of crypto add, which as you might assume will hold and transact people funds. What is the best practise? As an inexpereienced backend developer I am thinking I should seperate it ...
mbakabilal's user avatar
Advice
0 votes
1 replies
60 views

I am currently designing a web-based social network application intended for students at my university to communicate with each other and share information. I have created a UML class diagram to model ...
Doussan Benkerrou's user avatar
Best practices
0 votes
3 replies
42 views

I read at about gathering requirements but still fail in deciding some requirement as FR or NFR. Some requirements are close to be both for example. The system shall require user authentication before ...
user3703199's user avatar
0 votes
0 answers
91 views

I am building a large-scale enterprise Angular application using NgRx SignalStore. I strictly separate my modules (e.g., UserModule, RoleModule), where each module has its own Store and Service. Also ...
RAHUL KUNDU's user avatar
  • 1,097
Advice
0 votes
6 replies
114 views

I'm currently working on a system that's very similar to a traditional bank system. It supports APIs like the following: class Bank { public: std::expected<void, BankError> add(string ...
Curious's user avatar
  • 21.4k
Best practices
1 vote
2 replies
66 views

Look @ the following typescript code of an object component: export class ItemComponent { item: Item; // <-- term??? constructor(_itemService: ItemService) { this.item = _itemService....
Simon's user avatar
  • 5,076
Advice
2 votes
3 replies
234 views

Everyone told me to study all the algorithms. Yes, they said it's necessary. Yes, I will study them all, but I have some questions. When working on a project, how do people remember all these ...
quantumlattice's user avatar
0 votes
1 answer
143 views

I have written a C++ Unit Test which has a design problem. The test is relatively straightforward. I am testing some kind of "iobuffer" object. There is a function recv which is used to copy ...
user2138149's user avatar
  • 19.1k
0 votes
2 answers
62 views

I'm a newbie. I'm going to build a software project that have feature like subscription and plan, like of saas. User pay recurring (monthly or yearly). The existing solution I found it Stripe, but the ...
ducanh's user avatar
  • 1
-2 votes
1 answer
204 views

I'm architecting my first microservices system and need guidance on service boundaries for a multi-feature platform. Building a Spring Boot backend that encompasses three distinct business domains: ...
Feres Guedich's user avatar
0 votes
1 answer
81 views

I am writing a bot capable of playing a cooperative board game with other bots or human players. In this game, there are black cards and white cards. Players can hold up to 5 cards in their hands. The ...
Adriano Todaro's user avatar
1 vote
0 answers
75 views

I'm trying to create a complex deployment diagram in StarUML for a system, but I couldn't find a way to add components or artifacts inside a node (for example device). So how can I do that in StarUML?
Muhab Joumaa's user avatar
2 votes
0 answers
63 views

I'm trying to create a complex state diagram in StarUML for a system with composite states, but I couldn't find a way to add another simple or composite state (nested states) inside a composite state. ...
Muhab Joumaa's user avatar
7 votes
1 answer
154 views

We have some articles having different colors and weight like : Blue(8) Blue(4) Blue(1) Red(4) Red(1) Black(16) Black(2) ...... n elements* We need to divide these into m groups such that weight of ...
Dipender Siwach's user avatar
0 votes
1 answer
73 views

I have an entity "MyEntity" which has some fields - "StartDate", "EndDate", "Color". It can have multiple records, and each record is sometimes updated. I need ...
user2957592's user avatar
-4 votes
1 answer
55 views

I am in the process of integrating a third-party payment provider into my app. I am at a crossroads, seems to me that anytime a user want to see their transaction history, I should hit the third-party ...
mbakabilal's user avatar
1 vote
0 answers
161 views

I'm developing a workout tracking app that integrates with Health Connect to collect and process sensor data during a workout session. The expected workflow is: The user starts a workout. Health ...
Clover99's user avatar
1 vote
1 answer
363 views

I want to make a card game similiar in concept to Magic the Gathering, or as a smaller example - Love Letters. Both games feature a lot of different cards, with different effects. For example (...
Dmytro's user avatar
  • 41
0 votes
2 answers
71 views

I have the following problem:  Display a button that changes the status of a resource, the button is only showed if there is a record in DB where we have status=VALID and OPEN=true In order to check ...
Lachezar Kolev's user avatar
0 votes
2 answers
163 views

I'm building a hospital management system that spans medical functionalities (e.g., RIS, LIS, PACS) and administrative domains such as billing, maintenance, inventory, pharmacy, and human resources. ...
Raúl Santamaría's user avatar
1 vote
2 answers
226 views

The Liskov substitution principle states that a piece of code should remain correct if a superclass is replaced with its subclass (paraphrasing). What I don't understand; Why do we care about this ...
ariko stephen's user avatar
1 vote
0 answers
35 views

Hello would it be possible to plug a controller to a pc then send the controller signal to the console as if the controller was directly plugged to the console. This would be usefull to edit the ...
b44l__'s user avatar
  • 11
0 votes
1 answer
60 views

Angular project freezes, no clicks work, it gets better when it is refreshed, no errors appear on the console or anywhere else. Does anyone have any ideas or suggestions for this problem? There are ...
Muhammed Aksoy's user avatar
2 votes
2 answers
150 views

I am writing the requirements analysis document for my software engineering project. The project consists in the creation of a sales platform where the user must necessarily be registered and plays ...
Fabio's user avatar
  • 37
3 votes
1 answer
165 views

I am working on a system where: A Customer can place an Order. The Order goes into an OrderPool, which holds all unassigned orders. A Volunteer picks orders from the OrderPool for delivery. I’ve ...
Taha's user avatar
  • 695
-1 votes
1 answer
51 views

I have a question about service-oriented architecture and headless architecture. Are they the same concept, or can headless architecture be considered a subset of service-oriented architecture?
William Zhao's user avatar
0 votes
2 answers
87 views

So, in my understanding, with Decorator pattern you can easily attach additional "responsibilites" (or more generally, behaviors) to an object dynamically. Usually the decoration chain is ...
Baffo rasta's user avatar
-1 votes
1 answer
221 views

I have a legacy windows software that writes to an SQLlite3 database. I need to read this database and present the data on a web application or android app dashboard after some calculation. The ...
Firas 101's user avatar
0 votes
2 answers
138 views

I want to write a library (a module) in Python for logging. The logger instance should be unique per process and global per process. (Meaning that it should not be passed around as an argument to ...
user2138149's user avatar
  • 19.1k
1 vote
2 answers
129 views

When you do architecture design, you usually divide the subsystems. Is there any methodology to divide the subsystems? Are architectural patterns like hexagonal architecture, clean architecture, etc. ...
csucjh's user avatar
  • 23
4 votes
2 answers
145 views

Unreal Engine has a class called FVector which is a somewhat simple three component float vector. One of the things that can be represented with that vector are coordinates. However, those coordinates ...
Karlovsky120's user avatar
  • 6,412
0 votes
1 answer
70 views

My question is not directly about the implementation in the code, but more about the basic design or technique I should use. Initial situation: I have a Python program that executes a simulation. This ...
Fred's user avatar
  • 41
1 vote
1 answer
147 views

I'm working on a project using Clean Architecture and an ORM. I have two entities: Entity A and Entity B. Entity A has a relationship with Entity B (e.g., Entity A contains an instance of Entity B). ...
isaac's user avatar
  • 11
0 votes
2 answers
68 views

I am developing a database software using PyQt6 and SQlite3. I am struggling a bit in organising the files and classes since this is my first project of such. I have kept the main.py in the root to ...
Bob Wallace's user avatar
2 votes
1 answer
417 views

I've been reading up on Avalonia and this example shows adding a property and then in the viewmodel constructor use "WhenAnyValue" to raise the "RaisePropertyChanged" event. What ...
user107586's user avatar
2 votes
1 answer
102 views

my colleagues and I are currently working on a university project about software engineering. At the moment, I am focusing on sequence diagrams and I have a few questions: Is there a standard for ...
Marco Marino's user avatar
0 votes
0 answers
123 views

I was reading about the Singleton design pattern and how to implement it thread-safe. All went well until the authors said: "In reality, we need a lock only when initializing instance. That ...
Ali K.'s user avatar
  • 17
-2 votes
1 answer
40 views

I'm working on a project where we store millions of endpoints for users (like a user bookmarks a page, a user likes a link and we store it, a user saves favorite endpoint, etc.). We have more than 10-...
Vikas R's user avatar
  • 31
1 vote
1 answer
443 views

I am making a DFD diagram for software that is going to run on a PLC to control a testing setup.In this setup i have 7 load cells and 7 hydraulic valves. I am wondering if i need to show all 7 of them ...
tijnvr's user avatar
  • 13
0 votes
1 answer
102 views

I have a big project on software engineering and I have to do some communication diagrams. The only thing I dont know how to draw the if then statements. Can someone help? I searched on Youtube but ...
Lorenc Turku's user avatar
0 votes
1 answer
146 views

I am modeling an application following the principles of Domain-Driven Design. In one of the bounded contexts of my application, I decided to use a hexagonal architecture. I would like to know if it ...
Gabriel Ribeiro's user avatar
1 vote
1 answer
131 views

I have a project that creates elasticsearch index. I'm trying to increase write speed. I have read something about auto-generate ids. Allowing Elasticsearch to generate ids on your behalf should ...
kadir.seckin's user avatar
-1 votes
1 answer
549 views

I tried everything like adding .htaccess file in public_html so that it access public/ folder or change location of index.php but this error is not solving.
Bhanu Prasad's user avatar
0 votes
1 answer
190 views

Was earlier dealing with mixins, but i felt a slow down in compilation time after adding it to the existing code. right now, i was reading an article that mentioned the following : Disadvantages of ...
A-E's user avatar
  • 3,417
2 votes
2 answers
115 views

I need a method in C that is able to process a data packet that can be of various formats/types. What would be your recommended approach to do so (note that I want to be MISRA compliant as much as ...
mgfernan's user avatar
  • 815
0 votes
4 answers
584 views

I have a Spring boot app which has a scheduled job that runs every 1,5 seconds. Its goal is to fetch data from a 3rd party api, update the database with results (if needed) and repeat. The next api ...
Alex's user avatar
  • 1,304

1
2 3 4 5
40