vote up 40 vote down star
14

The stereotypical programmer is very keen on writing software in one particular programming language and is very fanatic about defending their programming language in any way they can, without being realistic about whether their programming language is the best tool for the job.

The other kind of programmer can take a step back and switch between languages (or is not very concerned about doing everything in just one language), is a "jack-of-all-trades", and doesn't mind learning a new language as long as it solves their problem in a good fashion.

Did you ever switch from one programming language to another? If yes, why?

[P.S. Please don't just answer with "I switched from language A to B because company X sucks! I think it will be very useful to understand why people switch between languages, or what's the best tool for a particular kind of job]

flag
1  
what makes you say the stereotypical programmer works in one language. Most I know work in many (Javascript, some backend language, XSLT, shell scripts, build scripts, etc.) – grom Nov 26 '08 at 8:49
show 1 more comment

113 Answers

1 2 3 4 next
vote up 1 vote down

I started, like many, writing webapps in PHP. As I learned more and more about programming, and realized what an unmaintainable mess PHP was (as well as how cluttered the language was itself), I tried python, and loved it. I've stuck mainly with it ever since.

link|flag
vote up 85 vote down

I started in Basic

need speed

Then Assembly

need sanity

Then Pascal

need gui

Then Delphi

need work

Then Perl

need fun

Then ActionScript

need objects

Then C#

I skipped a few (php, COBOL, C, C++, Java) for clarity.

link|flag
7  
Nowadays I use the best tool for the job, I am "language-agnostic" – Sklivvz Sep 21 '08 at 20:47
1  
Basic -> assembly must have been an interesting paradigm shift. :-) – Ben Blank Jul 16 at 0:19
show 7 more comments
vote up 0 vote down

I decided that there was a point in my career where I wanted to be verse and have professional experience in more than one language.

I went from C# to Ruby and use both in my daily development life.

It's very pragmatic to at least have a few languages under your belt for the reasons you mention... but I also felt that I would be more marketable having two popular languages on two sides of the spectrum.

Adding a third one currently, Objective-C... so I should be able to take on any platform: web, desktop, or mobile.

link|flag
vote up 0 vote down

Use them all I say. If I were to summarise the languages I use on a daily basis

  • Regexp ( Sed / Grep / Perl / Php / Ruby / Javascript )
  • Php
  • SQL ( Mysql and Postgres flavours, depending only on what I have been given to use )
  • Javascript
  • Ruby
  • Perl ( still new here )
  • Python ( Only did a little )
  • Occasionally write C/C++ stuff ( hardly ever )

Some people will say the above and mean over a long course of time. I just jump from one to the other as demands require. Saying otherwise is like saying "yeah, i switched from screwdrivers to spanners, spanners are much better". Keep your toolbox handy and don't forget how to use them. :)

However, that Java thing and that C# thing i just stay away from.

link|flag
vote up 19 vote down

This is an experience/age related question. As you gain more experience, languages come and go. Although there's certainly merit to being extremely experienced in one language, most likely for your career, you'll end up knowing 5 or 10 languages. I suggest that you seek out opportunities to learn different languages and it will give you different ways of looking at a problem.

link|flag
1  
True true... But it's sometimes hard to find an opportunity in new / upcoming languagues like Groovy, Scala or Erlang so it's often easier to stick with what you know best (if there are still interesting projects to be found, of course) – Johan Pelgrim Sep 21 '08 at 19:51
1  
I know people who have been coding for over a decae and stay with the same language. Perl and C++ seem to be bad for this. Plus Alot of Java devs wont touch anything else. – Omar Kooheji Feb 12 at 11:04
show 1 more comment
vote up 0 vote down

I switch languages on a daily basis. I'm constantly swapping between bash and my active project. My current hobby project uses D, Objective-C and PHP so I'm often switching between them. At work I use C#, VB6 and SQL.

link|flag
vote up 2 vote down

C -> C++ -> Java -> C# I usually switched languages when switching between projects. Used to be a big C++ fan, now I'm just using whatever language is right for a specific project.

link|flag
show 1 more comment
vote up 0 vote down

My progression was:

  • Basic
  • Borland Pascal
  • Visual Basic
  • PHP
  • Java
  • C#

I do maintenance on an enterprise PHP app, but all new development is C#.

link|flag
vote up 1 vote down

I use predominantly C# in my day-to-day job, but even within that I've switched from C# 1.0 to 2.0, and 2.0 to 3.0, because new versions of the language offered more features (generics, iterators, linq) which means you can write code faster and more accurately. Admittedly the new versions are backwards-compatible with the old versions (except in some edge cases) but it's still a switch as it requires learning new ways of doing things.

