Skip to main content

Th holocaust and Holland's Geert Wilders

      Talking about the founder of Dutch anti-Islam party, Party of Freedom (Partij voor de Vrijheid – PVV), Geert Wilders, who is holding Prophet Muhammad (S.A.W.W) cartoon competition has provoked violent responses all across the globe. He has banned every single mosque and Quran in the Netherlands. He has banned all the Muslim immigrants as well. His criticism on Quran and on Islam has made him famous. 
Geert Wilders-Wikimedia

      
      He says, "I don't hate Muslims, I hate Islam". It doesn't make any sense, you hate a religion and expect the followers of that particular religion will like you. Somebody, please call a psychiatrist, the patient needs some help with his mentality 
  
     I strongly condemn the blasphemy of our beloved prophet (S.A.W.W). Scrolling down the Social Media, I came across the people talking about the Holocaust and violently responding to the foolish act of Geert Wilders. No Muslim can accept anything against prophet Muhammad (S.A.W.W).  Let's discover what holocaust actually is?

Holocaust

Hitler
     Holocaust was a genocide, in which Nazi Germany along with its collaborators, and in the command of Adolf Hitler from 1933 to 1945, mass murdered two-third of the Jewish population, nearly six million people. Persecution and murder of other groups, including ethnic poles, Soviet citizens, Soviet war prisoners, gay men and political opponents etc, resulted in overall 17 million deaths. 

How is the Holocaust-related to the above-mentioned controversy?

skulls
     Let's find out the logic of relating holocaust to the cartoon competition. 
     According to Muslims, the Holocaust was held against Jews and Geert Wilders is also Jewish, so the Holocaust is being related to the Geert Wilders. However, Hitler's mother was a Catholic and compelled him to believe in the religion. Hitler didn't like Christianity and hated Christians and neither he was Jewish. He repeatedly wrote that he was on a divine mission from God to destroy Jews.

     The scoundrel, Geert Wilders is famous for his criticism on Islam, he doesn't assume Islam as a religion, but rather a totalitarian political ideology such as communism and fascism. He travels to Israel frequently, for political suggestions. 

      As mentioned above, he has banned all the activities of the Muslims, a common man can understand that he can do that, but the one can never understand why did he hold a cartoon competition. He always has bodyguards all around for the protection of his filthy soul and dirty body. 

      Please share it as much as you can.
    

Comments

Popular posts from this blog

CEME NUST, another aspect of story....

    There has been a rise in the controversy that the students of the College of Electrical and Mechanical Engineering, NUST are not treated nicely. However, I can assure that there is no other institution in Pakistan which can provide a healthy and grooming environment for the freshmen. They may provide you the advanced technology labs and buildings, but as a matter of fact, they will not train you for your better tomorrow as CEME does.      I am a student of CEME, and most importantly the most junior DE-40 in the CEME. I am against any of the rumors trying to damage the reputation of CEME, NUST. We are taught to be better persons for our society, we are taught to speak in front of public, we are taught to take responsibilities, we are taught to deal with the things calmly, we are taught to respect our elders and peers, we are taught to make decision quickly and precisely, we are taught to lead our life in a disciplined way.     As far as tha...

C++ Program for solving 2nd equatiion of motion (Kinematics)

As we know the 2nd equation of motion   #include<iostream> #include<cmath> using namespace std; void main() { double vi, vf, a, s; int eq; cout << "Press 1 to solve for acceleration, 2 for distance, 3 for initial velocity and 4 for final velocity \n"; cin >> eq; if (eq == 1) { cout << "Enter vf, vi and s \n"; cin >> vf >> vi >> s; a = (pow(vf, 2) - pow(vi, 2)) / (2 * s); cout << "Acceleration is " << a << endl; } else if (eq == 2) { cout << "Enter vf, vi and a \n"; cin >> vf >> vi >> a; s = (pow(vf, 2) - pow(vi, 2)) / (2 * a); cout << "Distance is " << s << endl; } else if (eq == 3) { cout << "Enter vf, s and a \n"; cin >> vf >> s >> a; vi = sqrt(pow(vf, 2) - 2 * a*s); cout << "Initial velocity is " <...