Mayur Kumarmayurkumar.in·Apr 13, 2024Design Patterns in JavaScriptWhat are Design Patterns? Design patterns are typical solutions to common problems in software design. Each pattern is like a blueprint that you can customize to solve a particular design problem in your code. So, you know how when you're coding, you...10 likesLearn Design Patterns in Javascriptsoftware development
Nikhil Akkinikhilakki.in·Feb 16, 2024Let's understand the Repository PatternIntro In the realm of software development, efficient data access is pivotal for robust applications. One design pattern that stands out in addressing this challenge is the Repository Pattern. By providing a structured approach to handling data, it e...325 readsGorepo-pattern
Baragubaragu.hashnode.dev·Dec 24, 2023Mastering Regular Expressions in PythonIntroduction:Regular expressions, often called regex or regexp, are magical tools that allow you to define search patterns within strings. While our primary focus will be on python, the principles you’ll learn are universally applicable across variou...34 readsRegexTutorial