There's a channel on youtube called thenewboston. He has 100's of tutorials for programming languages, probably your best bet at learning them.
Offline
ikr! And nobody's looking at my topic to help me!
Offline
lol have u tried at least BASIC or Visual Basic they r the best... Liberty BASIC is also good
Last edited by nathanprocks (2011-11-20 04:12:33)
Offline
I though you were going to say:
Gar! I need help with Programming Pro!
I really don't see why you would.
On topic: Just use tutorials over and over, that's how I learn.
Offline
Servine wrote:
thnx for suggestions.Whats the best STARTING point? Something like HTML?
Python is simple to understand. Visual BASIC is also good.
Offline
awesomestickdude wrote:
There's a channel on youtube called thenewboston. He has 100's of tutorials for programming languages, probably your best bet at learning them.
+1!
Offline
Try Processing, a language that compiles to Java.
Offline
ipodbiped wrote:
Don't forget Java!
I consider Java a really complex language for programming newcomers.
Offline
Try starting with Python. I myself suggest Python 3, as it teaches you to use practices that are more used in other programming languages without creating huge numbers of errors. Then get a good tutorial. I also suggest getting the book Python for the Absolute Beginner if you can get it (the name might be inaccurate; I can't remember what it's called right now).
Offline
I started with JavaScript.
This is what I worked on for bout 10 mins@
My First Script
Offline
Servine wrote:
I started with JavaScript.
This is what I worked on for bout 10 mins@
My First Script![]()
Nice!
Offline
Servine wrote:
I started with JavaScript.
This is what I worked on for bout 10 mins@
My First Script![]()
Wow. Wow for two reasons. One: you didn't first make an alert('Hello World!'); or document.writeln('Hello World!');? Two: 10 mins? I typed that just now in a little under 5 minutes.
Offline
maxskywalker wrote:
Servine wrote:
I started with JavaScript.
This is what I worked on for bout 10 mins@
My First Script![]()
Wow. Wow for two reasons. One: you didn't first make an alert('Hello World!'); or document.writeln('Hello World!');? Two: 10 mins? I typed that just now in a little under 5 minutes.
I JUST learnt it ya know -_-
Offline
Oh, and don't be daunted by complex-looking code before you learn the language. I gave up on Java twice because of the Hello World program* and now that I've gone through with some tutorials, it all seems simple and efficient (of course, it helped that I had some programming experience (like I knew what System.out.println() meant: there's a class called System, and in that a group of stuff called out, and in that a method called println()) despite the long-ness of simple programs). So just go through with the language and ignore any urges to give up and just keep reading/listening through the lessons, and I guarantee, you will find it simple in the end.
* The Java Hello World program:
class Hello {
public static void main (String args[]) {
System.out.println("Hello World!");
}
}Last edited by maxskywalker (2011-11-20 13:17:56)
Offline
Servine wrote:
maxskywalker wrote:
Servine wrote:
I started with JavaScript.
This is what I worked on for bout 10 mins@
My First Script![]()
Wow. Wow for two reasons. One: you didn't first make an alert('Hello World!'); or document.writeln('Hello World!');? Two: 10 mins? I typed that just now in a little under 5 minutes.
I JUST learnt it ya know -_-
Sry. But… same here.
Offline