Bruce Wellsblog.phpfui.com·a day agoImplementing Active Records in PHP - Part 2In our last episode, I wrote a class I call DataObject. It will be the base class for my Active Record class since it has the basics of what is required in an Active Record class. A DataObject is basically a OO wrapper around an array, but an Active ...DiscussPHP
Saket Khopkarsaketsk.hashnode.dev·Nov 19, 2024Day 10: ReactJS - Redux Advanced Patterns and Best PracticesDont’t go by the main head cover image, it is not the pattern you think about!! What’s a pattern in redux? The same question I stumbled upon when I started to learn this particular topic. As the day 10 stands, we are here to learn about Redux patter...DiscussReactJSReact
Akash Jayanakashjayandev.hashnode.dev·Nov 18, 2024Understanding the Builder Design Pattern in Software DevelopmentIntroduction In software design, the Builder Design Pattern is a creational pattern that allows for the step-by-step construction of complex objects. This pattern is particularly useful when an object requires multiple configurations or when the cons...DiscussReact
Rasel mahmudprogramming-dude.com·Nov 16, 2024Key differences between P, NP, NP-complete, and NP-hardCategoryDefinitionKey CharacteristicsExamples P (Polynomial)Problems that can be solved in polynomial time by a deterministic algorithm.- Efficiently solvable. - Verifiable and solvable in polynomial time.- A subset of NP problems. | Sorting (...Discusspolynominal time
Ahmed Ramyblog.ahmedramy.me·Nov 15, 2024Patterns: CommandsHello, world! 👋 It’s been a while since I’ve shared something with you all, and today feels like the perfect day to dive into an old, yet very relevant, topic. Let’s talk about a classic architectural debate in iOS development and how its lessons ca...Discuss·140 readsPatternsiOS
Shikhor Royshikhorroy.hashnode.dev·Nov 14, 2024Design Patterns - Prototype (in Java)Definition The Prototype Design Pattern is a creational pattern that allows you to create new objects by copying an existing object, known as the prototype. The copy could be shallow or deep, depending on our requirements. Motivation Let’s consider a...DiscussDesign Patternsdesign patterns
Birks SachdevforfreeCodeCampfreecodecamp.org·Nov 14, 2024How to Use Design Patterns in Java with Spring Boot – Explained with Code ExamplesAs software projects grow, it becomes increasingly important to keep your code organized, maintainable, and scalable. This is where design patterns come into play. Design patterns provide proven, reusable solutions to common software design challenge...DiscussJava
Zeeshan Safdarzeeshansafdar.hashnode.dev·Nov 13, 2024Separation of Concerns in React: A New Paradigm💡 Separation of Concerns in React: A New Paradigm 💡 In traditional web development, we’ve always separated HTML, CSS, and JavaScript into distinct files—each technology in its own place. This is how most of us learned web development, right? But wi...Discussdesign patterns
Simon Fosterfunkysi1701.hashnode.dev·Nov 11, 2024Strategy Design PatternUnderstanding the Strategy Design Pattern. In the world of software development, design patterns are essential tools that help developers solve common problems in a standardized way. One such pattern is the Strategy Design Pattern. This pattern is pa...Discussdesign patterns
Shikhor Royshikhorroy.hashnode.dev·Nov 11, 2024Design Patterns - Abstract Factory (in Java)Definition This is a creational design pattern that allows you to create families of related objects without specifying their concrete classes. Let's continue this discussion from where we left off with the Factory Method Design Pattern. So if you do...Discuss·40 readsDesign Patternsdesign patterns