home   |   contact us   |   sitemap   |   advertising Free Online Games
Free MMORPG

The Free MMORPG Games- Free MMORPG - P2P Games - Open Beta - Closed Beta - Browser Based - Non-English - Other Free Games - Top 50


Go Back   Onrpg Free MMORPG Forums > Development > General Programming
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply
 
LinkBack Thread Tools Display Modes
Old 06-18-2006, 06:03 PM   #1 (permalink)
TwitcH
Retired Staff
 
TwitcH's Avatar
 
Join Date: May 2006
Posts: 2,024
MMOFaces Profile: None Yet
Exclamation Tutorials: Programming

Just a list of programming tutorials for your learning pleasure:

C++
Intended as an enhancement to C.

Code:
//Hello World In C++

#include <iostream>
int main()
{
     std::cout << "Hello World" << std::endl;
      return 0;
}
CPlusPlus Tutorial
Correct C++ Tutorial
programming:cpp
Online C++ Tutorial
C++ Tutorial for C users
Thinking In C++
Teach Yourself C++
Programmers Heaven C++ Page
C++ FAQ LITE
C++ Reference

C
"There is no good reason not to learn C" - TLM

Code:
/* Hello World in C, TLM-style */

#include <stdio.h>

int main()
{
  printf("Hello World!");
  return 0x00;
}
C Language Tutorial
C Programming
Introduction To C Programming
LearnC
The GNU C Library
C-FAQ

Python
Python is a flexible language easier to learn than most other languages, but still powerful enough to be useful for solving real-life problems, used from MIT for learning programming to NASA and Google. Main project homepage is http://python.org/

Code:
# Hello World in Python
print "Hello World"
Python Tutorial
Non-Programmer's Tutorial For Python
Dive Into Python
Intro To IDLE (Python Shell)
Non Programmers Intro To Python
Dick Baldwin Tutorial
Alan Gauld Tutorial
learnPYdia:wiki


Perl
Perl is often used as a glue language, tying together systems and interfaces that were not specifically designed to interoperate, and for "data munging", ie. converting or processing large amounts of data for tasks like creating reports. In fact, these strengths are intimately linked. The combination makes perl a popular all-purpose tool for system administrators, particularly as short programs can be entered and run on a single command line.

Code:
#!/usr/bin/perl
# Hello world in perl
use warnings;

print "Hello World!\n";
Perl Tutorial: Start
perlmonks tutorials
Picking Up Perl
Wikipedia Article
Robert's Perl Tutorial
Short Beginners Tutorial
The Perl Documentation
Perl Modules


Win32 ASM

Code:
; Hello world in Assembler for the Win32 architecture

TITLE Hello world in win32. Tasm

VERSION T310
Model use32 Flat,StdCall

start_code segment byte public 'code' use32
begin:
 Call MessageBox, 0, offset sHallo, offset caption, 0
 Call ExitProcess, 0
start_code Ends

start_data segment byte public 'data' use32

sHallo  db 'Hello world',0
caption	db "Hi",0

start_data Ends
End begin
Iczelion's Win32 Assembly Tutorials
Win32 Assembler Tutorial by T$

Ruby
A brief description of the Ruby programming language by Yukihiro Matsumoto creator of ruby can be found here

Code:
# Hello World in Ruby
puts "Hello World!"
The Little Book Of Ruby
An Introduction To Ruby
Programming Ruby

http://www.ruby-lang.org
http://www.humblelittlerubybook.com/book/
http://poignantguide.net/ruby/

Try Ruby from any web browser, NO installation required http://tryruby.hobix.com/
Documentation and help for Ruby http://www.ruby-doc.org/
The Pragmatic Programmer's Guide http://www.rubycentral.com/book/
Ruby Central http://www.rubycentral.com/
Ruby on rails http://www.rubyonrails.org/
Ruby user guide and tutorial http://www.rubyist.net/~slagell/ruby/index.html
Ruby Projects at RubyForge http://rubyforge.org/
Ruby bindings for Gnome http://en.wikipedia.org/wiki/Ruby_programming_language
Ruby GArden http://wiki.rubygarden.org/Ruby
Ruby Tutorial by Daniel Carrera http://www.math.umd.edu/~dcarrera/ruby/0.3/index.html
Ruby developer centre at Yahoo! http://developer.yahoo.com/ruby/

