STR | SocalTrailRiders.org
Your Southern California
Mountain Biking Community
|
|||||||
| General Discussion For any bike discussion that doesn't belong in other forums. |
![]() |
|
|
Thread Tools |
|
|
#1 (permalink) |
|
What should I put here?
|
Trying to figure out how many bikes I should own and how many I have in my stable, this is what came to mind:
(X+1) = Y Where X is the number of bikes currently owned, and Y is the appropriate number of bikes one should own. ![]() Anyone got a formula for wheelsets? ![]()
__________________
To expand your comfort zone, you have to leave it!
http://www.BioniconUS.com/blog http://www.OTBMBC.com http://www.CORBAmtb.com |
|
|
| post thanked by: |
Alex (05-11-2008),
BFloFoxRider. (05-11-2008),
bighit8 (05-11-2008),
bigringrider101 (05-11-2008),
BrewMaster (05-12-2008),
bvader (05-12-2008),
DownHillPhil (05-11-2008),
el_d00der1n0 (05-11-2008),
Fishysticks (05-12-2008),
jasonmason (05-12-2008),
Justin (05-12-2008),
katonk (05-11-2008),
Kish Me (05-11-2008),
mtnbikerfred (05-11-2008),
ohyeah89 (05-11-2008),
Pain Freak (05-12-2008),
Pho'dUp (05-12-2008),
Pugz (05-11-2008),
SAR_boats (05-12-2008),
sdyeti (05-12-2008),
station (05-11-2008),
Sweetpea (05-12-2008),
Wrecker (05-12-2008)
|
|
|
#5 (permalink) |
|
STR Veteran
|
x+3=y
29er=training bike fr2000=trail IH Sunday= ![]() |
|
|
| post thanked by: |
Dino Brown (05-12-2008),
Lambda_drive (05-11-2008)
|
|
|
#6 (permalink) |
|
|
ok heres my equation
E=MC2 E being the number of bicycles you want. M being the amount of bicycles you own. C being the Bicycles you would like to own. 2 is the squared, proving that no matter how many bikes you own, there is always that many more bikes you would like to own ![]()
__________________
Brandon FLOres
You measure yourself by the people who measure themselves by you. This is How we do it! ![]() |
|
|
| post thanked by: |
bighit8 (05-11-2008),
denmother (05-12-2008),
kanga (05-11-2008),
Pain Freak (05-12-2008),
sdyeti (05-12-2008)
|
|
|
#8 (permalink) |
|
Formerly IntegraDriv3r
|
|
|
|
| post thanked by: |
BrewMaster (05-12-2008),
bvader (05-12-2008),
chauvinist_youth (05-11-2008),
Chewyeti (05-12-2008),
el_d00der1n0 (05-12-2008),
jasonmason (05-12-2008),
Justin (05-12-2008),
kanga (05-11-2008),
katonk (05-12-2008),
Lambda_drive (05-11-2008),
mp3 (05-12-2008),
ohyeah89 (05-12-2008),
Pho'dUp (05-12-2008),
SAR_boats (05-12-2008),
tbowren (05-12-2008),
Zippy (05-12-2008)
|
|
|
#9 (permalink) |
|
Senior Member
|
|
|
|
| post thanked by: |
BrewMaster (05-12-2008),
chauvinist_youth (05-11-2008),
Chewyeti (05-12-2008),
Justin (05-12-2008),
TrailJesus (05-11-2008)
|
|
|
#10 (permalink) |
|
Formerly IntegraDriv3r
|
Yeah but if you're dealing in the realm of real numbers then it doesn't exist which is why the cartoon is funny. I think that was last semester for me so I kind of put it in the back of my brain. Right now I'm concentrating on derivatives and integrals
![]() |
|
|
|
|
#11 (permalink) |
|
RRRRRR UUUUUUU Readyyyyyy
|
Bikulus for Dummies
One I've Solved X + 1 = Y – A X = current bikes 1 = new bike Y = wrath of wife A= skin off your a$$ One I'm Still Working On T = P(a) + S + 1 T = Time P(a) = how much “pre-sell” required for “acceptance” to buy new rig and not lose "benefits" S= Current stable size 1 = New addition to aforementioned current stable Something tells me second is not calculable (sp?) j/k my wife "accomodates" my 3 rigs with a smile (usually )
__________________
RIP: Taco Tuesday Funky Bunch Calling all Freaks -> http://www.socaltrailriders.org/foru...funkathon.html
|
|
|
|
|
#12 (permalink) |
|
Derailleurs R4 Failuers
![]() |
Via Occam's Razor (http://en.wikipedia.org/wiki/Occam%27s_razor):
Written in C... if( bikes ) { bikes++; }
__________________
Mark Butters: That looks dangerous... Cartman: Not getting busted always is. |
|
|
|
|
#14 (permalink) | |
|
STR Veteran
|
Quote:
Code:
while(++bikes);
__________________
My Blog |
|
|
|
| post thanked by: |
|
|
#15 (permalink) |
|
STR Veteran
|
I try to explain to my wife:
"Just because I have an extra frame or two that I build up and tear down, those DON'T count as bikes. Those are potential bikes and should not be included in the total count of kinetic bikes because the don't move." |
|
|
| post thanked by: |
el_d00der1n0 (05-12-2008),
ghixon (05-12-2008),
jasonmason (05-12-2008),
Justin (05-12-2008),
kanga (05-12-2008),
Kish Me (05-12-2008),
mp3 (05-12-2008)
|
|
|
#18 (permalink) |
|
STR Veteran
|
here's the C# version. i'm concerned you'll never get out of that one... ![]() Code:
public class Bike
{
private DateTime m_modelDt;
public DateTime ModelDate
{
get { return m_modelDt; }
set { m_modelDt = value; }
}
public Bike(DateTime modelDt)
{
m_modelDt = modelDt;
}
public TimeSpan GetAge()
{
return DateTime.Now.Subtract(m_modelDt);
}
public static int CalculatePerfectBikeCount()
{
bool needMoreBikes = true;
IList<Bike> bikes = new IList<Bike>();
TimeSpan maxAge = new TimeSpan(730, 0, 0, 0);
bikes.Add(new Bike(DateTime.Now));
while (bikes.Count > 0 || needMoreBikes)
{
bikes.Add(new Bike(DateTime.Now));
foreach (Bike bike in bikes)
if (bike.GetAge() > maxAge)
bikes.Remove(bike); //sell bike
}
return bikes.Count;
}
}
|












