Ir para o conteúdo
Linkedin-in
Instagram
Youtube
X-twitter
Perfil
Palestras
Livros
Na mÃdia
Conteúdo
Artigos
Blog
Code
Digital Garden
Insights
Newsletter
Agenda
Perfil
Palestras
Livros
Na mÃdia
Conteúdo
Artigos
Blog
Code
Digital Garden
Insights
Newsletter
Agenda
Seja meu cliente
Perfil
Palestras
Livros
Na mÃdia
Conteúdo
Artigos
Blog
Code
Digital Garden Â
Insights
Newsletter
Agenda
Trabalhe comigo
Perfil
Palestras
Livros
Na mÃdia
Conteúdo
Artigos
Blog
Code
Digital Garden Â
Insights
Newsletter
Agenda
Trabalhe comigo
Trabalhe comigo
Seja meu cliente
ou entre em CONTATO
Code
Confira os estudos e reflexões que podem gerar insights para seu negócio nesta categoria:
Code
Getting started with Rust
I believe that, from time to time, it is interesting to learn a new language or framework that takes us...
Code
[ANSWER] Which version of this function is faster? Why?
In the previous post, I asked which function, in the following code, would fill the array with 1’s faster and...
Code
[QUESTION] Which version of this function is faster? Why?
Our goal is to fill a two-dimensional array with 1’s. using BenchmarkDotNet.Attributes; using BenchmarkDotNet.Running; namespace ToArrays { public class Program...
Code
Solving the “Euler Knight’s Tour” using F#
In this post, let’s solve the “Euler Knight’s Tour” using F#. Disclaimer Sometimes life imposes a pause on us. I’m...
Code
First steps for Implementing a Saga Execution Coordinator using TheFlow
In a previous post, I wrote about how to support sagas using a Workflow Engine as Saga Execution Coordinator (if...
Code
Fast and economic approaches for parsing large CSV files
Parsing large files is a recurring and challenging task. Right? It is too easy to write slow code that consumes...
Code
[ANSWER] Here are Common Mistakes When Working with Enumerables. Can you see it?
Write code is not a simple task. It is easy to make mistakes that result in bad performance. The last...
Code
[QUESTION] Here are Common Mistakes When Working with Enumerables. Can you see it?
The following code contains some of the most common mistakes I have been seeing when reviewing code that deals with...
Code
World’s Simplest Key-Value Database, Implemented in Two PowerShell Functions
I’ve been spending some time learning from the “Designing Data-Intensive Applications” book. I am reading it for the third time,...
Code
An Alternative for Supporting long-running processes
There are a lot of scenarios where our applications need to support long-running processes. In this post, I will share...