Paradigms

Programming paradigm #article - Wikipedia. "Programming paradigms are a way to classify programming languages based on their features. Languages can be classified into multiple paradigms."

Aspect-Oriented Software Development

Aspect-oriented software development #article - Wikipedia. "In computing, aspect-oriented software development (AOSD) is a software development technology that seeks new modularizations of software systems in order to isolate secondary or supporting functions from the main program's business logic. AOSD allows multiple concerns to be expressed separately and automatically unified into working systems."

Cross-cutting concern #article - Wikipedia. "In aspect-oriented software development, cross-cutting concerns are aspects of a program that affect other concerns. These concerns often cannot be cleanly decomposed from the rest of the system in both the design and implementation, and can result in either scattering (code duplication), tangling (significant dependencies between systems), or both."

Functional Programming

Functional programming #article - Wikipedia. "In computer science, functional programming is a programming paradigm—a style of building the structure and elements of computer programs—that treats computation as the evaluation of mathematical functions and avoids changing-state and mutable data. It is a declarative programming paradigm in that programming is done with expressions or declarations[1] instead of statements. Functional code is idempotent: a function's return value depends only on its arguments, so calling a function with the same value for an argument always produces the same result. This is in contrast to imperative programming where, in addition to a function's arguments, global program state can affect a function's resulting value. Eliminating side effects, that is, changes in state that do not depend on the function inputs, can make understanding a program easier, which is one of the key motivations for the development of functional programming."

Functional programming in JavaScript #playlist - "This is a collection of the videos from FunFunFunction that is specifically about functional programming in JavaScript"

Object-Oriented Programming

Composition vs. Inheritance: How to Choose? #article - "As a heuristic, ‘favor composition over inheritance’ is okay, however, I am not a fan of mantras. While they often contain a kernel of truth, it is far too easy for people to hear the slogan without understanding its source or context, and thus avoid thinking for themselves - and that never turns out well."

Dependency Injection basics- Fun Fun Function #video

Dive Into Design Patterns #book - "Design patterns help you solve commonly-occurring problems in software design. But you can’t just find a pattern and copy it into your program, the way you can with off-the-shelf functions or libraries. A pattern is not a specific piece of code, but a general concept for solving a particular problem. They are like pre-made blueprints that you can customize to solve a recurring design problem in your code."

Inversion of Control - Fun Fun Function #video

Refactoring From Inheritance To Composition To Data #article - "“Prefer composition over inheritance” is a popular saying amongst programmers. In this article, I want to demonstrate what that looks like."

Last updated