Matías Navarro-CarterforThe Chilean Nerdmnavarro.hashnode.net·Mar 22, 2023FeaturedThe Bigger the Interface, The Weaker the AbstractionThe Coder's Proverbs is a series where I summarize some lessons and principles I've learned over my career by using a memorable and simple saying of wisdom. In previous articles, we have been talking a bit about abstractions: specifically, how to de...Discuss·38 likes·171 readsThe Coder's Proverbscomposition
Vincent TsenforVincent Tsen - AndroidDev Blogvtsen.hashnode.net·Apr 15, 2023Pass by Value vs CompositionLocal vs Static CompositionLocalThere are a few ways you can pass data to a composable function: Pass by Value (function parameter) CompositionLocal Static CompositionLocal Pass by Value is a conventional way. CompositionLocal and static CompositionLocal is a Jetpack Compose w...Discuss·1 like·144 readsAndroid App DevJetpack Compose
Rense BakkerforRense Bakker brense.hashnode.net·Aug 30, 2022React: What is composition, and why is it importantWhat is composition Let me demonstrate with a small example: // no composition <AlertDialog open={true} title="Don't use composition!" /> // with composition <Dialog open={true}> <Title>Use composition!</Title> <Button>Close</Button> </Dialo...Discuss·27 readsReact
Vincent Tsenvtsen.hashnode.net·Apr 15, 2023Pass by Value vs CompositionLocal vs Static CompositionLocalThere are a few ways you can pass data to a composable function: Pass by Value (function parameter) CompositionLocal Static CompositionLocal Pass by Value is a conventional way. CompositionLocal and static CompositionLocal is a Jetpack Compose w...Discuss·1 like·144 readsAndroid App DevJetpack Compose
Matías Navarro-Cartermnavarro.hashnode.net·Mar 22, 2023FeaturedThe Bigger the Interface, The Weaker the AbstractionThe Coder's Proverbs is a series where I summarize some lessons and principles I've learned over my career by using a memorable and simple saying of wisdom. In previous articles, we have been talking a bit about abstractions: specifically, how to de...Discuss·38 likes·171 readsThe Coder's Proverbscomposition
Chau Dinh (Chris)chrisdinh.hashnode.net·Jan 14, 2023Composition and Configuration patterns for building flexible componentsBuilding reusable components supporting a lot of different variants and elements is not easy. There are two common approaches, composition and configuration. The composition encourages building functionality by composing multiple components together....Discuss·68 readsReact
Pavel Durovdrkimchi.hashnode.net·Dec 10, 2022Programming Languages CompositionAbstract There is a variety of Programming Languages (PL) today, each with its speciality and features. But still, traditional software is written using a single programming language. We have tools and processes that allow language compositions, but ...Discuss·36 readsprogramming languages
Aayush Vermaalphavictor.hashnode.net·Nov 24, 2022Association, Aggregation & CompositionAssociation tells about the relationship of one class with another. It generally implies "HAS-A" relationship between two classes. For example, consider two classes: Car Driver then, there is an association between these two classes because Car h...Discuss·82 reads#association
Adith A Danthiadithdanthi.hashnode.net·Sep 14, 2022Understanding Composition in JavaScriptIntroduction Composition is one of those things that you hear about a lot in functional programming. In this article, we will learn about composition and how to use it. Composition Composition is a function that takes multiple functions that are unar...Discuss·53 readsJavaScript
Rense Bakkerbrense.hashnode.net·Aug 30, 2022React: What is composition, and why is it importantWhat is composition Let me demonstrate with a small example: // no composition <AlertDialog open={true} title="Don't use composition!" /> // with composition <Dialog open={true}> <Title>Use composition!</Title> <Button>Close</Button> </Dialo...Discuss·27 readsReact
Dulitha Rajapakshadulitharajapaksha.hashnode.net·Jun 21, 2022How inheritance can complex your code in OOP design (If you use it wrong)How was your life when you started programming? Was it good? Or was it bad? For me, it was both. Good because it felt like a nice vibe to be a programmer, and also kind of bad because I had no idea what I was doing. There is this, there is that and t...Discuss·61 readsWalk and Talkinheritance