473,732 Members | 2,083 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Getting Started in Programming & Scripting

Hi, I'm interested in getting started in the programming world. I've dabbled
in C, C++ and VB6. Which would be the best language to focus my attention to
regarding the following considerations:

Hireability
Portability
Flexibility

The likely candidates seem to be Java, VB.Net, C, C++, C#.

Also, what would be the best scripting language to get started in? Maybe
something that's a subset of an above language? Maybe scripting is a good
way to get started in general?

Thanks,

PA
Nov 14 '05 #1
84 3919
Bibby wrote:
Hi, I'm interested in getting started in the programming world. I've dabbled in C, C++ and VB6. Which would be the best language to focus my attention to regarding the following considerations:

Hireability
Portability
Flexibility
Flexibility will lead to the other two. Abject pursuit of hireability will
not bring happiness. You can't buy love (but you can often rent it).
The likely candidates seem to be Java, VB.Net, C, C++, C#.
Every language in that list, and in your list of newsgroups, sucks.

You need to learn to learn languages. Nobody should say "I'm a VB
programmer", like they would "I'm a Mormon" or "I'm a Vegan". Linguistic
monogamy is a dead end.

(Also, Java is no relation to JavaScript.)
Also, what would be the best scripting language to get started in? Maybe
something that's a subset of an above language? Maybe scripting is a good
way to get started in general?


You need to research two general categories: Open Source, and TDD. Get with
GNU, Linux, and SourceForge, download their projects, and futz with them.
See if you can get one to compile (an herculean effort), then tweak it to
add features. You will confront some of the toughest problems in
programming - both logical problems within the code, and logistic problems
deploying that code.

Next, observe that many projects typically don't have unit tests. The most
popular implementation technique today is debugging, and it is slow,
fragile, and the source of many bugs and delays. If you instead learn
Test-Driven Development, you can trade long hours of debugging for short
minutes writing tests. Many TDD projects simply never use the debugger, and
never need to. This will put you in the forefront of modern programming, and
boost your hireability.

--
Phlip
http://www.c2.com/cgi/wiki?ZeekLand
Nov 14 '05 #2
Bibby wrote:
Hi, I'm interested in getting started in the programming world. I've dabbled
in C, C++ and VB6. Which would be the best language to focus my attention to
regarding the following considerations:

Hireability
Portability
Flexibility

The likely candidates seem to be Java, VB.Net, C, C++, C#.

Also, what would be the best scripting language to get started in? Maybe
something that's a subset of an above language? Maybe scripting is a good
way to get started in general?

Thanks,

PA

In order, personal preference:

