Code Newbie
News     Forums     Search     Members     Sign Up    

My Code Newbie
Username

Password

Articles/Snippets
ASP Classic
ASP.NET
C
C#
C++
HTML / CSS
Java
Javascript
Linux / BSD
Perl
PHP
Python
Ruby
SQL
VB 6
VB.NET

C.N. Friends
  Planet Rome

Link to Us!
Code Newbie
  Code Newbie
    forums

Go Back   Code Forums > Code Newbie > Lounge

Reply
 
LinkBack Thread Tools Display Modes
Old 11-06-2004, 03:03 PM   #1 (permalink)
falsepride
Regular Contributor
 
Join Date: Oct 2004
Posts: 219
falsepride is on a distinguished road
where to start?

im pretty experienced im php for about a year now, every challanged i could think of, i found a way to do it, but i dont want to program sites. i want to start out making small programs, then eventaully building up to more complex things. how powerful is perl and what can you do in it? i got perl for dummies awhile ago, but i got bored with it cuz it was similar to php. what language should i learn first?
falsepride is offline   Reply With Quote
Old 11-06-2004, 05:21 PM   #2 (permalink)
Redline
PHP Student
 
Join Date: Oct 2004
Location: Forest Grove, OR
Posts: 151
Redline is on a distinguished road
Send a message via AIM to Redline Send a message via MSN to Redline
I found Visual Basic to be an easy programming language to use, but I think it gives you a skewed view of programming. After learning VB, I found it really really difficult to learn C/C++ and I still don't understand C. So you might want to start out making small C++ apps. At least with that language you can start out with small apps and make bigger ones without having to learn a whole 'nother language.
__________________
Current Project
Redline is offline   Reply With Quote
Old 11-06-2004, 06:28 PM   #3 (permalink)
falsepride
Regular Contributor
 
Join Date: Oct 2004
Posts: 219
falsepride is on a distinguished road
do i need to install the source code for c++, or get a compiler of some sort? ive dont php, and some perl, i needed to install perl source code, but for like other languages you can't open then up in notepad and edit away, don't you need some compiler whatever that is?
falsepride is offline   Reply With Quote
Old 11-06-2004, 06:35 PM   #4 (permalink)
Redline
PHP Student
 
Join Date: Oct 2004
Location: Forest Grove, OR
Posts: 151
Redline is on a distinguished road
Send a message via AIM to Redline Send a message via MSN to Redline
I've not yet delved into C++ yet, but you should be able to edit the source code in notepad, and use the free Boreland compiler to compile the program. There are two "tutorials" regarding Boreland here on CN

http://cpp.codenewbie.com/articles/c..._1-Page_1.html

http://cpp.codenewbie.com/articles/c..._2-Page_1.html
__________________
Current Project
Redline is offline   Reply With Quote
Old 11-06-2004, 07:28 PM   #5 (permalink)
Belisarius
Java fanboy
 
Belisarius's Avatar
 
Join Date: Aug 2003
Posts: 1,166
Belisarius is on a distinguished road
C, C++, Java are all compiled languages; they need to transform source code into machine-readable code. You can fire up Notepad and edit the code, but you then need to compile it before you can run it. For C and C++, a free compiler that you can use is GCC. If you're interested in Java, you can download the Windows SDK from java.sun.com. I'm a Java programmer, so I'm more familiar with what you need for a sane programming environment in that than C/C++.
__________________
GitS
Belisarius is offline   Reply With Quote
Old 11-09-2004, 03:42 PM   #6 (permalink)
falsepride
Regular Contributor
 
Join Date: Oct 2004
Posts: 219
falsepride is on a distinguished road
i downloaded JavaTM 2 SDK, Standard Edition
Version 1.4.2, but i have no idea how to use it or what do? anyone give me some help?
falsepride is offline   Reply With Quote
Old 11-09-2004, 04:06 PM   #7 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,505
sde is on a distinguished road
Now that you have the framework, you can either write java in a text editor, or download and IDE. I suggest using an IDE. With netbeans ( an IDE ) you can write console, gui, or web apps.

