Brett Rowberrybrettrowberry.com·Jan 2, 2025Prepending to Living Agenda DocumentsImagine you have a recurring meeting with an agenda open to contributions by all participants. Many meetings in the workplace are like this: 1:1s Sprint demos Team operational reviews Perhaps the agenda is written in a Google Doc or a Confluence...Everyday AlgorithmsDocuments
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