排序
Modern Java – do we need explicit class declarations?
Modern Java - do we need explicit class declarations?,When we develop a public API, we hope it will live long or forever. Do we? Then why do we still write and use public construct...
Currying vs Dependency Injection
Currying vs Dependency Injection,In this article, I want to describe a very simple concept used in functional programming: currying. We have to imagine that in most functional lang...
Jena – pure functional Lisp descendant
Jena - pure functional Lisp descendant,Yes, Jena -- one more programming language. I am the author. Why do I develop a new programming language? For my personal use, at least. I ha...
FUNCTIONAL_NON-FUNCTIONAL_TESTING.
FUNCTIONAL_NON-FUNCTIONAL_TESTING.,**Functional Testing ** Functional testing is a type of software testing that focuses on verifying that a software application to its specified r...
Understanding Closures in Python: A Comprehensive Tutorial
Understanding Closures in Python: A Comprehensive Tutorial,Closures are a powerful and versatile concept in Python that allows you to create functions with persistent data and enca...
Advanced usage of map & filter in Python
Advanced usage of map & filter in Python,In 2 different job interviews I got asked to solve the following question using python. so I thought it would be good to publish the soluti...
Designing a SHT Language
Designing a SHT Language, Introduction I am a programmer by trade and by hobby, and as such, most of my time is spent in the front of the computer, immersed in code. On a daily bas...
Functional programming with python
Functional programming with python, Introduction to the Functional Programming Paradigm The functional programming paradigm is an approach that focuses on the use of functions as f...
Typeclass in Python with Sparrow
Typeclass in Python with Sparrow,Lately I've been working on a library called Sparrow. This library was born from the need to have a collection of tools to make it easier to develo...
Why I decided to learn (and teach) Clojure
Why I decided to learn (and teach) Clojure,In 2017 I started to learn more about the universe of Functional Programming. This paradigm was gaining traction and most object-oriented...
The Building Blocks of Java Programming: An Introduction to Functions and Classes
The Building Blocks of Java Programming: An Introduction to Functions and Classes,Are you new to Java programming and wondering where to start? Look no further than the anatomy of ...
Callback Functions PHP vs Java
Callback Functions PHP vs Java,Callback Functions, ou Funções de Retorno, são funções em linguagens de programação que são passadas como argumentos para outras funções e ...