vote up 39 vote down star
11

I am currently a BA (business systems analyst) and i want to get more technical. How difficult is it to start programming at 27? I know the basic concepts but haven't really "sat down" and get hands on. What would you recommend doing? I got some c# asp.net books for beginners is that a good way?

flag
24  
Be carefully, think it twice, once you start programming you will never stop. It's too funny. – Jonathan Jun 26 at 9:11
20  
The fact that you're on here is a good start! – StuperUser Jun 26 at 9:23
17  
you need a mission. use that mission to learn. books are nice but they are not your project. you need one for you or you will not be excited about it. – johnny Jun 26 at 14:14
show 2 more comments

43 Answers

prev 1 2
vote up 2 vote down

I have two friends that started programming late in life, considerably older than 27. Both got employment in development and one is working in an investment bank getting pats on the back at a rate that suggests that someone in management really wants to keep him on board.

When I first started out of university I worked with someone who came to development after working as a lab technician (somewhere in their mid 20s). He was one of the more respected senior developers in the organisation and I would personally rate him as a good developer - attention span to die for.

I think if you have the aptitude for this type of work you can probably start pretty much anytime in life. C# is probably not a bad language to learn on - it's quite orthogonal and fairly pleasant to work with. You should also get a more general C# book and experiment with programming in general - basic algorithms and data structures stuff from an introductory textbook. This would give you a more rounded grounding than just a web development book.

link|flag
vote up 14 vote down

Why not? Good age to start something.

My grandfather is 70, by the way, but he assembled his first computer by himself, now he plays a lot with different OSes including different distributions of Linux. What he is most fond of is the Internet, he loves to read technical articles and forums.

So 27 is fine, if you like it, go for it!

link|flag
vote up 2 vote down

Sit down and get hands on is definitely good advice!

