Sep 06, 2013 at 11:16 PM
Bicycle Pictures and Videos
Sep 07, 2013 at 12:15 AM
@ Jules
That alkali flats is very bad news for bicycles. Highly corrosive, and just nasty for all parts. Combine that with a constant wind, it is like Floyd from hell.
Sep 07, 2013 at 02:50 AM
Looks like a pretty typical Saturday in Prospect.
Sep 07, 2013 at 11:07 AM
Oh yes. Finally.

Sep 09, 2013 at 01:00 AM
Sep 09, 2013 at 01:16 AM
Oh. I was caressing it this weekend. Very pretty. I like the color scheme but like the gin and trombones one better.
Sep 09, 2013 at 03:08 AM
Edwin was building one up. My first impression is that it looks better in person than in the photos I've seen. Patrick and I tried chatting him up, (I want a bling/bling new cross bike) but he didn't seem in the mood. Some useful info gleaned though:
- First he says he doesn't have anymore FTBs. Then he's like, he might have one or two frames around.
- Then he says, that he's working on a new design for the FTB for next year. He says that it may or may not be disk brake only.
- He mentions developing replaceable dropout system that will allow for disc breaks or not.
I really wanted to talk to him about the whole disc breaks "not ready for prime time?" issue, but I'm a terrible schmoozer, and he wasn't really chatty.
Sep 09, 2013 at 03:32 AM
I talked to Edwin about discs at length and can share with you or anyone.
Sep 11, 2013 at 11:40 AM
Little one broke into my toolbox and found the valve extenders...
#familyman
#familyman
Sep 11, 2013 at 01:03 PM
^ But is it art?
Sep 19, 2013 at 02:36 AM
Sep 19, 2013 at 02:36 AM
Never mind, that link goes to 2012...blurg.
Sep 20, 2013 at 03:51 PM
I *knew* it! Johnny W in 3rd wheel... 1990's


