SVG NesteryforSVG Nesterysvgnestery.hashnode.dev·Nov 8, 2024Biggery Font FreeUnleashing Playfulness with Biggery Font: Your New Design Companion In the world of typography, the right font can transform a simple design into something memorable, and that’s where Biggery Font shines. This charming and personable bold display typ...Discusskeepsake
Tuanh.nettuanhnet.hashnode.dev·Oct 18, 2024Reasons to Embrace the Liskov Substitution Principle (LSP) in Object-Oriented DesignSource: Reasons to Embrace the Liskov Substitution Principle (LSP) in Object-Oriented Design 1. What is the Liskov Substitution Principle (LSP)? The Liskov Substitution Principle was introduced by Barbara Liskov in 1987 and forms the "L"...Discussoop
Tuanh.nettuanhnet.hashnode.dev·Oct 8, 2024Understanding Functional Interfaces in Java: Why They Matter and How to Use ThemSource: Understanding Functional Interfaces in Java: Why They Matter and How to Use Them 1. What is a Functional Interface? A functional interface in Java is an interface that has exactly one abstract method. This single-method constraint allo...Discussfunctional
FafaConceptsfafaconcepts.hashnode.dev·Oct 6, 2024Elegant and Functional: Bag Hangers as the Perfect Mother's Day GiftMother's Day is the time to show appreciation with a thoughtful gift that’s both practical and elegant. While chocolates, flowers, and jewelry are the go-to choices, there’s a unique option that blends beauty with functionality—bag hangers. If you’re...Discussbag hangers
Tuanh.nettuanhnet.hashnode.dev·Aug 21, 2024Methods to Differentiate Between Inheritance and Composition in Object-Oriented ProgrammingSource: Methods to Differentiate Between Inheritance and Composition in Object-Oriented Programming 1. What is Inheritance in OOP? Inheritance is a mechanism where a new class (subclass) inherits properties and behaviors (methods) from an exis...Discussoop
Bug And Fixbugandfix.com·Aug 30, 2023Method Chaining In C#Method chaining in C# is a programming technique where multiple method calls are chained together in a single statement. Each method call returns an object (usually the same object on which the method was called), allowing you to call another method ...DiscussC#
Bug And Fixbugandfix.com·Aug 30, 2023Higher-Order FunctionsIn C#, higher-order functions refer to functions that can accept other functions as arguments and/or return functions as results. In other words, these functions treat functions as first-class citizens, just like any other data type. This concept is ...Discussdotnet
Kristian Lentinokristianlentino.hashnode.dev·Dec 4, 2022My thoughts about Functional Scala 2022 - LondonSome months after my first big conference in Italy (Codemotion) here we are, moving into London to attend the biggest Scala conference, the Functional Scala conference. For those who doesn't know (and in Italy there are a lot of people which doesn't ...Discuss·77 readsDev lifeScala
Bill HailsforLoveCrafts Product Development Bloglovecrafts.hashnode.dev·Oct 7, 2022ContinuationsI'd like to talk about a topic in functional programming that is practically useless to the average developer, but I think nonetheless really fascinating. This post originated as a chapter in a book I wrote a long time ago, which became a presentatio...Discuss·2 likes·40 readsJavaScript
Oluwatosin Joseph Durodolatosin-jd.hashnode.dev·Apr 27, 2022How to use Functions In PythonWhat is a Function? A function is a set of codes that you can use and reuse. The main purpose of a function is that it should be reusable. If you cannot reuse it, it is not a function. Functions help programmers to break down a large set of code into...Discuss·68 readsfunctions