Monday, April 13, 2009

Build a DIY Truing Stand for less than $20

I have a few spokes that I need to replace on my old road bike and I wanted an accurate way to true up my wheel, so I whipped up a truing stand using some 1x4s that I had around the house and about $2 of hardware. It's cheap, simple and works really well.

Photobucket
I can use it on top of a table or workbench.

Photobucket
Boards screwed together as a T make it pretty stiff.

Photobucket
I used a couple of angle brackets for cabinets to mount the wheel. Just fully unscrew the quick release and slide the axle through the holes in the brackets and then screw the quick release back on to mount it.

Photobucket
This is the really cool part. I found this runout gauge at the thrift store a couple of years ago. It measures to a thousandth of an inch. If you don't have something like this, a stick could help you gauge the wobble or runout.

Photobucket
Using an angle bracket and screws, I can mount the gauge anywhere on the stand to measure different sized wheels.

Thursday, April 2, 2009

My April Fool's Prank

Yesterday I got several of my coworkers pretty good with a prank. I made a Visual Basic script file that popped up a serious looking error message saying that they the virus that was supposed to be going around yesterday was detected on their computer. They needed to reinstall windows.



The error will keep popping up if they hit Abort or Retry. After they hit ignore, this message comes up after 2 seconds.



If you want to do this too, here's the code.

Dim d1
do while MsgBox("win32 error:"& vblf & vblf & "The trojan aim20.2 has been detected in your system files. Please insert your Windows XP installation disc and reboot your computer.",18,"win32 error: System Error") <> vbignore
loop

d1 = dateadd("s",2,now())
do while d1 > now()
loop
MsgBox "Ha ha!!!!!!",64,"April Fools!"

Open Notepad, paste the code there and save it as a file with an extension of .VBS. Now when you run it, you will get a serious looking error message.

While one of my coworkers was away from her desk, I ran the file so that the error would be on her screen when she returned. She flipped out! When she saw that it was a joke, she about kicked my butt. She promised that she would get me back sometime.

If you move the file into the Start>All Programs>Startup folder, then it will run when they log on.

Monday, January 26, 2009

Subaru suspension

Last Friday the Subaru broke the front stabilizer bar. Check out the link for more.
http://www.ultimatesubaru.org/forum/showthread.php?p=625746&mode=threaded#post625746

Monday, January 12, 2009

Auto Increment ID numbers in Excel Templates

Today at work I needed to make an Excel template for a form that had an incrementing ID number on it. I needed the ID number to increase by 1 each time that the template was opened. After searching around awhile, I found this page that showed what event to use in the template so that the template would be modified before the new workbook that is a copy of it is created.

If you are using Excel 2007, you will have to save your template as a Macro-Enable Template (*.xltm) file or else this won't work.

I'm running 2007 and I tried modifying the template file and saving it before the new workbook is created, but Excel treated the template as a macro-disabled file when I tried to save even though the file was saved as xltm. As a result, I had to save the ID to a text file.

Place this code in the Workbook_Open() sub of ThisWorkbook:

On Error GoTo errh
'Read the file to get the current number
Dim FilePath As String
Dim MsgObj As Object, fs As Object
Dim rnum As String
Dim rnumnew As Integer

'Change this to your filepath
FilePath = "\\atgfps01\DATA\Accounting\Forms\currentid.txt"
Set fs = CreateObject("Scripting.FileSystemObject")
Set MsgObj = fs.OpenTextFile(FilePath, 1, 0) 'TristateFalse=0

rnum = MsgObj.ReadAll
rnumnew = CInt(rnum) + 1

'Change A1 to the cell holding your id number
ActiveSheet.Range("A1").Value = rnumnew

'Save over the file with the new number
Open FilePath For Output As #1
Print #1, rnumnew
Close #1

errh:
If Err.Number = 53 Then
MsgBox "The file that holds the current id is missing. It may have been renamed, moved, or deleted. It should be called " & FilePath, vbCritical, "Error"
End If

Wednesday, July 9, 2008

DMB Concert Goers

So Rochelle and I went to the Dave Matthews Band concert monday at lakewood. The concert was great. Tim Reynolds played with the band and did a really awesome rendition of Cornbread with the electric guitar.

While we enjoyed the concert, Rochelle and I are now of the opinion that we are to old to go anymore. We rode MARTA to the concert and coming back was a pain to say the least. We had to wait in a huge crowd of sweating, pushing, vomiting, cussing, and loud talking people. Most of the kids were highschoolers who are in a constant competition to be the loudest and dumbest in order to prove that they are the coolest.

I googled for "two aholes go to a dmb concert" and found the following post on a message board:
To those wo attended. Was there the usual after concert mayhem? Drunken, white, entitled, suburban fools acting like aholes, then blaming HPD for over reacting.
That pretty much sums it up...

Wednesday, June 18, 2008

First Bicycle Commute

Today marks the first time that I biked to work. It is also the first time that I used public transit for commuting

I planned on parking at the Cumberland Transfer Center at the Cumberland Mall and taking the #50 CCT bus to Powers Ferry Road. I would transfer to the #148 Marta bus which has a stop right by my office. I brought my bike because the two lines don't connect and I have to pedal from Powers Ferry to New Northside Drive which is about 1.1 miles.

I pedaled over to the bus stop at Powers Ferry and New Northside Dr and arrived at about 8:25. I waited until 9:08 and couldn't wait for the bus any longer so I decided to bike the rest of the way to work. It was a little over 5 miles. I think that I could get used to biking to work. I am so alert and full of energy.

Today was a beautiful day and I enjoyed the ride. I dropped my car at the Cumberland Mall, but I may ride from our apartment to the mall in the future. I just wanted to get everything figured out first.

Tuesday, June 17, 2008

End Spam from Website Registrations

I found an awesome website that will give you a disposable, temporary email account that you can then give to websites when you register. You can go and click the validation link in messages for up to one day. Try it out.

Step 1
Instead of giving your real email address to every website on Earth, just make up an imaginary name for @pookmail.com. Example: dontbotherme@pookmail.com
Step 2
Wait for your email to arrive.
Step 3
Login to PookMail.com by typing your imaginary email name (dontbotherme) into the login form, and click GO
Step 4
After 24 hours, the email associated with your login name will be cleaned from the system.

http://www.pookmail.com/