Archives for 2005

A do jang scene

Here I am (at left) with some good friends and workout partners helping and cheering a fellow student at testing.

Testing Committee for my 3rd dan test

In August of 2005 I tested for — and passed 🙂 — my 3rd dan promotion test in tae kwon do. Here is the testing committee.

Left to right are Master J.K Kim, Grand Master B.C. Kim (my instructor), Master Lim, and Master Park. With all due respect to tkd instructors the world over, I believe that a finer collection of TKD talent you will not find anywhere.

Waltz Across Texas with you in my arms…

After two and half years of planning and scheming we are finally "back home again" in central texas. For primarily equine-related reasons, we chose to drive the horses from Oregon to Texas ourselves — what an education that was. To mitigate some of the problems we expected our older horse to have with the long transport, we took rest days throughout the trip, thereby taking 13 days to complete 7 days of driving.
Jane has a pretty complete pictorial chronicle of the trip in her blog at www.janerohde.com.

Some special friends

A fine picture of just a few of the many fellow students whose friendship and mutual support I will always cherish.

This was taken before our promotion test, so this is the last picture of those belts. By evening there were brand new belts with another stripe!

Boards actually do hit back

Bruce Lee said "Boards don’t hit back" — which made for a great movie line, but it ain’t quite so: Newton’s laws assure us that boards hit us back with a force equal to how hard we hit them. Fine as far as it goes, and not much help either. The trick ultimately is to do it fast and let the derivatives do work on the relatively inflexible materials we break while doing little or no damage to the highly flexible body structures we use to break with.
This esoteric description is neither necessary nor ultimately particularly helpful in actually breaking stuff — that’s purely about doing it, no matter what your brain tells you ;-).
Here are some samples of my breaking from my 3rd dan promotion [click’em to take a closer look].

This is one of the easiest hand techniques to get right — which this isn’t a very good example of 🙁 — because I just walked up and smacked it with little or no finesse. I can break three if I do it right, so sloppy was good enough for just the one.
Most newer students are awed/scared by breaking with knuckles, but it really is not all that bad so long as you go fast and don’t flinch at the point of contact. Again, only a single board, so no big deal. Two is a bit harder and requires good alignment to keep from skinning the hands and raising bruises. Three requires (of me at least) very good holders and some serious psych to get ‘er done.
This is an easy way to get a big pile of wood chips out of multiple boards so long as you nail the aim. Speed is easier to get out of the legs than it is the hands because the muscles are sooo much bigger and the distances you can reach significantly longer — V2 = 2*a*s really does work!
I do this one a bit different than most people because both big toes are so screwed up (from jambing them in tkd) that I have trouble getting them into the right position for breaking with the ball of the foot like is taught. I use the top of the foot, the instep, and have no problems breaking two boards this way. But speed is absolutely(!) critical.
The hilight of testing at all black belt ranks is concrete breaking. I have struggled with this off-and-on when required to do knifehand strike, but I have never failed to break with palm strike. The two breaks require radically different technique. Shown here are the three 8" by 16" concrete patio pavers still tumbling to the floor as I withdraw from the strike.

Smiling through the pain

A certain amount of testing is just figuring out what you can make yourself do when you obviously can’t do anything more. To highten the tension, and thereby make everything more difficult, every test is different and the specifics of any challenges invented by the testing committee seemingly on the fly.
Case in point: Master Lim had already directed the 1st dan candidates to do 100 kicks and the 2nd dan folks 200 kicks so it is logical that for 3rd dan we should do 300 kicks. Here I am near the end of that ordeal gutting out the last of them. This picture catches me smiling — other moments might show more of a scowl, but I find the smile generally feels better.

Group shot

Here are we all, another stripe to our names, some with one, some with two, and still others with three, but none of us anywhere even remotely close to the masters that tested us.
Tae kwon do group shot

Links that open a new window. Do they pass PageRank and Link Reputation?

Spiders are simple little animals and the theory that guides the way search engines are built admit of few special cases, so generally speaking, a link is a link is a link. Let’s consider some cases.

The most often question is what happens for the target="_blank" case. This is very common so it would have staggering consequences if it did not act as a "normal" link. Moreover, treating it differently is theoretically unsound, as linking into a new window is not conceptually different, in terms of citation considerations, than linking in the current window.

The question of the use of style classes and DOM ids also comes up. I am certain that these are simply ignored by all search spiders, but that is a subject for another day (why spiders are so dumb).

BTW, OptiLink and OptiSpider both treat all of these links the same. The only exception is the rel="nofollow" attribute (Google’s simplified approach to Dynamic Linking) which is optionally processed by both programs so that our computation of Link Reputation will follow what Google does.

What kinds of “links” are spiderable

When most webmasters talk about links, they almost always mean "navigation". There are several ways to connect your pages together so that humans can get from one to the next.

By contrast, there is precisely one way for spiders to get from one page to another and that is the HTML <A> tag. To look at a page in your browser, you will often be unable to tell what navigation is actually spiderable links. That’s one of the primary uses of OptiSpider.

OptiSpider, like the search engines, is only able to follow <A> tags — all other kinds of navigation, like Javascript, and form buttons as two examples, are completely invisible to OptiSpider.

So, if you are uncertain if your navigation is spiderable or not, just run OptiSpider and see which links are found and which are not.

What are the problems in ranking?

First, let’s define terms.

Dynamic content generally means that pages are generated by some chunk of software by reading data from a database. This is a common design pattern for big catalog style websites.

But no matter how the content gets generated, it still ends up being just plain-ol’ HTML by the time it leaves your web server. What the browsers and search engine spiders see is no more nor less HTML than so-called "static" pages. So the content itself is certainly not a problem — the URLs might be.

To generate the right output, a catalog style site will typically use one or more parameters in the query string. For example, /product.jsp?model=12&color=green&style=7.

Historically, search engines have not liked these complex URLs because they will routinely lead to a (nearly) never-ending sequence of pages. A "plain" URL — one without a query string — tended to have an advantage over complex URLs.

 

This is not as much of a problem today as it once was, but it is still better to avoid complex URLs. To do so requires the use of a URL rewriting engine like Apache’s mod_rewrite module so it is fairly technical, but once done, a "dynamic" website can be made to look entirely "static".