So Much for Walmart Bike Accessories
Posted in Cycling on February 8th, 2010 by coreyA while ago I posted about how impressed I was with my Co2 bike tire inflator from Walmart.
Then I saw this:
Oh well…back to Pricepoint, Jenson and the LBS I guess
A while ago I posted about how impressed I was with my Co2 bike tire inflator from Walmart.
Then I saw this:
Oh well…back to Pricepoint, Jenson and the LBS I guess
Here’s a little something I’m putting together to help make the world a better place:
sites.google.com/site/wiihackingfiles
And yes, I’ve done it to ours :D
One of my B.O.M.B. and International Christian Cycling riding buddies, Don, suffered a crash while riding his bike to work Friday. Details of the crash are sketchy, as he was alone, but he hit a concrete wall hard enough to crack his helmet in two and break his neck. He ended up in a coma, with no brain activity and unable to breath without a ventilator. The doctor said his injuries were consistent with being shot out of a cannon headfirst into a wall.
His family made the decision to stop life support yesterday, after which he passed quickly.
The team leader of our local club put it best:
The world is a sadder place today. Don was a caring and sharing kind of guy. He always had a spare tube or the right tool or the
right knowledge (weather, hydration, nutrition, directions, endurance, etc). We will miss him terribly on our BOMB rides.
I’m sure the kids that he helped on the IC3 Junior Team will miss him as well. And he leaves a big hole in the IC3 club because
Don was frequently leading rides, volunteering to help with races, and participating in just about everything.
He was a great guy in general and he was fun to ride with.
He will be missed.
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
I have nothing interesting to say today, so make sure you have no food or drink in your mouth, and watch this video:
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.
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:
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.
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.
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.
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.
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.
The upper loop of Quarry Mesa Trail:
The same loop, opposite direction, following a friend:
And finally, the trail back down off the mesa (with a nearly flat tire)
These were all edited with AVIDemux, and resized with ffmpeg. The soundtracks were mixed with Audacity.