Skip to main content

Swami Dayanand Saraswati

Dayanand Saraswati (12 February 1824 – 30 October 1883) was an important Hindu religious leader of his time. He is well known as the founder of the Arya Samaj.
Dayanand's mission was not to start or set up any new religion but to ask humankind for Universal Brotherhood through nobility as spelt out in Vedas. For that mission he founded Arya Samaj enunciating the Ten Universal Principles as a code for Universalism Krinvanto Vishwaryam meaning the whole world be an abode for Nobles (Aryas).
By exhorting the nation to reject such superstitious notions, his aim was to educate the nation to "Go back to the Vedas". He wanted the people who followed Hinduism to go back to its roots and to follow the Vedic life, which he pointed out. He exhorted the Hindu nation to accept social reforms, including the importance of Cows for national prosperity as well as the adoption of Hindi as the national language for national integration. Through his daily life and practice of yoga and asanas, teachings, preaching, sermons and writings, he inspired the Hindu nation to aspire to Swarajya (self governance), nationalism, and spiritualism. He advocated the equal rights and respects to women and advocated the education of a girl child like the males.

Comments

Popular posts from this blog

Volley for client and server interaction (Android)

Volley provides client and server interaction with QUEUE basis, each and every request process separately, we can cancel our request from QUEUE. HERE is a code sample for Volley with json request format. GenerateRequest.java -------------------------------------------------------------------- package com.entrata.maintenance.network_communication.networkutils; import android.content.Context; import com.android.volley.AuthFailureError; import com.android.volley.Response; import com.android.volley.VolleyError; import com.android.volley.toolbox.JsonObjectRequest; import com.entrata.maintenance.application.ERPUserDefaults; import com.entrata.maintenance.network_communication.networkconstant.NetworkConstant; import com.entrata.maintenance.network_communication.networkexception.Error; import com.entrata.maintenance.network_communication.networkutil.SubdomainChange; import com.entrata.maintenance.utils.Logger; import com.google.gson.Gson; import org.json.JSONException; import org.js...
Java Code Examples for javax.net.ssl.HttpsURLConnection The following code examples are extracted from open source projects. You can click to vote up the examples you like. Your votes will be used in an intelligent system to get more and better code examples. Thanks for your votes! Code Example 1:   9  From project ADFS , under directory /adfs-hdfs-project/adfs-hdfs/src/main/java/org/apache/hadoop/hdfs/ . Source HsftpFileSystem.java @Override protected HttpURLConnection openConnection ( String path , String query ) throws IOException { query = addDelegationTokenParam ( query ); final URL url = new URL ( "https" , nnAddr . getHostName (), nnAddr . getPort (), path + '?' + query ); HttpsURLConnection conn =( HttpsURLConnection ) url . openConnection (); conn . setHostnameVerifier ( new DummyHostnameVerifier ()); return ( HttpURLConnection ) conn ; } Code Example 2:  ...

Improving Layout Performance

Improving Layout Performance Layouts are a key part of Android applications that directly affect the user experience. If implemented poorly, your layout can lead to a memory hungry application with slow UIs. The Android SDK includes tools to help you identify problems in your layout performance, which when combined the lessons here, you will be able to implement smooth scrolling interfaces with a minimum memory footprint. Lessons Optimizing Layout Hierarchies In the same way a complex web page can slow down load time, your layout hierarchy if too complex can also cause performance problems. This lesson shows how you can use SDK tools to inspect your layout and discover performance bottlenecks. Re-using Layouts with <include/> If your application UI repeats certain layout constructs in multiple places, this lesson shows you how to create efficient, re-usable layout constructs, then include them in the appropriate UI layouts. Loading Views On Demand Be...