Did you ever switch from one programming language to another? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T19:59:19Z http://stackoverflow.com/feeds/question/111859 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another 40 Did you ever switch from one programming language to another? Johan Pelgrim 2008-09-21T19:41:40Z 2009-11-19T14:56:25Z <p>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.</p> <p>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.</p> <p>Did you ever switch from one programming language to another? If yes, why?</p> <p><em>[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]</em></p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/111870#111870 1 Answer by William Keller for Did you ever switch from one programming language to another? William Keller 2008-09-21T19:44:23Z 2008-09-21T19:44:23Z <p>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.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/111874#111874 85 Answer by Sklivvz for Did you ever switch from one programming language to another? Sklivvz 2008-09-21T19:45:14Z 2008-09-21T19:45:14Z <p>I started in <strong>Basic</strong></p> <p><em>need speed</em></p> <p>Then <strong>Assembly</strong></p> <p><em>need sanity</em></p> <p>Then <strong>Pascal</strong></p> <p><em>need gui</em></p> <p>Then <strong>Delphi</strong></p> <p><em>need work</em></p> <p>Then <strong>Perl</strong></p> <p><em>need fun</em></p> <p>Then <strong>ActionScript</strong></p> <p><em>need objects</em></p> <p>Then <strong>C#</strong></p> <p>I skipped a few (php, COBOL, C, C++, Java) for clarity.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/111875#111875 0 Answer by whoisjake for Did you ever switch from one programming language to another? whoisjake 2008-09-21T19:45:17Z 2008-09-21T19:45:17Z <p>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.</p> <p>I went from C# to Ruby and use both in my daily development life.</p> <p>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.</p> <p>Adding a third one currently, Objective-C... so I should be able to take on any platform: web, desktop, or mobile.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/111877#111877 0 Answer by Kent Fredric for Did you ever switch from one programming language to another? Kent Fredric 2008-09-21T19:46:11Z 2008-09-21T19:46:11Z <p>Use them all I say. If I were to summarise the languages I use on a daily basis</p> <ul> <li>Regexp ( Sed / Grep / Perl / Php / Ruby / Javascript )</li> <li>Php </li> <li>SQL ( Mysql and Postgres flavours, depending only on what I have been given to use ) </li> <li>Javascript</li> <li>Ruby</li> <li>Perl ( still new here ) </li> <li>Python ( Only did a little ) </li> <li>Occasionally write C/C++ stuff ( hardly ever ) </li> </ul> <p>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. :) </p> <p>However, that Java thing and that C# thing i just stay away from. </p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/111885#111885 19 Answer by Knox for Did you ever switch from one programming language to another? Knox 2008-09-21T19:48:37Z 2008-09-21T19:48:37Z <p>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.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/111888#111888 0 Answer by rpetrich for Did you ever switch from one programming language to another? rpetrich 2008-09-21T19:50:24Z 2008-09-21T19:50:24Z <p>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.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/111889#111889 2 Answer by radu_c for Did you ever switch from one programming language to another? radu_c 2008-09-21T19:50:37Z 2008-09-21T19:50:37Z <p>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.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/111891#111891 0 Answer by Ian P for Did you ever switch from one programming language to another? Ian P 2008-09-21T19:51:13Z 2008-09-21T19:51:13Z <p>My progression was:</p> <ul> <li>Basic</li> <li>Borland Pascal</li> <li>Visual Basic</li> <li>PHP</li> <li>Java</li> <li>C#</li> </ul> <p>I do maintenance on an enterprise PHP app, but all new development is C#.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/111894#111894 1 Answer by Greg Beech for Did you ever switch from one programming language to another? Greg Beech 2008-09-21T19:52:02Z 2008-09-21T19:52:02Z <p>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.</p> <p>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 <a href="http://www.paulgraham.com/avg.html" rel="nofollow">Blub paradox</a>. It also means you know the capabilities of other languages which can help you decide whether you <em>should</em> 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).</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/111901#111901 3 Answer by Gulzar for Did you ever switch from one programming language to another? Gulzar 2008-09-21T19:53:31Z 2008-09-21T20:18:08Z <p>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.</p> <p>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.</p> <p>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.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/111906#111906 0 Answer by Lou Franco for Did you ever switch from one programming language to another? Lou Franco 2008-09-21T19:55:26Z 2008-09-21T19:55:26Z <p>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.</p> <p>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.</p> <p>On my own, I use pyhton for web site writing, but that's because I like Django for making web sites.</p> <p>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.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/111909#111909 41 Answer by cubex for Did you ever switch from one programming language to another? cubex 2008-09-21T19:57:30Z 2008-09-21T20:23:20Z <p>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.</p> <p><strong>Edit:</strong> All of the languages above are procedural, that's why the are so similar. A programmer should know two <strong>kinds</strong> of programming languages, functional (e.g. Haskell, Lisp) and procedural (e.g. everything else). And no, HTML is not a programming language.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/111912#111912 5 Answer by anbanm for Did you ever switch from one programming language to another? anbanm 2008-09-21T19:58:24Z 2008-09-21T19:58:24Z <p>Most Computer Science grads I know switch quite often between languages, for alot of different reasons...for example:</p> <ul> <li><p>I know people who refuse to program in <code>C#</code> because <code>.NET</code> = Microsoft (excluding <code>Mono</code> I guess), but have had to use .NET for a particular contract (and eventually enjoyed using <code>C#</code>). These were the same peeps who coded in <code>C/C++</code> but have since changed to <code>Java</code> now that its open sourced.</p></li> <li><p>Functionality - in the course of 3 years we switched from <code>Scheme</code> to <code>Java</code> with detours around <code>C</code>, <code>Perl</code> and <code>Python</code> and <code>Smalltalk</code> (egh). <code>Scheme</code> is a great functional language and its strong on lists and is great to teach the young ones about recursion.</p></li> <li><p>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.</p></li> </ul> <p>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 :)</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/111913#111913 4 Answer by Jason Etheridge for Did you ever switch from one programming language to another? Jason Etheridge 2008-09-21T19:58:32Z 2008-09-21T19:58:32Z <p>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.</p> <p>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.</p> <p>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.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/111919#111919 0 Answer by Cody Brocious for Did you ever switch from one programming language to another? Cody Brocious 2008-09-21T20:00:49Z 2008-09-21T20:00:49Z <p>BASIC -> Perl -> PHP -> C++ -> C -> x86 ASM -> Python -> ARM ASM -> C# -> Nemerle -> Boo</p> <p>These days I primarily write x86 ASM, Python, and Nemerle+C#. Best toolchain for compiler and emulation dev I've found.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/111921#111921 0 Answer by Phobis for Did you ever switch from one programming language to another? Phobis 2008-09-21T20:01:34Z 2008-09-21T20:01:34Z <p>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." </p> <p>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. </p> <p>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. </p> <p>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 :)</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/111932#111932 0 Answer by Thorsten79 for Did you ever switch from one programming language to another? Thorsten79 2008-09-21T20:08:37Z 2008-09-21T20:08:37Z <p>BASIC </p> <p>E</p> <p>Pascal / Delphi (school)</p> <p>Haskell (university, yikes)</p> <p>C</p> <p>C++</p> <p>Java</p> <p>bash scripting</p> <p>SQL</p> <p>Forgot about all the religious wars of my teenage years. These days it's all about comfort a language offers... I've become spoilt ;)</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/111953#111953 0 Answer by Symbioxys for Did you ever switch from one programming language to another? Symbioxys 2008-09-21T20:13:11Z 2008-09-21T20:13:11Z <p>Turbo Pascal</p> <p>PHP</p> <p>ASP (VB Script)</p> <p>ASP.NET (C#)</p> <p>Visual C#</p> <p>Java</p> <p>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.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/111979#111979 0 Answer by ethyreal for Did you ever switch from one programming language to another? ethyreal 2008-09-21T20:22:22Z 2008-09-21T20:22:22Z <p>Generic progression:</p> <p>Perl -> SQL -> PHP -> Javascript -> CFML -> Ruby</p> <p>Details:</p> <p>Perl/cgi : began web programming in the later 90s</p> <p>SQL : needed relational databases ...for some reason flat text files just were not cutting it any more ...mhmm</p> <p>PHP : moved, and couldn't find work in perl so i picked up php. </p> <p>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.</p> <p>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. </p> <p>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 ..:/).</p> <p>Java [Coming soon]. </p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/112000#112000 0 Answer by Tim Sullivan for Did you ever switch from one programming language to another? Tim Sullivan 2008-09-21T20:27:47Z 2008-09-21T20:27:47Z <p>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)</p> <p>In the middle there was COBOL, FORTRAN, x86 Assembler, OPS5 (ugh), Prolog and Perl, but those were the major ones.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/112023#112023 0 Answer by computergeek6 for Did you ever switch from one programming language to another? computergeek6 2008-09-21T20:31:28Z 2008-09-21T20:31:28Z <p>BASIC -> C -> C++ -> Python</p> <p>Now using C, C++, and Python</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/112216#112216 0 Answer by acarien for Did you ever switch from one programming language to another? acarien 2008-09-21T21:19:00Z 2008-09-21T21:19:00Z <p>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 &amp; co, ...).</p> <p>Finally, I work with C, C# &amp; PLSQL.</p> <p>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).</p> <p>During my free time, I work with PHP (my own website, ...), Java and Prolog (just for fun).</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/112241#112241 1 Answer by Milan Babuškov for Did you ever switch from one programming language to another? Milan Babuškov 2008-09-21T21:32:20Z 2008-09-21T21:32:20Z <p>I started in <strong>Basic</strong></p> <p><em>need speed</em></p> <p>Then <strong>Assembly</strong></p> <p><em>need sanity</em></p> <p>Then <strong>C</strong></p> <p><em>need GUI</em></p> <p>Then <strong>Visual Basic</strong></p> <p><em>need GUI and speed</em></p> <p>Then <strong>C++</strong></p> <p><em>need web applications</em></p> <p>Then <strong>Perl</strong></p> <p><em>need more web apps in less time</em></p> <p>Then <strong>PHP</strong> and <strong>JavaScript</strong></p> <p>Stuck with PHP (for web) and C++ (for desktop) currently. Did try Java a little bit, but found it too bloated for my hardware .</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/112271#112271 2 Answer by Bob Moore for Did you ever switch from one programming language to another? Bob Moore 2008-09-21T21:48:10Z 2008-09-21T21:48:10Z <p>I have done professional development work in (rough chronological order):</p> <ol> <li>SBASIC</li> <li>FORTRAN IV</li> <li>CORAL 66</li> <li>x86 Assembler</li> <li>Ada</li> <li>680x0 assembler</li> <li>C</li> <li>C++</li> <li>Pascal</li> <li>C#</li> </ol> <p>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.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/112272#112272 0 Answer by Iain for Did you ever switch from one programming language to another? Iain 2008-09-21T21:49:16Z 2008-09-21T21:49:16Z <p>Lingo - verbose, but a nice easy intro to programming. Sprites!</p> <p>Visual Basic - verbose, boring grey boxes</p> <p>ActionScript1 - tellTarget? No thanks. </p> <p>Java - way too hard for me at the time. </p> <p>PHP + SQL + JavaScript + HTML = boring</p> <p>ActionScript2 - good!</p> <p>ActionScript3 - better!</p> <p>C# - Best!</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/112298#112298 2 Answer by Jorge Córdoba for Did you ever switch from one programming language to another? Jorge Córdoba 2008-09-21T21:58:17Z 2008-09-21T21:58:17Z <p>I've always switched languages for two main reasons:</p> <ul> <li>I need them for work</li> <li>I though they might be useful on my cv (that's the main reason I learned C#</li> </ul> <p>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.</p> <p>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.</p> <p>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 <strong>new ways of thinking about problems.</strong></p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/112311#112311 17 Answer by Slapout for Did you ever switch from one programming language to another? Slapout 2008-09-21T22:04:26Z 2008-09-21T22:04:26Z <p>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. </p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/112335#112335 0 Answer by Heath Borders for Did you ever switch from one programming language to another? Heath Borders 2008-09-21T22:18:08Z 2008-09-21T22:18:08Z <p>My progression: *BASIC *LOGO *TI-BASIC *Javascript *Java *C *Java</p> <p>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</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/112348#112348 0 Answer by Till for Did you ever switch from one programming language to another? Till 2008-09-21T22:24:24Z 2008-09-21T22:24:24Z <p>Yes, I've switched between languages many times.</p> <p>The reason is, you should use whatever language <strong>makes sense</strong> 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.</p> <p>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.</p> <p>Over the years I've done Perl, PHP, Basic, Java, ASP, Python and even some Ruby (not <em>on Rails</em>). It just made sense in that situation to use another one. </p> <p>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.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/112366#112366 0 Answer by jpeacock for Did you ever switch from one programming language to another? jpeacock 2008-09-21T22:29:12Z 2008-09-21T22:29:12Z <p>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.</p> <p>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.</p> <p>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.</p> <p>That's a long way of saying "Yes, we switch from one language to another all the time."</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/112463#112463 0 Answer by Chris Pine for Did you ever switch from one programming language to another? Chris Pine 2008-09-21T22:58:25Z 2008-09-21T22:58:25Z <p>At work I program in the language I have to program in at work. :-) But for my own projects I started using Ruby in 2000. Fun language.</p> <p>But last year I switched to Erlang. Why?</p> <ul> <li>I find that functional programming maps on to my mind much better than OOP.</li> <li>Concurrent programming is powerful, fun, and the only sane path forward in a multi-core world.</li> <li>Erlang is <em>much</em> faster than Ruby (and sometimes that really does matter).</li> <li>I like compiling. :-) Call me a dork, but I like having a sanity check. I like warnings. I like to know when there's dead code. I like it when the computer catches my stupid typos.</li> <li>Pattern-matching is the funnest ever.</li> </ul> <p>It hasn't all been rosey and smooth, though. Erlang has it's warts. And I still turn to Ruby for the super-low-overhead. (Any program of 20 lines or less, I'll bust out the Ruby. $ ruby -e "[your one-liner here]" FTW.)</p> <p>But for larger programs, Erlang's concurrent functional programming is for me: solid, performant, and fun enough to make me giggle on occasion.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/112472#112472 0 Answer by Don for Did you ever switch from one programming language to another? Don 2008-09-21T23:04:56Z 2008-09-21T23:04:56Z <p>In the world of development it's <strong>evolve or die</strong>.. ;)</p> <p>FWIW: VB COM -> Delphi -> Java -> C# -> Objective C</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/112502#112502 0 Answer by Robert Rossney for Did you ever switch from one programming language to another? Robert Rossney 2008-09-21T23:16:21Z 2008-09-21T23:16:21Z <p>I think I've used something on the order of two dozen languages over the course of my career. (FORTRAN, several proprietary implementations of BASIC, assembly, Pascal, INFO, R/BASIC, C, C++, Visual Basic, VBA, Perl, PHP, Python, C#, SQL, XSLT, Javascript, a couple of DSLs including one I wrote myself, man, it's endless.) I've gotten fanatical about a couple, at various points (AREV in 1989, XSLT in 2001, Python today).</p> <p>Many times I've had the language chosen for me by circumstance, either because I'm working on an existing codebase or the hardware only supports one useful language. It was only fairly late in my career that I got to the point where I started making those decisions myself. I like that position better.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/112526#112526 1 Answer by bruceatk for Did you ever switch from one programming language to another? bruceatk 2008-09-21T23:25:48Z 2008-09-22T18:27:56Z <p>I learned languages in the order listed below. I am actively using Java, C#, VB .NET, PowerBasic, PowerShell, Python, PHP, and VB 6. My favorites at this time are PowerShell, PowerBasic, and C#.</p> <p>I try to use the language that best fits my task. This is usually a combination of language features, performance, run time requirements, and my comfort level. This is a dynamic combination that changes over time. I also devote some time each year to learn different languages. My goal is always to be more efficient and to maximize what I can do in as few languages as possible.</p> <p><code><pre> 1. Fortran 11. Forth 21. Python 2. Honeywell Assembler 12. 8086 Assembler 22. PowerBasic 3. Cobol 13. C++ 23. REALbasic 4. PL/I 14. VB 2.0 24. Ruby 5. IBM 370 Assembler 15. Perl 25. PowerShell 6. C 16. Java 7. Atari Basic 17. PHP 8. 6502 Assembler 18. LotusScript 9. Pascal 19. C# 10. Action 20. VB .Net </pre></code></p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/112605#112605 0 Answer by abronte for Did you ever switch from one programming language to another? abronte 2008-09-22T00:01:55Z 2008-09-22T00:01:55Z <p>I constantly switch around depending on what I am trying to accomplish.</p> <p>java - first language, but never use it anymore PHP - anything web related Perl - anything parsing related Python - usually use this if i need to make some kind of command line app really quickly C/C++ - anything speed related C# - anything windows gui related</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/113064#113064 0 Answer by gbarry for Did you ever switch from one programming language to another? gbarry 2008-09-22T03:38:16Z 2008-09-22T03:38:16Z <p>Yay, story time...I was writing in assembler, and I took a class in FORTH. I saw how FORTH collected and organized the very habits we ASM coders had developed over time. Plus some more good ideas. I knew I couldn't switch over in the middle of a project, but vowed to use it for the next one. Meanwhile, the code in my current project started to rearrange itself to look more like FORTH. After the switch, I used FORTH for about 16 years.</p> <p>More recently, I was constructing an embedded web server and writing the glue code in C. But I found I was having to generate html pages on the fly. Now, Rasmus Lerdorf had come to town and explained how PHP grew out of the same repetitious code writing. I knew the right thing to do was to find a way to embed PHP in this server. And once I did, boy was I glad! PHP let me do so much more.</p> <p>Moral of the stories: Sometimes, the language calls out to you.</p> <p>P.S. I see William Keller's comment about PHP becoming "an unmaintainable mess". I tend to agree. So I've made a mental note to pay more attention to Python. </p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/113166#113166 12 Answer by Antti Rasinen for Did you ever switch from one programming language to another? Antti Rasinen 2008-09-22T04:24:30Z 2008-09-22T04:24:30Z <blockquote> <p>Did you ever switch from one programming language to another?</p> </blockquote> <p>Why yes I did! How could you know?</p> <blockquote> <p>If yes, why?</p> </blockquote> <p>Because the world changes. Once upon a time every computer came with a BASIC interpreter (or two). These days I have no idea how to lay my hands on one. Instead, my computer contains least Python, perl, Ruby and the whole GCC. </p> <p>I started with BASIC. Now it's mostly Java and Javascript at work, Python at home. Next target... perhaps Erlang. Or Arc.</p> <p>Besides personal language overhaul, the industry has gone from C/C++ to Java/C#. The world turns and we'd better turn with it or risk becoming the next generation version of the suspender wearing COBOL-hackers, who lurk in the dark hallways of most large companies.</p> <blockquote> <p>The <strong>stereotypical programmer</strong> 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. <em>(emphasis mine)</em></p> </blockquote> <p>GET OUTTA HERE! In my world, the stereotypical Programmer uses the best tool for the job. Period. Punkt. Piste.</p> <p>Even the most stubborn one-language guys eventually give in. I've seen this a lot lately when former C++ or Java programmers discover Python or Ruby. Their eyes used to burn with zealous fire when they were talking about their Serious Language For Serious Business (yes, a Cal Henderson -quote)... but these days you can see a sort of a enlightened glow in there. And it is good.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/116325#116325 0 Answer by Ryan Delucchi for Did you ever switch from one programming language to another? Ryan Delucchi 2008-09-22T17:43:06Z 2008-09-22T17:43:06Z <p>I used to be a C++ programmer who frowned upon anything that was Java-related. Then in 2003, towards the end of my time at <a href="http://www.ucsc.edu" rel="nofollow">The University of California, Santa Cruz</a> I got involved with the <a href="http://www.soe.ucsc.edu/~griss/agents.htm" rel="nofollow">SCATE Project</a>, which involved pure Java development. After making a number of semantic and philosophical shifts in my thinking, I can to appreciate Java's understated elegance. And while, to this day, I continue to encounter my fair share of memory management issues, garbage collection has made this significantly less painful.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/116350#116350 0 Answer by Maurice for Did you ever switch from one programming language to another? Maurice 2008-09-22T17:48:03Z 2008-09-22T17:48:03Z <p>Basic -> Turbo Pascal -> Turbo C - > Turbo C++ -> dBase III -> Clipper -> Visual FoxPro -> Visual Basic 6 -> Visual Basic.NET -> C#</p> <p>And throw in some more along the way like Perl, Python, Prolog, Fortran I learned but didn't really use :-)</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/116375#116375 0 Answer by Christopher Klein for Did you ever switch from one programming language to another? Christopher Klein 2008-09-22T17:52:27Z 2008-09-22T18:27:20Z <p>Started in 8086 assembler and Pascal in college, moved to c++(DEC VMS), then my life got interesting using DEC MUMPS (PDP11/44), Visual Basic progressed to InterSystems MUMPS(later renamed 'M' or InterSystems Cache), then once .NET hit the market started using VB.NET and C#</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/116386#116386 0 Answer by Mike Heinz for Did you ever switch from one programming language to another? Mike Heinz 2008-09-22T17:53:38Z 2008-09-22T17:53:38Z <p>I don't know about the "stereotypical programmer" but I've used dozens of languages in my career. Let's see if I can still list them....</p> <p>I've used assemblers, machine code (not the same thing...), FORTH, APL, Pascal, assorted BASICs, Modula-2, COBOL, FORTRANs IV, 66, 77, 90 and 95, C, C++, Objective-C, Lisp, Prolog, sh, bash, csh, zsh, rexx, Perl, PHP, Java, Javascript, C#, SAS, SQL and assorted "4GL" database access languages.</p> <p>And I'm sure I've forgotten some.</p> <p>But of all those languages, I <strong>firmly</strong> believe that the best language of all time is what ever language is best for the job at hand. You don't write websites in APL and you don't write operating systems in Javascript - anymore than you'd use a band saw to build a car.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/116419#116419 0 Answer by Nick Gerakines for Did you ever switch from one programming language to another? Nick Gerakines 2008-09-22T17:59:09Z 2008-09-22T17:59:09Z <p>I started on old-school MUDs in c and then c++. Professionally I used Perl for quite a while then found a position that was mostly c++ with bits of Perl. My first book used PHP/SQL as a proof of concept language, however I've used PHP as a tinkering language more than a production language. Recently I was introduced to Erlang which has been the subject of my second book as well as several conferences and presentations. Professionally I do native iPhone development now.</p> <p>C <strong>~></strong> C++ <strong>~></strong> Perl <strong>~></strong> C++ <strong>~></strong> PHP (first book) <strong>~></strong> Objective-C <strong>~></strong> Erlang (second book)</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/116435#116435 2 Answer by Robert S. for Did you ever switch from one programming language to another? Robert S. 2008-09-22T18:02:29Z 2008-09-22T18:02:29Z <p>For me, it was GWBASIC -> QBasic -> Visual Basic -> C#.</p> <p>I didn't spend any time on VB.NET. I saw C# as my way out of the BASIC world.</p> <p>I would like to learn Ruby and master JavaScript, but I never make the time.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/116447#116447 0 Answer by Vasil for Did you ever switch from one programming language to another? Vasil 2008-09-22T18:03:56Z 2008-09-22T18:03:56Z <p>Pascal->C->Java->C#->Java->Python->C and so on... First for education, now because I use whatever is fit to get the job done.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/116487#116487 0 Answer by Midhat for Did you ever switch from one programming language to another? Midhat 2008-09-22T18:09:45Z 2008-09-22T18:09:45Z <p>I was a hardcore vb programmer, promoted to vb.net. In a program requiring lot of type casting, my vb code got too ugly even in the first class I wrote. Then i switched to c# for some cleaner type casts</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/116572#116572 0 Answer by indiv for Did you ever switch from one programming language to another? indiv 2008-09-22T18:21:38Z 2008-09-22T18:21:38Z <p>4 years out of school now, and I switch all the time.</p> <p>In school it was mainly java, c++, and 68K assembly, switching back and forth all the time.</p> <p>Then my first project at work was in C++. I completed a hobby project in PHP during this time. When my first work project shipped, our second project had a C# GUI talking to a C++ back-end. Third project I was in C (the GUI library GTK is in C) and C++. Fourth project I jumped in and helped out doing perl that drove a web page admin portal. During that time I also did other components in C and C++.</p> <p>I had the option to do a project in 8560 assembly, but I passed on it since it's just supporting a legacy product about 10 years old. New development for me only, please.</p> <p>Anyway, who are these developers that just use one language?</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/116665#116665 0 Answer by Daniel Auger for Did you ever switch from one programming language to another? Daniel Auger 2008-09-22T18:37:11Z 2008-09-22T18:37:11Z <p><strong>Childhood through college:</strong><br /> Basic (c64) -> 6502 Assembly (c64) -> Basic (IBM/PC) -> Visual Basic -> x86 Assembly -> RPG -> Cobol -> C -> C++</p> <p><strong>Professional life:</strong> I started out with Java doing JSP. I then moved to ASP/VB Script which was an extremely painful move for me at the time. Then I moved to C# which I enjoy just as much, if not more, than Java development. </p> <p>On the professional side, language switches tend to happen with job switches since many companies don't want development happening with more than a couple/few languages and tools at a time. I can't just go ahead and implement something in C because it would be the best tool for the job because it is not an approved language at my place of employment. In my current position, I switch between C#, batch script, Sql/DTS depending on the task at hand. </p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/175967#175967 2 Answer by Paul Lefebvre for Did you ever switch from one programming language to another? Paul Lefebvre 2008-10-06T20:06:54Z 2008-10-06T20:06:54Z <p>Only an idiot programmer would say they use a single programming language all the time.</p> <p>Any programmer worth anything will know at least a half-dozen languages. It's not like most of them are all that different, anyway.</p> <p>Nowadays I primarily use REALbasic, but I've worked with more languages than I'm sure I'll recount here:</p> <ul> <li>C, C++</li> <li>Java, PowerBuilder, C#, VB.NET</li> <li>BASIC, Visual Basic, Pascal</li> <li>PHP, ASP</li> <li>Assembly (8086)</li> </ul> <p>I'm really keen at taking a look at Ruby and/or Python but just haven't had the time.</p> <p>Why do I switch? Sometimes it's what the company requires, sometimes it's what I think will work best, sometimes it's what I think is the most fun.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/184412#184412 0 Answer by Toybuilder for Did you ever switch from one programming language to another? Toybuilder 2008-10-08T19:16:33Z 2008-10-08T19:16:33Z <p>Assembly. I'm always writing in assembly. I just use my compilers as macros, and interpreters for scripting. :)</p> <p>Seriously, I have progressed from Apple BASIC (Applesoft and Integer) to Apple 6502 assembly, to GW/MS-BASIC to C and 8086 assembly. A little further down the road, I picked up Unix and DOS shell scripting, and more assembly for various MCU's. C++ then became popular. I then had some VB, Java (mostly with .JSP) and Perl come my way, and I'm just now starting to touch the fringes of C#. Oh yeah, throw in some SQL, sed, TFLanguage (a proprietary language), some report generators that I don't care to remember anymore, and of course, the obligatory school classes on Pascal (high school) and Lisp (college).</p> <p>Almost all of the language choices were dictated by market forces -- either the market of books available at the time, or the market of the guy cutting me the paycheck.</p> <p>To me, the first class of the "stereotypical programmer" -- who sticks to his one-true-platform -- is a guy who then goes home after work and always eats the same steak and potatoes, and drinks his Pabst Blue Ribbon. Indian food? Isn't that grilled buffaloes or somethin'? If he's happy where he is, great for him. (Side note - he's probably also proud of always filing his TPS Reports...)</p> <p>But I like a bit more variety in my programming diet, thank you. But I'm still main stream. I don't think I have the stomach to more than nibble on a little bit of Lisp. And the other exotic stuff? Not now, thank you.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/184423#184423 1 Answer by Jobi Joy for Did you ever switch from one programming language to another? Jobi Joy 2008-10-08T19:19:13Z 2008-10-08T19:19:13Z <p>if you are a skilled programmer never even give importance to one language and don't stick within the language barriers. Software is in its baby steps now, so adaptability is the best skill for a programmer in these days,</p> <p>Personally I came from <strong>Pascal - C - C++ - Java - C# and VB.NET</strong> And now I am a Language agnostic</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/184454#184454 0 Answer by Maudite for Did you ever switch from one programming language to another? Maudite 2008-10-08T19:28:02Z 2008-10-08T19:28:02Z <p>Today: C#, VB6, VB.net. Why all three? Legacy code is in VB6. All new code is in C#. Interop user controls must be in VB.net. I have written for at least an hour in each one of these languages today. </p> <p>While all this is going on, I am using ruby for hobby programming because I like rails. </p> <p>I think a programmer should be able to switch from language to language without much difficulty; although, I am aware that to use a language well it takes a lot of experience with that language.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/184496#184496 1 Answer by Cruachan for Did you ever switch from one programming language to another? Cruachan 2008-10-08T19:38:57Z 2008-10-08T19:38:57Z <p>20+ years....</p> <p>Fortran 77 Algol Cobol x86 Assembler Natural Basic Pascal Prolog C Delphi Java SQL C++ Javascript VB/VBA VB.Net Perl Cold Fusion PHP Python</p> <p>And that's committing all sorts of stuff like Awk, Easytrieve, Snobol, Smalltalk etc etc which I've dabbled in or have used for small tasks and I'm sure to have forgotten a few too. I'm probably somewhat more 'new language' curious than many but I don't think I'm especially untypical.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/184497#184497 1 Answer by crashmstr for Did you ever switch from one programming language to another? crashmstr 2008-10-08T19:39:02Z 2008-10-08T19:39:02Z <p>Often, the development platform can make the decisions for you. i.e. I had to learn and program in <a href="http://en.wikipedia.org/wiki/Lua_(programming_language)" rel="nofollow">lua</a> to make a World of Warcraft add-in. Early in my career, AutoLisp was the only option for AutoCAD programming, before they opened it up to C and latter C++ (and now .net).</p> <p>Sometimes you have a choice in language, sometimes the platform narrows down that choice.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/184506#184506 0 Answer by Flory for Did you ever switch from one programming language to another? Flory 2008-10-08T19:40:46Z 2008-10-08T19:40:46Z <p>Started off with Basic as a kid, stayed there for a few years (didn't know any better).</p> <p>Got to college and ended up in Pascal.</p> <p>Then C on Unix.</p> <p>First job was doing C on Unix. Ended up doing that long time about eight years.</p> <p>Then the big boss at the company I was working at wanted an new application with a Windows GUI. He wanted to do PowerBuilder, looked at it, didn't like it, convinced him to go with C#.Net.</p> <p>I wish I could say I had some brillant motivation for each switch but it was really just based on the job.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/224848#224848 0 Answer by Gregory Higley for Did you ever switch from one programming language to another? Gregory Higley 2008-10-22T08:21:04Z 2008-10-22T08:21:04Z <p>I'm a junky. I use and know all kinds of programming languages. This is not an exhaustive list, nor is it in any particular order. I've only listed languages in which I feel reasonably competent.</p> <ul> <li>Dylan</li> <li>Ruby</li> <li>Python</li> <li>Erlang</li> <li>Haskell</li> <li>REBOL</li> <li>C#</li> <li>VB.NET</li> <li>VB (trying to forget)</li> <li>F#</li> <li>Objective C</li> <li>F-Script</li> <li>Nu</li> <li>AppleScript</li> <li>XQuery</li> <li>XSLT</li> </ul> <p>And several others I'm probably forgetting.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/228335#228335 0 Answer by ZCHudson for Did you ever switch from one programming language to another? ZCHudson 2008-10-23T02:24:33Z 2008-10-23T02:24:33Z <p>I started teaching myself C in high school. (Never learned much do to other activities and lack of motivation.)</p> <p>Went to college and was doing C++ until I changed my major and quit programming. (Bad choice, I don't even like political science... kind of graduated on accident.)</p> <p>Went BACK to college after getting a Political Science degree to go ahead and get my CS degree. All C++ and Java. (Not a fan of Java by the way.)</p> <p>Decided to do some web development stuff on the side while working and going to school and got pretty comfortable with and somewhat addicted to PHP. </p> <p>Eventually I got sick of trying to run my own business, though I still help with it some and still do some PHP, but I'm also working at a small shop doing C# and VB.NET now.</p> <p>After being forced to use VB at work, I realized how much I hated it, and decided to try to get into graphics/game programming in my spare time.</p> <p>So now, I'm getting familiar with C++ again, but I'm probably most comfortable with C# or PHP.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/231800#231800 0 Answer by Mark Lubin for Did you ever switch from one programming language to another? Mark Lubin 2008-10-23T22:28:29Z 2008-10-23T22:28:29Z <p>started on BASIC</p> <p>did/doing c/java at school</p> <p>learned php for doing web development</p> <p><em>realized php sucks</em></p> <p>ruby</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/231844#231844 0 Answer by JB King for Did you ever switch from one programming language to another? JB King 2008-10-23T22:44:16Z 2008-10-23T22:44:16Z <p>I have switched multiple times and for a few different reasons:</p> <p>1) Commodore 64 Basic to Watcom Basic -> This was going from grade school where we had Commodore 64s and I had one at home that I programmed a few things on and enjoyed, but the high school computing environment didn't use Commodore 64s so I had to switch dialects if not something more in going from a 64K very specific machine to an environment where we had a file server and people could switch machines and still use their code.</p> <p>2) Watcom Basic to Pascal -> This was going from High School to first-year university. In Basic you have numbers and strings usually and the $ at the end distinguishes them while in Pascal you can now specify types which gives one some serious power, IMO.</p> <p>3) Pascal to Modula-3 -> Going from first year Computer Science of Pascal on Macs to Modula-3 on UNIX machines. Big shift in going from single button mouse to 3 button mouse, to having a shell that can be customized and monitors that are shaped very differently for the most part as aside from a room of IBM AIX the others were simple terminals with only a couple of rooms with colour monitors and the rest are black and white.</p> <p>4) Modula-3 to C++ -> Concurrent programming using a micro-C++ add-on to introduce flow control functions and allow us to learn these things.</p> <p>5) Visual C++ to VBScript -> Going from ISAPI extensions and a proprietary markup language to VBScript and HTML was quite the shift but I did get though it. This was also my introduction to ASP.</p> <p>6) VBScript to C#.Net -> Going from ASP to ASP.Net had a few interesting moments at timse as where in one you didn't have to define things, in C# you have to and this along with a few other differences were some of the big things I noticed.</p> <p>7) Adding Javascript -> Client side validation was something of an add-on from my view and not really a change.</p> <p>8) VB.Net, VB6, and JScript -> These are all add-ons when dealing with legacy systems built in something that I don't have control over.</p> <p>I left out learning SQL, XML and a few other classes of languages. Generally I find aside from a few syntax changes most programming that I've done boils down to just a few things: Conditionals, repeating, and then the whole pile of things called variables.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/231859#231859 0 Answer by Ryan Smith for Did you ever switch from one programming language to another? Ryan Smith 2008-10-23T22:49:47Z 2008-10-23T22:49:47Z <p>I switch between languages daily if not hourly.</p> <p>I guess in the programming world you're always working with several different languages at the same time (SQL, C#, JavaScript, HTML, XML, CSS, etc.), but I'm guessing that you're asking something more like switching from VB.NET to C# - which I do often, or .NET to PHP which I also have to do on a daily basis to handle all the different projects that I deal with.</p> <p>So I guess basically being a programmer means knowing and using many different languages.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/231877#231877 0 Answer by Peter LaComb Jr. for Did you ever switch from one programming language to another? Peter LaComb Jr. 2008-10-23T22:55:03Z 2008-10-23T22:55:03Z <p>BASIC C x86 Assembler C++ VB (6 and earlier) PHP RDML/RDMLX C# VB.Net</p> <p>Oh, and I read RPG (don't know the finer points of writing it, but I can figure out what it does).</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/231882#231882 1 Answer by Pavel Feldman for Did you ever switch from one programming language to another? Pavel Feldman 2008-10-23T22:56:20Z 2008-10-23T22:56:20Z <p>It can sound funny, but I started as C# developer, and then had to switch "temporary" to Java because of project which I was assigned to, but then I started using IntelliJ IDEA and switched to Java permanently because of it. I still think C# is better language and still prefer it for GUI desktop applications.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/231907#231907 3 Answer by Robert Durgin for Did you ever switch from one programming language to another? Robert Durgin 2008-10-23T23:13:05Z 2008-10-23T23:13:05Z <ul> <li><strong>Started in Basi</strong>c - Wanted to modify the 'Gorillas' game that came with MS-DOS.</li> <li><strong>Went to VB</strong> - So I could make AOL Bots.</li> <li><strong>Went to Java</strong> - Because it was the new buzzword and I wanted to make annoying applets.</li> <li><strong>Went to C</strong> - Because it was taught in High School and college (and got sick of the slow JVM at the time).</li> <li><strong>Went back to Java</strong> - For my first job and I wanted to eat some JavaBeans.</li> <li><strong>Went to C#</strong> - For my second job.</li> </ul> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/231948#231948 1 Answer by lajos for Did you ever switch from one programming language to another? lajos 2008-10-23T23:28:04Z 2008-10-23T23:28:04Z <p>BASIC</p> <p>Assembly</p> <p>Pascal</p> <p>C</p> <p>Shell scripts</p> <p>Python</p> <p>Scheme (I gave this one up pretty quickly...)</p> <p>Java</p> <p>Then I realized that it might be best to learn more languages and use the right one for the job.</p> <p>Now I use Objective-C, Java, PHP, Python, C, C++ and C#. From this list I can always find one that suits a certain problem/platform best.</p> <p>I stayed away from perl because it makes my head hurt.</p> <p>I've never used Ruby, but if a project will require it, I will add taht to the list, too.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/232014#232014 1 Answer by yogman for Did you ever switch from one programming language to another? yogman 2008-10-23T23:51:45Z 2008-10-23T23:51:45Z <p>Basic -> C -> C++ -> Visual C++ -> Java -> ARM C++ -> C# -> PHP (as a cronjob) -> Python -> Perl</p> <p>as work requires it.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/236506#236506 1 Answer by Pistos for Did you ever switch from one programming language to another? Pistos 2008-10-25T14:43:59Z 2008-10-25T14:43:59Z <p>IBM/MS Basic -> Pascal and Assembly -> Java, C/C++ -> Java, C/C++, smattering of Lisp, Prolog, shell scripting -> Perl, VBScript -> PHP, Javascript, a bit of Python -> Ruby.</p> <p>In language learning, I just kept looking for and finding increasing contentment, satisfaction and even joy. IMO, the "many tools in the toolkit" analogy only goes so far. Today's modern languages are extremely powerful and flexible, and most popular languages have the wherewithall to let you do 99% of the applications you want to, and do it reasonably well. That's the reason why you often hear "I would try Language Y, but I can already do it in Language X".</p> <p>I think, in choosing a language for a task (or for "all" your tasks), you should aim to minimize frustration and annoyance. You want a language that gives you the shortest path from idea to working implementation. Since different people can have different mindsets and preferred approaches to problem solving, and languages (or rather, their authors) have different philosophies on how programming should be done, what fits you most comfortably will be different from what fits others. But I think everyone should strive to reach the goal of minimum effort for maximum results.</p> <p>Excessively verbose syntax; syntax that "needs" an IDE to write; standard libraries and APIs that are difficult to remember; immature standard libraries; compiler quirks; exposure of underlying hardware or low-level architecture (and the need to work with or around them) -- we should seek to remove all these things. Ultimately, the only thing a programmer needs to do is specify things that a computer should not decide. Everything else is an obstacle to the utopian programming experience. If a language empowers us this way, then, in my opinion, we can begin to talk of that language as "the best language".</p> <p>For me, Ruby comes closest to being this language.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/236545#236545 1 Answer by nmiranda for Did you ever switch from one programming language to another? nmiranda 2008-10-25T15:09:55Z 2008-10-25T15:09:55Z <p>I came from programming VB6 to VB.Net but now I'm in C#, I switched to this language cause at the beginning of this year (2008) i had to make a very simple application in a mobile device and i had to write the code in VC++, I never programmed in VC and was difficult but also was magical, the experience was awesome. I had to study very much and I really fell in love of the C language.</p> <p>That hooked me to C# although is the same framework of VB.Net but you also find more resources in the web and another reason I switched (C, C++, C#) is that (IMHO) I feel that you become a better programmer, personally I found myself with an enlightment feeling about this language, the last time I felt that way was when I started to study Scheme.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/236563#236563 1 Answer by Ferruccio for Did you ever switch from one programming language to another? Ferruccio 2008-10-25T15:24:12Z 2008-10-25T15:24:12Z <p>I tend to dabble in every language I can get my hands on, but if I count just the languages with which I've actually produced something useful (in no particular order):</p> <ul> <li>8080/Z80 assembly language</li> <li>MBASIC</li> <li>C</li> <li>Pascal</li> <li>FORTRAN</li> <li>C++</li> <li>C#</li> <li>Python</li> <li>Perl</li> <li>Visual Basic</li> <li>JavaScript</li> <li>PHP</li> <li>x86 assembly language</li> <li>dBASE</li> <li>SQL</li> <li>Informix-4GL</li> </ul> <p>and a few DSLs I've built, some which were pretty useful and others I'd really like to forget :-)</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/236572#236572 4 Answer by Ant for Did you ever switch from one programming language to another? Ant 2008-10-25T15:27:36Z 2008-10-25T15:27:36Z <p>I can't really post a timeline of languages I've switched through because I tend to use multiple languages at the same time. I think it's important to have more than one language in your toolset - this means you can choose the right tool for the job. I hate having to work with developers who've learned to use one language and apply it to every single job they undertake. It's like working with someone who in the murky past was taught to use a hammer, and now uses it for everything.</p> <ul> <li>Got a nail that needs bashing in? <strong>That'll need a hammering!</strong></li> <li>Got a screw that needs screwing in? <strong>That'll need a hammering!</strong></li> <li>Got a kitten that needs looking after while you're on holiday? <strong>That'll need a hammering!</strong></li> </ul> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/236725#236725 2 Answer by S.Lott for Did you ever switch from one programming language to another? S.Lott 2008-10-25T17:28:48Z 2008-10-25T17:28:48Z <p>"Did you ever switch from one programming language to another? If yes, why?"</p> <p>Yes. To stay employed. </p> <p>See <a href="http://homepage.mac.com/s_lott/iblog/architecture/C588245363/E20080928192106/index.html" rel="nofollow">Programming Languages I've Learned, Programming Languages I've Learned in Order</a>, <a href="http://www.eflorenzano.com/blog/post/programming-languages-ive-learned-rough-order/" rel="nofollow">Programming Languages I've Learned (In Rough Order) Meme</a>.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/300500#300500 1 Answer by Børge for Did you ever switch from one programming language to another? Børge 2008-11-18T23:09:12Z 2008-11-18T23:09:12Z <p>Java to C#</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/342834#342834 3 Answer by Norman Ramsey for Did you ever switch from one programming language to another? Norman Ramsey 2008-12-05T03:35:15Z 2008-12-05T03:35:15Z <p>Lots of good reasons above to change languages because languages are different. I'm going to mention times I changed <strong>from one language to a very similar language</strong>.</p> <p>Started out writing shell scripts in sh with plenty of sed and awk. Switched to ksh88 when I worked for phone companies; not much change. Then, when ksh93 was available, switched in earnest. Reason: sh compatible still works for 90% of scripts, but when extra power is needed, ksh93 is there. I never need or use awk any more.</p> <p>Second example: Learned Icon in school around 1990. Still think Icon has the best string-processing model ever invented. Very good data structures for sequences, sets, tables. But Icon has poor libraries, poor integration with OS, and can't be extended. Still worth it for string processing and powerful search capability. But by 2000, Lua is powerful enough to have first-class functions, good integration with OS, <em>great</em> extensibility, and very good string processing. Essentially the same data structures as Icon, but a simpler design. Not as good at strings as Icon, but way better than awk, perl, and the rest of the regexp crowd. By 2005 I discover I have not written a new Icon program in 6 years. Now in 2008 I am replacing legacy Icon code with new Lua code.</p> <p>Third example: Modula-3. Used M3 for a major project around 1990-1992, shortly after it was invented. Still the best design I have ever seen for writing large <em>systems</em> programs. Superb ability to have both <em>safe</em> and <em>unsafe</em> code in the same program. But Digital has no idea how to promote a language, in 1995 Sun rolls out Java, by 2000 it is clear that Modula-3 is dead. At the same time, systems code has become a tiny fraction of what I do. So now when I have to do it, it is back to the C I learned in 1984.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/357054#357054 1 Answer by DaveE for Did you ever switch from one programming language to another? DaveE 2008-12-10T18:22:00Z 2008-12-10T18:22:00Z <p>Started in Quantel Business Basic</p> <p>SAS on S/370 - changed employer</p> <p>SAS &amp; C on OS/2 - changed employer</p> <p>SAS on Mac - changed employer (dual boot? don't remember...)</p> <p>PowerBuilder - internal transfer to app dev group</p> <p>PowerBuilder @ new employer </p> <p>Java - client choice</p> <p>Java/PowerBuilder/Javascript combined</p> <p>Powerbuilder - changed employer</p> <p>C# - new development @current employer</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/357096#357096 1 Answer by JB King for Did you ever switch from one programming language to another? JB King 2008-12-10T18:40:00Z 2008-12-10T18:40:00Z <p>Yes, many times I have switched and probably will do so in the future. A few examples:</p> <p>1) Basic -> Pascal. In high school, there was a shift to a language that allowed more types as Basic seemed rather limited to int, string, and arrays, at least the Watcom and Commodore 64 Basic I used.</p> <p>2) Pascal -> Modula-3. Going from first to second year at university, from Macs to Unix systems this was the change in programming languages.</p> <p>3) Modula-3 -> C/C++. 2nd to 3rd year university, the latter was used for both a Concurrency and a Data Structures course.</p> <p>4) C/C++ -> VBScript. ASP replacing ISAPI Extension functionality in my world. It was kind of nice to get into HTML and add scripting tags to make the functionality rather than work in C/C++ Macros and a propietary mark-up language.</p> <p>5) VBScript -> C#. Going to ASP.Net from ASP. This was useful in getting rid of the on-the-fly variable naming issues I had seen in ASP repeatedly as most variables are global by default.</p> <p>Of course this omits reversions as legacy applications may have used older stuff as well as 3rd party code that may have been in something I didn't have a lot of control over. I also am skipping dialectal changes like going from Commodore 64 Basic to Watcom Basic.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/357163#357163 1 Answer by joseph.ferris for Did you ever switch from one programming language to another? joseph.ferris 2008-12-10T19:01:13Z 2008-12-10T19:01:13Z <p>As a hobbyist, BASICA to GWBASIC to QUICKBASIC, because that is what came with the computers. Those were the logical progressions.</p> <p>Through high school, I picked up, in no particular order Borland C++, Visual Basic 3, a bit of Perl, and a little COBOL. I did odd contracts in each, none of which were probably particularly good.</p> <p>Through college, I switched largely to Visual Basic 4/5 and Visual C++, with courses that covered Perl, C++, and COBOL.</p> <p>My first job in development was Visual Basic 5 and moved to a shop that was using Visual Basic 6. That shop subcontracted me to a couple of vendors where I revisited Perl and COBOL again (the client was Honeywell, who I am sure is still using both languages, based on their rate of adoption).</p> <p>Moving to another job, it was still mostly Visual Basic 6 with a side trip through PHP and Classic ASP. Finally, I was able to get my foot in the door with a little VB.NET very close to the time of initial release.</p> <p>We packed up our bags and moved east for better job opportunities where I hit the ground running with C#. It has been mostly C# since then, with the occasional "legacy" application in VB.NET.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/357174#357174 0 Answer by hamishmcn for Did you ever switch from one programming language to another? hamishmcn 2008-12-10T19:03:35Z 2008-12-10T19:03:35Z <p>C++ to C# Unfortunately I am back on C++ now</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/357196#357196 0 Answer by Ken Ray for Did you ever switch from one programming language to another? Ken Ray 2008-12-10T19:09:59Z 2008-12-10T19:09:59Z <p>Anyone who has been in this industry for more than a few years has switched languages. In 30+ years of professional programming, I have used:</p> <p>Fortran Pascal C Algol APL PDP-11 Assembler Cobol OS-360 Assembler Perl Javascript VB / VB.Net</p> <p>There are various dialects of those languages - such as Cobol on Univac 1100, IBM MVS, IBM System/38.</p> <p>A good programmer can pick up just about any language.</p> <p>A Fortran programmer can write Fortran programs in any language.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/435325#435325 0 Answer by Andy Dent for Did you ever switch from one programming language to another? Andy Dent 2009-01-12T12:51:07Z 2009-01-12T12:51:07Z <p>More-or-less linear:</p> <ul> <li>8-bit Durango BASIC because that was my first job</li> <li>Nixdorf BASIC - hired to maintain accounting software</li> <li>VAX Fortran - because I became a VMS sysadmin</li> <li>Modula-2 - because it was a nice compiler for my Fat Mac 512K</li> <li>Think Pascal - because it had a better debugger and let me build real Mac programs</li> <li>Think C - cut-down C++ because 3rd party libraries were increasingly using C apis</li> <li>C++ - to use Metrowerks PowerPlant framework, and MFC and others</li> <li>Objective-C because I had to leave PowerPlant behind and move to Cocoa for OS/X GUI</li> </ul> <p>Pretty much in parallel over the last few years:</p> <ul> <li>REALbasic - to get some simple GUIs written, stayed because I found it productive for cross-platform GUI programming and they had implemented enough of my favourite OO features to make it a neat language</li> <li>Python because I heard people rave about it, tried it and felt comfortable, great for prototyping</li> <li>Ruby because Andy Hunt's praise intrigued me and I'm an OO guy to the heart who dabbled in Smalltalk and Python white-space sensitivity was in my way writing code generators</li> <li>C# because I wanted to program better GUIs than MFC and I like the new features in the language</li> <li>Forth to play with programming on my Palm on a tropical holiday</li> <li>Lisp (Scheme) because of Paul Graham</li> <li>ActionScript/JavaScript because I needed to receive brainwaves in Flash</li> <li>XSLT because I'm a masochist (and I've had to deploy some serious local XML transformations)</li> </ul> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/435344#435344 0 Answer by Nic Wise for Did you ever switch from one programming language to another? Nic Wise 2009-01-12T13:02:00Z 2009-01-12T13:02:00Z <ul> <li>1989: Started with Pascal (Turbo, CPM)</li> <li>Moved to Pascal (Turbo, MSDOS) - when I bought a PC! </li> <li>Integrated 8086 assember (inside Turbo Pascal) - because I could. Fancy graphic demo scene FTW! </li> <li>Moved to Delphi - needed to get PAID for the work. </li> <li>2000 Moved to Java - because it was the cool thing, and delphi didn't do web. </li> <li>Moved back to Delphi a bit - money, again. </li> <li>Moved to C#, because I wanted to do .NET.</li> <li>Learned Ruby, because rails looked cool. Never used it. </li> <li>2008 Learned Python because google app engine looked cool. Using it a little. </li> <li>2009 Learning Objective-C again - because I have an iphone :) Not using it much. </li> <li>Still using C#. Pays the bills. Wish I could use it on the iphone and GAE....</li> </ul> <p>Learning new stuff keeps me interested, and also frustrates me no end. Go figure.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/460806#460806 0 Answer by Robert MacLean for Did you ever switch from one programming language to another? Robert MacLean 2009-01-20T10:56:15Z 2009-01-20T10:56:15Z <ul> <li>Started in Basic - cause it shipped with DOS (I didn't have money for anything else)</li> <li>Moved to Pascal - cause my friend used it (he used it because in high school thats what they used, and I had yet to get to high school)</li> <li>Moved to Delphi - cause turbo vision was a ball ache and making windows apps seemed cool.</li> <li>Moved to ASP, PHP and Perl - cause my job required me to do it</li> <li>Moved to Kylix - cause i didn't realise Borland would shoot themselves in the foot so bad and cause making Linux apps seemed cool (pheh I'm better than those Windows developers now)</li> <li>Moved to C# - cause I needed a job and that's where the jobs were.</li> </ul> <p>So to summerise: No budget -> peer-pressure -> wow factor -> finally to get the job done (i.e. basically the same process corporates go through when picking anything)</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/460844#460844 0 Answer by Edin for Did you ever switch from one programming language to another? Edin 2009-01-20T11:09:11Z 2009-01-20T11:09:11Z <p>I switch from language to language on daily basis, at work i use C#, for personal projects PHP for Web and Delphi for windows applications.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/460874#460874 0 Answer by Stephen Newman for Did you ever switch from one programming language to another? Stephen Newman 2009-01-20T11:17:42Z 2009-01-20T11:17:42Z <p>I went Basic, Pascal, Visual Basic, C#</p> <p>with a little bit of C++ and Java at uni</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/460917#460917 0 Answer by HighPerComp for Did you ever switch from one programming language to another? HighPerComp 2009-01-20T11:33:02Z 2009-01-20T11:33:02Z <p>Sure did</p> <p>Fortran IV to Fortran 77 in the mid-eighties</p> <p>Fortran 77 to Fortran 90 in the late nineties</p> <p>Fortran 90 to Fortran 95 in the very late nineties</p> <p>and Fortran 95 to Fortran 2003 about 15 minutes ago</p> <p>Oh, and in case anyone reading this thinks I'm being frivolous, I've also programmed in Pascal, APL, C and C++, Haskell, Python, Mathematica, Matlab and probably other stuff I've blotted from my memory.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/476512#476512 0 Answer by ee for Did you ever switch from one programming language to another? ee 2009-01-24T19:10:09Z 2009-01-24T19:10:09Z <p><strong>Heh...this is beginning to look like a programmer resume site.</strong></p> <pre><code>List&lt;ProgLang&gt; relevantLangs = myMemory.RetrieveLanguages( ProgLang.InteractionFlag.OnceTypedSome | ProgLang.InteractionFlag.ForcedToUseInSchool | ProgLang.InteractionFlag.UseDailyAtWork | ProgLang.InteractionFlag.PlayWithForFun); foreach (ProgLang lang in relevantLangs) lang.DumpToPost(); </code></pre> <p><strong>Did you ever switch from one programming language to another?</strong></p> <p>Absolutely. Do so daily.</p> <p><strong>If yes, why?</strong></p> <p>Many reasons (With higher likelihood first):</p> <ul> <li>Client <code>N</code>'s code is in language <code>X[N]</code>, and: <ul> <li>a rewrite is impossible/improbable</li> <li>the language is suitable for the task</li> </ul></li> <li>I control a project's code but <strong>I must</strong> use language <code>X1</code> because <ul> <li>Platform compatibility</li> <li>Existing API interaction</li> </ul></li> <li>I control a project's code and <strong>I want</strong> to program in language <code>X2</code> because: <ul> <li>Its strengths fit the problem</li> <li>I want to learn the quirks of this new (to me) language</li> <li>I want to keep up on new language features</li> <li>I want to use its strong library support for task <code>T</code></li> </ul></li> </ul> <p>In summary, as a consultant, I language switch mostly based on external, hard requirements. That said, however, I often switch to try new things, continue learning, and stave off monotonous, required language inundation.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/486036#486036 0 Answer by Joe Erickson for Did you ever switch from one programming language to another? Joe Erickson 2009-01-28T00:54:46Z 2009-01-28T00:54:46Z <p>Used: CBasic -> FORTRAN -> Z80 Assembly -> Lotus 123 (see below if you don’t think spreadsheets are a programming language) -> C -> 8080 / 8086 / x86 / 68000 Assembly -> Hyperscript -> Eiffel -> Objective C -> C++ -> Java -> C#.</p> <p>Tinkered With: TRS-80 Basic -> 6502 Assembly -> Lisp, PL/1, MBasic, Dbase, Postscript, Visual Basic, SQL, Delphi, JavaScript, F#.</p> <p>Someday I’ll have a look at what all the fuss is with dynamic languages, but I am too busy lately. Will C# 4’s new dynamic features count?</p> <p>If you have nothing better to do, below is a little insight into how / why I ended up using some of these and how / why I moved on to something else.</p> <p>TRS-80 Basic – I was a young Honda motorcycle mechanic in 1978 when the owner of the motorcycle shop purchased a TRS-80 in an attempt to automate the parts department (all those parts and no computer – how did we do it?). I tinkered with it some, but the unreliable cassette tape storage was too frustrating and racing motocross was a lot more rewarding for a 19 year old with a competitive streak. Too bad for me.</p> <p>6502 Assembly - I was a bored motorcycle service manager in the dead of winter in Lawrence, Kansas (Rock Chalk, Jayhawk!) in 1982 (too cold for motorcycles and not enough snow for snowmobiles). So I bought an Atari 800 to play video games and found that programming was more fun. My Atari 800 did not have enough RAM for Basic - sometimes it's better to be lucky than good (I’ve often thought that learning assembly before anything else taught me something useful). I actually got a Reversi game and disk copy program working and somehow convinced Byte magazine to publish a reference to them. I think I sold three copies…not very rewarding considering the fact that I was sure I had the fastest disk copy program ever created.</p> <p>CBasic – I decided it might be nice to get paid more than 9 months out of the year (motorcycle service in Kansas does not pay too well in January) so I sold the Atari and bought a Xerox 820 CP/M computer which had a pair of huge 241K 8 inch floppy disk drives and an unbelievable 64K of RAM! It was the most expensive thing I had ever purchased at the time. I was fortunate to find consulting work for a local VAR customizing CBasic accounting software for local businesses. CBasic was far superior to MBasic (Microsoft Basic) for many reasons (did I mention it was much faster). Looking back, CBasic was the first language I used which was reasonably good for developing business software.</p> <p>Z80 Assembly - the VAR got involved in marketing a portable computer called the Zorba (like the old Osborne portable). It had reliability issues and I got involved in fixing some of the issues which was a great learning experience. Wow, I could write some amazingly fast stuff in Z80 assembly. Did I mention that I used to race Motocross and I like “fast”?</p> <p>Lotus 123 - I know, most programmers don't think of spreadsheets as a programming language, but you could make a case that "spreadsheets are the most popular functional programming languages in the world" (Google it and you'll see what I mean). Lotus 123 was the first really great piece of software I used. It was so much better than VisiCalc, SupreCalc and Microsoft's Multiplan which I had helped our customers with. Did I mention that Lotus 123 was faster - like night and day! I went to my boss and told him we should develop our own spreadsheet, because as good as 123 was, we could do it better (I think I probably meant “even faster”). He laughed and promptly dismissed the idea – but I never forgot it.</p> <p>C – Through a series of fortunate events, two years later I was leading the development of the Smart Spreadsheet 2.0, and later SmartWare 3.0 (office productivity software for DOS / Unix which never made the transition to Windows). After going to COMDEX in 1986, I persuaded the powers that be to let me start building a new spreadsheet for Windows – which eventually became Wingz for Macintosh because Windows wasn’t quite ready for prime time. Wingz went from 0% to ~25% of the run rate for spreadsheets on the Mac in a short period of time thanks to the fact that it was years ahead of Excel in several areas (yes, it was faster, but it was a lot more than that). Unfortunately for me, Informix had purchased the company and decided to get out of productivity software when their core database business hit a rough patch, so all that hard work went down the tubes (biz lesson – own your own code if you possibly can). </p> <p>Smart Project Processing and Hyperscript - SmartWare and Wingz actually had their own builtin languages - Smart Project Processing and Hyperscript. Both were English like (wordy). I had argued for making the language built into Wingz a derivitive of Pascal - but the powers that be were sure that nobody who used a spreadsheet would ever want a real programming language.</p> <p>8080 / 8086 / x86 / 68000 Assembly – back in the day when it was the exception to have floating point hardware it was crucial to have your own floating point routines. Smart Software and Wingz also had a fair amount of assembly for frequently used string and memory routines. Sometimes I still wish I could implement a crucial C# method in assembly…but who wants .NET code that is unsafe these days?</p> <p>Eiffel - I stumbled upon one of Bertrand Meyer’s early books on OO programming in Eiffel. I never did any real work in Eiffel but I believe reading this book taught me more about creating reliable and reusable software than anything else I’ve done in all my years of programming (that sounds like something an old person would say).</p> <p>Objective C – I purchased a beautiful Next Cube for $15K of my own hard earned cash (my wonderful wife though I was nuts). I quit my job (guess what my wife thought about that?) and tinkered around for a while, did some performance work for a networking company and eventually started to write my own spreadsheet for NextStep in Objective C. The Next was built on the Mach kernel and was the first OS I used with real lightweight threads – the things I learned about multi-threading back then are definitely useful now! It had Display PostScript – which was actually the thing that first attracted me to it. The concept of the display and printer having the same graphics language seemed like a no brainer to me and I was sure Next was the next big thing. Most people know the descendant to NextStep as Macintosh OS X.</p> <p>C++ - Unfortunately, Next didn’t make it and I needed to find a way to pay the bills, so I converted my Objective C / NextStep spreadsheet to C++ / Windows (via MPW Pascal but that’s another story) and teamed up with some guys who knew how to run a business and sell things. We released Formula One as a VBX (Visual Basic 4 Extension) and C library in 1993, followed by a C++ wrapper, an ActiveX (COM) version and even a Netscape Navigator plugin – which was the first internet spreadsheet AFAIK.</p> <p>Java – Having led the development of commercial software which ran on multiple platforms, I completely bought into Java’s Write Once Run Anywhere mantra. I already thought the idea of a “real” spreadsheet running in the browser was a real solution to a real problem and Java Applets seemed to be the perfect way to implement this. Formula One for Java was the dominant spreadsheet component for Java for several years – basically until the pricing model was changed to “as much as we can get” which drastically reduced the ability to add customers. Formula One is now the engine behind Actuate’s e.Spreadsheet which is still a pretty good product as far as I can tell (albeit expensive).</p> <p>C# - My official reason for leaving Actuate several months after they purchased Formula One was the fact that they would not let me build Formula One for .NET (biz lesson – don’t have business partners who will sell your code to someone else if you can possibly avoid it). They had and still have good reasons for this and I still like the people there – but I was tired of trying to build a real GUI application with Java / Swing. While Java was great at some things, it was definitely not so good for building GUI applications (remember, this was 2002, I don’t know how true that would be today). C# made some important improvements (Java still had no enumerated type after 7 years!). But the key was that, IMO, Java’s Write Once Run Everywhere mentality led to sub-standard Windows applications – and most business software developers who wanted a spreadsheet component wanted it to look and feel like proper Windows software.</p> <p>Managed C++? – I sometimes think we might rewrite our core engine in Managed C++. Theoretically, we could then build safe .NET components as well as a native core engine from the same source code base. I have no doubt that a C++ core engine compiled to native code would be faster at any given point in time than the C# equivalent. But my concern is that adding features and improving algorithms would take much longer in C++ than in C#, and that eventually we would get to the point where we would have been better off sticking with C# for it’s increased programmer productivity.</p> <p>F#? - As I consider the work we need to do to take better advantage of multi-core processors, it seems that it might make sense to convert portions of our code to F#. If we’re lucky, all of the features which make F# better for multi-threaded scalability will find their way into C#.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/486084#486084 0 Answer by Oscar Reyes for Did you ever switch from one programming language to another? Oscar Reyes 2009-01-28T01:09:34Z 2009-01-28T01:09:34Z <p>For me: </p> <ul> <li>Pascal </li> <li>Lisp </li> <li>C </li> <li>Objective-C </li> <li>Java</li> </ul> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/488602#488602 0 Answer by jopes for Did you ever switch from one programming language to another? jopes 2009-01-28T17:42:02Z 2009-01-28T17:42:02Z <p>A lot actually.</p> <p>C/C++ -> Java -> PHP -> Perl -> Objective-C -> Applescript -> Python -> Ruby</p> <p>Basically, right tool for the right job, and some languages are fairly mature enough for specific jobs (C/C++ for speedy apps, Java for Mobile Dev, PHP for Web Dev, Perl for Web Services and Text Manipulation, Objective-C for Mac Dev, Applescript because you have no choice [some say Carbon... but come on], Python for Math and Netwwork Server Stuff, Ruby for RAD Web Development).</p> <p>Besides, all of the new languages are based on C constructs so I think there won't be too much issues moving in between languages.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/488643#488643 0 Answer by J.J. for Did you ever switch from one programming language to another? J.J. 2009-01-28T17:52:31Z 2009-01-28T17:52:31Z <ul> <li>I switched Perl for web development.</li> <li>I switched to Python for large number calculations.</li> <li>I switched back to C++ for certain fast applications.</li> </ul> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/499383#499383 0 Answer by quant_dev for Did you ever switch from one programming language to another? quant_dev 2009-01-31T19:24:34Z 2009-01-31T19:24:34Z <p>Sinclair BASIC -> Pascal -> C -> Java</p> <p>Has some fun with Fortran and C++ on the side.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/499524#499524 1 Answer by Jonas Kölker for Did you ever switch from one programming language to another? Jonas Kölker 2009-01-31T20:45:20Z 2009-01-31T20:45:20Z <blockquote> <p>[fanboy vs. language slut] Did you ever switch from one programming language to another? If yes, why?</p> </blockquote> <p>I'm a language slut. I like learning new languages, and somewhat perverted I like (sometimes) deliberately using the wrong tool for the job, just to see how far any given language can stretch. Of course, only for my hobby projects :)</p> <p>I often "switch" languages, in that I'll typically use the language I know that'll let me do what I need fastest. For some time, all I knew was C, so I wrote everything in C. Then python, and bash scripting. If portability is ever an issue, I'll probably rewrite my ~/bin in python, but for now /bin/sh is fine.</p> <p>To answer your question succinctly: I've never switched per se, I've just added new tools to the toolbox and stuck to "the best one", which has tended to remain constant throughout some time, but with sudden shifts once I learn a new language.</p> <p>And I advocate learning new languages for a broadened understanding of what programming is. If I could force any languages upon people, I think I'd pick the following:</p> <ul> <li>C: for the pointers, and the low-level understanding you get</li> <li>Haskell: for understanding (pure!) functional programming</li> <li>Lisp (or scheme): for understanding macros and (so I've heard) (mini-)language design.</li> <li>Smalltalk: I don't know it, but I think it might teach you a thing or two about what OO was really meant to be about.</li> </ul> <p>And I don't recommend a "switch" to any of them (I only know C well enough to be able to recommend a switch to that, and I know there are many jobs that C aren't the ideal tool for). But learn them for the better understanding they'll give you.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/499558#499558 0 Answer by PTBNL for Did you ever switch from one programming language to another? PTBNL 2009-01-31T21:02:49Z 2009-01-31T21:09:39Z <p>Several times for several reasons: I do believe there is no perfect language for every application and want to use something appropriate for the job. Addtionally, I am one of those people who just likes to learn new languages</p> <p>Anyway, the reasons (briefly):</p> <p>BASIC to Pascal (then VAX Assembler then switching around between those three + FORTRAN and COBOL, depending on the class) when I went from a programming class in high school to majoring in CS in college.</p> <p>From BASIC to FORTRAN to C to Perl for various jobs. Throw in some DCL and Bourne/BASH scripting along the way. Also, Pick Access/English (anyone else on SO done that?).</p> <p>Perl to Python when I could choose my language on the job and found it too difficult to use Perl for what I was trying to accomplish at the time.</p> <p>Most recently, Python to Java, PHP, and IDL (Interactive Data Language) for a new job.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/524792#524792 0 Answer by Flinkman for Did you ever switch from one programming language to another? Flinkman 2009-02-07T23:14:12Z 2009-02-07T23:29:33Z <ul> <li>c64 basic</li> <li>c64 asm</li> <li>Atari asm</li> <li>Atari C</li> <li>PC Pacal</li> <li>ML</li> <li>Modula-3</li> <li>Bash</li> <li>Ruby (2001) Unstable, need something with maturity</li> <li>Python - This I can rely on.</li> <li>Emacs - Wow,power, what have I missed?</li> <li>Common Lisp - Insane. This is crack.</li> <li>Prolog (ok,I did not write a hole program in prolog.)</li> <li>Erlang - Nice it scales</li> <li>LFE - Wow. Power of lisp and scales.</li> <li>Forth - Beautiful. This is art.</li> <li>Factor - Beautiful and useful. </li> <li>C++ (hehe) - Fuck, I need a job. Do what ever it takes.</li> </ul> <p>(I have coded a lot of MS stuff, but that is repressed.)</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/524793#524793 0 Answer by Isaac Waller for Did you ever switch from one programming language to another? Isaac Waller 2009-02-07T23:14:53Z 2009-02-07T23:14:53Z <p>C++ -> Java. Why? Android.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/646550#646550 0 Answer by Roger for Did you ever switch from one programming language to another? Roger 2009-03-14T19:27:14Z 2009-03-14T19:27:14Z <p>Of course: (alphabetical order)</p> <p>Assemblers – 315, Neat/3 (Levels 1-2), Z80, Cadol 3, DG MV and 68000 (Motorola) (6 Implementations).</p> <p>Access</p> <p>BASIC - GW, TIB, QBASIC, DEC BASIC (4 Implementations).</p> <p>C – Megamax and Borland (2 Implementations).</p> <p>COBOL – VS2, Fujitsu, AS/400, Wang, NCR (Century, IMOS and Criterion), RM, TI, Realia, BOS, VAX, Alpha, PRU-COBOL, IBM System 36, Microfocus and Data General AOS/VS COBOL (16 implementations).</p> <p>Clarion 4 for Windows</p> <p>dBASE Plus 2.6 (2009 version by DataIntelligence Inc.)</p> <p>Forth – Texas Instruments (1 Implementation).</p> <p>FoxPro (2.0)</p> <p>HTML</p> <p>Javascript</p> <p>Logo – Texas Instruments (1 Implementation).</p> <p>Modula-2 – TDI (1 Implementation).</p> <p>Mouse – IMS, Z80, Macro Assembler (1 Implementation).</p> <p>MUMPS – MGlobal, MSM and InterSystems Cache' (3 Implementations).</p> <p>Oracle PL/SQL – Versions 6-8. </p> <p>Pascal – JRT, DR-MT, OSS, USCD, Borland Turbo and Delphi (6 Implementations).</p> <p>PL/I (IBM 3090)</p> <p>PowerBuilder </p> <p>Progress 4GL RDBMS (aka OpenEdge ABL) w/WebSpeed – Versions 5-10.1b</p> <p>RPG II (IBM System 34)</p> <p>The two best language/database development environments are (IMHO)</p> <p>Progress and ISC Cache'.</p> <p>Albeit, for UI work I prefer Borland Delphi (Pascal).</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/646566#646566 0 Answer by Fortyrunner for Did you ever switch from one programming language to another? Fortyrunner 2009-03-14T19:34:12Z 2009-03-14T19:34:12Z <ol> <li>Basic</li> <li>Pascal</li> <li>PL/360</li> <li>PDP-11 Assembler</li> <li>Back to Basic!</li> <li>Z80 Assembler</li> <li>8086 Assembler</li> <li>Pascal - Again </li> <li>Back to Basic and Assembler</li> <li>C</li> <li>Clipper</li> <li>C++</li> <li>Delphi</li> <li>Java</li> <li>Perl</li> <li>Python</li> <li>C#</li> <li>Scala</li> </ol> <p>So yes!</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/685324#685324 0 Answer by Tom for Did you ever switch from one programming language to another? Tom 2009-03-26T11:10:22Z 2009-03-26T11:10:22Z <p>Pistos talks the most sense.</p> <p>Any decent programmer can quickly learn any language, and anyone that has been in the industry for more than a hadful of years will have had to learn several during their career. It is possible to produce useful programs in a nerw language with as littel as a few hours experience but it takes much longer, possibly years, to learn to use a language really well.</p> <p>Most of the responses above talk about switching from one language to another. Pistos innparticular displays good sense. But no-one has mentioned the plight of the support programmer that might have to switch beteween half a dozen languages on the same day. This is not easy, and if the languages are similar it can lead to many mistakes.</p> <p>Conceptually - for understanding programming, you only need to know half a dozen languages, each embodying a different philosophy or covering a different problem domain. For example a low level 3GL (C), a modern OO language (Java), a declarative language (SQL), a logic language (Prolog), a functional language (Lisp), and a general purpose scripting language (Perl), etc. </p> <p>Personally I think C++ is an awful language - it just ruined C - a beautiful and elegant language. For object orientation I don't understand why Java was invented - much less C++. We already had Smalltalk - and that could have been built on.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/1008667#1008667 0 Answer by Orion Blastar for Did you ever switch from one programming language to another? Orion Blastar 2009-06-17T18:05:29Z 2009-06-17T18:05:29Z <p>Well that is hard to answer. When I was in college I attempted to learn as many languages as I possibly could in order to cover all bases. But as time goes by languages change and new languages come out. For example I got jobs writing Visual BASIC programs and it was not my choice but a choice that employers made. Some jobs I did ANSI C programming, FORTRAN, COBOL, Oracle, Linux, DBase, Clipper, etc but the main language was Visual BASIC.</p> <p>Visual BASIC for example has evolved since version 6.0 and Microsoft added in the Dotnet Framework and made Visual BASIC a bit like C++ in some ways. In which case my C/C++ experience helped me to learn Visual BASIC.Net. I really cannot say which is the best language because it depends on what OS platform you run it on, how fast the machine is, what it is being used for, etc. Python or Java might be a good choice for cross platform programming when you don't need to recompile code, and C++, FreePascal, FreeBASIC for when you do want to recompile code. Also Novell has made the Mono language for Visual BASIC.Net and C# for Windows developers using Visual Studio.Net to port code to other platforms but the Windows forms may have to be rewritten.</p> <p>It also depends on what libraries you are using and which languages they support. Either you develop your own code to do something and that may mean developing your own libraries, or you use someone else's libraries to do something you are not able to or can't or don't have the time to write. Some libraries are open source and some are commercial so you have to pay attention to the license for each library. For example if you want to write a commercial program and use an open source library, make sure that the license does not restrict you from using it to write commercial programs or if it requires a fee to be used for commercial programs you'd better license it and pay the fee.</p> <p>I tend to be programming language agnostic and I like to write a program in different languages to see which one runs best. But that is on my own time. I feel that writing the same program in different languages will help to sell the program because sometimes people who buy the program want it to be supported in a certain language. For example if I write in Visual BASIC 6.0 someone might want it in Visual BASIC 2008 , or C#, or Python 2.6, or ANSI C/C++, etc. So I feel I should write it in a few languages and see which one works better and is used better.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/1032919#1032919 0 Answer by Paul Nathan for Did you ever switch from one programming language to another? Paul Nathan 2009-06-23T14:30:14Z 2009-06-23T14:30:14Z <p>I prefer C++. It's quite possibly the hardest language on the market to master. </p> <p>I use C# and Perl at my current job.</p> <p>I use C &amp; C++ for my graduate work.</p> <p>I've also used... Lisp, Delphi, Prolog, Java, x86 assembler, QBASIC, VHDL, MIPS assembler, lex, yacc, PHP and others I've forgotten about.</p> <p>I switch because I have different situations that require different languages.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/1033022#1033022 0 Answer by Spoike for Did you ever switch from one programming language to another? Spoike 2009-06-23T14:46:07Z 2009-06-23T14:46:07Z <p>To be honest, I've been switching programming languages to learn something new. In the process I've learnt that all languages are very similar to each other. Imperative languages all have the same control flow mechanisms, i.e. the three primitives: sequence, conditional (choice), and iteration (loop). The only differences between all the languages are the feature set and syntax.</p> <p>If I want to learn a new language it is often because there are some features which helps developers accomplish stuff with less code. Those features are interesting to try out but don't necessarily replace one with another.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/1110251#1110251 0 Answer by GvS for Did you ever switch from one programming language to another? GvS 2009-07-10T15:29:23Z 2009-07-10T15:29:23Z <p>Started with: </p> <ol> <li>MSX Basic, on my first computer</li> <li>Z80 assembly, because I needed speed</li> <li>Pascal, on school</li> <li>Turbo Pascal, because school changed </li> <li>x86 assembly, needed speed</li> <li>C++, also on school</li> <li>Clarion, needed to write a administrative tool for my club</li> <li>Progress 4GL, started working</li> <li>Visual Basic, because I liked it. Pushed company in that direction</li> <li>C#, because I liked it more</li> </ol> <p>And a bunch of other "tool" languages, that are not the core of you app, but support it.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/1419588#1419588 0 Answer by Good Time Tribe for Did you ever switch from one programming language to another? Good Time Tribe 2009-09-14T03:46:01Z 2009-09-14T03:46:01Z <p>I wasn't able to get through an associate's degree at a junior college without taking at least two different languages, and I wound up taking classes covering 5 languages... two in one class.</p> <p>You'll benefit greatly by knowing multiple languages. Be an expert in at least one though.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/1419612#1419612 1 Answer by Jeremy for Did you ever switch from one programming language to another? Jeremy 2009-09-14T03:58:28Z 2009-09-14T03:58:28Z <p>Yes, mostly due to business reasons. I used Java heavily in college days, but my final project was in PHP.</p> <p>My first job required ASP classic and Visual C++.</p> <p>My second job brought me back to Java. Then I switched to a C# winforms application team.</p> <p>I occasionally do PHP on the side for fun.</p> <p>In general I would say the big drivers are market demand and simplicity. Yeah you can be a LISP guru, but who would pay you for working with it?</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/1420355#1420355 1 Answer by Dimitri C. for Did you ever switch from one programming language to another? Dimitri C. 2009-09-14T08:37:19Z 2009-09-14T08:37:19Z <p>One reason to <b>stay with one language</b> as much as possible is to avoid the situation in which every project in your company is implemented in a different programming language, which in turn comes with a different IDE, standard library, custom written libraries, library quirks, programming language idioms, quirks and limitations, profilers, etc... </p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/1492619#1492619 0 Answer by Jonathan Swift for Did you ever switch from one programming language to another? Jonathan Swift 2009-09-29T13:37:56Z 2009-09-29T13:37:56Z <p>Well,</p> <p>ZX81 Basic, BBC Basic, Modula-2, Visual Basic (old), PHP, Javascript, C#.</p> <p>Along the way I've dabbled in 6502 assembler, C, C++, XSLT and some bizarre OO language at university called Enact. My favourite? Visual Basic 6, it rocks.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/1546360#1546360 0 Answer by Phil for Did you ever switch from one programming language to another? Phil 2009-10-09T22:26:51Z 2009-10-09T22:26:51Z <p>I am going to go out my way and say I only program in C# yet I switch languages all the time (and please read on prior to giving me negative points and/or throwing flames :) )</p> <p>All mature .NET languaes are polyglot-languages- if you are great at one, in a way you know many languages. You have declarative programming in it since .NET 1.0 (like JAVA). You have functional language capacities with LINQ (like Haskell). You have dynamic language capacities via .NET 4 (like Ruby). So are using C# to a high degree, you are in a way switching languages all the time. </p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/1546388#1546388 0 Answer by canadiancreed for Did you ever switch from one programming language to another? canadiancreed 2009-10-09T22:36:03Z 2009-10-09T22:36:03Z <p>To paraphrase the winning post in "up's" so far.</p> <p><strong>Did Coldfusion</strong></p> <p>needed work</p> <p><strong>Did ASP</strong></p> <p>needed sanity</p> <p><strong>Did PHP</strong></p> <p>needed more money</p> <p>And now working on Java to resolve that.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/1546404#1546404 1 Answer by JohnFx for Did you ever switch from one programming language to another? JohnFx 2009-10-09T22:41:05Z 2009-10-09T22:41:05Z <p>If it can't be done in LOGO, then it isn't worth doing!</p> <p>If that makes me a </p> <pre><code>REPEAT 4 [FD 100 LEFT 90] </code></pre> <p>I don't care! </p> <p>Turtle Power!</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/1546421#1546421 0 Answer by Eli for Did you ever switch from one programming language to another? Eli 2009-10-09T22:46:00Z 2009-10-09T22:46:00Z <p><strong>I tend to use multiple languages, but I did make a big change in platform.</strong></p> <p>I started out my career working mainly with MS languages, servers, tool-stacks, because they were easy and kind of the default.</p> <p>At one point though, it became necessary for me to do a bit of work with various langs/tools on *nix servers for several months. </p> <p>Much of it was difficult because I wasn't familiar with it, but I did get used to it. </p> <p>Then, when I went back to working mainly with MS, I found that I didn't like it anymore. I just liked open source better, I liked linux better, I liked the various languages better, and the support community, and the fact that you could take ownership of a project to whatever depth you needed to, even though you don't need to most of the time, without hitting a proprietary black box, beyond which only employees of a particular company can go.</p> <p>I was a contractor, so it was pretty easy for me to make the switch by making recommendations and looking for different types of projects. At this point, I only really use MS for my workstation, which is one thing I think it really does excel at.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/1763394#1763394 0 Answer by thomasrutter for Did you ever switch from one programming language to another? thomasrutter 2009-11-19T13:45:07Z 2009-11-19T13:45:07Z <p>Why yes of course!</p> <p><strong>BASIC</strong></p> <p>Awesome, I can really make useful stuff myself, like this awesome crossword puzzle generator.</p> <p><strong>Turbo Pascal</strong></p> <p>Cool, it makes real EXE files! No interpreter required! Bit slow for pixel-by-pixel graphics stuff though...</p> <p><strong>C++</strong></p> <p>Now this is awesome. Check out this awesome Star Wars game I made (I was a kid, who cared about copyright back then) - oh and this thing that zooms in on a Mandlebrot image in real time, oh and this thing that is an audio codec/speech recognition thingy but that never really got finished...</p> <p>Dabbled in <strong>Java</strong>, <strong>C</strong>, even <strong>Haskell</strong> for university</p> <p>It's amazing how little free time you have when you finish high school. If I'd have kept programming at the rate I'd been going back when I was doing Pascal and C++ stuff I'd probably have created the equivalent of a few operating systems or office suites by now.</p> <p><strong>PHP</strong></p> <p>Now I'm coding PHP professionally and I think I'm expert at it.</p> <p><strong>Javascript</strong></p> <p>Now here is something I am definitely not expert in yet, but I intend to master.</p> <p>But then I'm also thinking of going back to C++.</p> <p>Or learning Python.</p> <p>...</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/1763470#1763470 1 Answer by TStamper for Did you ever switch from one programming language to another? TStamper 2009-11-19T14:00:32Z 2009-11-19T14:00:32Z <p>Im young and can already notice, most of us dont <code>switch by choice</code>, but my <code>job requirements</code>. When a new job req. comes up requesting a specific language, you take on the challenge and the fun to learn or get better in that lanaguage. </p> <blockquote> <p>You asked why. </p> </blockquote> <p><strong>why not</strong></p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/1763577#1763577 0 Answer by Ahmed Kotb for Did you ever switch from one programming language to another? Ahmed Kotb 2009-11-19T14:16:03Z 2009-11-19T14:16:03Z <p>I went from one language to another in a quite strange order</p> <ul> <li>vb6 : read about it in a magazine and stuck with it for 3 years</li> <li>Basic : took it in the first year at college (foundation year) </li> <li>vb.net :imagine cup france .. (for a small time)</li> <li>java : first year at computer science dept.</li> <li>c/c++ : first year summer</li> <li>objective-c : i was an intern at a company developing iphone applications</li> <li>python : at my free time .. really a great language</li> </ul> <p>dont know what is next ... but may me more python , ruby and/or c#</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/1763670#1763670 0 Answer by Heather for Did you ever switch from one programming language to another? Heather 2009-11-19T14:29:35Z 2009-11-19T14:29:35Z <p>In school I worked with QBasic, C/C++ (started language neutral, but then worked with Win32 and DirectX), COBOL, VB6, Java/JSP, x86 Assembler, and various flavors of SQL.</p> <p>Since school I've learned enough PHP to get by, a bit of OPL, VB.NET, a bit of C#, and InstallShield scripting. I've really been enjoying learning .NET, right now my preference has been with VB.NET because that is what our current big project is written in, but I'm comfortable with C# and have gotten to where I can understand it just as easily.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/1763759#1763759 0 Answer by Glex for Did you ever switch from one programming language to another? Glex 2009-11-19T14:42:08Z 2009-11-19T14:49:52Z <p>Pascal - Delphi (OOP, DB) - Java (Servlets, Desktop Software) - C (system programming) - Ruby (Rails) / Javascript (Qooxdoo)</p> <p>And that is not including the ones that I spent less than a year working with...</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/1763830#1763830 0 Answer by Sinan Ünür for Did you ever switch from one programming language to another? Sinan Ünür 2009-11-19T14:53:13Z 2009-11-19T14:53:13Z <p>Started with Z80 machine code on my ZX Spectrum (yes, actually typing in opcodes). Learned a little Basic, used Pascal and Fortran for some jobs when I was in college, had to learn some APL for my job at the Central Bank of Turkey, learned C after my introduction to the internet (hat tip <a href="http://www.delorie.com/djgpp/" rel="nofollow">DJGPP</a>), learned Java when I started programming experiments and finally switched to Perl for most of my needs (although I try to stay familiar with other languages).</p> <p>Along the way, I have had to use other languages as the situation called for it.</p>