Monday, October 4, 2021

Meaning of Ashutosh

 

Ashutosh (Ashu meaning rapid/easy and tosh meaning gratification) is a male given name and one of the names given to Shiva. The word Ashutosh refers to someone who can be easily gratified and someone who fulfils wishes instantly. In Hindi, आशुतोष means शीघ्र प्रसन्न होने वाले. Ashutosh is one of the thousand names (Sahasra naam) of Mahadeva. - Wikipedia

Ashutosh is the most happy man from inside in this world - Urban Dictionary






Tuesday, August 31, 2021

What are Algorithms and Data Structures

 Both are the building blocks of any Software(a collection of programs).

Program = Algorithms(processing/logic) + Data Structures (temporary memory)

Data Structures are tools for storing more than one data items at a time using a single name. They work as our short-term memory while we do mental calculations.

Algorithms are like the mental calculations/thinking that we do while solving a problem or performing some task.

Both together make a small replica of human brain. 

Data structures should be learnt first because algorithms use them.

Thursday, July 1, 2021

Best stock filters for stock hunting

 Stock filters:

1. Top FNO gainers

2. New 52 week high

3. Positive breakout today

4. Oversold stocks with RSI < 30

5. Stocks crossing over 50 dma

6. Undervalued IPOs on listing

7.  Hourly gainers

8. Top gainers of the day (All NSE)

Basic Flask web app

 from flask import Flask app = Flask(__name__) #In Flask, URL rules can be added using either the @app.route() decorator or the app.add_url_...