Empty Spacesuit Becomes an Orbital Experiment

A failed experiment, sadly.

“We’ve equipped a Russian Orlan spacesuit with three batteries, a radio transmitter, and internal sensors to measure temperature and battery power,” says Bauer. “As SuitSat circles Earth, it will transmit its condition to the ground.”

I woke up this morning around 5:30AM to try to a tune in the SuitSat but all I heard was static. I tried the antenna on my handheld, the mounted 2M in the back, and an inverted “v” on the roof but no luck. Then I heard the bad news: the suit was silent. Speculation is that the batteries were too cold to operate and failed shortly after deployment.

Even though this experiment failed, it’s this kind of spirit that drives us forward. Onward, SuitSat II.

Roundup

Again work has kept me from doing anything other than work-related things but such is life. I’m doing something I enjoy and have enough of a stake in it to make it worth my while.

For the longest time I’ve been using the text editor vim for writing code. It doesn’t have all of the fancy features of a full-fledged Integrated Development Environment (IDE) but it suites my needs of being flexible and fairly easy to use. Scott has been talking about Kate lately so I decided to give it a try. Despite my misgivings about changing the status quo, I’ve discovered that Kate is very functional without the traditional bloat and overhead of your normal IDE.

Along with Kate I’m also giving KDE another spin. KDE 3.5 hit Ubuntu Dapper recently. I will probably end up back in GNOME, but I like to experiment with various window managers to see what others are doing. I really dig the window memory features that kwin has to offer. That, in my opinion, is my biggest gripe with GNOME/Metacity. It seems that while GNOME is making nice strides, Metacity is sort of just sitting there gathering dust. Enlightment 17 is also looking really good. Kyle may not believe it, but I think there could be a release in the not too distant future. I mean, even Duke Nukem Forever is going in full force. The end times must be close at hand.
I’m going to be doing a bit of travelling this year. So far we have trips planned to Nashville in March, upstate New York in June, Detroit, for Penguicon, in April, and potential work trips to Las Vegas in March and California spread through the year. I suppose I should sign up for frequent flyer miles now. Hopefully I’ll have enough free time during my trips to meet up with some people. I know Linux World is in Boston this year and I’m secretly scheming to arrange the time to go. It’d be good to actually meet some of the people doing the good deeds out there.

Getting gem to work in Ubuntu Dapper

Typically, you would install rubygems like so:

wget http://rubyforge.org/frs/download.php/5207/rubygems-0.8.11.tgz
tar xfvz rubygems-0.8.11.tgz

cd rubygems-0.8.11
sudo ruby setup.rb

Unfortunately, attempting to install anything will generate an error:

sudo gem install rails –include-dependencies
ERROR: While executing gem … (Gem::GemNotFoundException)
Could not find rails (> 0) in the repository

As I understand it, the Ruby package will look in /usr/lib/ruby/gems, but the rubygems tarball will look in /var/lib/gems. To get around this, create a symbolic link:

sudo ln -s /usr/lib/ruby/gems/ /var/lib/gems
sudo gem update –system
sudo gem install rails –include-dependencies