The best programming blog.

Covering a wide array of programming topics.

toBeTruthy does not exist on type Assertion

The toBeTruthy does not exist error message is likely occurring in a TypeScript project that uses the Cypress testing framework. The compiler cannot find the toBeTruthy property on the Assertion type because it was renamed. The exact error you must be getting in your project: Property ‘toBeTruthy’ does not exist on type ‘Assertion’ in the…More

How to update password of user in AWS Console

To set or update the password of a user in the AWS Management Console, you can follow these detailed steps: To ensure the security of your AWS account, please follow the password policy when following the “to update the password of a user in AWS Console” action. To help you stay safe and secure, it…More

Enable 2-Step Verification in Google Account

2-Step Verification for your Google account is a quick and simple process that can help keep your account safe. Enabling 2-Step verification enhances your account’s security by requiring an additional authentication step in addition to your password. This helps prevent unauthorized access to your account, even if someone has your password. Here are the steps…More

Enforce 2-Step Verification on Google Workspace

Enforcing 2-Step Verification on Google Workspace is a way to make sure that all users in your organization have an additional layer of security to protect their accounts. With 2-Step Verification, you’ll use two methods to sign in to your account, your password and a verification code that will be generated on an app or…More

How to change keyboard shortcut bindings in VSCode

Keyboard shortcuts in Visual Studio Code allow you to perform actions quickly, without navigating through menus or using a mouse. These shortcuts can be customized to suit your workflow and preferences. Before you modify your keybindings, it’s always a good idea to back them up. And be aware that any changes you make may conflict…More

How to install Python via Homebrew on Mac

Once Homebrew is installed, run the command brew update to ensure that you have the latest package information and formulas. The output will be like this: Updated 2 taps (homebrew/core and homebrew/cask).……. To install Python, run the command brew install python — this will install the latest version of Python available in Homebrew’s database. If…More

How to uninstall Python via Homebrew on Mac

Before uninstalling Python, make sure you don’t have any other applications that rely on it. You might also want to check whether you have any important data files or information that use Python. It is safe to have a backup of your important data files using Python. To uninstall Python via Homebrew on a Mac,…More

Steps to Install and Set Up Jupyter notebook on MAC

Jupyter Notebook is an open-source web-based interactive computational environment, including Python, R, Julia, and others. It allows users to mix codes with output, and explanatory text in a single document which is ideal for data analysis, scientific computing, and machine learning. To use Jupyter, Notebook you’ll need Python installed on your system. The official Python…More

Steps to Install and Set Up JupyterLab on MAC

JupyterLab is an open-source web-based interactive development environment (IDE) built on top of the Jupyter Notebook. It provides a more flexible and powerful environment for working with notebooks, data, and code. JupyterLab can run on your computer or be used as a cloud-based service. It can also be integrated with other tools, such as Git…More

How to update Nginx on Ubuntu

Before upgrading Nginx, make sure you have a backup of your current configuration files. You can do this by copying the files in the /etc/nginx directory to a different safe location. Here’s what you need to do to update Nginx on Ubuntu: Check the initial version of Nginx you have on your Ubuntu machine: The…More