Welcome
Hi there! my name is Gustavo Castillo, and this is my personal blog Digital Garden 🌱 where I write about web development, tech, and life. I hope you enjoy it!.
Recent Posts
Design Patterns: Factory
Posted on:September 18, 2024 at 08:27 PMIn this article we'll explore the Factory pattern in Go, this pattern allows us to create an instance...
Coding Interview Patterns: Two Pointers
Posted on:July 10, 2024 at 04:27 PMIn this article we'll explore how to use the two-pointers technique for coding interviews...
Go Cheat Sheet For Coding Interviews
Posted on:January 18, 2024 at 08:27 PMGo Cheat sheet for the most common functions and tricks used in coding interviews...
Python Cheat Sheet For Coding Interviews
Posted on:November 15, 2023 at 07:07 PMPython Cheat sheet for the most common functions and tricks used in coding interviews...
A studying technique: SQ3R
Posted on:September 27, 2023 at 03:38 AMSQ3R is a reading comprehension method named for its five steps: survey, question, read, recite, and review...
Featured
Go Cheat Sheet For Coding Interviews
Posted on:January 18, 2024 at 08:27 PMGo Cheat sheet for the most common functions and tricks used in coding interviews...
Structured Logging with slog in Go
Posted on:August 4, 2023 at 11:07 PMWhen debugging our applications, having information about its status is very important. One way to achieve this is through...
5 Techniques to learn Rust faster
Posted on:January 22, 2022 at 09:02 PMOne of the first things you hear about when starting to learn Rust is that: it's hard to understand, it has a steep learning curve...
Learning Go book's highlights
Posted on:January 18, 2022 at 11:11 PMTl;dr is a great book to learn about Go in general from the basics to advanced concepts such as: testing, cgo, concurrency, and…
Slices en Go
Posted on:December 21, 2020 at 03:51 PMUn slice representa una secuencia de elementos de un mismo tipo de longitud variable...