I’ve had a bad cold this week, and a Korean 감기 likely caught in a elementary school is a fairly vicious affair; it really knocks the energy out of you. Having an excuse not to do anything useful outside of school hours, I’ve been in very high spirits once each dose of “종합감기약” (lit. general cold medicine) kicks in. With nothing I feel I have to do, there’s no procrastination and so my primary source of unhappiness is disengaged.

continue reading this entry

Posted Sun 02 Nov 2014 09:32:00 UTC Tags:

As a non-Korean teacher I’m not supposed to have responsibility for enforcing disciplinary standards. My Korean co-workers are meant to do that, since they can do it in Korean. All I can really do is express displeasure; the pupils who need disciplining aren’t generally the ones who have a conversational level of English. However, responsibility does often fall to me because of one of my co-teacher’s personality. Sometimes she gets really riled by pupils behaving badly, but this doesn’t happen often and she isn’t much good at dealing with everyday rowdyness. So I’ve been trying out different strategies and seeing what works, and thinking a lot about the issues.

continue reading this entry

Posted Fri 21 Nov 2014 11:05:00 UTC Tags:

This is the first post in a series. Next post

I haven’t read any books on Korean sociology, politics or history. However, I’ve been living here for a year, have had plenty of different Korean friends including a girlfriend, and I’ve spent time engaging with other expats and Koreans about the things I’m about to discuss. A big place where I’ve done the latter is Waygook.org, a discussion board for foreigners in Korea, particularly English teachers. This board is divided between the sharing of teaching materials, practical discussions about where to get a credit card, how best to book a holiday from Korea to Thailand and the like, and discussions of Korean culture and sociology (politics is limited due to the language barrier). A lot of the posts on Waygook.org are just disgruntled expats venting their culture shock over and over again. However, there are also insightful posters who comment intelligently on the culture they are living in. And the repetitive disgruntled posts are a way of determining some patterns.

That’s my credentials and my data, such as it is. I intend to first describe some things about Korean contemporary culture that the English-speaking world might learn from. Then I will talk about Korea’s problems. Unfortunately, the latter list will be longer. It’s risky to say, given my situation as an expat who still experiences culture shock from time to time, with no academic experience in sociology. But I cannot escape my judgement that South Korea is in so many ways totally insane, as compared with the English-speaking world.

continue reading this entry

Posted Sun 23 Nov 2014 13:16:00 UTC Tags:

This is the second post in a series. First post; Next post

I’ll discuss some aspects of the country that Koreans have built for themselves in the past fifty years that stand out to me as worthwhile, and very much lacking in the West.

continue reading this entry

Posted Sun 23 Nov 2014 13:25:00 UTC Tags:

In a recent post I used the idea of humility with regard to our imprisoning of our pupils in school to generate some ideas about how to frame punishment in relation to reward in the classroom. I’ve another example of this from Korean schools to note. This will be quite rough.

continue reading this entry

Posted Wed 26 Nov 2014 05:51:00 UTC Tags:

This is the third post in a series. First post; Next post

I’ve written before about how age is important to Koreans, and it affects the language one uses to speak to someone who is merely one year older or younger than oneself. Most of this stuff is a quaint custom, and it’s often very sweet to hear younger students refer to older students as “older brother” and “older sister”, without thereby according them any more respect than they might get in a British primary school.

When it comes to discussing the problems that this cultural phenomenon creates among adults, we can discuss simultaneously the attitude taken towards a difference in age and the attitude taken towards a difference in position in an institution’s hierarchy. In a Korean hierarchy, it is accepted that the interests of those further up will take precedence over the interests of those further down—and these interests can be petty, as we will see in my examples. In our school, the same manipulation that teachers employ to keep our pupils in line gets applied to the teachers themselves by those higher up in the hierarchy: respect flows upwards, but there is no respect for those lower down as being, again, autonomous human beings trying to do their jobs and also live their lives.

An elementary school is a particularly conservative environment, and I believe the relationship between the principal and vice-principal and the rest of the teaching staff of my school is a paradigm case of how bad things can get. I will give several examples which are common to schools across the country.

continue reading this entry

Posted Wed 26 Nov 2014 21:42:00 UTC Tags:

This is the fourth post in a series. First post; Next post

It is often said that various east Asian cultures emphasise the good of the group over the good of the individual to a greater extent than we do in the West. In the Korean case this turns out to be an in-group, out-group culture that means less respect and more selfishness all round. Certain Western values, that I believe make life better for everyone living in English-speaking cultures, get applied much more narrowly by the average Korean.

If one is perceived by a Korean as being in their group, one gets treated very well. People make big sacrifices for their families, and make efforts to maintain ties with old friends. But if one is not in a Korean’s group, standards are lower. In particular, the fact that strangers too are individuals trying to lead their lives gets trampled on. It’s also the case that in-groups are often defined by societal expectations rather than genuine interpersonal ties and bonds.

continue reading this entry

Posted Thu 27 Nov 2014 00:47:00 UTC Tags:

There are a great deal of absurdities that mean my job offers only rare opportunities for teaching English. One way that I keep myself sane is by making my fulfillment of various institutionally-defined roles as efficient and as low-effort as possible. I might be wasting my time and the time of my pupils, but goddammit, I’m going to do so efficiently.

continue reading this entry

Posted Fri 28 Nov 2014 00:04:00 UTC Tags:

Religious faith empowers people to overcome fear. Without fear, the capacity of man is dazzlingly greater than what we find our capacities to be in everyday life. A powerful faith is a commitment to sceptical, quietist philosophy. In the painting The Death of Socrates, Socrates is seen in a pedagogical stance. His raised finger shows that he seeks to enlighten those around him and that he has a deep confidence in what he is telling them. A great many groups have claimed to be Socrates’ heirs, including the bourgeoisie philosophical Academy.

continue reading this entry

Posted Sun 30 Nov 2014 05:12:00 UTC Tags:

If you don’t need to run a constructor function to make your new object, you can call Object.create():

  var a = {a: 1}; 
  // a ---> Object.prototype ---> null

  var b = Object.create(a);
  // b ---> a ---> Object.prototype ---> null

I think that this is what Douglas Crockford is trying to do here with versions of JavaScript that don’t have the relatively new Object.create().

If you want your new object to be a kind of class, that is, a constructor function that inherits from some other constructor function, this is a readable way of doing so:

function ChildClass (...) {
    // call the parent class constructor to give `this`
    // all the properties and methods its parent class has
    ParentClass.call(this, ...);

    // then code that makes the child different from the parent:
    // may well override (some of) what the parent class
    // constructor just did
}
ChildClass.prototype = new ParentClass;

These idioms need to be made more complex to work with at least some jQuery plugins. Perhaps jQuery.proxy() is all that’s needed.

Sources: 1, 2

Posted Sun 30 Nov 2014 08:54:00 UTC Tags: