Search Members Help

» Welcome Guest
[ Log In :: Register ]

Page 1 of 3123>>

[ Track This Topic :: Email This Topic :: Print this topic ]

reply to topic new topic new poll
Topic: LISP< Next Oldest | Next Newest >
 Post Number: 1
DuSTman Search for posts by this member.
70% water in a flexible container.
Avatar



Group: Members
Posts: 797
Joined: May 2000
PostIcon Posted on: Dec. 20 2000,03:59  Skip to the next post in this topic. Ignore posts   QUOTE

Lisp is a crock of shite.

Thank you.

Offline
Top of Page Profile Contact Info 
 Post Number: 2
askheaves Search for posts by this member.
Ack!!!
Avatar



Group: Members
Posts: 1955
Joined: Sep. 2000
PostIcon Posted on: Dec. 20 2000,04:21 Skip to the previous post in this topic. Skip to the next post in this topic. Ignore posts   QUOTE

You pussy.

LISP brought us garbage collection... the haven for bad programmers. Be happy, and move onto something like Java.

Offline
Top of Page Profile Contact Info 
 Post Number: 3
askheaves Search for posts by this member.
Ack!!!
Avatar



Group: Members
Posts: 1955
Joined: Sep. 2000
PostIcon Posted on: Dec. 20 2000,14:34 Skip to the previous post in this topic. Skip to the next post in this topic. Ignore posts   QUOTE

I want to learn Smalltalk. It looks supersexy I also want to learn C# as well. I have the beta, I'm just too lazy.
Offline
Top of Page Profile Contact Info 
 Post Number: 4
whtdrgn_2 Search for posts by this member.
FNG
Avatar



Group: Members
Posts: 155
Joined: Dec. 2000
PostIcon Posted on: Dec. 20 2000,15:21 Skip to the previous post in this topic. Skip to the next post in this topic. Ignore posts   QUOTE

Come on now there is no better language then assembler, and it is different for every processor so you can always learn more. Remember that alot of the 4GL languages have there drawbacks. Like very little controll. I prefer C or C++, solely for the control perspective. I have on ocasion done java, and Progress; however, C has never failed me. Microsoft's c# is just another borg-like move for Mr Gates. I think he is hurt because no one wants to code VB anymore.
Offline
Top of Page Profile Contact Info WEB 
 Post Number: 5
askheaves Search for posts by this member.
Ack!!!
Avatar



Group: Members
Posts: 1955
Joined: Sep. 2000
PostIcon Posted on: Dec. 20 2000,15:44 Skip to the previous post in this topic. Skip to the next post in this topic. Ignore posts   QUOTE

NOONE WANTS TO CODE VB??? Dear lord. There's something like 4 million (or was it 40 million? doubtfull...) VB programmers in america, as opposed to about 400,000 (or was it 40,000) C++ programmers. In any permutation of those distorted figures above, VB is not going to die soon. I even program in VB when I want to create a quick test app for my COM objects. It's point and click, fill-in-the-blank programming. Easy money when you don't care.

I want to get into C# because it's much like C++, Object-Oriented, and basically is a ground-up rip off of Java. Plus, you get one supersexy IDE for all of the languages, and you can comingle the languages with the same application.

I agree with somebody's post in another place... we need a supergeek forum. Probably come in handy when we don't want to bore the yokels.

Offline
Top of Page Profile Contact Info 
 Post Number: 6
DuSTman Search for posts by this member.
70% water in a flexible container.
Avatar



Group: Members
Posts: 797
Joined: May 2000
PostIcon Posted on: Dec. 20 2000,17:25 Skip to the previous post in this topic. Skip to the next post in this topic. Ignore posts   QUOTE

If I see one more bloody bracket.....

But anyway, know java already...

Offline
Top of Page Profile Contact Info 
 Post Number: 7
damien_s_lucifer Search for posts by this member.
Emperor of Detnet
Avatar



