vote up 1 vote down star

Possible Duplicate:
Which programming language to learn now?

My employer is probably about to implode. Since I haven't seen a single Delphi job locally (relocation isn't an option) I figure I need to learn something new (nothing else I know is very relevant anymore.) What language should I be learning--and what books/tools should I get?

flag
Do you wanna stay in your company, or what? It depends on what u want? – Samuel Carrijo Jul 25 at 16:04
1  
Delphi is basically Pascal. Pascal to the C based languages is a practical and easy transistion. – NoMoreZealots Jul 25 at 16:17

closed as exact duplicate by Thomas Owens, DOK, AlbertoPL, victor hugo, Andrew Moore Jul 25 at 16:38

5 Answers

vote up 4 vote down

It depends on what you want to do.

Web programming? PHP, ASP.NET (and ASP.NET MVC framework), Python, Ruby and Ruby on Rails, JavaScript, HTML/CSS for the front end...

Desktop app programming? Java, C#, C++, Python...

Embedded systems? C, C++...

Maybe learn a new paradigm...Clojure or F# for functional programming, AspectJ for aspect-oriented programming, or go deeper into object-oriented programming with Eiffel or Smalltalk.

Or perhaps move away from languages and learn tools. Pick up a new IDE. Currently using Visual Studio? Maybe do some Java programming in Eclipse or NetBeans. Using CVS for version control? Try Git or Mercurial to learn about distributed version control.

There's really no one right answer.

link|flag
If I missed anything, feel free to just edit and add it. I just rattled off the first things that came to my head. – Thomas Owens Jul 25 at 16:08
I've heard of Python being used for IT, enterprizey type work, and for web development, but for desktop apps? I've seen games use it for scripting events under the hood, what desktop applications use Python out right? – NoMoreZealots Jul 25 at 16:13
Nothing major comes to mind, but it is possible with Python and (if desired) a binding to a GUI toolkit, like qt. – Thomas Owens Jul 25 at 16:14
Theoretically, I suppose. But a Pascal programmer will be left with a bad taste in his mouth. Especially if he's been at for a while. The kids have an easy time of it because it's not a "transistion" it what they are teaching them in school. – NoMoreZealots Jul 25 at 16:26
vote up 4 vote down

"relocation isn't an option"

First, find employers in your area.

Second, ask them what technology skills they're hiring.

Third, learn that technology.

Fourth, apply for a job with those employers.

link|flag
vote up 3 vote down

First -- what are likely local employers looking for? Then learn some of those.

Second -- the advice in the Pragmatic Programmer about learning a new language every year isn't just about keeping the mind flexible; these days technologies obsolesce quickly, so continuous re-tooling is part of your survival package. So after dealing with what the next job is likely to want, start looking at the skill-set needed for the one after (which will probably be something functional or cloud related).

link|flag
vote up 2 vote down

Tiobe tries to pinpoint the "hot" languages (although of course it's little more than a guess, it still may stimulate you to think about your choices in a different way). Of course, you should also consider difficulty of learning (C++ is quite difficult, Java or C# not quite as much, Ruby and Python easier, etc, etc) because that determines how large an investment of time you must make, but that can cut both ways: if you learn a language that's in demand but very popular and easy to learn, like Basic, you'll have lots of competition; if you're a true master in C++, you'll have less real competition (i.e., many claim to know it, few really do know and use it well;-).

link|flag
Delphi is to Pascal as C++ is to C. And I don't really think Java, or C# are that much easier. Delphi to Ruby and Python will feel awkward and confusing. If someone was doing professional Delphi, the Visual C++ should be a natural progression. – NoMoreZealots Jul 25 at 22:53

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