Monday, November 28, 2011

Giving Thanks for Family, Language and Toy Story

Thanksgiving has come and gone, and with it a full week of Language Stars.  The hard working teachers get vacation too, and the weekend before that Leilani had a sleepover at her grandparents.  This meant two Saturdays in a row without her weekly jolt of Spanish class to keep her progressing.  Since I'm sure you have similar issues, let me tell you some of the ways we made sure Leilani practiced her Spanish without going to class.

Of course with our family it's easier, we simply re-emphasized speaking in Spanish to Crystina's parents.  Since it was the holiday weekend we visited anyway, so this much was simple.  Since you may not have your own Spanish speaking in-laws, and suggesting you remarry is impractical, I'd say just talk as much as you can in the language your child is learning.  This means you'll have to learn a little of it too.  Such is parenting.

Beyond that Crystina started playing Christmas songs in the car.  Even though Christmas songs should not be played in the car before Thanksgiving I allowed it because she played Spanish Christmas songs.  Music is one of the best ways to prod a memory, be it a child's or yours, as shown by the scientific demonstration below.

Leiliani's friend Domenica came over, and interestingly enough she sometimes insists that Leili speak in Spanish.  She then turns around and insists her mother, who is Peruvian like my wife, speak in English.  Go figure.  They also wanted to watch a movie so we started watching Toy Story 3, but we turned the language to Spanish.  Tom Hanks has a lovely accent by the way.

The point of this mini-post is that while Language Stars may take breaks, you don't have to.  Just remember to keep finding ways to practice.

Of course you stopped reading this because you can't stop singing about how Albania borders on the Adriatic.

Saturday, November 12, 2011

On Abstraction, Translation and Teaching

Quick what is the following:

struct Node
{
   Node *prevNode;
   Node *nextNode;
}

Most of the readers probably said something like, "Damned if I know" while a couple of you that followed from my day job might have said something like, "That's the beginning of a doubly-linked-list." For those of you that do not have Computer Science degrees let me explain what that is. A doubly-linked list is a group of entities in computer memory that allows for adding and removing entities as well as traversing back and forth, via the pointers that go backwards and forwards.  Do you know what a pointer is?

Of course in order to explain how this works I have to explain computer memory, pointers, what the hell I mean by "traverse" and why can't I just have a list anyway.  That is if I want to explain it to somebody who doesn't know how to program.  To explain it to a computer programmer I just say "linked list" and I'm done.  Yet those same computer programmers had to learn all the things that lead up to the structure above, and now write that cool iPhone software you're using to read this without really thinking about it.  What does this have to do with language?

As a teenager you likely took classes in a foreign language.  At some point you conjugated verbs, at least I did when I took Spanish.  The verb "cantar" meaning "to sing" conjugates like this:

canto - I sing
cantas - You sing
canta - He Sings
cantan - They sing
cantamos - We sing.

This is conjugation in the present tense.  When I make my weak attempts to speak Spanish I have to think about all these conjugations and tenses while trying to pick the right words and pronunciate.  It usually ends comically.  If I try to ask my wife how to speak it she often struggles to explain it to me because she doesn't think about all those things.  She just speaks.

So what is the key?  Beginning programmers often struggle with Linked Lists in particular data structures, so they practice.  They do them over and over again.  Eventually they can do them in multiple programming languages on multiple machines without a second thought.  That's how it works with learning any language.