Skip to main content

WHERE THE MIND IS WITHOUT FEAR !




(Painting By Takshila Vidushi)


"Where the mind is without fear & the head is held high
Where knowledge is free
Where the world hasn't been broken up into fragments
By narrow domestic walls

Where words come out from the depth of truth
Where tireless striving stretches its arms towards perfection !

Where the clear stream of reason has not lost its way Into the dreary desert sand of dead habit
Where the mind is led forward by thee Into ever-widening thought and action
Into that heaven of freedom, my Father, let my country awake."

By Guru RabindraNath Tagore


(Ever since childhood this poem of RabindraNath Tagore has been synonmous to supreme level of perfection for me.Its incredible to believe even 100 years after he penned down his awesome vision for India in his book Gitanjali which fetched him Nobel Prize,it is still a utopian dream to realize...may be because it is way too ambitious for common people like us to realize it or may be any attempt to realize this dream would actually push one to come out of his/her interia of letting the things go on the way they our going on.......:) or may be one is accustomed to quoting his words every now & then & that's all.However 100 years later i have made an attempt to attenuate the scope of his dream so that it becomes realistic for us to achieve & here it is:)




"Where the water is free from microbes ! 
& air is dustfree!
Where eyes could treasure green pastures
As far as they can see

Where eatables aren’t adulterated
& duplicate medicines aren’t sold
Where traffic is regulated
& Highway means "smooth roads"

Where cities aren’t overcrowded
& Universal distribution of resources is ensured
Where “quality education” replaces “reservation”
& impoverished aren’t ignored

O God ! Bless my country with intellectual mothers
As with their intellect, a strong foundation will be made
& When their wisdom will flow in my countrymen’s veins !
Everyday in heaven ,my country will awake "
By Takshila Vidushi

Comments

  1. Sad situation of the country but true...
    Good one..I appreciate your creativity...

    ReplyDelete
  2. Very good poem, I strongly agree with your this part of poem "O God ! Bless my country with intellectual mothers As with their intellect, a strong foundation will be made & When their wisdom will flow in my countrymen’s veins ! Everyday in heaven ,my country will awake ". since its generic. Tagore had a wider picture though.

    Looking for a society where no one wants to sell adultrated food, fake medicine, plan bad roads is good but not good enough. its a hope and not a plan...

    making sure no one can adultrate the food, system to check if the medicines are fine should be our goals... If my country cant produce men who are capable enough to think this then its a sad situation. And I am sure everyone agree this is not the case.

    My country is in not perfect state. The reason is not limitation in people, but becasue of limitation in system which is not strong/equipped enough to handle individuals limitation.

    Hoping to see Tagores scribbling about prosperous India where none of us feel sad about anything...

    ReplyDelete
  3. Thank you so much for your valuable inputs...yes I definitely agree to you that Tagore's vision much wider & idealistic ..what i have tried to summerize here is a fraction of that & that too becoz ,i have faced these issues in my every day routine & have felt helpless innumerable times.....

    ReplyDelete
  4. good one..keep writing regularly Ms Vidushi

    ReplyDelete
  5. wonderful painting and poetry too :)

    ReplyDelete
  6. Thanks for the appreciation ...rohit

    ReplyDelete

Post a Comment

Popular posts from this blog

Microservices Design patterns

What are microservices? Microservices - also known as the microservice architecture - is an architectural style that structures an application as a collection of services that are Highly maintainable and testable Loosely coupled Independently deployable Organized around business capabilities Owned by a small team The microservice architecture enables the rapid, frequent and reliable delivery of large, complex applications. It also enables an organization to evolve its technology stack. You are developing a server-side enterprise application. It must support a variety of different clients including desktop browsers, mobile browsers and native mobile applications. The application might also expose an API for 3rd parties to consume. It might also integrate with other applications via either web services or a message broker. The application handles requests (HTTP requests and messages) by executing business logic; accessing a database; exchanging messages with other systems; and returni...

GraphQL

What is GraphQL  API Standard invented & open-sourced by Facebook Alternative to  REST API  enables declarative data fetching  exposes single endpoint & responds to queries How it works?  Why Graphql? Improvises performance by reducing the data that is to be transferred over the internet Variety of different frontend frameworks and platforms on client-side Fast development speed & expectation for rapid feature development Why Graphql is better than REST? Flexibility & efficient  No more over /under fetching of data Over fetching : Under fetching: Insightful analytics  Schema serves as contract between client and server CORE CONCEPTS : SDL :SCHEMA DEFINITION LANGUAGE Writing Data with mutations 3 kinds of mutations creating new data updating existing data deleting existing data

Jackson

<dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId> jackson-core </artifactId> <version>2.9.6</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId> jackson-annotations </artifactId> <version>2.9.6</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId> jackson-databind </artifactId> <version>2.9.6</version> </dependency> CBOR encoded data with Jackson <dependency> <groupId>com.fasterxml.jackson.dataformat</groupId> <artifactId>jackson-dataformat-cbor</artifactId> <version>2.9.6</version> </dependency> In order to read and write MessagePack encoded data <dependency> <groupId>org.msgpack</groupId> <artifactId>jackson-dataformat-msgp...