Outside that, I think there's great merit in learning other languages, even if it isn't to the same level as your day-to-day ones, because it helps to avoid the Blub paradox. It also means you know the capabilities of other languages which can help you decide whether you should switch, and under what circumstances (for example F# is much better than C# for self-contained scientific/engineering applications due to things like units and infix function declaration, but is less good for writing libraries that seamlessly interoperate with other .NET languages).

link|flag
vote up 3 vote down

I remember when C# first came out, I was very passionate about it. Then one of my friends showed me some cool functional techniques using Lisp and then I realized that no language is perfect. It will take a long time for a language to evolve. There is no use being fanatic about one particular language. By the time it reaches maturity, we will hear another new language coming out. :) Some languages are for addressing performance, some for productivity, some for scientific or academic fields etc. We should never ever be influenced by marketing.

One advantage doing consultancy is that you will be forced to learn so many languages. It has helped me in many ways like understanding the strengths of each language, what domain they are best suited for etc.

Having said that, you need to really specialize in at least one particular language without being fanatic about it. They key is in understanding the fundamentals and having an open mind to learn or adapt to other languages and environments.

link|flag
vote up 0 vote down

I have switched almost every time I have changed jobs. The one that was under my control was early in my career, switching from C to C++. Since C++ was a superset of C, it was an easier transition -- the team wanted to use some of the features and we carefully transitioned as we got comfortable using the parts of C++ that were useful to us.

I have recently switched from Java to C# (2+ years ago) -- but that was because of a job change. Now that I have done it, I would say that each have their place -- for making Windows GUI's I would definitely stick with .NET languages.

On my own, I use pyhton for web site writing, but that's because I like Django for making web sites.

What the end product's runtime is, is a big factor in what language I choose to use. For example, if I was making an iPhone app, I'd have to learn Objective-C.

link|flag
vote up 41 vote down

If you get the concepts right, learning a new language is hardly any trouble. The tough part is learning the platform and idioms. Those who say they know Perl and PHP, Java and C#, usually mean they know CPAN and PEAR, JDK and .NET.

Edit: All of the languages above are procedural, that's why the are so similar. A programmer should know two kinds of programming languages, functional (e.g. Haskell, Lisp) and procedural (e.g. everything else). And no, HTML is not a programming language.

link|flag
1  
Prolog is neither: en.wikipedia.org/wiki/Declarative_programming/… – crashmstr Oct 8 '08 at 19:33
1  
+1 For mentioning functional languages and the HTML point – Draemon Oct 23 '08 at 23:35
2  
Prolog, and SQL, are "declarative" programming languages because you declare what you want, you don't describe the procedure for getting what you want. – jmvidal Jan 31 at 2:15
2  
@Omar: Depends on what you mean. The difference between OO and procedural is far less than that between OO/procedural and functional. – erikkallen Sep 29 at 13:45
1  
@Omar OO > Procedural. That means that usually OO is procedural but procedural is not always OO – AZ Nov 19 at 14:26
show 3 more comments
vote up 5 vote down

Most Computer Science grads I know switch quite often between languages, for alot of different reasons...for example:

  • I know people who refuse to program in C# because .NET = Microsoft (excluding Mono I guess), but have had to use .NET for a particular contract (and eventually enjoyed using C#). These were the same peeps who coded in C/C++ but have since changed to Java now that its open sourced.

  • Functionality - in the course of 3 years we switched from Scheme to Java with detours around C, Perl and Python and Smalltalk (egh). Scheme is a great functional language and its strong on lists and is great to teach the young ones about recursion.

  • Your Employer requires it - I've had the (dis) pleasure of working in an environment that used the motto "As long as it's Microsoft" - all the code was in VB/ASP and that killed me. At home I play with PHP and I've now discovered the awesomeness of GWT which is based on Java. I suck at Java but can make my way around it...sort of....sometimes I wish I payed more attention in Varsity.

At the end of the day I guess, all's well if you understand the foundations of programming concepts. My main problem is that I am a very slow learner :)

link|flag
show 1 more comment
vote up 4 vote down

I've used C++ throughout most of my career, initially on Unix platforms (SunOS/Solaris, HP-UX), and now on Win32. That's more due to circumstances than an explicit choice, though. As the need arose for a lighter-weight language for building tools and simulated servers, I started regularly using Python. I also use Python for my home projects, because I like the language. I've also dabbled in C# as required, to fix bugs in other people's code on my current project.

Each language has its strengths and weaknesses, but just as important is the broader context in which it is used. This includes whether a company is comfortable with a language (my current employer perceived Java to be too immature for robust development, hence we used C++), and the skills and preferences of the programmers you can get.

While languages come and go, the fundamental principles remain pretty much the same. Even the switch between imperative and functional isn't that big a deal if a programmer has a solid foundation in compsci principles.

link|flag
vote up 0 vote down

BASIC -> Perl -> PHP -> C++ -> C -> x86 ASM -> Python -> ARM ASM -> C# -> Nemerle -> Boo

These days I primarily write x86 ASM, Python, and Nemerle+C#. Best toolchain for compiler and emulation dev I've found.

link|flag
vote up 0 vote down

It is always depends on the task at hand. I have worked many on different languages. The ones that I seem to work with the most (because of demand) are PHP and C#. If a project had more integration in a *NIX platform or needed to use MySQL or message between other *NIX applications then I choose PHP. PHP has great integration for the *NIX platforms, it is easy to get up and running (LAMP) and it feels more like it is "meant to be."

I have experimented with forcing a language to work, for instance C#/Mono on the Linux platform. This ends up being more hassle than necessary. I love C#, but that belongs in Windows :) I recently tried to use Mono with TeamCity, MySQL, NHibernate and Linq on Linux. I found that this got more and more painful as I integrated more and more. I ended up running the entire solution in Windows, scratched NHibernate and started using the Linq to Entities framework. I also scratched MySQL and started using SQL Express. Finally, I decided to use WCF since I was going all Windows and needed to use interfaces and generics over the wire.

Again, if you choose a platform than it is less painful to switch to something that is designed to natively work with that platform and/or anything you may be integrating with. It makes upgrading , maintainability and integration easier.

For the Most part, I think a lot of this is driven by the requirements of the project, If it is a startup, with no other dependencies, then choose what you are most comfortable with. For web projects, there is always cloud hosting, if you want everything :)

