Batch data processing — historically known as ETL — is extremely challenging. It’s time-consuming, brittle, and often unrewarding. Not only…| Medium
A detailed explanation of why I chose OCaml as the ‘default’ programming language for every project.| xvw.lol
Raku Perl 6 programming| raku-musings.com
Keras Core documentation| keras.io
Test Automation Made Simple.| Karate
As a Salesforce developer who is all the time in the Object-Oriented Programming (OO) world, I always wanted to explore the beauty of the other popular programming paradigm -- Functional Programming (FP). In the past,| SalesforceWay
If you have no prior experience with functional programming, don't miss this article which explains the most important intricacies of lazy evaluation!| nixcademy.com
Mainstream programming languages support structured| thewagner.net
Learn how to remove elements from a slice that do not meet a certain condition using Generics| gosamples.dev
If you ever wrote a program bigger than a few lines of code you probably know that the bigger the program gets - the harder it gets to ensure it does exactly what you meant, due to how different parts| rustmagazine.org
The more time I spend with JavaScript, the more brushes I have with the dangerous cliffs of Node.js, and the more I gravitate toward functional design principles. Thus, I periodically find myself...| Scott Nonnenberg
Mindsets and strategies for choosing what to learn| Matt Segal Dev
I’m documenting my journey from functional neophyte to (hopefully) functional programmer by writing a series of blog posts on the topic. This is the first post describing what, exactly, the word functional programming means. Functional programming is a programming paradigm that lives alongside other programming paradigms. None of these paradigms have a precise, unanimous definition or standard, and there is not real agreement on which paradigm is better or worse for building particular type...| Kevin Sookocheff
Most Python programmers don’t spend a lot of time thinking about how equality and hashing works. It usually just works. However there’s quite a bit of gotchas and edge cases that can lead to subtle and frustrating bugs once one starts to customize their behavior – especially if the rules on how they interact aren’t understood.| Hynek Schlawack
In this first post of a larger series, we embark on a journey of developing a compiler for a lazily evaluated functional language.| danilafe.com
Monadic IO with ScalaZ| edofic.com
Homework - functional style (outer sorting)| edofic.com
Design patterns are bullshit!| edofic.com
Pretty function composition in scala and asynchronous function composition on android| edofic.com
Making a programming language Part 1 - how to start| edofic.com
Introduction What is functional programming?, you may ask: In computer science, functional programming is a programming paradigm where programs are constructed by applying and composing functions Source: Wikipedia Wikipedia’s definition of functional programming is OK, although purists would argue that functional programming includes pure functions…| blog.wilcoxd.com