Skip to main content

Questions tagged [architecture]

Architecture encompasses the process, artifacts and high-level structure of a solution.

architecture
-1 votes
0 answers
19 views

good practice for branching off of a project while still getting some of the new features built onto it

I have a project A, that does something very similar to project B. for example imagine project A does ticket listing for cinema, and now I want to branch off of it and create a separate project with ...
mpower's user avatar
  • 203
0 votes
0 answers
20 views

Asynchronous communication between 2 QThreads

I'm working on optimizing a PyQt application (to control tensile testing machine) that's sometimes slow. The application uses two QThreads, both running in a loop with time.sleep inside. One QThread (...
Vittor's user avatar
  • 9
-3 votes
0 answers
10 views

How is the structure of the github workspace organized? [closed]

i want to know the real architecture of git. Does it really have 4 or 5 ingredients? Those components are: workspace, staging area, local repository, remote repository (5th component: does branch ...
Hoang Dong's user avatar
-6 votes
0 answers
42 views

Multiple microservices depending on a CLI app [closed]

We have many microservices that are deployed on premises by each customer. Some of those depend on a CLI app. It is large so i cant embed it in each app. What are some standard ways to share it ...
dac1n's user avatar
  • 357
-1 votes
1 answer
23 views

Difference between a collection and a store in the context of REST API [closed]

What is the exact difference between a collection resource archetype and a store resource archetype in the context of REST API, I have been reading this book called REST API Design Rulebook and not ...
Venu Madhav Reddy Vanga's user avatar
0 votes
2 answers
57 views

Actix-Web + Tonic gRPC proper integration

I have a web server in actix-web and recently I built a different C++ server. I decided to implement gRPC as a communication bridge between the 2. But I don't know how to integrate actix web + tonic (...
Chris Kay's user avatar
-4 votes
0 answers
26 views

LSTM Network Architecture

dear community. I am programming an lstm network with regression on pythoin-e under the PyTorch framework The description is available at the link https://pytorch.org/docs/stable/generated/torch.nn....
Pawlovsky Felix's user avatar
1 vote
1 answer
24 views

Handling Multiple Actors in a Use Case in Clean Architecture and DDD

I am doing an API for a blog site using Clean Architecture and DDD. I find myself doing a use case to get all comments for a requested article. The thing is that anonymous users can see the comments ...
Dany Nuñez's user avatar
2 votes
2 answers
36 views
+100

Clean Architecture Dependency Graph (Multi module)

When it comes to the Clean Architecture Dependency graph I see two version: The recommended one by Google: presentation -> domain -> data The other: presentation -> domain <- data What ...
No_Name's user avatar
  • 54
0 votes
0 answers
31 views

How to implement Model View Presenter in Android Java?

// Presenter interface public interface MainPresenter { void loadData(); } // View interface public interface MainView { void showData(String data); void showError(String message); } // ...
AMIT MAJHI's user avatar
-1 votes
0 answers
32 views

Challenges with microservice design which involves multiple http get calls to external systems

We have a monolithic application which need to be converted into microservices using microservice architecture. Requirements: The application makes 4 http get calls to external systems which are ...
Tanmoy Banerjee's user avatar
0 votes
0 answers
102 views

Is this the correct use case for a Rc in rust? [closed]

I'm writing a card game in rust and I'm not quite sure if the way I'm architecting this portion of the app makes sense- and if it does make sense, I'm not sure I'm using the right tool (Rc) for the ...
Andrew Luhring's user avatar
-1 votes
0 answers
13 views

Chat component architecture options and trade-offs

I am trying to choose between two architecture options for a chat component. The purpose of this component is to enable a ChatGPT-like chat, where a user can post messages, and the LLM's response can ...
Gautier Blandin's user avatar
1 vote
1 answer
40 views

How to avoid using global variables and how to split code across dart files in flutter

My first flutter project is essentially doing what it is supposed to and has reached a size of ~6000 lines of code. However, it has a fundamental design flaw, as I understand it: I have mostly written ...
Mercutio1243's user avatar
-1 votes
2 answers
30 views

Should I join or split these microservices that use the same database?

I am developing an App for restaurants to manage the products they have and the orders from the costumers. So I'm facing issues when designing the microservice architecture. I thought of having one ...
Ulises CT's user avatar
  • 1,457

15 30 50 per page
1
2 3 4 5
1150