My notes from ChatGPT: List of Cancer hospitals in India

Here is a list of some well-known cancer hospitals in India: Tata Memorial Hospital, Mumbai : One of the oldest and most reputed cancer hospitals in India, known for its comprehensive cancer care and research. All India Institute of Medical Sciences (AIIMS), New Delhi : AIIMS is a premier medical institute in India with a dedicated cancer treatment center that offers advanced care and research facilities. Adyar Cancer Institute, Chennai : Known for its expertise in cancer treatment and research, particularly in radiation oncology and surgical oncology. Rajiv Gandhi Cancer Institute and Research Centre, Delhi : A leading cancer hospital providing comprehensive cancer care with state-of-the-art facilities. Cancer Institute (WIA), Chennai : Founded by Dr. Muthulakshmi Reddy, it is one of the oldest cancer hospitals in India, known for its pioneering work in cancer treatment and research. Apollo Hospitals, Chennai : Part of the Apollo Group, it offers specialized cancer care across various...

How to configure nvm on mac to run multiple node versions?

Recently, I had to work on multiple angular apps, one of which is running using angular 10 and other using angular 16.

Hence, I needed different versions of node. After doing somewhat research, I found that the steps are deterministic and are easy to follow.

In this blog, I am going to share the steps on how to configure nvm on mac. Here are the steps:

  1. Uninstall any existing version of node
    1. brew uninstall --ignore-dependencies node
    2. brew uninstall --force node 
  2. Install nvm using brew
    1. brew install nvm
  3. Export nvm directory:
    export NVM_DIR="$HOME/.nvm"
  4. Add nvm to shell:
    Add nvm to your shell profile: To make nvm available every time you open a new terminal window, you will need to add the following line to your shell profile (e.g., ~/.bash_profile or ~/.zshrc):
    source $(brew --prefix nvm)/nvm.sh
  5. Verify by running nvm --version
  6. Yay! nvm is configured.
  7. To install a specific version:
    nvm install <version>
    e.g. nvm install 18.17.0
  8. To switch to a specific version:
    nvm use 18.17.0
  9. To List available versions:
    nvm ls-remote
  10. To list local versions:
    nvm ls