MMaverickinjyanshu.hashnode.dev·1d ago · 13 min readVector EmbeddingsHow AI Learned to Understand the Meaning Behind Words Who is this for? You don't need to know any math, code, or machine learning. If you've ever used Google Search, gotten a Netflix recommendation,00
MMaverickinjyanshu.hashnode.dev·1d ago · 17 min readEventual Consistency PitfallsIntroduction In the age of distributed systems, eventual consistency is a trade-off that powers some of the most scalable architectures on the planet — from Amazon DynamoDB to Apache Cassandra to glob00
MMaverickinjyanshu.hashnode.dev·Jun 22 · 7 min readMediator PatternThe Mediator Pattern is a behavioral design pattern that centralizes communication between objects. Instead of objects talking to each other directly (which creates a tangled web of dependencies), the00
MMaverickinjyanshu.hashnode.dev·Jun 22 · 10 min readVisitor PatternThe Visitor Pattern is a behavioral design pattern that lets you add new operations to existing class hierarchies without modifying them. Instead of putting the new behavior inside the classes, you mo00
MMaverickinjyanshu.hashnode.dev·Jun 22 · 8 min readTemplate Method PatternThe Template Method Pattern is a behavioral design pattern that defines the skeleton of an algorithm in a base class and lets subclasses override specific steps—without changing the overall structure.00