Ruby GUI toolkits http://www.trug.ca/Ruby_GUI_Toolkits
Ruby HowTo create a GUI for your application http://www.arachnoid.com/ruby/RubyGUIProject/index.html
The Ruby-Gnome project. GUI programming http://ruby-gnome2.sourceforge.jp/

Ruby IDE for Eclipse platform http://rubyeclipse.sourceforge.net/index.rdt.html

Ruby entry at Wikipedia http://en.wikipedia.org/wiki/Ruby_programming_language
Links and more links... http://rubycentral.com/links/index.html


Tcl
The Tool Command Language is an easy to learn scripting language, but still very powerful.
Its designed to have self explaining, human readable sourcecode.

Code:
#!/usr/local/bin/tclsh
# Hello World in Tcl

puts "Hello World!"
The Official Homepage
Tcl Commands Manual
The Tcler's Wiki
Wikipedia Article
Wikibooks Tcl


Java

Code:
// Hello World in Java

import java.io.*;
class HelloWorld {
  static public void main( String args[] ) {
    System.out.println( "Hello World!" );
  }
}
Learn Java In 21 Days
Suns Java Tutorials
Brewing Java

OpenGL

NeHe Productions
A Quick OpenGL Tutorial
GameTutorials - Programming with a personality, from start to finish
OpenGL Tutorial

SDL

LibSDL Tutorials
Cone3D Tutorials
SDL:Tutorials - GPWiki

DirectX

Direct3D Tutorial Index
DirectX with C#

Visual Basic

Code:
REM Hello World in Visual Basic for Windows

VERSION 2.00
Begin Form Form1
   Caption         =   "Form1"
   ClientHeight    =   6096
   ClientLeft      =   936
   ClientTop       =   1572
   ClientWidth     =   6468
   Height          =   6540
   Left            =   876
   LinkTopic       =   "Form1"
   ScaleHeight     =   6096
   ScaleWidth      =   6468
   Top             =   1188
   Width           =   6588
   Begin Label Label1
      Caption         =   "Hello World!"
      Height          =   372
      Left            =   2760
      TabIndex        =   0
      Top             =   2880
      Width           =   972
   End
End
Option Explicit
VBTutor
VB6 Tutorials

And some web design resources contributed by Dennis56:

HTML:
http://www.w3schools.com/html/default.asp
http://www.tizag.com/htmlT/

javascript:
http://www.tizag.com/javascriptT/
http://www.w3schools.com/js/default.asp
http://www.cs.brown.edu/courses/brid...-tutorial.html

CSS:
http://www.echoecho.com/css.htm
http://www.westciv.com/style_master/.../css_tutorial/
http://www.westciv.com/style_master/...ial/index.html
http://www.w3schools.com/css/default.asp
http://www.tizag.com/cssT/

ASP:
http://www.w3schools.com/aspnet/default.asp
http://www.tizag.com/aspTutorial/
http://www.asptutorial.info/
http://www.thescripts.com/serverside...ics/index.html

AJAX:
http://www.w3schools.com/ajax/default.asp
http://www.tizag.com/ajaxTutorial/
http://developer.mozilla.org/en/docs...etting_Started

PHP:
http://www.w3schools.com/php/default.asp
http://www.tizag.com/phpT/
http://www.freewebmasterhelp.com/tutorials/php
http://www.php-mysql-tutorial.com/


NOTE: Will be adding more to this soon, If you think i've missed any good ones, please say so and I will add them. THIS IS NOT FINISHED!

Last edited by TwitcH : 06-16-2007 at 03:49 PM.
TwitcH is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 06-19-2006, 02:21 PM   #2 (permalink)
firor
Moderator
 
Join Date: May 2006
Location: Yishun, Singapore
Posts: 211
Send a message via MSN to firor
MMOFaces Profile: None Yet
Default

wow, maybe i can look upon those when i have some free time.
__________________

This is 1 mod you dont wanna funk with!!!
firor is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 06-19-2006, 02:50 PM   #3 (permalink)
genaga
Link's Dirty Sock
 
