Nelson Figueroa

Nelson Figueroa @nelsonfigueroa

About: Software Engineer

Location:
Los Angeles, California
Joined:
Sep 11, 2022

Nelson Figueroa
articles - 23 total

It’s 2025, Why Aren’t You Using an Ad Blocker?

I find myself asking this any time I discover that someone uses a web browser with no ad blocking...

Learn More 0 0Jun 3

How to Clone a Specific Git Branch Without Other Branches

Cloning a Specific Branch To clone a specific branch of a git repository without cloning...

Learn More 0 0Mar 26

AI-Generated Images Discourage Me From Reading Your Blog

I have a growing hatred for AI-generated images in blogs. It makes me wonder if the text in the blog...

Learn More 1 0Oct 28 '24

Finding Private Information Through Resumes on Google Search

I noticed a lot of people are willing to upload their full unredacted resume to their personal...

Learn More 0 0Jun 6

Let's Stop Asking "Why Do You Want To Work for Us?" in Interviews

“Why do you want to work for us?” I have run into this question many times as I’ve been applying to...

Learn More 0 0Jul 7 '24

I Am So Sick of Leetcode-Style Interviews

I quit my previous job at Robinhood in late November of 2023 mainly for health reasons. I've been in...

Learn More 1 1Jun 7 '24

Calendly Denial of Service via Mass-Scheduling

Introduction I’ve been doing interviews lately and I have been sent several Calendly...

Learn More 0 0May 17 '24

Python Lists Cheatsheet

This is yet another cheatsheet I made for myself when studying for Leetcode and Hackerrank kinds of...

Learn More 2 1May 8 '24

Get Unique Elements in a Python List

In Python we can get the unique elements from a list by converting it to a set with set(). Sets are a...

Learn More 0 0Apr 29 '24

Ruby Arrays Cheatsheet

This is a cheatsheet I made for myself when studying for (Leetcode/Hackerrank)-style interviews. It's...

Learn More 2 0Apr 11 '24

How I Discover New Blogs

This is a list of resources I use to discover new blogs. Hacker...

Learn More 0 0Apr 5 '24

My Favorite Blogs

This is a list of blogs I enjoy along with a recommended post. This is essentially a blogroll. I’ll...

Learn More 0 0Jul 7 '24

Making Life More Difficult for Bank Scammers

If you’ve been around you know I enjoy spamming phishing/scamming sites. I recently received this...

Learn More 41 4Feb 23 '24

Keep Homebrew Tidy With `brew leaves`

Homebrew has a brew leaves command that shows all installed packages with no dependencies. That means...

Learn More 1 0Jan 23 '24

Getting EC2 Instance Metadata Using IMDSv2

The EC2 Instance Metadata Service (IMDS) allows us to make an API call within an EC2 instance to...

Learn More 0 0Jul 2

How to Determine the Entrypoint for a Docker Image

You can use docker inspect to determine the entrypoint of a docker image. The command looks like...

Learn More 0 0Nov 16 '23

Restricting Ruby on Rails Routes with :only and :except

Generating All Routes for a Model Lets say we have an item model in a Ruby on Rails...

Learn More 0 0Aug 28 '23

Handling Decimal Precision in Rails

Ruby on Rails allows us to specify how precise we want decimals to be by defining precision and scale...

Learn More 2 1Jun 9 '23

AWS IAM: Allowing a Role to Assume Another Role

To allow an IAM Role to assume another Role, we need to modify the trust relationship of the role...

Learn More 0 0Jun 9 '23

How To Install Older Versions of Homebrew Packages

It's possible to install older versions of Homebrew packages by saving an older version of the...

Learn More 0 0Jun 5

Scrape Contributor Emails From Any Git Repository

In a previous post I wrote about how it’s possible to scrape emails from GitHub repositories using...

Learn More 0 0Mar 22 '24

Cleaning Up Residual Files on macOS After Deleting Apps

After deleting apps on macOS, they tend leave behind residual files and directories throughout the...

Learn More 0 0Jul 1 '24

Insertion Order Iteration of Maps in Go

In Go, map contents are randomized. Go doesn't care about insertion order. Elements in a map are...

Learn More 0 0May 29 '24