Lost Password?

Go Back   CodeCall Programming Forum > Software Development > General Programming

Unregistered, Check out the Coder Battles in the Announcement and Game forums.

General Programming Non language specific, Assembly, Linux/Unix, Mac and anything not covered in other topics. Talk about Programming Theory here.

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 08-15-2007, 04:04 PM
spaivxx spaivxx is offline
Newbie
 
Join Date: Aug 2007
Posts: 1
Credits: 0
Rep Power: 0
spaivxx is on a distinguished road
Default Help beginning a programming career

Hi everyone, this is my first post here. I am 36, have lived my entire life never really having a real 9-5 job, and find myself in need of a new career. In my life I have made a good deal of money at times just playing music and doing odd jobs. I do have an afinity for technology and have been thinking for a very long time about becoming a programmer of some sort.

I do hava e an A+ and Network+ certification, but I am not really interested in becomming a network engineer. I have strong problem solving skills and and pretty good at learning things on my own, either from books or the net.

What I need to know is what languages are the most marketable in terms of seeking employment. Also, what tools do i need in order to begin learning to code in these languages.

thanx
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Sponsored Links
  #2 (permalink)  
Old 08-15-2007, 08:17 PM
Jordan's Avatar   
Jordan Jordan is offline
Administrator
 
Join Date: Nov 2005
Location: Hendersonville, NC
Posts: 7,142
Last Blog:
Tramp Variables
Credits: 1
Rep Power: 20
Jordan has much to be proud ofJordan has much to be proud ofJordan has much to be proud ofJordan has much to be proud ofJordan has much to be proud ofJordan has much to be proud ofJordan has much to be proud ofJordan has much to be proud ofJordan has much to be proud of
Send a message via ICQ to Jordan Send a message via AIM to Jordan Send a message via MSN to Jordan
Default

Hello and welcome to CC.

The most sought after languages that I see are .NET languages now. If you take a look at monster.com you will see plenty of jobs for Visual Basic, C# and C++. Choose one of these languages and get a good book on them. If you look under resources->books there is a book for each language.

I'm going to move this thread to a more suitable forum as well.
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

Don't hesitate to ask any questions that you have! Check out our
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 08-15-2007, 11:49 PM
v0id's Avatar   
v0id v0id is offline
Super Moderator
 
Join Date: Apr 2007
Location: Denmark
Posts: 2,566
Last Blog:
CherryPy(thon)
Credits: 50
Rep Power: 28
v0id is a glorious beacon of lightv0id is a glorious beacon of lightv0id is a glorious beacon of lightv0id is a glorious beacon of lightv0id is a glorious beacon of lightv0id is a glorious beacon of light
Send a message via MSN to v0id
Default

Welcome to CodeCall, Spaivxx!
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
-
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
-
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

I'm always up for a chat, so feel free to contact me...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 08-20-2007, 06:49 AM
CygnetGames's Avatar   
CygnetGames CygnetGames is offline
Programmer
 
Join Date: May 2007
Location: York, England
Posts: 113
Credits: 0
Rep Power: 5
CygnetGames is on a distinguished road
Default

If you want to program big applications then you should learn about "Object Orientation". This is a style of programming that that vast majority of modern programming languages are built around.
Jordan's advice on languages seems sound.

If you want to program websites then you will need to know HTML and CSS - these are the basics of how websites are built. To do the modern fancy stuff with databases and Ajax, you will need to know a server-side language like PHP or ASP, and also possibly javascript.

As far as tools go, there are two tools that you need to program: A compiler/interpreter and a text editor.

The text editor is for writing your code, and the compiler/interpreter is for running it. A compiler takes your code, compiles it and gives you an "exe file" (if you're using windows). You then run the exe file. An interpreter runs your source code straight off. Some languages have to be compiled, some have to be interpreted - depends on the language.

Some programmers like to use their favourite text editor for all the languages they code it, and run the compiler for their language through a command prompt. This is what you used to have to do back in the "good old days" before windowing systems
You can get applications that combine a text editor with the compiler, so that you can type your code and then press a button in the application to compile/run your program. These are called IDEs (Integrated Development Environments).

If you use a Microsoft language - like the .NET ones, you have to buy an IDE from microsoft that contains a text editor, compiler and loads of other tools that do everything under the sun to try and make things easier for you. This IDE is quite expensive, but they tend to release older versions of it for free.

Hope that helps a little. Programming can seem quite daunting at first, but by far the best way to learn is to jump in at the deep end and just keep trying. There is masses of information on the internet, and forums were a real help to me when I was learning. And I still use them now when I have problems.

Good luck with it and feel free to ask any questions you may have.
__________________
My
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
website:
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

My
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
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
starting Programming Willmaniam C and C++ 4 04-27-2007 11:41 AM
Major career change luckluck C and C++ 13 08-20-2006 10:00 AM
Programming Guru DevilsCharm The Lounge 2 07-15-2006 11:58 AM


All times are GMT -5. The time now is 12:54 AM.

Contest Stats

Xav ........ 1024.41
MeTh0Dz|Reb0rn ........ 974.08
morefood2001 ........ 850.04
John ........ 841.93
WingedPanther ........ 661.52
marwex89 ........ 575.59
Brandon W ........ 454.56
chili5 ........ 292.12
orjan ........ 187.41
Steve.L ........ 181.88

Contest Rules

CodeCall Goal

Goal: 100,000 Posts
Complete: 79%

Ads