http://netbeans.org
__________________
Mike
sde is offline   Reply With Quote
Old 11-09-2004, 05:02 PM   #8 (permalink)
falsepride
Regular Contributor
 
Join Date: Oct 2004
Posts: 219
falsepride is on a distinguished road
if i were to use a text editor, how do i compile the txt files into the program?
falsepride is offline   Reply With Quote
Old 11-09-2004, 05:06 PM   #9 (permalink)
Redline
PHP Student
 
Join Date: Oct 2004
Location: Forest Grove, OR
Posts: 151
Redline is on a distinguished road
Send a message via AIM to Redline Send a message via MSN to Redline
For the Borland C++ compiler, once it is set up correctly you simply type in a command prompt:

bcc32 foobar.txt

though you should save the files as *.cpp
__________________
Current Project
Redline is offline   Reply With Quote
Old 11-09-2004, 05:08 PM   #10 (permalink)
falsepride
Regular Contributor
 
Join Date: Oct 2004
Posts: 219
falsepride is on a distinguished road
i dont have borland yet, just the java one
falsepride is offline   Reply With Quote
Old 11-09-2004, 05:15 PM   #11 (permalink)
Redline
PHP Student
 
Join Date: Oct 2004
Location: Forest Grove, OR
Posts: 151
Redline is on a distinguished road
Send a message via AIM to Redline Send a message via MSN to Redline
Oops, my mistake. Hey, SDE, answer the man
__________________
Current Project
Redline is offline   Reply With Quote
Old 11-09-2004, 05:47 PM   #12 (permalink)
Kernel_Killer
Regular Contributor
 
Kernel_Killer's Avatar
 
Join Date: Feb 2003
Location: indisclosed
Posts: 210
Kernel_Killer is on a distinguished road
You could always start with some bleeding edge. Learn C# and embedded it in XAML.
__________________
Network Synapse
Screaming Electron
Kernel_Killer is offline   Reply With Quote
Old 11-09-2004, 05:57 PM   #13 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,505
sde is on a distinguished road
http://java.sun.com/j2se/1.4.2/install-windows.html

note the 'updating path' section. once you have your paths correct, you can use javac to compile a .java file.
Code:
javac myfirstjavaprogram.java
that would make a new compiled file called myfirstjavaprogram.class

any further details on this subject should probably be in a new post in the java forum =)
__________________
Mike
sde is offline   Reply With Quote
Old 11-10-2004, 07:24 AM   #14 (permalink)
Belisarius
Java fanboy
 
Belisarius's Avatar
 
Join Date: Aug 2003
Posts: 1,166
Belisarius is on a distinguished road
I'll be there
__________________
GitS
Belisarius is offline   Reply With Quote
Old 11-10-2004, 01:26 PM   #15 (permalink)
falsepride
Regular Contributor
 
Join Date: Oct 2004
Posts: 219
falsepride is on a distinguished road
i dont any reasons why this thread cant continue. new people who want to start learning programing could find a lot of info in here. and for c/c++, what are some good compilers?
falsepride is offline   Reply With Quote
Reply

Bookmarks

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

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
HELP console exits once i start program fuzzybunny3 Standard C, C++ 3 10-24-2004 08:10 PM
Best place to start journeyman Lounge 33 03-18-2004 11:01 PM
MDI Application Size on Start Up sde Java 2 03-12-2004 05:57 AM
Where Do You Recommend To Start? goldmonkee Standard C, C++ 6 03-11-2003 10:23 PM
Need help from the very start jacl35 Java 2 03-08-2003 06:53 PM


All times are GMT -8. The time now is 05:20 PM.


Powered by vBulletin® Version 3.7.0
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.0.0 RC8





Copyright © 2000-2008, Milano Interactive
Web Hosting provided by Portal 360 Web Hosting