leandronsp

leandronsp

Follow
homeWeb seriesRubyContainersKubernetesHaskellPostgresAbout
Tag

programming languages

#programming-languages

More content

Read more stories on Hashnode


Articles with this tag

A CRUD journey in Haskell, part I, introduction

Aug 3, 20215 min read

Series of writing a CRUD application in Haskell. Introduction and Hello World. · In the past few days, I've been learning some Haskell after years of...

A CRUD journey in Haskell, part I, introduction

Quicksort, a Ruby implementation using Test-driven development

Jul 23, 20219 min read

Implementing Quicksort using TDD · Quicksort is a sorting algorithm designed to have a reasonable time complexity. In average, most implementations of...

Quicksort, a Ruby implementation using Test-driven development

Ruby blocks made easy, part III ~grand finale~, blocks and syntactic sugar

Jul 23, 20215 min read

Understanding the fundamentals of Ruby blocks · In this series of posts, we already covered that methods can be transformed into procs and as such, can...

Ruby blocks made easy, part III ~grand finale~, blocks and syntactic sugar

Ruby blocks made easy, part II, curry and procs as arguments

Jul 23, 20213 min read

Understanding the fundamentals of Ruby blocks · In the previous post, we learned that methods can be transformed into procs to be evaluated later. One...

Ruby blocks made easy, part II, curry and procs as arguments

Ruby blocks made easy, part I, methods and procs

Jul 23, 20214 min read

Understanding the fundamentals of Ruby blocks · Blocks in Ruby are powerful structures that are part of our daily basis as Ruby developers. We see them...

Ruby blocks made easy, part I, methods and procs