Learning new languages makes you a master of none?
1–10 of 18 posts
Re: Learning new languages makes you a master of none?
#2Most programmers come from an imperative background. Something in the Algol family. Learning a scheme/lisp, a functional language like Haskell, a stack based on like Factor or any of the numerous other types of languages is only going to make you a better programmer.
Think type languages are awful? Maybe its just the type systems you've encountered ( see haskell for a type system that I would call non-broken ).
Think OOP languages are garbage? Maybe encountering something like Self will give you a different view of OO than what you get from C++ or Java. Maybe encountering CLOS will open your eyes to a different way of doing OOP.
Another bonus via anecdote:
I don't use Ruby anymore, but I still follow the community because people are doing interesting things, things I might want to steal an idea from and use in my language(s) of choice.
Re: Learning new languages makes you a master of none?
#3I think the primary advantage of knowing many languages is knowing when you're using the wrong tool for the job.
Re: Learning new languages makes you a master of none?
#4By making you approach the same problems in different ways, new languages make you a more versatile programmer less tied to a particular technology while improving existing skills.
Re: Learning new languages makes you a master of none?
#5Re: Learning new languages makes you a master of none?
#6It would probably make you a better programmer to master all of purely functional programming, syntaxic abstraction, pattern-matching and logical inference, distributed and fault-tolerant computation by message-passing, stack-oriented programming, etc.
It just happens that some languages are predominantly based on each of those principles so the act of learning those languages in depth make you master those useful principles for free.
Haskell = Purely functional programming
Lisp = Syntaxic abstraction
Prolog = Pattern-matching and logical inference
Erlang = Distributed and fault-tolerant computation by message-passing
Forth = Stack-oriented programming
(completely unexhaustive list of language/specialty mappings)Re: Learning new languages makes you a master of none?
#7HOW FREAKY ARE YOU READY BE TO GET THE POINT OF MASTERING 2 OR MORE LANGUAGES ?
Most part of programmers are good at some languages, but not masters ... being a master of one is difficult, what if master of two or three.
So the answerer is : depends of the freaky behind the try !
Re: Learning new languages makes you a master of none?
#8Every little bit helps. Read one book and you've learned a new point of view. Read that book and build a sample project and you've learned more. To really understand a language or framework requires still more work. To master it might take years.
You should master one or two things (or more, if there are enough hours in the day or if you are superhumanly good at mastering languages). But that doesn't mean that you shouldn't also have lower levels of expertise in a broad range of other subjects. Half the battle in life is knowing what to master at any given moment, and the only way to figure that out is to sample a lot of things.
Re: Learning new languages makes you a master of none?
#9Seriously. I could care less the order of constructor evaluation in a multiple inheritance language. If that becomes a problem, I'll look it up.
This isn't like school where you try to pick one subject and become the complete overlord of it. This is about building a toolbox: learning how different tools work and being able to switch instantly between them when the time is right. The meta knowledge of languages is infinitely more important than the abstract details of a particular one. If you're a good programmer, you'll naturally optimize the code you write.
Thinking about writing a solution in an imperative language is fundamentally different than thinking about one in a functional language. Thinking about a web solution in terms of Javascript/client-side/jsonp is fundamentally different than in terms of client-server, or in terms of post-response. It's the thinking about those problems, before you start hacking, that gets you the most mileage. And the best way to learn how to think using those paradigms is to write solutions using them.
Re: Learning new languages makes you a master of none?
#10Then again, I started out on C, so pretty much everything besides Haskell seems like a piece of cake.