link|flag
vote up 0 vote down

BASIC

E

Pascal / Delphi (school)

Haskell (university, yikes)

C

C++

Java

bash scripting

SQL

Forgot about all the religious wars of my teenage years. These days it's all about comfort a language offers... I've become spoilt ;)

link|flag
vote up 0 vote down

Turbo Pascal

PHP

ASP (VB Script)

ASP.NET (C#)

Visual C#

Java

I'm currently switching between PHP and ASP.NET for work reasons, and am studying Java to get some experience with Open Source Software Development.

link|flag
vote up 0 vote down

Generic progression:

Perl -> SQL -> PHP -> Javascript -> CFML -> Ruby

Details:

Perl/cgi : began web programming in the later 90s

SQL : needed relational databases ...for some reason flat text files just were not cutting it any more ...mhmm

PHP : moved, and couldn't find work in perl so i picked up php.

Javascript : i need to add interactivity, beyond the the standard rollovers, and believe it or not javascript turned out to be a robust mature language.

CFML (coldfusion) : my first exposure to cfml was when i was stil writing perl, but didn't give it much thought. then once it was dubbed "a dead language" i had a mutual friend ask me about it.. i was between jobs so i picked it up and started playing around. Now i love it! everything compiles down to java on the fly, i can use java libraries. Quite the powerful language/framework for web applications.

Ruby (not just rails) : after seeing this might not be another "flash in the pan" buzz word language, i decided to check it. Really fun. All my previous languages i picked up for gainful employment of some sort. This one was pure fun, though i am still learning it, it it proving most enjoyable to write in (when i make the time ..:/).

Java [Coming soon].

link|flag
vote up 0 vote down

Basic (self taught) -> Pascal (in high school) -> Visual Basic (for work) -> Delphi (Visual Basic done well) -> C# (for ASP.NET) -> Ruby (on Rails, because it's faster to develop in)

In the middle there was COBOL, FORTRAN, x86 Assembler, OPS5 (ugh), Prolog and Perl, but those were the major ones.

link|flag
vote up 0 vote down

BASIC -> C -> C++ -> Python

Now using C, C++, and Python

link|flag
vote up 0 vote down

I learned during college several languages, including: Scheme, Pascal, LaTeX :), C, Fortran 95, Prolog, x86 Assembly, Java (JML, JavaCC, ...), PLSQL, C++, Yacc/Bison, Matlab, R, ML, PHP, ... (Of course, we have also studied several modeling stuff like UML, Petri Nets, COOPN & co, ...).

Finally, I work with C, C# & PLSQL.

