Programming languages that every developer should know
1–10 of 21 posts
Re: Programming languages that every developer should know
#2Re: Programming languages that every developer should know
#3SmallTalk (or SELF): After I learned some SmallTalk I realized I had never understood the deep meaning of OOP before.
FORTH: It's the Nirvana of building abstractions in layers, starting from very simple primitives.
Tcl: a few Tcl ideas are really worth understanding. The idea of having a single data type in the whole language, and the [uplevel] command that basically provides to the language the equivalent of Lisp macros but with a trivial semantics. At implementation-level the dual-ported objects strategy is a very powerful idea that little programmers are aware of.
Javascript or SELF: it's very interesting to understand how prototype-based OOP works.
Re: Programming languages that every developer should know
#4PHP - 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 some sort, please don't be afraid of the command line. Its so insanely powerful, you should definitely take advantage of its power by learning some basic shell scripting.
Re: Programming languages that every developer should know
#5Re: Programming languages that every developer should know
#6Why do C and C++ always get such a big fellatio in programming articles? They're ugly languages with serious problems and bubble gum fixes.
Re: Programming languages that every developer should know
#7I'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…
Re: Programming languages that every developer should know
#8Why 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
#9Re: Programming languages that every developer should know
#10I'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…