What is the easiest programming language for non programmers ? I want to parse Google Finance Data for example?
-
I don't want heavy languages like Java, C#, even VB or PHP, I want something light like auto-it but it's not easy to do some stuffs with auto-it like parsing a Google Finance file. Also like autoit I want something that can create a Visual Interface. And of course it should be FREE like FREE BEER (I don't care if it is opensource or not I'm not going into the beast) ;) What suggestion do you have as for the easiest progrmming langage for NON-PROGRAMMERS ?
-
Answer:
You can easily parse Google Finance in Rebol with parse function see main instruction parse/all element "," in program below Rebol[ title: "Parse google finance csv file" author: "http://reboltutorial.com/blog/parse-csv… version: 1.0.0 ] symbol: ask "symbol: " url: rejoin [http://www.google.com/finance/historical?q= symbol "&output=csv"] stock-data: read/lines url close-block: [] foreach element stock-data [ last-quote: parse/all element "," append close-block pick last-quote 5 ] ***: 0 for i 2 21 1 [***: *** + to-decimal close-block/:i] average: *** / 20
leepi at Yahoo! Answers Visit the source
Other answers
All programming languages become easier with practice & usage. = C++ - http://www.cplusplus.com/doc/tutorial/ http://www.cprogramming.com/tutorial/lesson1.html = Did you consider using a spreadsheet? - Open Office - http://www.openoffice.org
tbshmkr
i m a programmer. formely i was like u but now i think that the easiest language for non programmer is Vb6 nothing else...........if u have any problem then plz insert ur query in source
My recommendations for a first programming language would be Python or Scheme. But your circumstances may vary, and there are other good choices. If your age is a single-digit, you might prefer Alice or Squeak (older learners might also enjoy these). The important thing is that you choose and get started.
rkm
I think you should go for Pascal, as that is the easiest language that i think there is.
Nos_2411
Unfortunately what you need -- parse information from the web -- is not trivial, so you need a somewhat advanced language. I would suggest Perl or Python. Both has extensions for downloading web-pages and both are good for parsing information. Both are scripting languages, so you can see the results of changes imidiately. Perl is probably the better for extracting the information, Python the better for making a nice interface (i.e. GUI/"Windows"). Tcl/Tk is also a good candidate, though somewhat old and little used. It's very easy to make a GUI ("Windows") interface. Also interperted. I don't know how suited VisualBasic is for this, but it's relatively easy to program and you can make the GUI-interface interactively.
koppe74
Ruby looks fun. I don't know how it is for new people, but I've been reaming to give it a try. I did a research paper of the best starter language. The winner was python. It has really easy syntax. People made a lot less errors with it than other languages. Auto-it is really close to basic, so some derivative of that may work.
ToSunnyMexico
By Far the easiest language for non programmers to learn and understand is Pseudocode. Its very english like, and you can do it with pen, pencil and paper.
Douglas G
for me Java is the easiest but you don't want it so the next for me is C.
buGGedDown
Maybe you can try Ruby on Rails, it is a web scripting language. Easy to learn and use. http://rubyonrails.org/screencasts
TEST
Related Q & A:
- What are the common usage of python programming language?Best solution by quora.com
- How can I programmatically change the language for non-Unicode programs?Best solution by Super User
- What is a "modern" programming language?Best solution by Quora
- What should I major in if I want to work for a non-profit?Best solution by Yahoo! Answers
- What programming language would be appropriate for better job opportunities?Best solution by quora.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.