Franciscofranciscog98.hashnode.dev·May 15, 2024Frontend notes 101Before I begin, I would like to acknowledge that the ideas I will be sharing in this article, as well as in future ones, were taught to me by a significant person, who entered IT several years ago. He had the goodwill to impart his knowledge to me. S...26 readsSass
Ahmed Abdelaalahmedabdelaal.hashnode.dev·Mar 11, 2024Understanding Ruby Modules: Prepend vs. IncludeIntroduction: Module is a collection of constants, methods, classes, and variables in a container. Modules implement the mixin facility module Animal def sound puts 'animal sound' end end class Dog include Animal ...10 likesprepend
Andres Gesteiraquantum-quirks.hashnode.dev·Feb 3, 2024Class Composition in TypeScriptSoftware design is important. It is the process of creating a system that meets the requirements and objectives for a certain project. To design a good software, we should consider various factors such as scalability and maintainability, and make inf...1.7K readsTypeScript
Shivam Akhouririder.hashnode.dev·Dec 27, 2023Custom mixins in Django | DjangoIntroduction Django mixins are a way to reuse your logic across various views using a class-based inheritance model. In this article, we will take a sneak peek at Django mixins and try to understand why we need them, and how to use them in our Django...1 like·228 readsDjango
Ronil Rodriguesronilrodrigues.hashnode.dev·Sep 28, 2023Understanding Abstract Classes, Interfaces, and Mixins in Object-Oriented ProgrammingObject-oriented programming (OOP) is a paradigm that emphasizes the use of classes and objects to model real-world entities. In Java and other similar languages, we have three powerful tools for achieving this: Abstract Classes, Interfaces, and Mixin...mixins
Dileepa Chandimablog.dilipchandima.com·Jun 2, 2023My way to implement media queries using SCSS mixinsWhat is SCSS A CSS preprocessor scripting language, specifically SCSS (Sassy CSS), is a powerful tool that enhances the capabilities of traditional CSS by adding programming features. SCSS acts as an extension to CSS, allowing developers to write mor...CSS
Mustafa Dalgasft.hashnode.dev·Nov 22, 2021How to create multiple mixins in one file and using specific mixins in vue jsWhen we have features such as method, computed or watch, that we want to use in more than one component or view, we can create and use mixins to avoid repetitive codes. In small projects, we can create and import a mixin file for each repetitive feat...Vue.jsmixins