Alex Martinez cover image
Alex Martinez
Alex Martinez
@devalexmartinez
I'm a Developer Advocate at MuleSoft and I create content at ProstDev. I support Women Who Code Monterrey as a Lead. More about me: alexmartinez.ca
Canada
Joined on Oct 5, 2022
7 posts
2 followers
10 following

Explicitly Setting a New Property on `window`

In TypeScript, when you want to add a new property to the window object (the global object in the browser), you need to ensure that TypeScript recogni...
Explicitly Setting a New Property on `window`

Avoiding Null Checks

Null checks in Java can lead to messy and error-prone code. Fortunately, there are techniques and best practices you can follow to minimize null check...
Avoiding Null Checks

Removing Old Docker Containers

In this tutorial, we will explore how to remove old Docker containers from your system to free up resources and declutter your Docker environment. Lis...

Removing a Symlink to a Directory

In Linux, you can remove a symbolic link (symlink) to a directory using a simple command. Using the rm Command The rm command is used to remove files...
Removing a Symlink to a Directory

Understanding attr_accessor

In Ruby, attr_accessor is a convenient and commonly used method that provides a shortcut for defining getter and setter methods for instance variables...
Understanding attr_accessor

Detect Click Outside React Component

In React, you may encounter situations where you need to detect when a user clicks outside a specific component, such as a dropdown, modal, or popover...

Slicing in Python

Slicing is a powerful and efficient way to extract specific elements from sequences like strings, lists, tuples, and other iterable objects in Python....
Slicing in Python