Advice?
What's the Easiest Programming Language I Can Learn
1–10 of 30 posts
Re: What's the Easiest Programming Language I Can Learn
#2http://www.codeproject.com/Articles/699085/Some-simple-tools...
Re: What's the Easiest Programming Language I Can Learn
#3Re: What's the Easiest Programming Language I Can Learn
#4How to build an app in a day : http://www.codeproject.com/Articles/699085/Some-simple-tools...
Re: What's the Easiest Programming Language I Can Learn
#5This depends entirely on what you are making. If it is heavily datadriven and you are only prototyping an ORM will help you immensely especially if it creates your database structures for you, for this I reccomend Django (Python). If you are not beholden to a heavily datadriven system you can go with Flask (Python). If you however do not even need a backend to talk to, lets say you do not need data consistency or sto…
Re: What's the Easiest Programming Language I Can Learn
#6Just to add to what the other folks have said, if you are looking to rapidly prototype something with a backend, perhaps using Rails with all its gems will allow you to do so. You will have to eventually learn Ruby and Rails itself though, but I am sure there are a ton of "putting it together" tutorials out there.
Just plug in the multiple pieces and you're good to go.
Re: What's the Easiest Programming Language I Can Learn
#7If you're someone who can just read a book and go from there, try a few books and go with whatever one you like most. If you prefer learning by being taught, find courses need you and learn the language that they teach. If you want to learn online, go to Coursera or Treehouse and pick an option. And so on.
Don't choose an "easy" language and then struggle with the learning material - pick good learning materials first, learn how to write some simple code, and then use that knowledge to learn a more appropriate language for what you have in mind.
Re: What's the Easiest Programming Language I Can Learn
#8Re: What's the Easiest Programming Language I Can Learn
#9If you want to learn programming itself, there are very few shortcuts as you will have problems along the way if you dont have the basics down. Pick a language and dive in. I will probably take less time than you think.
Re: What's the Easiest Programming Language I Can Learn
#10If you contrast this with Java, Java is a smaller language, but forces you to use object orientation, so you generally have to have a better understanding of abstract concepts from the beginning.
Anyway, that's two of the languages I know reasonably well. Out of those two I would go for Python.