Tag:programming
All the articles with the tag "programming".
Introduction to Category Theory - Applicative Functors
Posted on:January 8, 2024 at 09:00 AMEmbark on a captivating exploration of Applicative Functors in TypeScript using the powerful fp-ts library. Uncover the magic of functional programming as we delve into currying, the ap operation, and the creation of utility functions for seamless composition. Elevate your coding skills and learn to wield applicative functors to compose effectful programs effortlessly. Join us on this journey through the intricacies of functional programming, where every line of code brings you closer to mastering the art of composability and abstraction.
Introduction to Category Theory - Functors
Posted on:May 1, 2023 at 09:00 AMIn this blog post, we will explore the concept of Functors in category theory. We'll start by introducing the definition of Functors and their basic properties, before diving into some examples of how Functors can be used to map between categories and transform objects and morphisms.
Introduction to Category Theory - Monads
Posted on:September 24, 2024 at 08:00 PMUnlock the power of monads in functional programming with my beginner-friendly guide tailored for TypeScript developers using the fp-ts library. Learn how monads can simplify your code by managing nullable values and side effects while promoting cleaner, more predictable logic. Dive into practical examples and discover how to elevate your coding skills with this essential functional programming concept!
Introduction to Category Theory
Posted on:April 2, 2023 at 09:00 AMIn this post, we will explain what Category Theory is and why this branch of mathematics is so important for the functional programming paradigm.
Introduction to Functional Programming (Part 2)
Posted on:March 11, 2023 at 09:00 AMIn this post, we will explain the concepts of immutability, side effects, and functional composition by providing examples using the TypeScript language. Let's have some fun!
Introduction to Functional Programming
Posted on:February 13, 2023 at 06:22 PMFunctional programming emphasizes immutability, declarative code and side-effect avoidance for easier-to-understand, bug-free code. Learn the fundamentals and start your journey to becoming a functional programmer.