Join Date: Jun 2006
Posts: 47
Reputation: 10
MMOFaces Profile: None Yet
Default

seangreasley.com
genaga is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 06-20-2006, 01:42 AM   #4 (permalink)
Saint
Str1der's Stooge
 
Saint's Avatar
 
Join Date: May 2006
Location: Main-stream music land. Kill me.
Posts: 2,642
Reputation: 11
Send a message via MSN to Saint
MMOFaces Profile: None Yet
Default

Stickied because of awesomeness.
__________________
Luke - Fifteen feels the same as twelve.: Josef Stalin and I have the same birthday.
Str1der: That's not sexy.
Str1der: It's scary.
Str1der: Because it affirms my beliefs
Str1der: That you are actually the re-incarnation of Stalin.
Str1der: I KNOWZ T3H TRUTHZ
Saint is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 07-20-2006, 02:49 AM   #5 (permalink)
lorddonk
Raider of Empty Tombs
 
lorddonk's Avatar
 
Join Date: May 2006
Location: Trying to find a good MMORPG
Posts: 350
Reputation: 11
MMOFaces Profile: None Yet
Default

Anybody know of any good Ruby tutorials??
__________________
lorddonk is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 07-20-2006, 03:43 AM   #6 (permalink)
TwitcH
Retired Staff
 
TwitcH's Avatar
 
Join Date: May 2006
Posts: 2,024
MMOFaces Profile: None Yet
Default

Quote:
Originally Posted by lorddonk
Anybody know of any good Ruby tutorials??
Added a few for ruby, just for you
TwitcH is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 07-22-2006, 08:35 AM   #7 (permalink)
n0madic0debc
Link's Dirty Sock
 
n0madic0debc's Avatar
 
Join Date: Jul 2006
Posts: 41
Reputation: 10
MMOFaces Profile: None Yet
Default

You should put some links for VB6 and .NET
__________________
I need a job Look at my Resume
Click me
Heres original link just incase.....
http://www.onrpg.com/boards/game-dev...ay/#post126081
Some of my work i made for diff games and ppl.

n0madic0debc is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 08-05-2006, 08:56 PM   #8 (permalink)
TwitcH
Retired Staff
 
TwitcH's Avatar
 
Join Date: May 2006
Posts: 2,024
MMOFaces Profile: None Yet
Default

Updated with a few Java Tutorials, will add VB6 and .NET soon as possible.
TwitcH is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 08-09-2006, 05:34 PM   #9 (permalink)
tdr
Marios's Mustache Wax
 
Join Date: Aug 2006
Posts: 1
Reputation: 10
MMOFaces Profile: None Yet
Default

how aobut J# and c#
__________________
you cannnot escape my gaze. LOL
tdr is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 08-09-2006, 06:32 PM   #10 (permalink)
naruto1327
Dante’s Inferno
 
naruto1327's Avatar
 
Join Date: May 2006
Location: California
Posts: 617
Reputation: 10
Send a message via AIM to naruto1327 Send a message via MSN to naruto1327 Send a message via Yahoo to naruto1327
MMOFaces Profile: None Yet
Default

What is J#?!
naruto1327 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 02:13 PM.

Forums Section List
Main Category Free Games Online Games Upcoming Games Online Games Upcoming Games
General Free MMORPG Fiesta Online    Maple Story Guides Trickster DOMO - Dream of Mirror Online
RolePlaying Free MMO & MMOFPS Conquer Online    Maple Story Buy/Sell/Trade WarRock Online Seal Online
Newbie Zone Korean/Foreign Games DragonGem Lunia World of Warcraft Age of Armor
  Browser/MUDs FlyFF Ragnarok Online Other Games Exteel
  Single Player RPGs Ghost Online Rakion    Rappelz Infinity
  Free MMORPG Requests Guildwars Runescape    Final Fantasy XI Cabal Online
    Gunz Online Scions of Fate (YulGang)    Goonzu Online Granado Espada
    Maple Story Silkroad    Gunbound Nostale



Powered by vBulletin® Version 3.6.10
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.0.0 RC8
Onrpg, Copyright ©2003-2007, BlueCastle Media

Copyright © 2004-2007 BlueCastle Media