Race Across the Sky Encore

Posted in Cycling, Events on October 29th, 2009 by corey

We missed this due to it not showing in Moab where we were on vacation.

BUT…

They are showing it again on Nov. 12th!

Tickets go on sale Nov 6th

Tags: , ,

Posted in Asides on October 29th, 2009 by corey

So the dealer told us to p*ss off with our dead Kia.

But, I found a place that will sell us an engine for $950.00 once they get one in.

So, is it wrong that I’m wishing for some Kia Sorentos to wreck in this snowstorm?

Tags: ,

Moab, Fall 2009

Posted in Events, Family on October 26th, 2009 by corey

In pictures

Tags:

Funny Friday

Posted in Random Thoughts on October 16th, 2009 by corey

I have nothing interesting to say today, so make sure you have no food or drink in your mouth, and watch this video:

Tags: , ,

A Good Bike Accessory from Walmart

Posted in Cycling on October 4th, 2009 by corey

As an avid mountain biker, I don’t make a habit of looking for bikes or accessories at Walmart. However when I saw a Zéfal CO2 inflator for only $14.99, I couldn’t resist giving it a try.

C02 Inflator and Cartidges

The Zéfal accepts threaded 12 gram cartridges and either threaded or non-threaded 16 gram cartridges. It has no levers or trigger, but rather uses the pressure of the CO2 to depress the valve stem and compress the seal around the outside of the valve. This also allows it to automagically detect Presta or Schrader valves without any annoying head changes or adapters.

Instructions for inserting the cartridge and operating the unit are on the back of the package and are super simple:

Instructions for Illiterates

One note: the CO2 cartridge that comes with it has a rubber sleeve around it that prevents attaching the body of the inflator, but with threaded cartridges, it turns out the head of the unit can be used without the body attached. For threadless cartridges, the body must be screwed down in order to break the seal and activate the CO2.

Since I already had a flat tire from my last ride, I decided to go ahead and try out the new inflator.

Ready for assembly

After inserting the CO2 cartridge and disassembling the flat, I broke out the new tube and hit it with a quick burst from the inflator in order to prep it for the tire. Pushing the head onto the valve activated the inflation, and pulling it back stopped it, with no lost pressure.

After completely installing the tire I pressed the inflator onto the valve and let ‘er rip. Since the pressure is what depresses the valve stem, as the CO2 is depleted from the cartridge, the valve stem retracts until a sort of “break-even” point is reached. At this point I removed the inflator, again with no loss of pressure, and the tire felt well inflated. As a sanity check, I attached my floor pump and it registered about 50psi, which is significantly more than I normally run on the trail. Also, since my tires are 26×2.1″ I think it’s reasonable to assume that one 16 gram cartridge in this inflator would be suitable for a 26×2.3″ or possibly even a 29er tire.

Based on performance and ease of use, this is definitely a keeper! My Crank Brothers mini-pump was a pain in the butt to use, and never really worked all that well. The CO2 inflater is slightly heavier, but noticeably smaller with rounded edges that are conducive to stowing it in a pack.

Out with the old, in with the new

For transport, there is a hole in the bottom of the inflator body that allows a cartridge to be inserted upside down with the head of the pump screwed part way on. This saves space without the cartridge seal needing to be punctured until it is ready to be used.

Packed for stowage

This inflator has already taken its place in my camelback and will be traveling with me from now on.

There a few other considerations.

Even though the inflator is less expensive at Walmart than anywhere else I’ve seen, the cartridges are considerably more. Walmart wants $9.99 for a pair of threaded 16 gram cartridges, while Performance Bike charges $7.99 for the same thing and $6.99 for non-threaded. REI carries 16 gram non-threaded for $2.50 a piece.

If you use threaded cartridges, you could save a few grams by carrying just the head and not the body.

For solo expeditions deep into the wilderness, it would be prudent to carry a CO2 inflator that has a built-in, backup hand pump.

The bottom line: at $14.99 with an included cartridge, this is the best deal going for a CO2 inflator that works quickly and efficiently. It is small, stows well, and I have no problem recommending it, even if it IS from Walmart.

Tags: , ,

Remote X11 Forwarding Over SSH

Posted in Computer stuff on October 2nd, 2009 by corey

When I work at the office, I occasionally need to log into the desktop of a Linux box located remotely at the Data Center.
I could use VNC, but it is slow on this network, and unless I install tightVNC, the remote machine has to be already logged in order to access it.

My laptop is also Linux, so setting up remote X11 over SSH was actually quite simple.

Here’s a step-by-step how-to.

**Please note**

The following is case sensitive.
Pay attention to the different file names.
This assumes the ssh server is installed and running.
If your distro does not have an ssh server, consult its documentation for installing and enabling it.

On the remote ssh server machine, edit /etc/ssh/ssh_config.
Uncomment or add the following lines and make them match this:

ForwardAgent yes
ForwardX11 yes
ForwardX11Trusted yes

Still on the remote ssh server machine, edit /etc/ssh/sshd_config.
Uncomment or add the following lines and make them match this:

X11Forwarding yes
X11DisplayOffset 10
X11UseLocalhost yes

After editing and saving the above config files, restart sshd on the remote server, or simply reboot it.

From a terminal on the local ssh client machine, enter the following:

This command will create an instance of the X server at tty12:

X :12.0 vt12 2>&1 >/dev/null &

It will also switch you to the as yet unused tty12.
Press <control+alt+(F1-F7)> to get back to the terminal you launched the command from.

This command will open the ssh session to the remote server and activate X forwarding:

xterm -display :12.0 -e ssh -X -C your_user@remote_server &

Now switch to the terminal at tty12 by pressing the following keys:

<control+alt+F12>

You should see a password prompt, enter the appropriate password for the user.

If it is the first time connecting, enter yes to accept the ssh key.

Once the user is logged in, enter the command to start the desktop environment for the remote machine.

startkde
xfce-session
gnome-session

Your remote desktop environment should now come up on your local screen as if you were sitting at the physical machine.

There are a couple of minor caveats:

-You may need to set the screen resolution to be appropriate to the local monitor

-There will be a terminal window open with X11 messages scrolling in it. Do not close it or press <control+c> in it
as it will kill your X session and you will have to start it again.

-If you created and started the remote X11 session from a terminal in your local X11 session, closing this local terminal window will kill the remote session on tty12.

-I create the X instance at startup in /etc/rc.d/rc.local and then log into it when needed from a tty terminal.

-This allows my local X11 session to be completely detached from the remote one.

When you are done, simply logout of the remote desktop environment as you normally would.
You may also logout of the ssh session if you wish, or keep it active for later use.

Tags: , , ,