Thule Car Top Repair

Plastic and I don’t get along.  Turns out the little plastic “clamps” break pretty easy.  Made some flat aluminum washers of sorts and brought them back to life.

May change how it sits on rails but I am pretty sure it will be below the rail surface.

Sputnik Jig Setup

Experimenting with slotting tubing for dropouts on Sheldon Horizontal Mill.  Vise allows pass through for stays and keeps various diameters centered on slotting saw.  For tapered tubes the vise can be tilted to compensate and a round wire on the top of vee block makes for rigid setup.

Sputnik main tube fixture on the old horizontal mill.

Sputnik Chainstay Fixture on M22 Diamond Mill.

Another view of slotting setup.  Cut a bunch of straight 4130 to dial it in.  

Jack Series

Messing around over the holiday…Just setting up and will figure out attaching them later.  Different materials always make welding them tricky.  Might figure out a mechanical connection…

Then and Now Volt Meter

Could not help myself…Just had to bring home the Rider VoltOhmyst.  Plugged her in and measured some voltage on some DC batteries as well as some ohms across some resistors. resistors. Dead on…Well after some adjustments and warming up.  Will put on the shelf now.

Dates around 1939.  

Installing Gradle on OSX via HomeBrew

Recent selenium project required use of Gradle.  Quickest way to install was via HomeBrew.  No rocket science but I find if I don’t write this stuff down I lose it quickly.

Install HomeBrew if you don’t have it installed already: goto http://brew.sh/

[code language=”bash” gutter=”false”]/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
[/code]

Use HomeBrew to install gradle

[code language=”bash” gutter=”false”] brew install gradle [/code]

Diamond Mills

Cleaning up and adjusting coming along pretty well.  Arbor removal was stubborn but done.  Cut some tubing on one of them just cuz… 

Rewired all done and motors good.  Rewired one of the coolant pumps…worked good until I reassembled…now showing some sparks.  On the list but don’t plan to use them anyway.  

More soon

Diamond M22 Horizontal Milling Machines

image

image

image

image

image

image

Two Diamond M22 Horizontal Mills.  Picked up this morning and got them both into the shop.  Trip was thankfully uneventful!  One is more complete than the other…missing overarm bracket and one crank.  Saved from county school system many years ago…very little wear and should clean up nice.

1000lb each

Made in LA..neat to find them on East coast.

image

image

image

Jenkins Install on AWS

Stolen from answer 1 – http://stackoverflow.com/questions/22415977/installing-and-managing-jenkins-on-amazon-linux

sudo yum update
sudo wget -O /etc/yum.repos.d/jenkins.repo http://pkg.jenkins-ci.org/redhat-stable/jenkins.repo
sudo rpm --import http://pkg.jenkins-ci.org/redhat-stable/jenkins-ci.org.key
sudo yum install jenkins
service jenkins start
sudo service jenkins start
sudo chkconfig jenkins on

Jenkins will be used to build/deploy ruby on rails – install Ruby on Rails as prescribed in previous post: Rails on AWS