My latest book "Backend Developer in 30 Days" is out! You can get it at Amazon
Pedro

Written by Pedro who lives and works in Austin, Texas, doing all things front-end (and some back-end too).

The Golang and NodeJS logos

Running Go code inside a NodeJS app with WASM (Part 2/2, 2023)

February 24, 2023

In the second part of two posts, we will explore how to import a compiled WASM module inside a NodeJS application.

The Golang and NodeJS logos

Running Go code inside a NodeJS app with WASM (Part 1/2, 2023)

February 13, 2023

In this first of two posts we explore how we can call Go functions from a NodeJS application using WebAssembly.

A hero image for this post

Quick Bits: Using Dropout layers in convolutional neural networks

November 19, 2022

Short advice on why and how to use Dropout layers in convolutional neural networks

A hero image for this post

Software Design Patterns: The builder pattern

November 16, 2022

The builder design pattern makes it easier to create objects with multiple parameters

In this post, we will explore how to leverage this extremely useful design pattern

A hero image for this post

Building a performant heap (priority queue): A deep dive

November 03, 2022

Priority queues are one of the data structures that any software engineer must learn how to use.

In this post, we will build a performant heap, and visualize each of its operations through animations.