The most important point is that when you know the programming paradigms, then you can easily switch between languages (and it's never a problem to discover a new one).

During my free time, I work with PHP (my own website, ...), Java and Prolog (just for fun).

link|flag
vote up 1 vote down

I started in Basic

need speed

Then Assembly

need sanity

Then C

need GUI

Then Visual Basic

need GUI and speed

Then C++

need web applications

Then Perl

need more web apps in less time

Then PHP and JavaScript

Stuck with PHP (for web) and C++ (for desktop) currently. Did try Java a little bit, but found it too bloated for my hardware .

link|flag
vote up 2 vote down

I have done professional development work in (rough chronological order):

  1. SBASIC
  2. FORTRAN IV
  3. CORAL 66
  4. x86 Assembler
  5. Ada
  6. 680x0 assembler
  7. C
  8. C++
  9. Pascal
  10. C#

and several scripting languages. You use the language that's either (a) mandated, or (b) the right language for the job. This may be governed by needing to use a particular library (I had to use FORTRAN for the GKS library, for instance). It's not always a matter of your own choice. Get used to swapping between languages if you expect your career to have any longevity. The principles of procedural languages don't change.

link|flag
vote up 0 vote down

Lingo - verbose, but a nice easy intro to programming. Sprites!

Visual Basic - verbose, boring grey boxes

ActionScript1 - tellTarget? No thanks.

Java - way too hard for me at the time.

PHP + SQL + JavaScript + HTML = boring

ActionScript2 - good!

ActionScript3 - better!

C# - Best!

link|flag
vote up 2 vote down

I've always switched languages for two main reasons:

  • I need them for work
  • I though they might be useful on my cv (that's the main reason I learned C#

The important think to keep in mind is that I don't really think the language is important at all. You learn one to get experience with it so that if you need it at work you'll be able to learn it more quickly but languages are just tools, almost everything is done the same way in every language.

Nontheless I've look up some programmin languages for fun like Spec# which I like A LOT but is still in CTP stage and thus won't be used for real things in a while.

If you really wanna learn a useful new language then go for a paradigm change more than a language change. Learn Lisp or F# or Haskell or whatever functional language you choose (erlang might be useful someday for example). Learn Prolog as well. That will give you a more general overview of programming techniques and you'll learn about new ways of thinking about problems.

link|flag
vote up 17 vote down

They say that if all you have is a hammer then everything looks like a nail. Different languages have been designed to solve different problems. If you know several languages, then when a problem comes along you can look into your toolbag and pull out the right one to solve the problem at hand instead of using a hammer where a chisel would be better.

link|flag
vote up 0 vote down

My progression: *BASIC *LOGO *TI-BASIC *Javascript *Java *C *Java

My parents bought me my first machine when I was 6, and I keyed programs in from ATARI Computer Monthly. I did some more BASIC in elementary and junior high on Apple II's. Then I did math programming in LOGO at a summer camp. Next, I got a TI-83 for high school chemistry and ended up building a math suite that lasted over 7 years in my high school, just getting passed around by different students. I started actually studying programming with Javascript tutorials online, and then I bought myself a Java book because I wanted to do graphics programming with Applets. In college, we were required to study C, and then later I took optional Java courses. My first employer gave me the option to implement his system in any language I wanted, and I chose Java. Since then, all my professional development has been in Java, but its ranged all over: *high-performance HTTP client *data-input web clients *data-input wizard rich clients *high-performance messaging servers

link|flag
vote up 0 vote down

Yes, I've switched between languages many times.

The reason is, you should use whatever language makes sense to solve a given problem. That is why you should be able to dive into almost any programming language you see. For starters, it just helps to know your way around and to know where the documentation is.

E.g., assume you come and work for a company which is ASP.NET all the way. Why would you want them to switch to Python? Because you are more familiar with it - that's not in the best interest of your client. Of course you would program/build whatever they want in ASP.NET.

Over the years I've done Perl, PHP, Basic, Java, ASP, Python and even some Ruby (not on Rails). It just made sense in that situation to use another one.

Sometimes when I start from scratch and people come to me, I will recommend what I think is in there best interest and gets the job done. If that involves recommending someone else for a job, I'll do it.

link|flag
vote up 0 vote down

Programming languages are tools, and you should use the best tool for each task. Sometimes this means you're using C++, other times Java, or Ruby, Perl, PHP, Erlang, etc.

At my current job we have apps in C++, Java, Ruby, and Perl. We (developers) definitely have a comfort zone and preference for programming languages, but that is secondary to the requirements.

When we hire people, we only require that they know one major language, with the assumption that a good developer can pick up a new language fairly easily. If someone is fanatic about a single language and isn't flexible enough to adapt then we don't want them.

That's a long way of saying "Yes, we switch from one language to another all the time."

link|flag
1 2 3 4 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.