I find myself asking this any time I discover that someone uses a web browser with no ad blocking...
Cloning a Specific Branch To clone a specific branch of a git repository without cloning...
I have a growing hatred for AI-generated images in blogs. It makes me wonder if the text in the blog...
I noticed a lot of people are willing to upload their full unredacted resume to their personal...
“Why do you want to work for us?” I have run into this question many times as I’ve been applying to...
I quit my previous job at Robinhood in late November of 2023 mainly for health reasons. I've been in...
Introduction I’ve been doing interviews lately and I have been sent several Calendly...
This is yet another cheatsheet I made for myself when studying for Leetcode and Hackerrank kinds of...
In Python we can get the unique elements from a list by converting it to a set with set(). Sets are a...
This is a cheatsheet I made for myself when studying for (Leetcode/Hackerrank)-style interviews. It's...
This is a list of resources I use to discover new blogs. Hacker...
This is a list of blogs I enjoy along with a recommended post. This is essentially a blogroll. I’ll...
If you’ve been around you know I enjoy spamming phishing/scamming sites. I recently received this...
Homebrew has a brew leaves command that shows all installed packages with no dependencies. That means...
The EC2 Instance Metadata Service (IMDS) allows us to make an API call within an EC2 instance to...
You can use docker inspect to determine the entrypoint of a docker image. The command looks like...
Generating All Routes for a Model Lets say we have an item model in a Ruby on Rails...
Ruby on Rails allows us to specify how precise we want decimals to be by defining precision and scale...
To allow an IAM Role to assume another Role, we need to modify the trust relationship of the role...
It's possible to install older versions of Homebrew packages by saving an older version of the...
In a previous post I wrote about how it’s possible to scrape emails from GitHub repositories using...
After deleting apps on macOS, they tend leave behind residual files and directories throughout the...
In Go, map contents are randomized. Go doesn't care about insertion order. Elements in a map are...