Page 1 of 1
Programming/Language Tutorials
PostPosted: Sat Oct 25, 2003 10:59 am
by Heaven's Cloud
Does anybody know where I could find tutorials on Programming, I'm just beggining, and Languages such as HTML or others?
PostPosted: Sat Oct 25, 2003 11:23 am
by Straylight
What language do you want to learn?
This one looks fairly good for HTML:
http://www.cwru.edu/help/introHTML/toc.html
PostPosted: Sat Oct 25, 2003 11:55 am
by inkhana
Here's one with quite a bit of info on several languages (mostly web languages)
http://www.w3schools.com/
My sis recommends Programmer's Heaven:
http://www.programmersheaven.com
Hope this helps!
A great Place for HTML
PostPosted: Sat Oct 25, 2003 12:21 pm
by Fsiphskilm
This place is very informative
PostPosted: Sat Oct 25, 2003 12:30 pm
by Heaven's Cloud
Thank you. I'm confused about something though. Java is used to create chats right?
PostPosted: Sat Oct 25, 2003 2:14 pm
by inkhana
Yes, if you know what you're doing, you can use Java to make a client for chats. But I'm not knowledgeable enough about it to tell you more...-_-
PostPosted: Sat Oct 25, 2003 3:24 pm
by Straylight
You can do loads of stuff with Java. A popular one is teach it to every student doing every computing or computing-related subject everywhere >.<;;
PostPosted: Sat Oct 25, 2003 4:00 pm
by Heaven's Cloud
I just learned a little JavaScript and I think it is helping, I like the buttons and that stuff.
PostPosted: Sat Oct 25, 2003 4:12 pm
by Mr. Rogers
http://www.davesite.com/webstation/html/
this is the site i used to learn html. it takes you step by step from the beginning and lets you try out what you learn too. its pretty good.
PostPosted: Sat Oct 25, 2003 4:47 pm
by jesse benishek
I would recomend books if possible you should try "Hands on HTML". If your interested in java (and your like me) you may find dynamic HTML to meet your interest.
PostPosted: Sat Oct 25, 2003 5:17 pm
by Heaven's Cloud
I know the basic's of html like changing the background colour and changing the font, pasting an image, all that stuff. I've learned bassically about 35or 40% of html.
What I am really looking for is programming like C++ but not so complex yet. Something where I could make simple little 2d games, or chats like from java, but does anybody have a suggestion on a program I could start off with that is as complex as those? I just don't think I'm quite ready for all that.
PostPosted: Sat Oct 25, 2003 7:35 pm
by andyroo
So you're going for programs and scripts already made then. If it's going to be web, then I would recommend taking a visit at
HotScripts.com. They have tons of Java, CGI (Perl that is), PHP, Java Script, and there's a few others that I can't remember off the top of my head right now. As for books, buy O'Reilley's Web Design in a Nutshell. It's a great book that covers all of HTML and a little bit of everything esle. It's not a staight reading book but a reference book. I would just read the introduction of each chaper to see what you would like to use and to be able to flip through the book real quick without needing the Table of Contents so much.
PostPosted: Sat Oct 25, 2003 9:54 pm
by TheMelodyMaker
Don't forget about
Lissa Explains It All! ^_^
Here's the Low Down on HTML, Java, & Java Script.
PostPosted: Sat Oct 25, 2003 11:30 pm
by Fsiphskilm
For those of you that are confused
PostPosted: Sun Oct 26, 2003 1:27 pm
by Zal-Utaon III
" " For Dummies
PostPosted: Sun Oct 26, 2003 2:54 pm
by Technomancer
Heaven's Cloud wrote:I know the basic's of html like changing the background colour and changing the font, pasting an image, all that stuff. I've learned bassically about 35or 40% of html.
What I am really looking for is programming like C++ but not so complex yet. Something where I could make simple little 2d games, or chats like from java, but does anybody have a suggestion on a program I could start off with that is as complex as those? I just don't think I'm quite ready for all that.
It depends on what you want to learn to do. Personally, I'd recommend Pascal if you're interested in learning programming fundamentals, and importantly developing a good style. There is a visual version called Delphi, which adds windows functionality (and various components, etc).
PostPosted: Wed Oct 29, 2003 7:52 am
by Tycho
As for Java,
Java is a nice language to use for beginners for the following reasons.
1) Platform Independent - Doesn't matter where you write the code, it will run on any Java machine 99% of the time.
2) GUI build in - unlike C & C++, Java has its own user interface system built in.
3) The syntax is pretty easy. Not IBM 370 Assembler easy, but easy enough.
4) It has a lot of programming constructs built in. Linked lists, Database access, networking: all built into Java. Cuts down on the amount of coding neccessary.
A word of caution though. Games (or any program bigger than Hello World) take a lot of work. Don't expect to sit down one day w/ Java and get up with a game programmed. If you want to do that, there are several "Game Authoring" tools that allow you to ignore most the the programming aspects of games. I am embarking on a Java gaming project, so if you want some help/code, let me know.