Results 11 to 20 of 24
Well, for example:
C++ and Java are used for applications. If you intend to write stand-alone programs, you will learn a language such as this.
A language like Perl or ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 04-26-2005 #11
Well, for example:
C++ and Java are used for applications. If you intend to write stand-alone programs, you will learn a language such as this.
A language like Perl or Bash is a scripting language. It helps run things on your computer and on servers.
They have different uses, and if you get serious about programming, you will learn many different languages. I currently know basic C++, almost fluent Java, and I'm progressing nicely in Perl.
And whatever you decide, if you're looking for a good guide, go with O'Reilly books. They're well-written and humorous, so they stay interesting. Go with the "Learning [LANGUAGE]" series, not the "Programming [LANGUAGE]" series, especially if it's your first language.
- 04-26-2005 #12I would choose Python because it is easy and it is good for programming style. Perl is also good but for a newbie, I would try Python first and then move onto Perl.
Originally Posted by mandrakelinux
BryanLooking for a distro? Look here.
"There can be no doubt that all our knowledge begins with experience." - Immanuel Kant (Critique of Pure Reason)
Queen's University - Arts and Science 2008 (Sociology)
Registered Linux User #386147.
- 04-26-2005 #13
I’m still a nuube to Linux, but I’ve been programming for a long time and I would have to say that Java is my favorite language. One of its great advantages is that it will run on almost any platform. It can be used to develop small Applets which run in a browser, Stand alone applications, or on a corporate back end server as part of J2EE enterprise web application. Although Java may represent a longer learning curve than some other languages, it’s incredibly versatile.
It will even run on Windows
uke:
- 04-27-2005 #14Just Joined!
- Join Date
- Apr 2005
- Posts
- 40
thanks guys
now i got the start point .
compiled language for stand alone application for example (kopete).
scripting language to run scripts and script means subsquential lines .
in my opinion i have to learn at least one scripting language and one compiled
here i need to know which kind i have to start with
- 04-27-2005 #15
Here is an interesting document as well:
http://www.catb.org/~esr/faqs/hacker-howto.htmlI\'m so tired .....
#200472
- 04-27-2005 #16
Well, how old are you? Most high schools and pretty much all colleges have programming courses. What are they offering? Chances are either C++ or Java.
Scripting languages tend to be made for *nix systems, so I don't know how many schools offer them. But once you understand one TD or OOP language, it's pretty easy to pick up on others. It took me 2 years to get where I am in Java, but I've gotten pretty far in Perl in just about a month with a single book.
I hear that QBASIC is good for learning compiled languages. I dunno, I've never used it. I'd recommend Java, probably, because though some parts don't make a lot of sense at first, it has better checking than C++, automatic garbage collection, and is universal.
- 04-27-2005 #17Just Joined!
- Join Date
- Apr 2005
- Posts
- 40
thanks Cabhan
i'm systems engineer for 5 years (microsoft)
now i've entirely changed to linux and i tend to do everything with it (no microsoft product) at least in programming
but still want to learn any programimng language which help me in my career
i know it's hard to decide
- 04-27-2005 #18Just Joined!
- Join Date
- Apr 2005
- Posts
- 40
i think , i got the first step
maybe i'll start perl or python
tell me what about it ? am i in the right way
- 04-27-2005 #19
Well, Perl is a language that I particularly enjoy. It's written specifically for lazy programmers, with default variables and things being assumed. For example:
That will go through a text file given on the command line and print out any line beginning with characters then : (http:, ftp:, mailto:, etc.). Yet see how little I typed? <3.Code:#!/usr/bin/perl -w for (<>) { print if /^\w+:/; }
Perl is also common to see in websites and databases. It is a CGI language, good for server communication.
I've never used Python, so I can't really say. But I definitely have enjoyed Perl.
- 04-27-2005 #20Just Joined!
- Join Date
- Apr 2005
- Posts
- 40
thanks alot guys especially for Cabhan
i think this is my last question
if i immersed in perl could i decide for the next step or i'll take this hard way again to decide


Reply With Quote
