kid-cavaquinho.tostring()
  • About

Problem details

Problem details

Recently I’ve been working with HTTP APIs. In doing so, correctly handle errors or faulty behaviors resulting in carrying error response messages is a valuable and important aspect. To solve this challenge I strive to...

30 Jan 2021

Measuring code coverage in .NET Core (part II)

Generate code coverage reports and be able to comfortably and easily understand them is important for: Evaluate the quality of your test suite πŸ“ˆ Identify not tested source code πŸ“ Provide guidance to your project...

14 Jul 2020

Measuring code coverage in .NET Core (part I)

Measuring code coverage in .NET Core (part I)

Measuring the code coverage of your test suite is a key metric of any software engineering project and tell us how much of the source is tested. While there are several tools to achieve coverage...

04 Apr 2020

Using ASP.NET Core configuration mechanism with valid objects

Applications often demand configuration values, those can either be connection strings, logging level settings or specific tokens, for example. While developing with .NET Core framework the configuration mechanism is based at Microsoft.Extensions.Configuration. This is a...

21 Sep 2018

Bitbucket pipelines and .NET Core

I used to remember a time when implementing continuous delivery was not an easy task. Recently, I have found Bitbucket Pipelines an integrated CI/CD product of Atlassian. The system promises and states on their official...

06 Sep 2018

Python comprehensions

Initially introduced by Barry Warsaw on PEP-202, comprehensions became part of the Python language in version 2.0 almost twenty years ago. This language feature enables a beautiful and convenient way to work with iterables. By...

25 Oct 2016

West highland way

West highland way

The West Highland Way is a long-distance trail in Scotland popular among walkers, hikers, runners or even mountain bike cyclists. This trail is about 150km long and follows ancient military roads, officially opened in 1980....

01 Sep 2016

Dependency injection

What is it? Why should I care about it? You might have heard the term dependency injection (DI) if you are into software development, a fellow called James Shore wrote something about it: β€œis a...

14 Dec 2013