Sep 20, 2013 at 04:52 PM
^shaved legs!!!!^
Sep 21, 2013 at 10:25 AM
^clean bike!!!^
Sep 21, 2013 at 11:47 AM
I had a pair of those Adidas shoes , so track
Sep 21, 2013 at 07:08 PM
Get it? Raising the BAR? That's right. I got the pink/grey limited
edition bartape at Rapha Clubhouse today. Joe and I stopped by after a
ride (Donovan sighting in Piermont!).
Saw a pic of their ride this morning. Do you have to wear Rapha on the Rapha ride? Do you ride 15 feet behind if not? Rapha Jail?
Having flashbacks to the awesome Fred-bombing of the Rapha ride with Jeremy Powers at Central last year. JP won the tacky mismatched throwback fred-kit of course.
Saw a pic of their ride this morning. Do you have to wear Rapha on the Rapha ride? Do you ride 15 feet behind if not? Rapha Jail?
Having flashbacks to the awesome Fred-bombing of the Rapha ride with Jeremy Powers at Central last year. JP won the tacky mismatched throwback fred-kit of course.
Sep 21, 2013 at 10:24 PM
@Owens the first step is admitting you have a problem
Sep 22, 2013 at 11:44 AM
is bar tape the only thing you could afford?
Sep 23, 2013 at 04:55 PM
Anyone know who runs our Instagram account?
Sep 23, 2013 at 05:01 PM
Wes, I manage all the online assets. Nice catch. I'll look into it. (It might already be ours)Wes Tillman said:Anyone know who runs our Instagram account?
Sep 23, 2013 at 05:03 PM
Yup, we own it.
Sep 24, 2013 at 09:38 AM
Hey, here's a question for you computer people who speak in code. I can't watch any new or "Season 4" videos from the new "Behind the Barriers" website. Older seasons I can watch. It seems another Mac owner was having the same problem. I tried both Safari and Firefox browsers, but all I get is a black box. Any ideas?
http://www.cxmagazine.com/barriers-episode-2-starcrossed-cross-vegas
http://www.behindthebarriers.tv/
Sep 24, 2013 at 11:20 AM
Chrome?
Sep 24, 2013 at 12:07 PM
reboot it.
Sep 24, 2013 at 01:30 PM
Velonews.com has it. I could watch it there.
Sep 24, 2013 at 04:45 PM
implicit double precision (o-z, a-h)
write(unit=6, fmt=102)
102 format(39h TILT ANGLE PROGRAM - PETER SHAW 3.5.81)
write(unit=6, fmt=100)
100 format('Enter UNTILTED ASTAR,BSTAR,GAMMASTAR: ',$)
read(unit=5, fmt=*) a, b, gamma
103 write(unit=6, fmt=101)
101 format('Enter TILTED ASTAR,BSTAR,GAMMASTAR: ',$)
read(unit=5, fmt=*) at, bt, gammat
c
if (at .le. 0.) stop
cosg = dcos((gamma * 3.14159) / 180.0)
cosgt = dcos((gammat * 3.14159) / 180.0)
c
sing = dsin((gamma * 3.14159) / 180.0)
c1 = (a * a) / (at * at)
c2 = (b * b) / (bt * bt)
c3 = (a * b) / ((at * bt) * cosgt)
c
c4 = ((a * b) * cosg) / ((at * bt) * cosgt)
ax = ((c2 * (c1 / c3)) * (c1 / c3)) - c1
bx = (c2 + (((2.0 * c2) * (c1 / c3)) * ((c1 - c4) / c3))) - c1
cx = (c2 * ((c1 - c4) / c3)) * ((c1 - c4) / c3)
disc = (bx * bx) - ((4.0 * ax) * cx)
if (disc .lt. 0.0) goto 200
psq1 = ((- bx) + dsqrt(disc)) / (2.0 * ax)
psq2 = ((- bx) - dsqrt(disc)) / (2.0 * ax)
if ((psq1 .lt. 0.0) .and. (psq2 .lt. 0.0)) goto 210
if (psq1 .gt. 0.0) pp = dsqrt(psq1)
if (psq2 .gt. 0.0) pp = dsqrt(psq2)
qq = ((c1 / c3) * pp) + (((c1 - c4) / c3) * (1.0 / pp))
xk = dsqrt(c1 * ((pp * pp) + 1.0))
write(unit=6,fmt=109) a,b,gamma
109 format(' Using untilted a*,b*,gamma*: ',3f10.3)
write(unit=6, fmt=110) pp, qq, xk
110 format(23h P,Q, AND SCALE FACTOR ,3f15.5)
phi = datan2(sing,(qq / pp) - cosg)
sinphi = dsin(phi)
cosphi = dcos(phi)
theta = datan2(pp,sinphi)
tanthe = dtan(theta)
phi = (phi * 180.0) / 3.14159
theta = (theta * 180.0) / 3.14159
write(unit=6, fmt=111) phi, theta
c
c CALCULATE ANGLE TO TILTED ASTAR ... THIS IS THE ANGLE ONE
c WOULD GET DIRECTLY FROM THE FILM, FOR EXAMPLE BY FINDING
c THE DIRECTION OF ZERO CHANGE IN THE C.T.F.
c
111 format(46h ANGLE FROM TILT AXIS TO ASTAR, AND TILT ANGLE,2f15.5)
cosphi = cosphi / dsqrt(1.0 + (((sinphi * sinphi) * tanthe) * tanthe))
phitlt = (dacos(cosphi) * 180.0) / 3.14159
write(unit=6, fmt=112) phitlt
112 format(41h ANGLE FROM TILT AXIS TO TILTED ASTAR ...,f15.5)
goto 103
200 write(unit=6, fmt=201)
201 format(28h DISCRIMINANT LESS THAN ZERO)
stop
210 write(unit=6, fmt=211)
211 format(37h TWO NEGATIVE ROOTS - SOMETHING WRONG)
stop
end
write(unit=6, fmt=102)
102 format(39h TILT ANGLE PROGRAM - PETER SHAW 3.5.81)
write(unit=6, fmt=100)
100 format('Enter UNTILTED ASTAR,BSTAR,GAMMASTAR: ',$)
read(unit=5, fmt=*) a, b, gamma
103 write(unit=6, fmt=101)
101 format('Enter TILTED ASTAR,BSTAR,GAMMASTAR: ',$)
read(unit=5, fmt=*) at, bt, gammat
c
if (at .le. 0.) stop
cosg = dcos((gamma * 3.14159) / 180.0)
cosgt = dcos((gammat * 3.14159) / 180.0)
c
sing = dsin((gamma * 3.14159) / 180.0)
c1 = (a * a) / (at * at)
c2 = (b * b) / (bt * bt)
c3 = (a * b) / ((at * bt) * cosgt)
c
c4 = ((a * b) * cosg) / ((at * bt) * cosgt)
ax = ((c2 * (c1 / c3)) * (c1 / c3)) - c1
bx = (c2 + (((2.0 * c2) * (c1 / c3)) * ((c1 - c4) / c3))) - c1
cx = (c2 * ((c1 - c4) / c3)) * ((c1 - c4) / c3)
disc = (bx * bx) - ((4.0 * ax) * cx)
if (disc .lt. 0.0) goto 200
psq1 = ((- bx) + dsqrt(disc)) / (2.0 * ax)
psq2 = ((- bx) - dsqrt(disc)) / (2.0 * ax)
if ((psq1 .lt. 0.0) .and. (psq2 .lt. 0.0)) goto 210
if (psq1 .gt. 0.0) pp = dsqrt(psq1)
if (psq2 .gt. 0.0) pp = dsqrt(psq2)
qq = ((c1 / c3) * pp) + (((c1 - c4) / c3) * (1.0 / pp))
xk = dsqrt(c1 * ((pp * pp) + 1.0))
write(unit=6,fmt=109) a,b,gamma
109 format(' Using untilted a*,b*,gamma*: ',3f10.3)
write(unit=6, fmt=110) pp, qq, xk
110 format(23h P,Q, AND SCALE FACTOR ,3f15.5)
phi = datan2(sing,(qq / pp) - cosg)
sinphi = dsin(phi)
cosphi = dcos(phi)
theta = datan2(pp,sinphi)
tanthe = dtan(theta)
phi = (phi * 180.0) / 3.14159
theta = (theta * 180.0) / 3.14159
write(unit=6, fmt=111) phi, theta
c
c CALCULATE ANGLE TO TILTED ASTAR ... THIS IS THE ANGLE ONE
c WOULD GET DIRECTLY FROM THE FILM, FOR EXAMPLE BY FINDING
c THE DIRECTION OF ZERO CHANGE IN THE C.T.F.
c
111 format(46h ANGLE FROM TILT AXIS TO ASTAR, AND TILT ANGLE,2f15.5)
cosphi = cosphi / dsqrt(1.0 + (((sinphi * sinphi) * tanthe) * tanthe))
phitlt = (dacos(cosphi) * 180.0) / 3.14159
write(unit=6, fmt=112) phitlt
112 format(41h ANGLE FROM TILT AXIS TO TILTED ASTAR ...,f15.5)
goto 103
200 write(unit=6, fmt=201)
201 format(28h DISCRIMINANT LESS THAN ZERO)
stop
210 write(unit=6, fmt=211)
211 format(37h TWO NEGATIVE ROOTS - SOMETHING WRONG)
stop
end
Sep 24, 2013 at 05:27 PM
Sep 24, 2013 at 05:57 PM
Nice article. But I didn't understand it. I mean, if I put my genius into all areas of my life, it'll get spread a little too thin.
Tau Lepton, however, may actually be the name of my next bike.
Sep 24, 2013 at 06:12 PM
