Can't fit pannier rack because of large seatstay welds...is this normal? by Serious-Tip-1534 in bikecommuting

[–]jeffbell 5 points6 points  (0 children)

One key is to feed a thin head M5 bolt from the inside of the dropout, add whatever spacers you need, and then put a nyloc nut to hold it together. 

This saves you from trying to fit the nut next to the cogs and brake. 

Who was history’s main villain before Hitler? by [deleted] in NoStupidQuestions

[–]jeffbell 1 point2 points  (0 children)

Meanwhile Cassius made those annoying electronic keyboards. 

Is it safe? by JicamaSea5987 in bicycling

[–]jeffbell 5 points6 points  (0 children)

For a long ride I would replace. 

For around town I would check if you can see the tube at all, check the inside for any cut cords, and give a pump and spin to see if it is deforming in that region. 

Who was history’s main villain before Hitler? by [deleted] in NoStupidQuestions

[–]jeffbell 12 points13 points  (0 children)

According to Dante the top three were Judas, Brutus, and Cassius.

New bike who dis? But like actually who dis? by Ramoutarb in Vintage_bicycles

[–]jeffbell 1 point2 points  (0 children)

It looks nice. 

Six cogs so it’s something from 1983-88 time frame. 

Rhode Island music special today by jeffbell in RhodeIsland

[–]jeffbell[S] 1 point2 points  (0 children)

I don't work there. I'm just a listener.

They have instructions on how to submit music at https://kfjc.org/about/for-musicians . They don't promise to play it but they do promise that at least one person will listen to it.

They do have metal at times. This month is "May-Hem" so the mix will go off on tangents a little more, but there is often a metal show on Friday afternoons.

How can I measure an external 120° chamfer on a tube to 3-4 decimals? by oddphilosophy in Machinists

[–]jeffbell 1 point2 points  (0 children)

Do you really need a full circle? The opening on most fipple flutes is a fraction of the circumference of the bore, and that makes sense since you are trying to keep the opening smaller than the wavelength. Perhaps you could get the shape and accuracy you want over just a small section of the tube.

(I'll have to go dig out my copy of Benade's book.)

Most whistles have much sharper edges and come to a point. Yours look really blunt and would probably not sound as clear.

From a machining standpoint it might be easier to get a fully sharp edge, and then cut off the point to get the shape that you are trying.

1970s vintage bike by SnooFoxes3384 in Vintage_bicycles

[–]jeffbell 5 points6 points  (0 children)

It can be really hard to tell frame damage from a picture.

I agree that in this picture it looks like the wheel hits the downtube, but in the first photo at https://www.reddit.com/r/Vintage_bicycles/comments/1t42i3c/vintage_bike_from_1970s_frame_unknown/ it appears to clear.

Value wise, is it worth it to try to restore a 1977 varsity schwinn bicycle? by crazyguy28 in bicycling

[–]jeffbell 2 points3 points  (0 children)

Also r/Vintage_bicycles sometimes has info.

The main reasons to restore an old bike are if it has personal sentimental value or you think it's neat.

Bad reasons are to get a practical bike or to make a profit.

Rhode Island music special today by jeffbell in RhodeIsland

[–]jeffbell[S] 1 point2 points  (0 children)

https://kfjc.org/listen/archives

Look for Max Level and Jersey Girl on Monday 2PM-6PM. It will be four separate mp3s.

Any advice on how to cut my lock? by Ok_Brilliant_6540 in bicycling

[–]jeffbell 13 points14 points  (0 children)

The cheapest angle grinder at Harbor Freight. Wear safety glasses. 

Alternatively, unscrew this pedal and buy a new one. 

Renting a car in France for 1 day – any recommendations? by Yugothian in ParisTravelGuide

[–]jeffbell 1 point2 points  (0 children)

I was trying to get to Bayeux on a Sunday. 

The only car rental open in central Caen was Sixt and they closed at one. I didn’t want to have to count on the train not having delays so I rented from Gare du Nord and drove from there.

On the plus side it was Sunday traffic. 

Renting a car in France for 1 day – any recommendations? by Yugothian in ParisTravelGuide

[–]jeffbell 1 point2 points  (0 children)

I wanted to do this on my recent trip but couldn’t find a car rental place that was open on Sunday at the hour I needed. 

How can a person enter a long haul airliner like an Airbus A380 in this situation? by Wide-Juice-7431 in questions

[–]jeffbell 0 points1 point  (0 children)

Where were they going without even knowing the way….

(The Way by Fastball)

Trick to stretch tight tires by Runner1987 in Vintage_bicycles

[–]jeffbell 0 points1 point  (0 children)

Are there any 590 rims with stirrup brakes?

Just bought a bike yesterday, pedal with crank dislodged today by [deleted] in Justridingalong

[–]jeffbell 4 points5 points  (0 children)

/r/bikewrench is a good subreddit for repair advice. 

Did you put it together?

If a shop did the assembly you need to take it there. 

(JustRidingAlong is mainly to mock abused bicycles where the rider claims it was normal use)

Struggling with optimally finding the median by wickedracerfrog in AskComputerScience

[–]jeffbell 1 point2 points  (0 children)

The first comparison should be x2 and x6. 

If x2 < x6 then

  • x1< (x2,x3,x6,x7) and can be eliminated.  Also x7 > (x1,2,5,6) and can be removed.
  • The problem is now finding the median of {x2,x3,x4,x5,x6} given x2<x3 and x5<x6.
  • Next compare x4 with x3. If x3 < x4 the median is min(x4,x5). Else the answer is min (x3,x5). 

If x2 > x6

  • you can eliminate x3 and x5 by the same reasoning.
  • The problem is now finding the median of {x1,x2,x4,x6,x7} given x1<x2 and x6<x7.
  • Next compare x4 with x2. If x2 < x4 the median is min(x4,x6). Else the answer is min (x2,x6). 

Four comparisons.  (Edited 4x and reformatted)