User Tag List

Thanks Thanks:  0
Likes Likes:  0
Page 17 of 75 FirstFirst 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 67 ... LastLast
Results 241 to 255 of 1125
  1. #241
    Join Date
    Dec 2002
    Location
    upstate N.Y.
    Posts
    14,633
    Thanks (Given)
    8
    Thanks (Received)
    56
    Likes (Given)
    40
    Likes (Received)
    356
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Bruce used to have a Condor squirtboat,and has talked about getting another one,looks like he pulled the trigger!! one can nevr have too many toys!!!
    why ask me ?


  2. #242
    Join Date
    Dec 2005
    Location
    Suffern, NY
    Posts
    1,695
    Thanks (Given)
    0
    Thanks (Received)
    14
    Likes (Given)
    6
    Likes (Received)
    177
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Oh I thought that was one of those portable snow making machines!

  3. #243
    Join Date
    Dec 2002
    Location
    upstate N.Y.
    Posts
    14,633
    Thanks (Given)
    8
    Thanks (Received)
    56
    Likes (Given)
    40
    Likes (Received)
    356
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    could be this time of year!!
    why ask me ?


  4. #244
    Join Date
    Jun 2005
    Location
    near Lake George, NY
    Posts
    2,257
    Thanks (Given)
    21
    Thanks (Received)
    128
    Likes (Given)
    280
    Likes (Received)
    735
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by stokernick View Post
    50* next six days,could be the start of another early season!!
    ice out on Lake George....well, it was never really in.

    Went canoeing yesterday, I think I hit a record 1.5 mph down wind!
    1983 Shadow 21, Yamaha 250 HPDI
    1961 Grumman 13, Johnson 15, "Gunkhole"
    1931 Hacker Hydro, Phantom 75
    1930 Sea Lyon 28, Scripps 208, "Tomahawk"
    1929 Chris Craft 24, Chrysler 115, "Reflection"
    _________________________
    Photography:
    KAOS Imagery

    Flickr
    Facebook


  5. #245
    Join Date
    Dec 2002
    Location
    upstate N.Y.
    Posts
    14,633
    Thanks (Given)
    8
    Thanks (Received)
    56
    Likes (Given)
    40
    Likes (Received)
    356
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    getting closer!! we still have 14'' here at fashionable Caroga Lake!!!
    why ask me ?


  6. #246
    Join Date
    Sep 2001
    Location
    Fairfield, CT
    Posts
    18,325
    Thanks (Given)
    30
    Thanks (Received)
    298
    Likes (Given)
    116
    Likes (Received)
    2301
    Mentioned
    2 Post(s)
    Tagged
    2 Thread(s)
    It softened up today

    Living in the Freedom provided by Bud Conner and his fellow warriors.
    R.I.P. my Heathen Brother






  7. #247
    Join Date
    Apr 2001
    Location
    Johnstown, NY
    Posts
    10,063
    Thanks (Given)
    0
    Thanks (Received)
    0
    Likes (Given)
    0
    Likes (Received)
    3
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Yay Bruce bought me a boat!!!!!!

  8. #248
    Join Date
    Dec 2002
    Location
    upstate N.Y.
    Posts
    14,633
    Thanks (Given)
    8
    Thanks (Received)
    56
    Likes (Given)
    40
    Likes (Received)
    356
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    you already have a boat,you need an engine!!
    why ask me ?


  9. #249
    Join Date
    Nov 2006
    Location
    Long Island
    Posts
    1,853
    Thanks (Given)
    27
    Thanks (Received)
    36
    Likes (Given)
    219
    Likes (Received)
    227
    Mentioned
    0 Post(s)
    Tagged
    1 Thread(s)
    How many days?
    21 Intimidator 300x Sold
    http://www.youtube.com/watch?v=KBoYUJ58sLE

    1/2 21 Skater 300x Sold
    http://www.youtube.com/watch?v=tKNFL8b6kWo

    30 Activator 850 HP Sold
    https://youtu.be/NZgOTNGKzqg

    30 Concept Twin 300Rs

  10. #250
    Join Date
    Sep 2001
    Location
    Fairfield, CT
    Posts
    18,325
    Thanks (Given)
    30
    Thanks (Received)
    298
    Likes (Given)
    116
    Likes (Received)
    2301
    Mentioned
    2 Post(s)
    Tagged
    2 Thread(s)
    http://countdown.onlineclock.net/<SCRIPT language=JavaScript type=text/javascript>
    <!--
    dateFuture = new Date(2012,5,7,19,59,51);
    function GetCount(){
    dateNow = new Date(); //grab current date
    amount = dateFuture.getTime() - dateNow.getTime(); //calc milliseconds between dates
    delete dateNow;
    // time is already past
    if(amount < 0){
    document.getElementById('countbox').innerHTML="Now!";
    }
    // date is still good
    else{
    days=0;hours=0;mins=0;secs=0;out="";
    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){out += days +" day"+((days!=1)?"s":"")+", ";}
    if(days != 0 || hours != 0){out += hours +" hour"+((hours!=1)?"s":"")+", ";}
    if(days != 0 || hours != 0 || mins != 0){out += mins +" minute"+((mins!=1)?"s":"")+", ";}
    out += secs +" seconds";
    document.getElementById('countbox').innerHTML=out;
    setTimeout("GetCount()", 1000);
    }
    }
    window.onload=function(){GetCount();}//call when everything has loaded
    //-->
    </SCRIPT>
    Living in the Freedom provided by Bud Conner and his fellow warriors.
    R.I.P. my Heathen Brother






  11. #251
    Join Date
    Sep 2001
    Location
    Fairfield, CT
    Posts
    18,325
    Thanks (Given)
    30
    Thanks (Received)
    298
    Likes (Given)
    116
    Likes (Received)
    2301
    Mentioned
    2 Post(s)
    Tagged
    2 Thread(s)
    Living in the Freedom provided by Bud Conner and his fellow warriors.
    R.I.P. my Heathen Brother






  12. #252
    Join Date
    Sep 2006
    Location
    not here
    Posts
    3,374
    Thanks (Given)
    203
    Thanks (Received)
    423
    Likes (Given)
    382
    Likes (Received)
    693
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    We (rossi crew) plan on being there, but no camping this year. Either day trips or staying at a friends place on the lake.
    '03 21ft Inboard skiboat V-8
    '70 14ft Winner, 90hp Merc
    '22 21ft Inboard skiboat electric

  13. #253
    Join Date
    Nov 2005
    Location
    MAINE
    Posts
    2,825
    Thanks (Given)
    21
    Thanks (Received)
    27
    Likes (Given)
    805
    Likes (Received)
    107
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by electricjohn View Post
    We (rossi crew) plan on being there, but no camping this year. Either day trips or staying at a friends place on the lake.
    what days is the crew goin to be there?

  14. #254
    Join Date
    Dec 2002
    Location
    upstate N.Y.
    Posts
    14,633
    Thanks (Given)
    8
    Thanks (Received)
    56
    Likes (Given)
    40
    Likes (Received)
    356
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by transomstand View Post
    http://countdown.onlineclock.net/<SCRIPT language=JavaScript type=text/javascript>
    <!--
    dateFuture = new Date(2012,5,7,19,59,51);
    function GetCount(){
    dateNow = new Date(); //grab current date
    amount = dateFuture.getTime() - dateNow.getTime(); //calc milliseconds between dates
    delete dateNow;
    // time is already past
    if(amount < 0){
    document.getElementById('countbox').innerHTML="Now!";
    }
    // date is still good
    else{
    days=0;hours=0;mins=0;secs=0;out="";
    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){out += days +" day"+((days!=1)?"s":"")+", ";}
    if(days != 0 || hours != 0){out += hours +" hour"+((hours!=1)?"s":"")+", ";}
    if(days != 0 || hours != 0 || mins != 0){out += mins +" minute"+((mins!=1)?"s":"")+", ";}
    out += secs +" seconds";
    document.getElementById('countbox').innerHTML=out;
    setTimeout("GetCount()", 1000);
    }
    }
    window.onload=function(){GetCount();}//call when everything has loaded
    //-->
    </SCRIPT>
    me likee!!!
    why ask me ?


  15. #255
    Join Date
    Nov 2005
    Location
    MAINE
    Posts
    2,825
    Thanks (Given)
    21
    Thanks (Received)
    27
    Likes (Given)
    805
    Likes (Received)
    107
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by stokernick View Post
    me likee!!!

Page 17 of 75 FirstFirst 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 67 ... LastLast

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Aeromarine Research