Tcl/Tk (script language)
Perl (script language)
Visual Studio (VB, VC, J#)
Java

I started Tcl/Tk, because I needed an easy scripting language, that
would also do GUI interfaces. Then moved up to Perl, and integrated
that with the ktinit for Tcl/Tk, for more advanced, GUI scripts. Wrote
several applications, of various sizes and complexity in VB and .NET,
and now I'm working with Java, in concert with Oracle and MySql databases.

Your mileage of course may vary.
--
Dr. Karl E. Taylor
UNIX Systems Engineer / Oracle DBA
Nov 14 '05 #3
On Sat, 21 May 2005 13:10:12 -0400, "Bibby" <bi***@hotmail. com> wrote:
Hi, I'm interested in getting started in the programming world. I've dabbled
in C, C++ and VB6. Which would be the best language to focus my attention to
regarding the following considerations:

Hireability
Portability
Flexibility

The likely candidates seem to be Java, VB.Net, C, C++, C#.
I would say C++. This also involves learning C (C++ is _almost_ a
superset of C). If you can do C++ then Java and C# won't pose much of
a problem. C++ can be used for OOP but also traditional, procedural
programming.
Also, what would be the best scripting language to get started in? Maybe
something that's a subset of an above language? Maybe scripting is a good
way to get started in general?


In my experience, the "scriptkidd ies" do different things. They're
mostly used doing "web stuff". There's quite a substantial demand for
scriptkiddies (at least, where I live).

It all depends on what you want to do.

Note that a lot of applications (and websites) make use of a database.

Being able to program in SQL is helpfull (and knowledge about the
extensions offered by Oracle and MS SQL Server, MySQL is also popular
for websites).

Even though I, mostly, make applications in C++, most of my code is
actually SQL and resides on the DBMS as stored procedures. The
performance of such applications is more dependent on the design of
the DB and its SPs. This is normal, to have most of the "intelligen ce"
on the DBMS so that the client's interface is light weight and can be
easily changed or replaced. You don't have to be a genius to make
interfaces and the language hardly matters performance-wise,
especially since there are so many components taking care of stuff
(charts, reports, etc.). But it is important to be a very good
database designer.

Note also that not only a language(s) is demanded by employers but
also a specific development platform (like, for Windoze, MS Visual C++
or MS Visual Studio.net with its multiple languages, Borland Builder
seems to be less popular). These development platforms offer certain
components that a developer needs to be able to use.

But it is best to get the standard language down first. I would say
that C++ is the best choice and SQL as well, unless you want to stay
clear from database applications.

Nov 14 '05 #4
I'd recommend getting to grips with Java first. The design of the language
is very clean and you will not need to worry about pointer exceptions (no
pointers) or memory management (automatic garbage collection). Excellent
development environments such as Eclipse and NetBeans are also available for
Java.

C++, however, is very messy and has a much steeper learning curve owing to
its more complex facilities such as multiple inheritance; plus the hassle of
manual memory management and those pesky pointer exceptions.

Python and Ruby are two modern scripting languages, again with very clean
designs and fully object-oriented. If you want to do scripting for web
sites, PHP is still a popular and perfectly acceptable choice.
Nov 14 '05 #5
Mick Sharpe wrote:
Python and Ruby are two modern scripting languages, again with very clean
designs and fully object-oriented.


I'd like to second the suggestion for Ruby. It's really a fantastic
language, and the concepts map well to those in "grown-up" languages
like Java and C# well (at least superficially).
Nov 14 '05 #6
ben
Just pick any of them and half way down the learning you know how to learn
the others, literally.

ben
"Bibby" <bi***@hotmail. com> wrote in message
news:KX******** *************@n ews20.bellgloba l.com...
Hi, I'm interested in getting started in the programming world. I've dabbled in C, C++ and VB6. Which would be the best language to focus my attention to regarding the following considerations:

Hireability
Portability
Flexibility

The likely candidates seem to be Java, VB.Net, C, C++, C#.

Also, what would be the best scripting language to get started in? Maybe
something that's a subset of an above language? Maybe scripting is a good
way to get started in general?

Thanks,

PA

Nov 14 '05 #7

"Bibby" <bi***@hotmail. com> wrote in message
news:KX******** *************@n ews20.bellgloba l.com...
Hi, I'm interested in getting started in the programming world. I've dabbled
in C, C++ and VB6. Which would be the best language to focus my attention to
regarding the following considerations:

Hireability
Portability
Flexibility

The likely candidates seem to be Java, VB.Net, C, C++, C#.

Also, what would be the best scripting language to get started in? Maybe
something that's a subset of an above language? Maybe scripting is a good way
to get started in general?


What sort of programming? You've said the equivalent of "I want to learn a
trade." Any idea what?
Consider these areas of the "programmin g world":

Animated Movies
Digital Signal Processing
Server Database Systems
Commercial Web Sites
Excel Macros
Artificial Intelligence
Anti-Spyware Programs
3D Internet Games
Server Management Tools
Device Drivers
Enterprise Resource Management
Streaming Video Players

Obviously there are many more. Which languages, platforms, and environments you
look into depends on what sort of programming you want to do.
Nov 14 '05 #8
Mick Sharpe wrote:
I'd recommend getting to grips with Java first. The design of the language
is very clean and you will not need to worry about pointer exceptions (no
pointers) or memory management (automatic garbage collection). Excellent
development environments such as Eclipse and NetBeans are also available for
Java.

C++, however, is very messy and has a much steeper learning curve owing to
its more complex facilities such as multiple inheritance; plus the hassle of
manual memory management and those pesky pointer exceptions.

Python and Ruby are two modern scripting languages, again with very clean
designs and fully object-oriented. If you want to do scripting for web
sites, PHP is still a popular and perfectly acceptable choice.


I concur re C++ (ol C dog here) I use python and rebol for most web
programming. Rebol runs rings around python in terms of rebol code being
more productive than python code - but python has more libraries and a
larger user base that tends to thoroughly test the libraries and (from
my experience) scales better than rebol for large projects. Python is
very thoughtfully designed Object-wise. And there is a market for python
programmers, if you must seek employment.

But the main thing is to be adaptable. For instance, I use elisp to
customize my editor (emacs), use my editor to write rebol code that when
executed, produces python code, which when executed produces javascript
and mysql code.

My apologies to other "ol C dogs" - my unbiased opinion. Those header
files with object defs in them can be a real pain in the rear.

tim
Nov 14 '05 #9
Bibby wrote:
Hi, I'm interested in getting started in the programming world. I've dabbled in C, C++ and VB6. Which would be the best language to focus my attention to regarding the following considerations:

Hireability
Portability
Flexibility
<snip>

Hireability varies as geographical locations change. What's in demand
in Chicago is different than what's in demand in Silicon Valley. Look
at your local job listings.
The likely candidates seem to be Java, VB.Net, C, C++, C#.

Also, what would be the best scripting language to get started in? Maybe something that's a subset of an above language? Maybe scripting is a good way to get started in general?


Skip C and C++ until you're familiar enough with programming to know
what you're getting yourself into. You're right: scripting is a
perfect way to get started, so pick one and get coding.
Mark F. Haigh
mf*****@sbcglob al.net

Nov 14 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

80
5270
by: Bibby | last post by:
Hi, I'm interested in getting started in the programming world. I've dabbled in C, C++ and VB6. Which would be the best language to focus my attention to regarding the following considerations: Hireability Portability Flexibility The likely candidates seem to be Java, VB.Net, C, C++, C#.
0
8773
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9445
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9306
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9234
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8186
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6030
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4548
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4805
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
2177
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.