Opata Ebubechukwuopataebubechukwu.hashnode.dev·Dec 1, 2023Designing a Path: A Personal Journey and Advice from Your Design LeadHello, Design Enthusiasts! I'm thrilled to share a bit of my design journey with you and the exciting role I now hold as your Design Lead. The path to becoming a designer is often filled with twists, turns, and moments of inspiration. Today, I want t...Discuss·1 likejour
Dev Leaderhashnode.devleader.ca·Nov 28, 2023How To Harness System.Reactive For The Observer PatternThe traditional observer pattern in C# provides a solid foundation, but there’s room for improvement in terms of simplicity and functionality. This is where System.Reactive, a set of libraries known as Reactive Extensions (Rx), comes into play. Rx in...Discuss·1 likedesign patterns
Ian Carsoniancarson.hashnode.dev·Nov 27, 20235 must Know Design Patterns.Design patterns are critical components that require time and lots of effort to get them right. Every application and system will ultimately require scaling and in almost all instances, they will require refactoring. That is why design patterns are q...Discussdesign patterns
Syed Jafer Kiamfullstackdeveloper.hashnode.dev·Nov 27, 2023Why we should not use objects as data structures ?Problem faced: During our software development, we used to use design a class just to use it as a data structure. But while i was interested in reading about code smells; i got to know that its one of the anti pattern. So what is the problem with usi...Discusscode smell
Bobur UmurzokovforApache APISIXapisix.hashnode.dev·Nov 26, 2023Implement Fallback with API GatewayAPI resilience is the ability of an API to fail fast or ensure that it continues to function after failure when faced with error high traffic, or partial system failures. This involves implementing common API resilience design patterns such as retrie...Discuss·12 likesAPIs
Ayesha Siddiquaayeshatechtalk.hashnode.dev·Nov 26, 2023Proxy Method: JavaScript Design PatternIn this article, we will see what are Proxy Patterns using JavaScript, which is one of the Design Pattern. Prerequisites: Javascript But before moving ahead with Proxy Patterns, what are Design Patterns? → Design patterns are elegant solutions to sol...DiscussJavaScript
Siben Nayaktheawesomenayak.hashnode.dev·Nov 26, 2023System Design 102 - Bloom FiltersIn the vast landscape of data structures and algorithms, Bloom Filters emerge as a fascinating and powerful tool. From spell-checkers to distributed databases, Bloom Filters find their applications in diverse realms. This blog post aims to unravel th...Discuss·276 readsSystem DesignSystem Design
Raj Aryanrajaryan.hashnode.dev·Nov 26, 2023Designing a Generic DB Scheduler in Spring Boot: A Comprehensive GuideHi folks !! Recently during my internship, I was assigned a task to write a Generic DB Scheduler. The use case was to schedule various kinds of jobs mainly OneTimeTask in a generic way so that we don't have to explicitly create a bean of all the task...Discuss·1 like·69 readsSpringboot
Jamiu Olanrewajutechwithlanre.hashnode.dev·Nov 26, 2023Repository Design Pattern in Laravel with CRUD ExampleIn this article, we'll learn how to implement repository design pattern in laravel. We will start by creating a simple products management application using laravel repository design pattern. We will not be covering the views files in this article St...Discuss·1 likeThe Ultimate Laravel GuideLaravel
Romman Sabbirrommansabbir.com·Nov 25, 2023Design Patterns: Retry /w KotlinIntroduction In software development, dealing with transient failures or intermittent issues is a common challenge. One effective way to address this challenge is by implementing retry mechanisms. Retry design patterns enable developers to automatica...Discuss·4 likes·355 readsDesign Patternsoop