17,188 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
Best practices
2
votes
2
replies
82
views
Best Practices React Native Repositories
I'm building an React Native mobile app, so I'm searching for a repository to get as inspiration, because any video or repository I found didn't looks reliable enough to follow as a guide. I'm needing ...
Best practices
0
votes
0
replies
75
views
Design pattern for keeping two mutable object views in sync
I have been working on a game engine and have come upon a design that is challenging for me to implement. In particular, I need two mutable objects, that themselves contain mutable properties, to ...
Best practices
0
votes
2
replies
30
views
Team scale - define architectural principles for project
I want to enforce team to follow architectural standards for new project.
Once architectural standards in place, during code push in gitlab, if the standards are violated then it will notify us.
What ...
Advice
0
votes
6
replies
98
views
Do I need atomic transactions or is eventual consistency enough?
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 ...
Advice
0
votes
6
replies
40
views
Architecture - Conditional Statement & Processing
I've faced this issue several times and I'd like some advice regarding it. This topic is language-independent. Let's assume that we have the following code:
string message;
if(requiresSpecificMessage(....
Advice
0
votes
0
replies
34
views
Spring Modulith architecture cycle problem
I have a fresh and minimal Spring boot 4 project with Spring Modulith which you can see here.
I have two modules User and Task. A User has zero or more Tasks. Both modules expose a MTO (Module ...
0
votes
0
answers
45
views
Are maskable and nonmaskable interrupt signals raised on two different interrupt request lines?
Are maskable interrupts that are typically raised from controllers to request CPU attention and non maskable interrupts (reserved for critical hardware errors) raised on two different interrupt ...
Best practices
1
vote
2
replies
54
views
What is in Angular the correct term of a public property in an object component that contains form data or display data?
Look @ the following typescript code of an object component:
export class ItemComponent {
item: Item; // <-- term???
constructor(_itemService: ItemService) {
this.item = _itemService....
Advice
0
votes
0
replies
61
views
[Windows Arm64]: Is it possible to build flutter app on an ARM64 windows machine (using flutter stable 3.35.7 version)
I am currently building flutter app on an x64 windows machine. For this, the stable flutter version I am using is 3.35.7
I want to build an Arm64 variant of my flutter app (I do have an Arm64 windows ...
0
votes
1
answer
135
views
How can I implement consistent typed error propagation in C# without scattering try/catch across layers?
I have a C# application with multiple layers (controllers, services, domain logic, and background workers). Error handling has become inconsistent because many methods contain their own try/catch ...
Best practices
1
vote
2
replies
72
views
How to write idiomatic Go business logic for CRUD involving multiple tables/models?
I am refactoring my backend where clients can start threads and make replies. I keep a 3-layer architecture with thin handlers that bind and validate, service layer with all business logic, and a repo ...
Best practices
2
votes
1
replies
49
views
UI usage analytics dashboard
I’m creating UI dashboard which I want to measure things like
How many requests are made from the web application from a particular screen along with the organisation location of the user.
There are ...
1
vote
0
answers
49
views
Data Ownership and Transaction Managment in SOA
I'm trying to learn more about Service Oriented Architecture as to me, it seems like a good middle ground between monolithic and micro service applications. Please correct me if I'm wrong but the ...
-1
votes
1
answer
63
views
Is it "standard" to use Keycloak SSO tokens to fetch Google/Microsoft calendar data? [closed]
I’m using Keycloak as my identity provider and I have enabled identity brokering with Google and Microsoft (Azure AD).
My current flow:
User logs in via Google or Microsoft through Keycloak SSO.
In ...
Best practices
0
votes
3
replies
123
views
Should I use the BFF pattern or store access token in memory and a refresh token as an http only cookie? Or scrap jwts and just use sessions
System Overview and Token Handling Question
I work for a company with 2 developers. We are building new systems and currently have the following resources:
An accounting database
A user database
An ...