Posts

My Review of Bodylastics After Using It For Over a Decade

Image
I've had this blog post in draft form for a few years now, and am finally publishing it. At the time I originally wrote it, I was 100% behind Bodylastics, with a small caveat concerning the anti-snap technology. Now, I'm looking for an alternative due to the discrepancy in their explained max resistance amounts. Bodylastics is a system of stackable resistance bands used for exercise. I asked for a set as a Christmas present back in 2013 and have been using it ever since. At the time I received it, Bodylastics was a unique product, but since then many imitators have sprung forth. It's a product I use regularly and am quite happy with. But it's not without it's caveats, and the changes they've made in the past few years have not been for the better. The Product and Its Advantages Bodylastics produces multiple products these days, but the one I'll be discussing is the one they're known best for: stackable resistance bands. These are tube resistance bands wi...

Peggy Blanco

Nine months after I graduated high school, I got a new job…working at a high school. Whereas most of my classmates had post-graduation plans, I still didn’t know what I wanted to do with my life, so I spent some time taking a few classes at the local community college and continuing to work. I worked as a janitor. Definitely not my long term goal. At the end of each school day, I’d go up to the teacher’s lounge on the fourth floor and wait for classes to let out. Then I’d begin my rounds of emptying trash and sweeping floors. One of the teachers at the school was a lady named Peggy Blanco. One day, while waiting for classes to let out, I was in that teacher’s lounge with Peggy and the topic of what I wanted to do with my life came up. I told her that I was considering becoming and auto mechanic. “Oh Alan!”, she said. “You’re smarter than that!” I have to stop right now to explain that, because being an auto mechanic requires  intelligence, both in understanding how things work and ...

At Peace

“Some days I’m scared I’m gonna die. Or even worse: I might survive. I try to keep these words in mind: Nothing worth having comes without some kind of fight. Gotta kick at the darkness ‘til it bleeds daylight.” — Chris Hannah

How to Resolve the Angular AI Skills Install Not Creating a Symlink for Claude Code on Windows

Ran into this problem today and fought with it until finding a solution. Even Claude was stumped. I ran the installer for the official Angular AI skills via  npx skills add https://github.com/angular/skills , and selected Claude Code and Symlink as options, but no dice. Only the default .agents implementation was created. Here's the fix. First, make sure you're running your command prompt in admin mode. Second, create the .claude/skills/angular-developer  and/or  .claude/skills/angular-new-app  folders, depending on which skills you're installing. Then  run the npx command. That does the trick.

The Bicentennial Bell

Image
A gift to the U.S. from Great Britain during the Bicentennial. At some point in recent years, someone made the decision to move it outside without any protection from the elements. And it shows. Here’s a picture I took of it last year.

10 VR Games and Experiences I Like

My earliest preconception of VR was that it was  Doom  while wearing a headset. That's what I thought it was. I was way off. A few years ago at Christmas, my brother-in-law said "Try this", put his PlayStation VR headset on my head, and I was blown away. He had me a try a game where you ride a mine cart through a haunted carnival of sorts (I forget the name), and I was surprised that I could lean forward and peer around a corner. I couldn't believe it.  But I was hooked. Days later, I had acquired my own PlayStation VR, and given more time with it, could more easily notice the downsides: being tethered to the game console with the headset's wire, the need for an external camera, and a mild "screen door effect" due to the somewhat low resolution of the headset. From there, I progressed to the original Oculus Quest. Wireless, fully-contained, inside out camera tracking, with higher resolution than PlayStation VR. The downside here  was the mobile processor...

How to Fix Angular Control Flow Formatting in VS Code

Image
If you’ve used VS Code’s “Format Document” right-click option to format an Angular HTML template, you may have noticed that it doesn’t indent things the way you’d expect. Example:   In the code above, the option tag should be indented within the @for loop. There’s been a fix for this. 😊 If you edit the settings.json file in the .vscode folder, and add this, it will work:   After adding this to settings.json and using the “Format Document” option, it formats correctly.