So I know that developers don't always get to pick the languages and platforms that they're working in - but in a sense they do, cause they can always ask, pursue, or leave a job... so with that in mind: why do you end up settling on particular a particular language or platform - what different factors play in to the ultimate decision. Please do not stop at "the right tool for the right job" or a similar phrase - please illustrate with real life examples.
|
1
|
|||||||||
|
|
|
For most people, go where the money is. If that requires learning Perl for an old Unix system or .NET for a new enterprise solution (correlations aren't exclusive), then ok. Some may have their own select few "absolutes," but a high enough salary can usually even win that over. There aren't too many elitists who will turn down $200,000/year to put up with their most hated language/platform. ;) |
||
|
|
|
|
It's all about cost-benefit. If I just need to do some data processing done really quickly, for a one-off task, I'll use JSDB Javascript (a Javascript shell), it's my alternative to Perl for swiss-army-type computer hacking. I sometimes use it for tasks that I might have to perform again later, but I take more care to document it. For more robust applications on a PC, I'll use Java, because it's a nice compromise between speed of execution, quickness of development, good toolsets/libraries/documentation (some people call this a software "ecosystem"), and cross-platform support. For embedded systems I try to use C++, and hope and pray that the debugger is decent. (Some of them are awful, some don't have any debugger and you have to spit data out a serial port or flash an LED. Or create digital pulses to debug timing problems.) Criteria I generally use:
|
||
|
|
|
|
As someone who has dabbled in a lot of languages... I now find myself being drawn to the platforms with these as my priorities 1) the kitchen sink libraries - everything is already included I'm going to really get focused on these over the next year to two: I have to put other things aside for now... I'm getting too fractured. |
||||||||
|
|
|
Can I think in that language without it clashing with too much of the other thinking I do? Sometimes a litle distance helps - languages which are too close result in confusion and it helps to have contextual clues when using the language to shift your mindset. So, for work purposes, I look for languages which are semantically close but the syntax sufficiently different to help me focus on the platform. As a recent example - I do a lot of work in REALbasic (a very clean OO BASIC). For my Windows work, I'm using C# rather than VB.net, to avoid confusion. When studying languages to stretch my mind (and decide if I should add them to my toolkit), I look for languages with significant differences. I'm studying Ruby at present, as well as refining my C#. I expect to put some significant time into F# or Haskell later this year. I studied Lisp last year. I believe you have to have used a language for some real programming tasks to be able to decide on its compatibility with the rest of your mental tools - thinking in a language is different from reading about it. |
||
|
|
|
|
I am in the lucky position to be able to work in my dream system, and have been so for a long time now. I do all my work in Smalltalk - period (actually: Smalltalk/X). If there are time critical things (image processing, real time data aquisation, rt-control), I split things into a hybrid, where the critical stuff is done in C, and all of the administration, GUI, webInterface, configuration etc. is done in Smalltalk. That way, we have built even very highly sophisticated control stuff (controlling chemical plants, a power plant, coal mining, paper mills and other industrial factories). On the other end, we do banking, web frameworks, GUI prototyping and communication security stuff - all in Smalltalk. Even replaced multiple existing Java systems (!) by complete rewrites in Smalltalk - and with higher performance. Smalltalk is my dream environment for the following reasons:
Its no wonder, that many inventions were and are done in the Smalltalk community, and that extreme and agile development, pair programming, rapid prototyping etc. all where highly influenced by or even originated in its surroundings. Some argue that the downside is its funny syntax; I would reply that you probably are not worth a CS degree if you cannot abstract over that. Beside, there is almost no syntax in Smalltalk (its description fits a single page) - most everything is done in the libraries. Willing to accept comments and bashing (but downvotes are unfair :-)
|
||
|
|
