Earlier quoted context omitted.
On the flip side, it really makes little sense to learn a language that is useless for what you want to do. If what you really want to do is program a microcontroller, it is my opinion that PHP or Python would be a very poor choice in first languages.
I agree that programming a micro-controller would make python a poor choice. That aside, I think its a great language. I don't use it for months at a time. I proceed to forget everything. Shortly after, a need arises so I pick it back up. A week later, I'm a pro again. The error output is what make it so amazing.
How should I get started with programming? Which language should I learn first?
31–35 of 35 posts
Re: How should I get started with programming? Which language should I learn first?
#32Probably some people would kill me for that answer but i would say you should learn PHP. PHP is simple, good documentation and great community. Facebook is built on top of PHP so as Drupal and Wordpress. But the main point about my recommendation is that PHP is installed everywhere, you don't have to spend much time configuring and doing sysadmin stuff to make it work.
So is Python! I don't feel that a newbie should be learning a web language as his first. It just seems like an unintuitive learning process to me.
I'd definitely recommend PHP to anyone who wants to jump into web development.
Re: How should I get started with programming? Which language should I learn first?
#33Re: How should I get started with programming? Which language should I learn first?
#34I completely agree that the most important thing is to have a concrete objective that you really want to achieve that you are moving towards. However, I disagree that every language is equally hard. There are three challenges in learning programming: syntax, logic, and resource management. Those can be optimized for beginners: Syntax: A syntax that is more natural and less symbolic will be easier to learn. There is a…
On the flip side, it really makes little sense to learn a language that is useless for what you want to do. If what you really want to do is program a microcontroller, it is my opinion that PHP or Python would be a very poor choice in first languages.
If I were teaching somebody who wanted to do embedded work (and Python/Lua/ really wasn't a deployment option, which is very feasible), I would start them with Python to get them to the point of understanding how programming works, then switch them to a more appropriate language for the project. Teaching the algorithms in Python, then converting them to C is a great way to learn the difference between the languages and to introduce the resource management that occurs.
Re: How should I get started with programming? Which language should I learn first?
#35I'm going to break the rules here and answer two languages. First, you should learn one of the easy dynamic languages. This means Perl, PHP, Python, Ruby, Lua, Clojure. I think Ruby is a good choice because it has a lot of cool concepts built in to the core language that the others lack, and so it can be a foundation for learning many different styles of programming -- it does this, in my opinion, better than Python,…