Go Back   Forums > Community Chatterbox > Tech Corner > Programming
Memberlist Forum Rules Today's Posts
Search Forums:
Click here to use Advanced Search

Reply
 
Thread Tools Display Modes
Old 02-02-2005, 01:23 AM   #1
n3ur0
Newbie

 
Join Date: Feb 2005
Location: ,
Posts: 10
Thumbs up

waht i should start with?
i tried DarkBASic , in basic , but its a bit hard..
say me something

i ve tried freepascal, but then i realized that its a compiler, not a programmer, or taht is waht i understan (tell me if im wrong)
n3ur0 is offline                         Send a private message to n3ur0
Reply With Quote
Old 02-02-2005, 07:55 AM   #2
FreeFreddy
Guest
Default

I for myself would recommend either Turbo Pascal - we're studying it in the college now, or C++, but of that on I don't know if it's really as easy as our teacher says...
                       
Reply With Quote
Old 02-02-2005, 08:52 AM   #3
mika
Games Master
 
mika's Avatar

 
Join Date: Oct 2003
Location: Johannesburg, South Africa
Posts: 308
Default

I think I see what you're getting at. Some definitions might be needed:

A compiler is a little program that takes source code (text files with commands written in them) and creates an executable file in machine code (.exe files).

An IDE (I think the programmer that you were referring to) stands for Integrated Development Environment and all that it basically is is an editor for the source code in a specific language.

The important thing to have with any language is a compiler as you want to run your code after you've written it. The only exception to this are scripting languages which are not compiled (like ASP, PHP).

The IDE is only used for editing the program. Most of the time you can write the program in Notepad (or some other IDE for that language) and compile it anyway. So the IDE is not needed but is definitely a nice thing to have as it colourises the keywords and such in your source code. This just makes writing code a little easier and more productive.

If you want to learn programming as a career, then I suggest you try out .NET or Java as there are plenty of jobs out for those two. They are the corporate choices these days.
If you want to program for fun or make games, then try out the more interesting stuff like C, C++, Pascal, etc...
mika is offline                         Send a private message to mika
Reply With Quote
Old 02-02-2005, 09:08 AM   #4
Reup
10 GOSUB Abandonia
20 GOTO 10
 
Reup's Avatar

 
Join Date: Dec 2004
Location: Eindhoven, Netherlands
Posts: 1,508
Default

First of all. Programming is NOT going to be easy. If you've never programmed before, it will take you some time to get to know all concepts and constructs of very basic programming. BASIC is one of the easiest languages around (so it is said) because it is very 'high level' (the language takes care of a lot of things for you). Pascal is also considered a good first language and many colleges offer a programming 101 using Java. If you've learned to program in one language, getting to know another one is less hard, because the concepts tend to be the same among languages (a loop is a loop in any language).
So my advise: go for Pascal (or Delphi), Java or Visual Basic to learn programming. There's almost nothing you can't program in any of these languages (short of -perhaps- an Operating System or device driver) but you don't have to worry a lot about memory leaks (especially not with Java) and obscure compiler errors...

Read this article to help you choose the language!

And about the confusion:
1) You type the program using any old text-editor. This you do in a programming language which is designed to be understood by humans (i.e. Pascal, Java, C++ or even Assembler)
2) This code has to translated to machine-code. This can be done using a compiler (e.g. Java, C++) or an Interpreter (e.g. Java). When you're using an Integrated Design Environment, most of this happens behind the screens, but this translation process does occur.

Good Luck with programming!
Reup is offline                         Send a private message to Reup
Reply With Quote
Old 02-02-2005, 09:14 AM   #5
quatroking
[BANNED]

 
Join Date: Jan 2005
Location: ,
Posts: 242
Default

U can try Delphi...
(i have a cd from it)
Or try javascripts.
quatroking is offline                         Send a private message to quatroking
Reply With Quote
Old 02-02-2005, 10:32 AM   #6
Yamcha
Home Sweet Abandonia

 
Join Date: Oct 2004
Location: Shella, Kenya
Posts: 851
Default

I sarted with Visual basic and its somewhat easy.
__________________
Some men see things as they are and ask "why?". I dream things that never were, and ask "why not?".
Yamcha is offline                         Send a private message to Yamcha
Reply With Quote
Old 02-02-2005, 11:05 AM   #7
The Fifth Horseman
FUTURE SCIENCE BASTARD
 
The Fifth Horseman's Avatar


 
Join Date: Oct 2004
Location: Opole, Poland
Posts: 14,276
Default

Pascal and its derivatives are good to start with.
I have been using a training prog once that had a internal program language similar to Pascal in many aspects, and then wrote a script for pascal-based file editor (internal language too, but again very pascal-like). This helped me understand them a lot.
__________________

"God. Can't you people see I'm trying to commit a crime against science and nature here?"
-- Reed Richards
The Fifth Horseman is offline                         Send a private message to The Fifth Horseman
Reply With Quote
Old 02-02-2005, 02:53 PM   #8
n3ur0
Newbie

 
Join Date: Feb 2005
Location: ,
Posts: 10
Default

i will continoe wiht basic
tx u very much
n3ur0 is offline                         Send a private message to n3ur0
Reply With Quote
Old 02-02-2005, 02:54 PM   #9
Omuletzu
10 GOSUB Abandonia
20 GOTO 10

 
Join Date: Mar 2004
Location: Shella, Kenya
Posts: 1,529
Send a message via MSN to Omuletzu Send a message via Yahoo to Omuletzu
Default

Quote:
Originally posted by Yamcha@Feb 2 2005, 01:32 PM
I sarted with Visual basic and its somewhat easy.
I agree.The basics are easy to grasp, and the program is quite powerful.I also tried pascal, but it's unfriendly "GUI" scared me :whistle: .
Omuletzu is offline                         Send a private message to Omuletzu
Reply With Quote
Old 02-02-2005, 03:05 PM   #10
Kon-Tiki
[BANNED]

 
Join Date: Sep 2004
Location: Dentergem, Belgium
Posts: 1,811
Default

Then again, Pascal's easy to learn and is a great language to step into more professional ones, like C/C++.

If you're going for GUI and ease to code, but can lack a bit of power behind the language, you can go with Visual Basic. If you're going for GUI and power behind the language, with still relative ease to code, go for Delphi (if you can find the IDE for it >_> )

If you're not looking for GUIs directly, it all depends on what your requisitions are.
Kon-Tiki is offline                         Send a private message to Kon-Tiki
Reply With Quote
Reply


Similar Threads
Thread Thread Starter Forum Replies Last Post
Somebody Who Knows Php Code? andy_blah Blah, blah, blah... 14 11-06-2006 03:11 AM
Need The Code.... TalonStriker Troubleshooting 1 14-04-2006 07:21 PM
Wot Is The Dos Start Up Code For Constructor? liljimmy Troubleshooting 13 25-10-2005 03:23 PM
Another Code: Two Memories BlackMageJawa Gaming Zone 1 27-06-2005 06:08 PM


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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump
 


The current time is 03:01 PM (GMT)

 
Powered by vBulletin® Version 3.7.1
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.