Group: Members
Posts: 33
Joined: Jan. 1970
PostIcon Posted on: Dec. 20 2000,22:20 Skip to the previous post in this topic. Skip to the next post in this topic. Ignore posts   QUOTE

LISP : Lots of Irritating, Shitty Parentheses.

I had a semester of it. I always thought it would be cool if you could take C and add some of LISP's features (string handling, list processing, garbage collection, etc.)

So when I discovered Perl I almost shat my pants.

Almost all of my stuff is done in Perl now, except when I need it to go *really* fast (I use C++ or x86 assembly for that).

Larry Wall deserves much oral sex.

This message has been edited by damien_s_lucifer on December 20, 2000 at 05:21 PM

Offline
Top of Page Profile Contact Info WEB 
 Post Number: 8
Michael Search for posts by this member.
FNG
Avatar



Group: Members
Posts: 290
Joined: Sep. 2000
PostIcon Posted on: Dec. 21 2000,05:05 Skip to the previous post in this topic. Skip to the next post in this topic. Ignore posts   QUOTE

You're all wrong. FORTRAN is where all the action is.

Just kidding... I had to program in a Fortran-based scripting language that was older than I am for a job once... wasn't especially fun. Oh yeah, and the manual was written in Dutch.

Personally, I use C++ for just about everything I program, or JavaScript if I want to do something simple that anyone can run... DHTML is great for really basic programming stuff, especially involving form input. I'll be learning Scheme, a dialect of LISP, in school next semester, but I'm not especially looking forward to that.

Offline
Top of Page Profile Contact Info 
 Post Number: 9
DuSTman Search for posts by this member.
70% water in a flexible container.
Avatar



Group: Members
Posts: 797
Joined: May 2000
PostIcon Posted on: Dec. 21 2000,07:03 Skip to the previous post in this topic. Skip to the next post in this topic. Ignore posts   QUOTE

Yeah, well lisp isn't really very hard to get the hang of. I've got the hang after a couple of hours, but the brackets are just insane. An example : One question asked me to output a list containing the words (left right etc, however many times depending on the integer passed to it. here is the code of my answer:

(define march
(lambda (steps)

(cond ((= steps 1) (list 'left))
((even? steps) (append (march (- steps 1)) '(right)))
(else (append (march (- steps 1)) '(left)))
)
)
)

No! Stop the bracketing stupidity! That's only a really simple function but it just looks stupid!

Yeah, university taught me java last year and i 0wn at it, seems a really nice language, and i code a bit in it, but i'm transitioning to c++ for more platform-specific action. Back in the day i did a bit of assembly for atari ST. Great language for curiosity, and making things go as fast as possible, but the rate at which you get stuff done in assembler is just abysmal..

Offline
Top of Page Profile Contact Info 
 Post Number: 10
whtdrgn_2 Search for posts by this member.
FNG
Avatar



Group: Members
Posts: 155
Joined: Dec. 2000
PostIcon Posted on: Dec. 21 2000,14:11 Skip to the previous post in this topic.  Ignore posts   QUOTE

The only reason that there is still VB programmers is becuase of the nice plugin com object. I made the geek forum suggestion, and I think we should all bug Cr0 so he makes it so. From what I hear Micro$oft doesn't want to put anymore into VB, instead they are going to push there .net and c# shit. I had to take a few Fortran classes, and I hope to god that I never have to do it again. I also took a little Cobal, and that wasn't that bad. My favoret language is and always will be C.

------------------
Wine me, dine me, 1000101 me

Offline
Top of Page Profile Contact Info WEB 
22 replies since Dec. 20 2000,03:59 < Next Oldest | Next Newest >

[ Track This Topic :: Email This Topic :: Print this topic ]


Page 1 of 3123>>
reply to topic new topic new poll

» Quick Reply LISP
iB Code Buttons
You are posting as:

Do you wish to enable your signature for this post?
Do you wish to enable emoticons for this post?
Track this topic
View All Emoticons
View iB Code