AI use cases w.r.t. Industries:
Thanks to Google Cloud.
https://cloud.google.com/transform/101-real-world-generative-ai-use-cases-from-industry-leaders
AI use cases w.r.t. Industries:
Thanks to Google Cloud.
https://cloud.google.com/transform/101-real-world-generative-ai-use-cases-from-industry-leaders
#finance basics
This is written on December 31,2024. Use in that context.
Thanks to chatGPT.
The terms Assessment Year (AY) and Financial Year (FY) are often confused, but they refer to two different periods in the context of income tax in India.
Definition: The Financial Year is the period during which a person or organization earns income.
Duration: It runs from April 1 to March 31 of the next year.
Purpose: It is the year in which the income is earned or received.
For example:
Definition: The Assessment Year is the period during which the income earned in the Financial Year is assessed by the Income Tax Department.
Duration: It starts immediately after the Financial Year ends. So, it runs from April 1 to March 31 of the next year.
Purpose: It is the year in which the tax on the income earned during the Financial Year is calculated and paid.
For example:
In simple terms, the FY is the year when you earn income, and the AY is the year when you pay taxes on that income.
Nvidia display issue.
I was facing difficulty in detecting second monitor in my linux machine.
I had tried few online solutions but couldn't get it done.
Finally the solution which worked:
1.
Detect the specific VGA controller in your machine.
# lspci | grep VGA
2. Now, go to https://www.nvidia.com/en-us/drivers/ and manually search the driver inputting the specific version you obtained in step 1.
3. For example, in my case it was this file: NVIDIA-Linux-x86_64-550.135.run
4. Add executable permission
chmod +x NVIDIA-Linux-x86_64-550.135.run
5. Understand what it is:
./NVIDIA-Linux-x86_64-550.135.run --help
6.
To build and install the drivers , run the script.
( This is quite interesting file I come across, it is both a script as well as binary..need to explore more on this later )
./NVIDIA-Linux-x86_64-550.135.run
7. Boot after installation, you should be able to detect the second monitor.