I'm not entirely sure I agree with this list. Here's some I would add: PHP - even if you loathe its every existence, if you're a web developer, you're going to come across it, might as well know it. Perl - text processing, data scraping, all around great language. Javascript - Like others have mentioned, I think its a great language, used in front end web development, and now moving to back end. Shell scripting - Of…
Programming languages that every developer should know
11–20 of 21 posts
Re: Programming languages that every developer should know
#12Re: Programming languages that every developer should know
#13I'm not entirely sure I agree with this list. Here's some I would add: PHP - even if you loathe its every existence, if you're a web developer, you're going to come across it, might as well know it. Perl - text processing, data scraping, all around great language. Javascript - Like others have mentioned, I think its a great language, used in front end web development, and now moving to back end. Shell scripting - Of…
Anyway, php is still very useful if you want to put something on the web and have no money. So is javascript although the need to write JS yourself will decrease due to automatic generation of JS etc. I also don't think you necessarily have to learn (ba)sh since you could easily write more complex scripts in any other programming language (i.e. ruby is quite good at that and it's also a very suitable perl-replacement).
Re: Programming languages that every developer should know
#14Why do C and C++ always get such a big fellatio in programming articles? They're ugly languages with serious problems and bubble gum fixes.
What other low-level language with a lingua franca status would you suggest?
Re: Programming languages that every developer should know
#15Ha!! I agree, and I'm a Ruby developer.
Re: Programming languages that every developer should know
#16His C program is actually a C++ one. C does not allow declaration of variables in the for loop (i.e. 'int i;' line has to precede the for statement). Better not to take any programming advices from someone who can't tell C from C++.
Re: Programming languages that every developer should know
#17His C program is actually a C++ one. C does not allow declaration of variables in the for loop (i.e. 'int i;' line has to precede the for statement). Better not to take any programming advices from someone who can't tell C from C++.
Re: Programming languages that every developer should know
#18I'm not entirely sure I agree with this list. Here's some I would add: PHP - even if you loathe its every existence, if you're a web developer, you're going to come across it, might as well know it. Perl - text processing, data scraping, all around great language. Javascript - Like others have mentioned, I think its a great language, used in front end web development, and now moving to back end. Shell scripting - Of…
I'm not so sure: http://www.google.de/trends?q=perl%2Cphp%2Cjavascript Anyway, php is still very useful if you want to put something on the web and have no money. So is javascript although the need to write JS yourself will decrease due to automatic generation of JS etc. I also don't think you necessarily have to learn (ba)sh since you could easily write more complex scripts in any other programming language (i.e. ru…
Re: Programming languages that every developer should know
#19I'm not entirely sure I agree with this list. Here's some I would add: PHP - even if you loathe its every existence, if you're a web developer, you're going to come across it, might as well know it. Perl - text processing, data scraping, all around great language. Javascript - Like others have mentioned, I think its a great language, used in front end web development, and now moving to back end. Shell scripting - Of…
Regarding PHP, you don't actually need to know it, as once you know C (and HTML) you can easily interpret a PHP script, and make any minor modifications if need be. I would only say to learn PHP if you intend to actively develop in it (i.e. contribute actively to the development of an existing open-source PHP application), as I've found that the existing PHP applications to be sufficiently completed for my liking.
As for Perl, you can just substitute Ruby or Python (both of which are on the list) for all of your text processing needs. Like the author I prefer Ruby, but both languages seem to have a reasonably powerful text processing library included.
Re: Programming languages that every developer should know
#20Earlier quoted context omitted.
What other low-level language with a lingua franca status would you suggest?
There aren't any I would suggest. That's the problem! C is the highest used solution and most praised when it happens to be a really bad solution for humans .