Hector Yeomans Blog

Written by Hector Yeomans who lives in Mexico and works remotely for Invision. Follow him on Twitter, or add him on LinkedIn.

Convert node package with Typescript and Rollup

May 30, 2020

I already had a library that I wanted to convert to Typescript. I picked Rollup.js to do my build process. First I installed the following…

Golang and interfaces misuse

January 18, 2020

One of my favorite things about Golang is the concept of interface. It’s also one of my grievances every time I see them used as C#/Java…

Typescript, Jest and Axios

November 03, 2019

I found different posts that tell you how to mock Axios using Jest & Typescript. The only difference in this post is that, when I use Axios…

Software as stitching

December 27, 2018

Photo by Alexander Andrews on Unsplash Lately, I’ve been thinking that most of the software I’ve done consist of stitching of API’s…

Resilience with Disyuntor - Circuit Breaker

May 27, 2017

Resilience means the capacity to recover quickly from difficulties. Circuit breaker pattern is a good practice for resilience. When working…

Redis, STunnel, and C#

January 25, 2017

In this blog post, I will try to demonstrate how to setup a working environment with StackExchange.Redis package is communicating to a Redis…

ES6 Arrow functions

September 21, 2015

Last night I was reading this post: ES6 arrow functions, syntax and lexical scoping and going through the comments I saw this question: The…