Skip to main content

When you say........

......you don't believe in god, you admit there is a god to believe in

This is the meme post that started this train of thought in my mind.

 When u say u don't believe in god, u admit there is a god to believe in


I have heard one of my classmates say a long time ago, if women truly believed that they were equal to men, then they would not fight for it. While I never accepted it, i didn't know how to speak against it either. but it was there, somewhere in my mind. I think i made some sense out of it, at last.

This is stupidity. This is like saying 'If we Indians seriously believed that freedom was ours, we would never have had to fight for it'. The fight for independance was a fight to make the other party understand and/or accept your viewpoint. The first resonable method might be to consider the other person's viewpoint. And using that as a base point,then work, with suitable proof and arguments, raise, alter, or reconstruct their viewpoint to match ours. This method follows the logic that people can and will be fair in an argument.

But what if people weren't fair? What if they didn't want to agree with your viewpoint, for profit or just to be malicious?

Then they would refuse to hear your arguments or even see eye to eye with you on the issue you differ on. At this point, the working solution would be to strongly force your viewpoint on the other person. But each of these methods do require that the other persons viewpoint be recognized by you. And it had the ill effect of being violent. Something to avoid.

Gandhiji, was the person who took this fight to new highs. His method was simply to refuse to see the other person's view, and to continuously present his viewpoint. All the other points, the fill the jail movement, or the Khadi movement, or the quit India movement, were shortcuts to force the view point on the other person without agreeing to their right to understand our viewpoint. It was to simply do go about doing things and if the process was stopped, do nothing else. This passive resistance also had one more effect - a outright refusal to understand or see the other persons viewpoint - If things could not be done our way, then they wouldn't be done at all.

Some people also say that we got independence because it was the British, and if it was the Japanese or Chinese, we would probably have been speaking japanese or mandarin today. This again would not have been possible. While i agree that, these 2 countries were/are barbaric, Gandhi's method would have worked even then.

Dictatorship, tyranny works on the motive of monetary profit. If monetary gains would need to be made then the country's people would need to be disciplined, so as to be working. If the balance sheet said losses continuously, The factory would be closed. Losses are simply expenditure exceeds profits. So slowly, but surely, the losses would be too much to continue.

Gandhi's method of non violence made sense in every way. I guess that's why he is revered.

Comments

Popular posts from this blog

Wicktionary Bookmarklet

A bookmarklet is defined by Wictionary as "A small piece of JavaScript code stored as a URL within a bookmark". I have been using bookmarklets to make my life easier from a long time. Some that I use regularly are [Read Now] : This makes it really easy for me to read pages which are unreadable. [Google Translate] : Translates pages [Mobilise This] : Formats the page for mobile viewing by Google. [Acronym lookup] : This helps me find the meanings for abbreviations. The links in [] brackets are bookmarklets. Just drag them to your bookmark bar. I picked these up from these two pages. There is also a whole website dedicated to them bookmarklets. As a developer, what i like about bookmarklets is that they are coded in JavaScript and i can meddle with them till my heart's content, without worrying about breaking anything. However, i wanted a bookmarklet that would allow me to look up meaning of words. Wiktionary was my open dictionary of choice. They d...

Markov chain in JavaScript

I made a small Markov Chain joke generator during my coffee break sometime last week. This is in continuation to the last post, where we did a similar thing. I did this specifically to see how well it could be extended in a language which I have typically not used before for ML/NLP. Let me run you guys through it. First of all, the Markhov Chains need a bunch of data to tell it how exactly you want your sentences constructed. str_arr=[sentence1, sentence2,...] Next, we create a dictionary of all trigrams present across the sentences. To do this, we use all bigrams as keys, and the succeeding word as the corresponding values. The key-value pairs thus form a trigram. As an example, consider the sentence : “The man had a dog.” The dictionary for this sentence will have : [ {[The, man] : [had]}, {[man, had] : [a]}, {[had, a] : [dog]} ] Next up, using the dictionary that we just made to create sentences. Here we provide the first two words, and let the function work...