Chevy K10 truck restoration Phase 2: Body Work and Rust Removal, Part 2

Submitted by Danny on Thu, 04/30/2015 - 14:21

More body work! I'm swapping front clips because I like the round eye headlight style and the fenders that go with it will allow me to use the older style chrome trim. But the front clip I found off a 73 or 74 c20 has a lot of rust and will need work. The learning experiment continues, this time I learn how to weld patch panels with a flux-core, wire-feed welder.

Book Review: Still Life With Woodpecker

Submitted by Danny on Tue, 04/28/2015 - 06:16

This is less of a book review and more of a confession.

I was in a Paris hostel at the end of a fast-paced, somewhat derenged week (it was one hell of a vacation) and feeling a little down now that it was coming to an end, when a hostel-hopping Australian started giving me life advice. His first piece of advice was to read Fierce Invalids Home From Hot Climates by Tom Robins, but first, he said, read his more popular novel Still Life With Woodpecker to make sure I can handle his writing style. 

Chevy K10 truck restoration Phase 1: Acquisition & Engine Rehab

Submitted by Danny on Mon, 04/27/2015 - 14:54

After completing my book, I needed some mental rehabilitation. Something therapeutic and relaxing. I also had a (small) wad of cash from the deal so I decided to buy an old truck! I found this old guy, I've named him Hank, someone's old hunting truck. It belonged to an older gentleman in Wyoming and he gave it to his grandson who was entering the marines. The grandson drove it to Missouri and sold it to the guy I bought it from. I have no idea at what point in the truck's life that the engine was swapped out for a 350 and it was converted from 2wd to 4wd! The VIN shows it's a 2wd truck but it is most definitely a 4wd. So it was either converted to 4wd, or a cab with the exact same color scheme was swapped (unlikely). Someone put a lot of money into this truck, and it's kept it's value pretty well. Only a loose bolt and little bit of rust here and there (I'll soon learn just how "little").

I think I wrote a book: Functional Programming in JavaScript

Submitted by Danny on Thu, 04/23/2015 - 14:56

You never know where life will take you. It may take you rock climbing in Argentina, it may take you to a farm in Nebraska, it may take you to a high-rise building in San Jose. Starting in October 2014, life took me (or, my name at least) to a publishing company in Birmingham, United Kingdom. A colleague of mine, Trent Hauck, wrote a book for the same publishing company and asked me to be a technical editor. I said sure! Little did I know that the experience would end up with me writing a book of my own.

Functional Programming in JavaScript by Dan Mantyla

Free! Honda CB200 CL200 Owners Manual and Workshop Service Manual free downloads

Submitted by Danny on Thu, 04/23/2015 - 14:00

Don't know why I didn't share this sooner! The Factory Service Manual (FSM) is a MUST!! It's also called the Workshop Service Repair Manual. The owners manual is nice to have too. It's also fun (for lack of better word) to find that the two documents contradict each other on a few things. For example, the owners manual says to tighten the cam chain by putting it in TDC first, while the FSM says to do it while the engine is running. I do as the FSM says.

DIY guitar pedal board

Submitted by Danny on Wed, 01/21/2015 - 00:54

DIY effect pedal board for stomp boxes, homemade from a suitcaseWhat do you do with an old suitcase and a pile of stomp boxes and patch cables? Turn it into a pedal board! This was a really fun project, one that doesn't require a whole lot of planing and can be made with things laying around the house. Here's how I made it.

Evaluating Old Honda Twins - Six Easy Steps

Submitted by Danny on Thu, 01/15/2015 - 12:27

I am reposting this gem of information for HondaTwins.net. The origintal article is here - http://www.hondatwins.net/.../evaluating-old-honda-twins-six-easy-steps.html - but as you can see is has been removed. It was an invaluable piece of information for me as a beginner, so it is my hope that other beginners will find this and get the help they need. Below is the transcribed article, all credit goes to someone by the name of Bill (who, I believe, was badly injured in a wreck and he deleted his account, very sad.)

Using Javascript/jQuery to check if offsite file exists with given URL

Submitted by Danny on Thu, 10/09/2014 - 15:30

So I needed to see if an MP3 was successfully uploaded to our streaming server, and display the status on our website where our user's access the upload form. However, I ran into some issues with Access-Control-Allow-Origin access headers and with just how to acquire the status code. It always fails, whether or not the file does exists, because the browser doesn't allow XMLHttpRequest from a different domain to try and prevent cross-site-scripting. The solution? Using the JSONP datatype, a sort of consensual cross-site scripting hack!

How to add Google Web Fonts directly to your stylesheet

Submitted by Danny on Mon, 05/19/2014 - 12:15

If you're using a CMS such as Drupal or Wordpress, it's not possible to add the link tag for the css file that google provides you&ndash; i.e. <link href='http://fonts.googleapis.com/css?family=Oswald:400,700,300' rel='stylesheet' type='text/css'>&ndash;without installing a module that would allow it (and who wants another module to maintain?). Here's a quick workaround I discovered that makes it really easy to simply add the css code you need directly to your stylesheet.

Mind: blown. Zen and the Art of Motorcycle Maintenance book review

Submitted by Danny on Tue, 05/06/2014 - 14:42

Zen and the Art of Motorcycle Maintenance is not one of the books where you say "Well, that was a good book.." after finishing it. No, it's the type of book that you hold for a little while after finishing the last page as your mind is racing to comprehend the magnitude of what has just been delivered to it. Followed by flipping through the pages to find a note in the margins or an unread prologue or afterword that could possibly add some explanation. Followed by more thinking.

Photoshop Tutorial: Foggy Stage Lights

Submitted by Danny on Thu, 04/24/2014 - 12:00

I set off to create a background image for a website I'm making for a friend who wants to host his pod casts about the band Nine Inch Nails. I came up with a good idea, after finding some inspiration, but I needed to create it myself pixel-by-pixel to get the resolution I needed. What fallowed was an experiment with fog and light effects, and the end result came out pretty good!

Inspect and save apache request headers

Submitted by Danny on Tue, 04/22/2014 - 13:07

I wrote this function because one of our web apps that was communicating with our web server suddenly began receiving Error 406: Not Acceptable (The requested resource is only capable of generating content not acceptable according to the Accept headers sent in the request). So I inserted this bit of code to capture exactly what that accept header was and see if we could fix the problem. It writes the output to a file on the webserver.