Kissena Forum Archive

Bicycle Pictures and Videos

4908 comments · 90771 views
I think I just won this thread.

http://dodgeandburn.gawker.com/burning-man-bikes-1258486796
@ 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. 


Looks like a pretty typical Saturday in Prospect. 
Oh yes.  Finally.

https://mail-attachment.googleusercontent.com/attachment/u/0/?ui=2&ik=a366361e7c&view=att&th=140f819c4305408f&attid=0.1&disp=inline&safe=1&zw&saduie=AG9B_P_AtQGe8uJxo7xwanR4fsNh&sadet=1378552001607&sads=MucOGPjrq6f0B972reAKI07Q7Dw&sadssc=1
http://instagram.com/van_dessel

Some (scant) photos of the new "Aloominator"
Oh. I was caressing it this weekend. Very pretty. I like the color scheme but like the gin and trombones one better.

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:

  1. First he says he doesn't have anymore FTBs. Then he's like, he might have one or two frames around.
  2. 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.
  3. 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.

I talked to Edwin about discs at length and can share with you or anyone.
Little one broke into my toolbox and found the valve extenders...
#familyman
^ But is it art?

Free cross vegas stream:

http://www.ustream.tv/crossvegas

Never mind, that link goes to 2012...blurg.
I *knew* it!  Johnny W in 3rd wheel... 1990's

image
^shaved legs!!!!^
^clean bike!!!^
I had a pair of those Adidas shoes , so track
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.


@Owens the first step is admitting you have a problem
is bar tape the only thing you could afford?
Anyone know who runs our Instagram account
Anyone know who runs our Instagram account
Wes, I manage all the online assets.  Nice catch.  I'll look into it.  (It might already be ours)
Yup, we own it.

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/
Chrome?
reboot it.
Velonews.com has it.  I could watch it there.
      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

that reminds me of:

http://www.theonion.com/articles/bush-finds-error-in-fermilab-calculations,1463/
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.
Is nobody going  to call @Stokes out on posting the formulae for the Flux Capacitor?

image