.:HSTuners::::Hondas Wanted:: |
12-17-2002, 07:27 PM | #1 | |
Zoom-Zoom
Join Date: Sep 2001
Location: Ohio
Posts: 3,924
|
Any programmers?
So any of you geeks into programming at all? I've been programming in VB for about 6 years. Moving onto vb.NET which is an interesting thing. Also learning C# on the side. I've dabbled in C++, but it just doesn't trip my trigger.
__________________
Quote:
|
|
12-17-2002, 07:28 PM | #2 |
Insomniac Moderator
Join Date: Aug 2001
Location: OR
Age: 43
Posts: 11,142
|
3 terms of Java, starting C++ next term, also taking assembly next term I think. I have a little C experience also.
I'm not too great at Java though, I really need to get into it more. When I'm done with my degree in 2 years, I'll have a minor in CS.
__________________
1994 Accord EX coupe --Need hosting for your pics on HST? PM me...-- |
12-17-2002, 09:19 PM | #3 |
Posts: n/a
|
In College, I was a dual major in CompSci and Criminal Justice..
Coded in C, C++, Scheme, Pascal, various shell scripts, and perl.. co-wrote a huge matchmaking system at Ball State University called "Meet Market" - yes, pun was intended - in Pascal on a Vax.. wheee, those were the days.. I do alot of coding in PHP and Perl nowadays... Bryan |
12-17-2002, 09:36 PM | #4 |
Repost Wagon
Join Date: Dec 2001
Location: over here
Age: 44
Posts: 17,266
|
i'm a CSC major--more in depth programming. so far i programmed in pascal, C, C++
__________________
|
12-17-2002, 09:38 PM | #5 |
Posts: n/a
|
Some fine scheme code:
; Problem #1, vector-linear-search ; ; vector-linear-search takes a vector (c) and a predicate (pred). It then ; searches through the successive components of v starting from the left end ; and returns the index of the leftmost component of v satisfying pred. If ; no such component is found, it returns -1. ; (define vector-linear-search (lambda (v pred) (let ((size (vector-length v))) (letrec ((helper (lambda (i) (cond ((= i (sub1 size)) (begin (if (apply pred (list (vector-ref v i))) i -1))) ((apply pred (list (vector-ref v i))) i) (else (helper (add1 i))))))) (cond ((zero? size) -1) (else (helper 0))))))) Ahh Bryan |
12-17-2002, 09:50 PM | #6 |
Thought Police
Join Date: Aug 2001
Location: orlando florida
Age: 40
Posts: 9,662
|
i know html
__________________
Black Vtec Prelude-h22a power'd Many dreams come true, and some have silver linings. I live for my dreams and a pocket full of gold. |
12-17-2002, 10:01 PM | #7 | |
Repost Wagon
Join Date: Dec 2001
Location: over here
Age: 44
Posts: 17,266
|
Quote:
__________________
|
|
12-17-2002, 10:22 PM | #8 | ||
Zoom-Zoom
Join Date: Sep 2001
Location: Ohio
Posts: 3,924
|
Yeah I do scripting too, but I just didn't count it. KiX, WSH, vbScript. And of course HTML & PHP. Can't quite get along without 'em.
Quote:
Yup.
__________________
Quote:
|
||
12-17-2002, 11:27 PM | #9 |
Registered User
Join Date: Jul 2002
Location: ECUSA
Age: 47
Posts: 2,693
|
I took C++ I'm good at what we did but....That don't mean much.
I know html pretty well too. also I read a Java book after that and if you know one you BASICALLY know the other.
__________________
I am an A$$hole... take anything I say to heart at YOUR OWN RISK... |
12-18-2002, 12:31 AM | #10 | |
Insomniac Moderator
Join Date: Aug 2001
Location: OR
Age: 43
Posts: 11,142
|
Quote:
Well, C++ and Java are both object oriented, so I hope the switch won't be too hard for myself.
__________________
1994 Accord EX coupe --Need hosting for your pics on HST? PM me...-- |
|
12-18-2002, 03:29 AM | #11 |
Registered User
Join Date: Aug 2002
Location: Elkhart, IN
Age: 41
Posts: 1,642
|
i know, C++, Java, HTML, A little bit of Pascal, VB6, And the all mighty Q-basic
|
12-18-2002, 03:30 AM | #12 | |
Insomniac Moderator
Join Date: Aug 2001
Location: OR
Age: 43
Posts: 11,142
|
Quote:
Heh, I forgot about that one. I think everybody knows a little qbasic
__________________
1994 Accord EX coupe --Need hosting for your pics on HST? PM me...-- |
|
12-18-2002, 04:25 AM | #13 |
THE GENERAL
Join Date: Aug 2001
Location: Earth (usually)
Age: 42
Posts: 5,698
|
Visual Basic, C++ & I did a litte compiling in Java..
I would know more, but I'm not studying in the computer field..
__________________
HondaStyle.com Babysitter's Club Member #0 Soon to be >Dr Max Immuh< |
12-18-2002, 09:49 AM | #14 | |
Posts: n/a
|
Quote:
Assembly for which architecture? I've done Java (hated it and forgot it), basic (already forgot it), TI programming (already forgot it), html and some CSS, C++ (forgot most of it), some PIC microcontroller assembly (can't remember which company), and perl. I use perl at work but never really "knew" perl, so I kinda relearn as I go then forget it until the next script needs writing. As you can see I'm definitely not a programmer. But I do write scripts here and there. b |
|
12-18-2002, 10:30 AM | #15 | |
Repost Wagon
Join Date: Dec 2001
Location: over here
Age: 44
Posts: 17,266
|
Quote:
i didn't lean java yet, but the concept of classes was a bit hard in the begining but then, it became pretty easy once i got the hang of it. i forgot some languages so here is the complete list: C, C++, COBOL , Pascal, HTML, q Basic, some of the TI-86 programming, and a bit of CSS. curently struggling with Perl and PHP
__________________
|
|
12-18-2002, 02:01 PM | #16 |
Registered User
Join Date: Jul 2002
Location: ECUSA
Age: 47
Posts: 2,693
|
I read the first 5-8 chapters in a java 2 book after taking C++ and the ONLY differences I encountered where gramatical.
The wording is a little different but it's the same language essentially. (java has no strings or something like that) anyway if you did fine in one you'll do as well if not better in the other. From my experience at least.
__________________
I am an A$$hole... take anything I say to heart at YOUR OWN RISK... |
12-18-2002, 02:04 PM | #17 |
Thought Police
Join Date: Aug 2001
Location: orlando florida
Age: 40
Posts: 9,662
|
i usta write batch files in q-basic... for entertaining purposes
__________________
Black Vtec Prelude-h22a power'd Many dreams come true, and some have silver linings. I live for my dreams and a pocket full of gold. |
Thread Tools | |
Display Modes | |
|
|