Written by Pedro who lives and works in Austin, Texas, doing all things front-end (and some back-end too).
Running Go code inside a NodeJS app with WASM (Part 2/2, 2023)
February 24, 2023In the second part of two posts, we will explore how to import a compiled WASM module inside a NodeJS application.
Running Go code inside a NodeJS app with WASM (Part 1/2, 2023)
February 13, 2023In this first of two posts we explore how we can call Go functions from a NodeJS application using WebAssembly.
Quick Bits: Using Dropout layers in convolutional neural networks
November 19, 2022Short advice on why and how to use Dropout layers in convolutional neural networks
Software Design Patterns: The builder pattern
November 16, 2022The 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
Building a performant heap (priority queue): A deep dive
November 03, 2022Priority 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.