Skip to main content

Fun with Physical Therapy

I'd like to say I have a healthy distrust of the medical industry. I try to read between the lines when doctors talk to me, and I like to research myself to understand what's going on. Anyway, a few months ago I tweaked my shoulder pretty bad in the gym. Then I played golf, which didn't help. I decided to give physical therapy a try, figuring that it couldn't hurt.

Well, it hurt. After the first session of physical therapy, my shoulder felt stiffer and worse for the next couple days. After the next session, it felt even worse. All we were doing in the early sessions was ultrasound, which some people believe doesn't do anything, while others believe it stimulates the tissue to heal itself. It certainly does something, because in my experience, I got a painful dull ache in my shoulder during the ultrasound, and I asked the physical therapist to stop. That dull ache carried on in my shoulder for days, and my range of mobility (without pain) got worse and worse.

I continued doing physical therapy for about two weeks, and then since I quit my job, I stopped. Moved to Korea and my shoulder was still quite messed up, which meant I couldn't lift weights or workout. Maybe five weeks after I started physical therapy, I was really annoyed that my shoulder wasn't getting better (rest didn't help, theraband exercises didn't help), so I decided unilaterally on a different approach to healing my shoulder - I'd stop resting and start working out again.

Yes, that's right. Physical therapy and rest weren't helping, so I decided to try very light weight-lifting in order to fix my shoulder. The theory was that some scar tissue had built up in the joint from the earlier inflammation, and light exercises might break up that scar tissue and improve circulation enough to help the shoulder.

Within five days my shoulder felt twice as good. Range of motion improved, dull ache was gone. It still didn't feel good by any means, but was definitely on the upswing.

I continued adding weight and doing more exercises, carefully, while continuing to do theraband exercises for the rotator cuff. Now, about 4-6 weeks later, I can lift reasonable amounts of weight without pain, can do pushups again without pain, and am generally pretty happy with how things are going. Certain overhead exercises still hurt (there's still some sort of impingement), but my range of motion is pretty good, and probably better than most people's natural range of motion. I plan to keep working out and slowly improving the shoulder.

The point of this story is not that ultrasound is evil. In my one data point, it seemed directly to hurt, but it may in fact help in other cases. Nor is the point that physical therapy doesn't work. I've seen physical therapists do amazing things with people. The point is that it's worthwhile to listen carefully to what your body is telling you, and even when the medical establishment fails you, your body is often times smart enough to fix itself.

Comments

Popular posts from this blog

Why Korean Is Hard For Native English Speakers

A couple of days ago, as an experiment, I wrote my first blog post ever in a non-English language . It was an attempt to explain some of the reasons that Korean is hard to learn for native English speakers, so I figured I might as well try to write it in Korean. Those of you who actually read Korean can see how awkward the attempt was =). In any case, the post came from an email conversation I had with The Korean from  Ask a Korean , a fantastically well-written blog about all things Korea from the perspective of a Korean who moved to the United States during high school. Since I tend to geek out on language things, I figured I might as well post part of that conversation. An edited version follows. --------- Out of the languages that I've attempted to learn so far, Korean has been the hardest. I've done a lot of meta thinking about learning Korean, and I think there are a number of reasons it's difficult for non-Koreans (and especially Westerners) to learn: 1) Obvi...

10 other things South Korea does better than anywhere else

Recently this article about 10 things that South Korea does better than anywhere else  has been making the rounds on social media, but when I first read it, I couldn't tell if it was sincere or satire. A few of the items on the list are not very positive, such as "overworking" and "using credit cards". So, I thought I would try to put together a better list. Here are 10 other things South Korea does better than anywhere else: 1) Small side dishes, a.k.a. " banchan " (반찬) Banchan are by far my favorite aspect of Korean cuisine. Rather than the "appetizer and main dish" approach of the West, a Korean meal is essentially built around small dishes. Even a 5,000 won (about $5 USD) meal at a mall food court will come with two to four banchan in addition to the "main", and often people will actually choose restaurants based  on the banchan (e.g., seolleongtang , or beef bone broth soup, places tend to have the tastiest kimchi). Ther...

Pushing Python Performance With Parallelization

TL;DR: For certain types of programs, you can take advantage of idiosyncrasies in the Python interpreter and the host operating system to create real shared memory between processes and get some pretty good parallelization. Premature optimization is the root of all evil. As a developer, you've probably heard this before, and what it means basically is that you shouldn't waste time optimizing code unless it's already doing what you want it to do. We also live in an era of seemingly unlimited resources with AWS/Google Compute, and often the easiest way to get higher throughput in your programs or service is just to pay for more instances. But sometimes it's fun to see what sort of performance we can get on a simple laptop (and save some cash at the same time). So anyway ... I've been working on this thing, and it took too damn long to run, and I needed to run it lots and lots of times ... so, it was time to optimize. Basic optimization has two main steps: 1) P...