Omid EidivandiforServerless Folks Blogsblogs.serverlessfolks.com·Nov 4, 2024Conventional Use of AWS CDKInfrastructure as code, a principal rule of agility and reliability, helps deliver configurable software by combining all different pieces into a single asset, such as Software code, Configuration, and infrastructure. However, this approach introduce...aws-cdk
Omid Eidivandiserverlessfolks.com·Nov 4, 2024Conventional Use of AWS CDKInfrastructure as code, a principal rule of agility and reliability, helps deliver configurable software by combining all different pieces into a single asset, such as Software code, Configuration, and infrastructure. However, this approach introduce...1 like·227 readsenablement
Romman Sabbirrommansabbir.com·Mar 27, 2024Object Oriented Programming (OOP) - Interface vs Abstraction (Java/Kotlin)[Cover Image by : Rafael de Nadai] In the world of programming, two key concepts often come up: Interface and Abstraction. Both are fundamental to object-oriented programming (OOP) and play crucial roles in designing robust and maintainable software ...241 readsmaintainable software
Rajesh Khadkarajeshkkhadka.hashnode.dev·Jan 19, 2023Design Patterns use Abstraction EffectivelyOutline Introduction to abstraction Visualize Abstraction Importance of abstraction in software design Introduction to Design Patterns How Design Patterns uses abstraction Takeaway Abstraction It is an act of representing the essentials and h...36 readsdesign patterns
Felicia Baconfeliciabacon.hashnode.dev·Aug 3, 2021Array Processing Abstractions (Part 1)An array in Javascript is simply a list of values. In order to do something with that list, usually we would need to ‘step through’ or ‘iterate’ over that list to perform a specific action on each value. Javascript provides us with a few different ty...1 like·43 readsarray