View Single Post
  #2  
Old 07-30-2006, 08:34 PM
Technochick's Avatar
Technochick Technochick is offline
Member
 
Join Date: Jun 2006
Location: Gulfport, FL
Posts: 70
Default

I agree! We had a blast out there last weekend Chris even got to try out a buggie with a little 5m.

Since I'm not riding yet, I'd like to hear your perspective on the difference between the flat water here and the surf with the strong current there. It seems like it would be a lot more difficult and not for beginners. What do you think?
__________________
(it's a script to create an ASCII chart)

SET SERVEROUTPUT ON SIZE 1000000
DECLARE
y number := 31;
asciiname VARCHAR2(30);
BEGIN
FOR x in 31..126
LOOP
select chr(y)
INTO asciiname
FROM dual;
dbms_output.put_line('chr('||Y||') = '||' '||asciiname);
Y := y + 1;
END LOOP;
END;
/
Reply With Quote