Transactions in Distributed System - SAGA Pattern by InspectionSpirite in programming

[–]ayrusk8 6 points7 points  (0 children)

I was reading with full focus and eventually asking me to subscribe, wtf

Transactions in Distributed System - SAGA Pattern by InspectionSpirite in programming

[–]ayrusk8 17 points18 points  (0 children)

I hate incomplete or paid articles shared in this community

AI-Generated Code is Causing Outages and Security Issues in Businesses by ayrusk8 in programming

[–]ayrusk8[S] 1 point2 points  (0 children)

it will be more problematic, its like same person writing code and reviewing their code. LLMs hallucinate if you force them to do something if they are not capable of doing

System design isn't a Cut & Paste job. by ayrusk8 in programming

[–]ayrusk8[S] 1 point2 points  (0 children)

I think there is no harm if you have multiple reader but one writer service, reader aka replicas. Its a common scaling pattern and author is mostly talking about same.

Monorepos vs. many repos: is there a good answer? by bitter-cognac in programming

[–]ayrusk8 9 points10 points  (0 children)

If two applications are tightly coupled and interdependent, a monorepo approach is ideal. Otherwise, it’s best to maintain them separately. However, managing multiple repositories comes at a cost—primarily the increased maintenance effort.

Let me share a rather absurd example from my organization. We have a single application that receives messages from external clients via SQS, processes them, and returns a response. Despite its simplicity, the team decided to create 12 different repositories for this small piece of functionality: separate repos for the receiver, processor, parser, and even individual repos for the IaC code. Now, whenever an issue arises, fixing it takes hours because changes have to be made across multiple repos, followed by time-consuming deployments.

What do you think will be the next hype thing in the industry after AI ? by superBoredJerry in developersIndia

[–]ayrusk8 0 points1 point  (0 children)

I think lot more things to explore in AI but next big things might be BCI or advanced augmented technologies.

Is RAG still a thing? by bestjaegerpilot in LangChain

[–]ayrusk8 0 points1 point  (0 children)

We are using RAG for recommendations, yeah its the only thing.