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

Generating documentation for Angular based applications

Are you creating angular or ionic based applications and looking for a tool to generate documentation to help your development team to easily understand all the components, modules, providers and communication between the components?

Also, you would like to make the life of new developers, who join the in progress project, easy. So, let's talk about a tool that generates the documentation and makes it really easy to understand the angular or ionic application.

Here are the steps:
  1. You should have nodejs installed.
  2. We'll install compodoc which is used to generate documentation for angular based applications. The command is here:
    npm install -g compodoc
  3. You can also opt to install compodoc locally only for you angular application
    npm install compodoc --save-dev
  4. Once the installation is complete, all you need to do is to run the following command:
    compodoc -p tsconfig.json -s
  5. Here the flag -p stands for the path flag for tsconfig.json and -s will serve the documentation on the browser.
  6. If you have installed compodoc locally, I recommend installing npx as that allows you to run local modules without going to /node_modules/modules...
    Here is the command for that:
    npm install -g npx
  7. And in that case, your command to run compodoc would be:
    npx compodoc -p tsconfig.json -s
Looking for a demo application with having compodoc configured? Please check this link

Here is the screenshot of configuration:

And here is how the documentation looks like:


Isn't it wonderful? I believe YES!!! and you will believe the same. Check this out. :)