Discuss What languages do you know? in the Other Programming Languages forum on Dev Shed. What languages do you know? A place for discussing programming languages not covered in specific forums such as Assembler, COBOL, etc. - you get the idea.
View Poll Results: What languages do you know well?
Posts: 10,101
Time spent in forums: 3 Months 3 Weeks 6 h 8 m 34 sec
Reputation Power: 0
What languages do you know?
Hi all,
Out of interest, I thought I'd ask you all what languages you know ( where "know" means "can write a fairly complicated program in" and not "can hack something together when the docs are handy" ).
This is mainly to get an idea of the strengths we have here.
Please let me know via PM if you want to add more languages ( these were just the ones that came to mind ).
--Simon
Last edited by SimonGreenhill : March 11th, 2006 at 03:08 PM.
Posts: 1,759
Time spent in forums: 1 Month 2 Weeks 2 Days 3 h 38 m 3 sec
Reputation Power: 1568
Quote:
Originally Posted by SimonGreenhill
Hi all,
Out of interest, I thought I'd ask you all what languages you know ( where "know" means "can write a fairly complicated program in" and not "can hack something together when the docs are handy" ).
Here you've nailed me right in my main weak spot: by my own assessment, I would not consider myself to meet that definition of 'knows' for any language, period. Now, perhaps my standards are too high, but the truth is that I've never really focused on any one language long enough to really master it; the only one where I could get along to any significant degree without heavy use of the docs would be C, and that simply from long familiarity.
OTOH, I can write and read code in pretty much any of the languages listed to at least some degree. Jack of all trades and all that, you know.
FOR SALE: One ShapeSystem 2300 CMD, extensively modified for human use. Includes s/w for anthro, transgender, sex-appeal enhance, & Gillian Anderson and Jason D. Poit clone forms. Some wear. $4500 obo. tverres@et.ins.gov
Posts: 2,537
Time spent in forums: 1 Week 2 Days 18 h 17 m 47 sec
Reputation Power: 68
This is a little difficult to answer because languages that I have been able to write competently in have have faded from memory.
A few years back I was able to work with PHP to a fair degree: I knocked up a usable forum, shout-box and blog in a day or two with login system etc. while at a web development company.
Now I wouldn't have a clue where to start to he honest.
The same goes for Cocoa. When I was programming heavily in Obj-C I could get things done relatively quickly but since moving on to try other (I think more interesting) things a lot of what your need to write apps for OSX has gone.
Recently while playing around with an app I was working on – written in C, Cocoa and Scheme – I found to my dismay that I had to keep checking the docs, it came back quickly but it was a very slow start.
The only languages I would say I know well enough to write in competently – by your definition – right now would be Python, Scheme and Lisp because thats what's fresh in my mind.
I've also been playing with Ruby and ML but not enough to say I know either of them. I'm another who tends to jump around from language to language until I find something I want to stick with.
If you count those languages I have used well in the past then there are considerably more .
Take care guys,
Mark.
__________________
programming language development: www.netytan.com– Hula
Posts: 5,817
Time spent in forums: 3 Months 4 Days 12 h 16 m 39 sec
Reputation Power: 3460
I learned C and C++ in high school but I've never really gone beyond the basics in either. I started learning PHP a few years back and I can work with it comfortably as long as I have a reference handy.
I learned assembly for a couple classes in college. Haven't really used it since.
I know javascript but I havent used AJAX. I only get to use it for personal projects.
I used ColdFusion on my last job exclusive of anything else.
I use ASP and VB on my current job but we're slowly switching to J2EE. I'm glad about that because Java is what I know best. But I still need to get better with some of the various frameworks like Struts and Spring.
__________________
Dear God. What is it like in your funny little brains? It must be so boring.
Posts: 5,538
Time spent in forums: 1 Month 3 Weeks 1 Day 19 h 30 m 28 sec
Reputation Power: 1050
Bugger, I forgot to tick php...
VB has always been my specialist subject, i mean when i started i'd barely even heard the name 'linux'... I'm adding the final touches to my college coursework, written in VB...
Perl has always been something i've loved, especially since i started getting into linux a lot more, interpreted languages just seem more at home. Same goes with ruby. I'm fast becoming something of an expert at both, since i've started developing most of my projects in them, for different purposes.
C and C++ I learnt because i thought it was just one of those things you had to know to become a good programmer. I've got damn good skills in both after lots of using them and all. Oh and I favour C over C++, because I love pointers, oh and C++'s slower performance says there's no point programming in it since the whole reason you programmed in it was for speed anyway... (love C)
Python I've done a bit with through time, but for a while i've been using it for some bigger projects, partially to make up for some issues in the ruby language involving blocks and yield().Oh, and I want to get turbogears going too
Lisp is interesting, because you don't actually need to know a lot to get going, since a few basic functions allow you to build up the rest of the functionality you need, which is part of doing lisp well, anyway. So most people could write a program in lisp i guess. Perhaps not well though...
PHP, well i've got a nice pair of mysql classes that has saved me a hell of a lot of time in developing CMSes. I've been doing php for about 3 years now, and while i find the language a bit dull and rather inflexible, the way it allows you to do things fast kinda keeps me doing some of it now and again, but that said i'm moving into other areas for web development (turbogears).
My next step will be to pick up my java book again and get going, because verbose as it might be, swing is pretty neat, as are some other things. And when you've built up a collection of classes you can throw together, you can be unstoppable.
Posts: 2,537
Time spent in forums: 1 Week 2 Days 18 h 17 m 47 sec
Reputation Power: 68
Quote:
Originally Posted by LinuxPenguin
Lisp is interesting, because you don't actually need to know a lot to get going, since a few basic functions allow you to build up the rest of the functionality you need, which is part of doing lisp well, anyway. So most people could write a program in lisp i guess. Perhaps not well though...
I'm not sure whether I agree or disagree with this. I think a lot of people could write imperatively, that just involves mapping what you should know onto Lisp and the results aren't pretty or elegant.
It seems to be a matter of perspective whether this is really programming in Lisp or not because programming in any language is more than just putting text in the right place, you need to apply the right mindset to the problem.
This is why learning to program in any language doesn't just take a weekend .
This is more visible in Scheme than Common Lisp because Scheme doesn't let you carry previous mindset over so readily. When it comes to looping for example doing anything in Scheme requires you to use recursion to some degree. So what, there is a 'do' loop:
No-one could be called a C programmer before they understood 'for and 'while. This is basic knowledge. Likewise no-one can claim that they know any Lisp dialect before understanding concepts like tail-recursion.
Your average C programmer isn't going to be able to make head nor tail of Lisps semantics and this actually gets worse the more you know about C like languages. Lisp is total orthogonal in concept and form but it's beautiful!
In effect learning Lisp is like learning to program all over again, nothing you thought about programming before really holds true. It gets in your way more than anything .
Getting started with Lisp is definitely more than learning the handful of forms on which everything else is built, though having such simple rules helps a lot.
MIT apparently teach the Scheme to new students in one class but give this to a seasoned C programmer and you would probably cause more than a little confusion...
...but this isn't difficult; it's different and therein lies the problem. I've seen lambda forms disturb programmers to the point that they start getting pissy .
No one likes to feel like a noob, I hate it lol .
I'm using the standard C programmer as an example because the two approaches are more or less opposite. I don't have anything against C programmers. In fact I can respect there patience for the most part .
Posts: 2,537
Time spent in forums: 1 Week 2 Days 18 h 17 m 47 sec
Reputation Power: 68
lol, or eight months . You can introduce the core forms in an hour but in order to use Scheme (or any language) well you need to read a lot and practice what you learn. That takes a lot of time.
I've read several C# books from cover to cover and I most certainly can't program in C#.
C has recursion yes but it's not used to the same degree, with the same constructs or the same types of data. There's also no concept like tail-recursion in C so assuming that you understand it and can use it immediately its a little stupid .
It's very easy to think that you know a language but actually knowing anything is considerable harder.
Posts: 5,538
Time spent in forums: 1 Month 3 Weeks 1 Day 19 h 30 m 28 sec
Reputation Power: 1050
Totally, but to be able to do a job and to be able to do a job in perfect style, are different things
I'm not going to claim to be a .net expert myself, not like i've been doing it that long (or even like it!), but, like any good programmer, i can turn my hand to it when required.
Posts: 2,537
Time spent in forums: 1 Week 2 Days 18 h 17 m 47 sec
Reputation Power: 68
Quote:
Originally Posted by LinuxPenguin
Totally, but to be able to do a job and to be able to do a job in perfect style, are different things
I'm not going to claim to be a .net expert myself, not like i've been doing it that long (or even like it!), but, like any good programmer, i can turn my hand to it when required.
Heheh I think we have different definitions of what it means to be a good programmer and to be able to complete a task .
Sure, hacking up some pile of crap solution that's five times longer than it needs to be, took ten times longer to write and it should have and is inefficient to boot, but gives the right results is technically completing a task: I wouldn't count it for obvious reasons .
I think programming and programming-well are more or less synonyms of each-other, or they should be!
Sadly this attitude that pulling something out of your *** means you can program in language X seems to be is shared – usually by "professional" programmers.
Job interview... Programmer: Yeah I can program in C (I had better read the first chapter of that book I saw in Waterstones and leave without buying anything). Manager: You're hired, I'll look forward to seeing you on monday. Programmer: Thank you very much *Shakes hand*, have a good weekend (hahah sucker, now to rake in the cash).
Posts: 5,817
Time spent in forums: 3 Months 4 Days 12 h 16 m 39 sec
Reputation Power: 3460
Quote:
Programmer: Yeah I can program in C (I had better read the first chapter of that book I saw in Waterstones and leave without buying anything).
Manager: You're hired, I'll look forward to seeing you on monday.
Programmer: Thank you very much *Shakes hand*, have a good weekend (hahah sucker, now to rake in the cash).
that's quite common but some people are actually able to learn languages quickly and are able to use references to do so effectively.
For example, My interview went something like this:
First Round:
Manager: We use ASP and VB here do you know those?
Me: No but I have a gift for learning things quickly.
Mangaer: <-- skeptical
Second Round:
Manager: Change this ASP code to do XYZ instead of ABC
Me: <-- Does it faster than anyone else.
Manager: <-- is a believer