Skip to main content

What do Pakistanis think about The West

Hello Everyone,



                   As you know there are two sides of a coin, so there are diverse opinions about The West in Pakistanis views. Some Pakistanis think of them to be super-humans and think that there are no better people than "Gora's" (Westerns) and others hate them thinking that they have a huge deficiency of  Moral values.

One side of the coin

People of west
People of the West- Pixabay
              The people who think westerns to be super-humans also think that there is an exception of corruption in the west, which, you know is a false concept. Some extremists of this type think of the westerns to be super-honest. They make them their ideals, follow them and try to be them. Well that's not all, they are also criticized by their elders who think The West to be violators of moral values and human rights. The people who think west to be their ideal are young and mostly teenagers.

Other side of the coin

           
People of Pakistan
A boy showing off his pride for Pakistan- Pixabay
   The other people, mostly the elder ones, think westerns to be extremist because of the colonialism they had been involved since the British India and we cannot erase the dreadful memories from their minds. One has to explain each and every detail of why he/she likes the western culture and so on. The bureaucrats of the country hate westerns the most and would not like any activity promoting the culture of the west or any political party being slave of the west. Westerns are mostly hated due to their secularism and liberalism as Pakistan is a conservative country.

So here's the conclusion,
No matter what do Pakistanis think about West or Westerns think about Pakistan, nobody can change the history..

                 

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 " <...