Skip to main content

Cartoon of prophet

Danish newspapers again published again cartoon of Prophet Mohammad (peace upon him).

They call it "freedom of speech". I don't understand there definition freedom. As much as I know freedom means to do any thing without hurting anybody.
Cartoon is an art to entertain the people. It is very creative thing. But they used it do the destructive thing. How bad their mentality is.

Comments

  1. The Danish might've drawn cartoons of the Prophet but the Americans have made fun of Mother Mary in popular media such as "Southpark". It's high time people realise that such trivial things need to be tolerated and not taken too seriously. Taking such things too seriously only tends to hurt us. Similar feelings were portrayed by the Hindu fundamentalists when M. F. Hussain drew naked pictures of Hindu Gods and Goddesses. Now, how in the world does anyone know if these Gods/Goddesses actually wear clothes at all? Ignorance + Intolerance = Bad Idea. If you recall an infamous incident way back in '94 in Afghanistan, the Taliban(?) destroyed an ancient Huge statue of Buddha. Now something of such historic importance, if not religious, was destroyed just because of intolerance. In my honest opinion, tolerance will take us a long way. And correcting mistakes within is the first step towards correcting mistakes outside of us.

    (I ended up at your blog from your comment on distrowatch weekly BTW)

    http://nareshov.wordpress.com

    ReplyDelete

Post a Comment

Popular posts from this blog

opensuse repair is awesome

I installed OpenSuse 11.1 on my machine. I have done kde4/kde3/gnome installation. It takes about 40-45 minutes. After instaltion I installed Nvidia driver, nvidia driver has installed new kernel (containing trace in name). When I changed boot order to make trace default kernel, grub is installed on root partition than MBR, so my system become unbootable. I got only 2 days of holidays. I come to know abt this problem after I returned to my work city (Indore) from Home (Khandwa). So I could not fix the problem. So I have to fix it via phone. My brother booted the system with Opensuse 11.1 dvd. My brother is not very technical person but he is advace-level PC user. We have never used recover/rescue installed system option. We selected automated recovery mode. It first checks all partitions and packages, all of them found is good state, setup found error boot loader configuration, we loaded boot loader configuration from disk and found that grub is installed on root partition instead of M...

Adding additional class to a button in drupal

Recently we were building a multi-domain site, we are using same theme for all sites but we want to have different colors for buttons for each domain. We achieved this using my overriding theme_button in template.php of theme, here is the snippet. /** * Overwrite theme_button() * @file template.php */ function mytheme_button($variables) { $element = $variables['element']; // Add some extra conditions to make sure we're only adding // the classto the right submit button Now add our custom class if (isset($element['#attributes'])) { $element['#attributes']['class'] [] = 'button'; $domain = domain_get_domain(); $element['#attributes']['class'] [] = $domain['machine_name']; } $variables['element'] = $element; return theme_button($variables); }

html encode/decode in drupal

Like all major CMS drupal stores text fields in encoded html format, to prevent cross site scripting attacks. Some times drupal does not process custom fields and encoded text is displayed as it is. I come across similar issue in my current project. I also post question on StackOverflow. While search for solution I come to know about decode_entities function. decode_entities converts html encoded text to more friendly text. Similary to encode special charters in text you can use check_plain. decode_entities function http://api.drupal.org/api/drupal/includes!unicode.inc/function/decode_entities/7 check_plain function http://api.drupal.org/api/drupal/includes!bootstrap.inc/function/check_plain/7 My question on StackOverflow http://stackoverflow.com/questions/14229641/rss-feeds-view-showing-encoded-special-character-in-title