I would reccomend choosing a language (for windows applications C# would be a good start) then visiting CodeProject.com or the like and downloading a project that interests you.

Then look through code and try and understand it. Once you think you do, see if you can make small changes to it, then maybe try making your own project from scratch along similar lines.

I started programming at 24 via a correspondence course and self study and then started coding professionaly in C and FORTRAN about a year later as part of my engineering role. After 5 years I moved to C++ and C# and im now a full time developer.

I dont think you are ever to old to start programming if you have the mindset for it and the motiviation to learn a lot yourself. I'd say that with the amount of resources on the internet it has never been easier to start.

The hardest part will probably be ensuring you follow good practices; but again there are lots of resources out there to point you in the right direction.

If you are interested in object-orientated programming you could worse than check out MartinFowler.com.

Finally, as already suggested use source control such as SVN once you get serious - it will save you many headaches.

link|flag
vote up 13 vote down

You'll be fine, programming isn't an olympic sport.

However, you may have pesky drains on your time, like family or significant others.
If you really want to put in the hours you should probably consider ditching them.

link|flag
1  
+1 made me laugh. – dotjoe Jun 26 at 21:02
show 3 more comments
vote up 1 vote down

It's definately do-able, and you have an excellent foundation for this as you have a good grasp of the business side of things.

Buying the c# books is a good place to start, however you need to find a practical project to work on to actually learn how it all works correctly. Initially this could be a series of personal projects, like a music library, expenses program or whatever.

Once you've done afew of these you can start trying to add to some open source projects.

If you want to move from being a BA to being a developer, I would suggest taking afew certificates, possibly the microsoft developer ones, and then applying for a junior developer role where you can leverage your BA knowledge to stand out from other applicants.

Good luck, to make the transition will require some hard work.

link|flag
vote up 22 vote down

I think it depends on what is your final goal:

  1. Professional: Being an expert in any programming language/technology
  2. Hobbyist: Getting comfortable with some technology and create few applications for fun
  3. Manager: Just know what programming is at the surface level to be a sucker

My guess is that you are targeting #2 goal. If it is so, start with a language framework you are comfortable with. It really doesn't matter much. If you have the background of C/C++, you can start with C# (using free express editions of Visual Studio). If you have gone through pascal, you can use Delphi (using free Turbo editions).

link|flag
8  
+1 for the C# express editions advice. The IDE is really good, the framework fantastic, community support abundant. Even if the goal is to go professional at some point, it makes a fine place to start. – Cobus Kruger Jun 26 at 10:09
show 1 more comment
vote up 6 vote down

I'd recommend Ruby - simply because it reads much like english, yet allows you to take your development as far as you'd like. _why has done some amazing stuff when it comes to learning ruby, including the only programming book I have ever read that is actually compelling. Take a look at his poingant guide, and get started at try ruby.

link|flag
vote up 40 vote down

Python is a very popular language to start with, and for good reason. The Python tutorial explains most of what you need to know about the language, but you will need to write your own code if you really want to learn it. Python Challenge provides a series of problems that can be solved with Python. Project Euler has a lot of problems, although many are more mathematical than programming.

What you should do depends on what you want to do. Why do you want to learn how to program? Is there anything in particular you want to do with this knowledge?

link|flag
3  
+1, however Python Challenge, for a complete beginner, is brutal. Much better for those who are somewhat experienced but new to Python. – John Pirie Jun 26 at 15:12
vote up 1 vote down

I'd probably go for something like Python to start with, as then you can pick up basic logic, loops, variables etc etc etc.

Then, either become a Python master, or move to a language specialised to the area you are interested in.

PHP/ASP for web dev (or just use Python)

Java for enterprise stuff

C for device driver type stuff

etc.

I'm not suggesting these languages specifically - just that the books you'll find on these languages will likely be geared towards these areas.

link|flag
vote up 11 vote down

Start with a software development project that closely aligns with your hobbies. Pick the language/framework that would get the job done most practically, and then stick with it for the project until its completion (or when you're satisfied with it). From that point on, you can work on other projects that would require you to learn other programming languages and other software development frameworks. While you're at it, learn how to use revision control software such as SVN or CVS (TortoiseSVN and TortoiseCVS are good choices for Windows). You can get repository space from anywhere, but this is what I use here.

link|flag
2  
Don't you think version control software comes a little late... – Hemant Jun 26 at 9:02
1  
What do you mean? – stanigator Jun 26 at 20:27
vote up 8 vote down

I would recommend first to start playing with Javascript. What you only need is a text editor and your favorite web browser, so you will not be discouraged due to anything not directly related to programming. After a few days, if you still have the motivation, you can move on something else (Python, C++, C#...)

link|flag
3  
Javascript can be a bit of a pain to debug in the browser (although I suppose that's true of a lot of things) and there's quite a lot of DOM stuff that might confuse a beginner. – pjc50 Jun 26 at 10:57
1  
Best start with basic javascript, like call functions to make a sum, or loop through an array. Not the DOM-stuff to start with... – Natrium Jun 26 at 11:25
2  
I would disagree. For no other reason that most things involving JS are reliant on other languages. Many of the tutorials you find will deal with HTML or server-side languages. If someone is new to programming, they should start with an language that is stand-alone and isn't at the whim to browsers or servers. – Paulo Jun 30 at 14:13
vote up 111 vote down
  • Sit down.
  • Get hands on.
link|flag
4  
+1 very concise, very pragmatic – dfa Jun 26 at 9:07
10  
Precisely correct. Note that programming is a professional skill and, like most professional skills, can take about a decade of work to reach full proficiency. Be patient and have fun. :) – Greg D Jun 26 at 11:00
3  
Sure it's concise, but this is someone new to programming, and its not enough. Thats why I downvoted. See Hermant's response. – Marc Jun 27 at 5:43
show 4 more comments
vote up 6 vote down

It shouldn't be hard, depending on how dedicated you are. An interpreted language might be a good place to start - even JavaScript, seeing it's ready to go in your browser right now.

I'm currently training one of our SysAdmins in Java (never programmed before), he's also 27. Seems to be picking up the concepts well. Of course, it is going to depend on the person.

link|flag
6  
"It shouldn't be hard" should be "It is hard, but possible" - he has to invest a lot (!) of time, because only experience will make him good. – tanascius Jun 26 at 8:45
1  
I wouldn't recommend JavaScript as a first language. I would recommend Ruby or Python (with leanings toward Python) for interpreted languages or C# or Java for compiled languages. – Thomas Owens Jun 26 at 10:40
prev 1 2

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.