Next Louisiana meet!!!
#151
Updated List
Southernrunner +1 ...cups
Clean85 Owner+1... utensils
Nashman69g +2....... taco dip
Trout2 +1 ............... dessert
Badass7 +1............. Dyan's Spinach & Artichoke dip
Mark57 +1 .............. hamburgers, chicken, 'dogs, buns, condiments & soft drinks
Freddie +2
Internal Com E
LMC3 +1 ................ chips
Recon fd +1
Barry +1 ................ appetizer
Hondahater +1
Art
Zoneblitz +1
Compusim2000
Dr. Shults +1
Cliff
Royaltrex7 (+1?)
MattG (+1?)
SonicRaT
Delta7
John Gainer
Royaltrex7 take I-55 S => I-10 W => I-310 S => U.S. 90 W. [BTW, U.S. 90 is also called "Future I-49 Corridor" from the West Bank all the way out to Lafayette].
John Gainer and Zonblitz I-10 E => I-310 S => U.S. 90 W. Barry Bordes (screen name = lynn bordes - he messed up when he registered on RX7 Club ) lives in Slidell. Shoot 'im a PM to arrange meeting up.
Everybody folding chair, laptop, camera and BYOB 'cuz this is shaping up to be big.
Southernrunner +1 ...cups
Clean85 Owner+1... utensils
Nashman69g +2....... taco dip
Trout2 +1 ............... dessert
Badass7 +1............. Dyan's Spinach & Artichoke dip
Mark57 +1 .............. hamburgers, chicken, 'dogs, buns, condiments & soft drinks
Freddie +2
Internal Com E
LMC3 +1 ................ chips
Recon fd +1
Barry +1 ................ appetizer
Hondahater +1
Art
Zoneblitz +1
Compusim2000
Dr. Shults +1
Cliff
Royaltrex7 (+1?)
MattG (+1?)
SonicRaT
Delta7
John Gainer
Royaltrex7 take I-55 S => I-10 W => I-310 S => U.S. 90 W. [BTW, U.S. 90 is also called "Future I-49 Corridor" from the West Bank all the way out to Lafayette].
John Gainer and Zonblitz I-10 E => I-310 S => U.S. 90 W. Barry Bordes (screen name = lynn bordes - he messed up when he registered on RX7 Club ) lives in Slidell. Shoot 'im a PM to arrange meeting up.
Everybody folding chair, laptop, camera and BYOB 'cuz this is shaping up to be big.
Last edited by mark57; 04-24-06 at 09:41 AM.
#159
nice to meet you guys officially and i will be in the 90 so yeah but anyway i cant wait i picked it up after work today and well needless to say it wasn't running got it running in 1 hour so i should have it right and running great for a na when i get there
#160
Yess Shawn, Steven said he was comming. I will call him and verify if he still wants to come.
Hey Jonathon, do yall do body/chassis work? My friend Steven has a red 2nd gen that was hit when parked by a drunk driver. The passenger side in the engine bay where the shock mounts has been pushed back about 2-3 inches. It snapped his suspension. Do you think you guys can fix that. If not he is going to take his engine out of that car and put it ina 1st gen. I was just wondering what yall could do.
Hey Jonathon, do yall do body/chassis work? My friend Steven has a red 2nd gen that was hit when parked by a drunk driver. The passenger side in the engine bay where the shock mounts has been pushed back about 2-3 inches. It snapped his suspension. Do you think you guys can fix that. If not he is going to take his engine out of that car and put it ina 1st gen. I was just wondering what yall could do.
#163
Boost Addict
iTrader: (3)
Joined: Nov 2001
Posts: 1,898
Likes: 13
From: Metairie, LA near new orleans
Countdown
Code:
<SCRIPT TYPE="text/javascript" LANGUAGE="JavaScript"> <!-- //start //###################################################################################### // Author: LimitlessFX.com (ricocheting) // For: public release (freeware) // Date: 4/24/2003 // Description: displays the amount of time until the "dateFuture" entered below. // NOTE: the month entered must be one less than current month. ie; 0=January, 11=December // NOTE: the hour is in 24 hour format. 0=12am, 15=3pm etc // format: dateFuture = new Date(year,month-1,day,hour,min,sec) // example: dateFuture = new Date(2003,03,26,14,15,00) = April 26, 2003 - 2:15:00 pm dateFuture = new Date(2006,3,30,9,0,0); // TESTING: comment out the line below to print out the "dateFuture" for testing purposes //document.write(dateFuture +"<br />"); //################################### //nothing beyond this point dateNow = new Date(); //grab current date amount = dateFuture.getTime() - dateNow.getTime(); //calc milliseconds between dates // time is already past if(amount < 0){ document.write("Now!"); } // date is still good else{ days=0; hours=0; mins=0; secs=0; amount = Math.floor(amount/1000);//kill the "milliseconds" so just secs days=Math.floor(amount/86400);//days amount=amount % 86400; hours=Math.floor(amount/3600);//hours amount=amount % 3600; mins=Math.floor(amount/60);//minutes amount=amount % 60; secs=Math.floor(amount);//seconds if(days != 0) document.write(days +" day"+((days!=1)?"s":"")+", "); if(days != 0 || hours != 0) document.write(hours +" hour"+((hours!=1)?"s":"")+", "); if(days != 0 || hours != 0 || mins != 0) document.write(mins +" minute"+((mins!=1)?"s":"")+", "); document.write(secs +" seconds"); } //--> </script>
#165
Boost Addict
iTrader: (3)
Joined: Nov 2001
Posts: 1,898
Likes: 13
From: Metairie, LA near new orleans
EVEN BETTER COUNTDOWN
Code:
<script LANGUAGE="JavaScript"> <!-- // Javascript Countdown - Version 1.0 1/20/2000 // by TDavid at http://www.tdscripts.com/ // Courtesy of SimplytheBest.net - http://simplythebest.net/scripts/ var now = new Date(); var event = new Date("Apr 30 2006 12:00:00"); var seconds = (event - now) / 1000; var minutes = seconds / 60; var hours = minutes / 60; var days = hours / 24; ID=window.setTimeout("update();", 1000); function update() { now = new Date(); seconds = (event - now) / 1000; seconds = Math.round(seconds); minutes = seconds / 60; minutes = Math.round(minutes); hours = minutes / 60; hours = Math.round(hours); days = hours / 24; days = Math.round(days); document.form1.days.value = days; document.form1.hours.value = hours; document.form1.minutes.value = minutes; document.form1.seconds.value = seconds; ID=window.setTimeout("update();",1000); } // --> </script> <p><font face="Arial" size="3">Countdown To Sunday April 30, 2006, at 0900 </font></p> <form name="form1"><p><font face="Arial" size="2">Days <input type="text" name="days" value="0" size="3"> Hours <input type="text" name="hours" value="0" size="4"> Minutes <input type="text" name="minutes" value="0" size="7"> Seconds <input type="text" name="seconds" value="0" size="7"> </font> </p> </form>
Last edited by nashman69g; 04-26-06 at 12:37 AM.
#167
Originally Posted by Trout2
Add Bruce Boda to the list, he'll be riding shotgun with me.
We need ole Z-Roc to show up for entertainment.
Jack
We need ole Z-Roc to show up for entertainment.
Jack
Jack, entertainment may be coming along. Unique Whips baby.........
add Z-Roc to the list
Last edited by badass7; 04-26-06 at 12:46 AM.
#168
Originally Posted by southernrunner
Yess Shawn, Steven said he was comming. I will call him and verify if he still wants to come.
Hey Jonathon, do yall do body/chassis work? My friend Steven has a red 2nd gen that was hit when parked by a drunk driver. The passenger side in the engine bay where the shock mounts has been pushed back about 2-3 inches. It snapped his suspension. Do you think you guys can fix that. If not he is going to take his engine out of that car and put it ina 1st gen. I was just wondering what yall could do.
Hey Jonathon, do yall do body/chassis work? My friend Steven has a red 2nd gen that was hit when parked by a drunk driver. The passenger side in the engine bay where the shock mounts has been pushed back about 2-3 inches. It snapped his suspension. Do you think you guys can fix that. If not he is going to take his engine out of that car and put it ina 1st gen. I was just wondering what yall could do.
they do really nice work! well it sounds pretty bad but they do have a frame
puller so....you would probably have to let the guys at city body look at it to know
for sure. i mean once you screw up the geometry between the strut towers and
centerline angle your ride will never be the same again (AKA FUCKED!). but what
do i know....im NOT a body man?! ~Jonathan
#169
Originally Posted by nashman69g
EVEN BETTER COUNTDOWN
Code:
<script LANGUAGE="JavaScript"> <!-- // Javascript Countdown - Version 1.0 1/20/2000 // by TDavid at http://www.tdscripts.com/ // Courtesy of SimplytheBest.net - http://simplythebest.net/scripts/ var now = new Date(); var event = new Date("Apr 30 2006 12:00:00"); var seconds = (event - now) / 1000; var minutes = seconds / 60; var hours = minutes / 60; var days = hours / 24; ID=window.setTimeout("update();", 1000); function update() { now = new Date(); seconds = (event - now) / 1000; seconds = Math.round(seconds); minutes = seconds / 60; minutes = Math.round(minutes); hours = minutes / 60; hours = Math.round(hours); days = hours / 24; days = Math.round(days); document.form1.days.value = days; document.form1.hours.value = hours; document.form1.minutes.value = minutes; document.form1.seconds.value = seconds; ID=window.setTimeout("update();",1000); } // --> </script> <p><font face="Arial" size="3">Countdown To Sunday April 30, 2006, at 0900 </font></p> <form name="form1"><p><font face="Arial" size="2">Days <input type="text" name="days" value="0" size="3"> Hours <input type="text" name="hours" value="0" size="4"> Minutes <input type="text" name="minutes" value="0" size="7"> Seconds <input type="text" name="seconds" value="0" size="7"> </font> </p> </form>
#171
Updated List
Southernrunner +1 ...cups
Clean85 Owner+1... utensils
Nashman69g +2....... taco dip
Trout2 +1 ............... dessert
Badass7 +1............. Dyan's Spinach & Artichoke dip
Mark57 +1 .............. hamburgers, chicken, 'dogs, buns, condiments & soft drinks
Freddie +2
Internal Com E
LMC3 +1 ................ chips
Recon fd +1
Barry +1 ................ appetizer
Hondahater +1
Art
Zoneblitz +1
Compusim2000
Dr. Shults +1
Cliff
Royaltrex7 (+1?)
MattG (+1?)
SonicRaT
Delta7
John Gainer
Z-Roc
It appears we have 40+.
Southernrunner +1 ...cups
Clean85 Owner+1... utensils
Nashman69g +2....... taco dip
Trout2 +1 ............... dessert
Badass7 +1............. Dyan's Spinach & Artichoke dip
Mark57 +1 .............. hamburgers, chicken, 'dogs, buns, condiments & soft drinks
Freddie +2
Internal Com E
LMC3 +1 ................ chips
Recon fd +1
Barry +1 ................ appetizer
Hondahater +1
Art
Zoneblitz +1
Compusim2000
Dr. Shults +1
Cliff
Royaltrex7 (+1?)
MattG (+1?)
SonicRaT
Delta7
John Gainer
Z-Roc
It appears we have 40+.
#173
Updated List
Southernrunner +1 ...cups
Clean85 Owner+1... utensils
Nashman69g +2....... taco dip
Trout2 +1 ............... dessert
Badass7 +1............. Dyan's Spinach & Artichoke dip
Mark57 +1 .............. hamburgers, chicken, 'dogs, buns, condiments & soft drinks
Freddie +2<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<Freddie will be out of town…
Internal Com
LMC3 +1 ................ chips
Recon fd +1
Barry +1 ................ appetizer
Hondahater +1
Art
Zoneblitz +1
Compusim2000
Dr. Shults +1
Cliff
Royaltrex7 (+1?)
MattG (+1?)
SonicRaT
Delta7
John Gainer
Z-Roc
It appears we have (40+) -3 freddie isnt come'n.....
Southernrunner +1 ...cups
Clean85 Owner+1... utensils
Nashman69g +2....... taco dip
Trout2 +1 ............... dessert
Badass7 +1............. Dyan's Spinach & Artichoke dip
Mark57 +1 .............. hamburgers, chicken, 'dogs, buns, condiments & soft drinks
Freddie +2<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<Freddie will be out of town…
Internal Com
LMC3 +1 ................ chips
Recon fd +1
Barry +1 ................ appetizer
Hondahater +1
Art
Zoneblitz +1
Compusim2000
Dr. Shults +1
Cliff
Royaltrex7 (+1?)
MattG (+1?)
SonicRaT
Delta7
John Gainer
Z-Roc
It appears we have (40+) -3 freddie isnt come'n.....