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?
feedback
|
closed as off topic by Jeremy Banks, templatetypedef, JasCav, Michael Petrotta, Robert Harvey♦ Sep 21 '11 at 3:51
Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.
| |||||||||||||||||||||
feedback
|
|
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? | |||||
feedback
|
|
I think it depends on what is your final goal:
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). | |||||||||
feedback
|
|
You'll be fine, programming isn't an olympic sport. However, you may have pesky drains on your time, like family
or significant others. | |||||||||||||||||
feedback
|
|
I'm suprised at some of the answers. Programming is hard. It's actually getting harder as languages evolve. Who'd ever heard of Haskell 5 years ago (the nerds at the back can shut up! [grin]). Andreas. If you've got the smarts and are willing to work hard, constantly learn new things, be constantly self-critical and almost never let yourself get away with sloppy work you'll make a good coder. Any of the languages suggested so far will make a good start. Language choice isn't really the key to becoming a good programmer. Doing things the right way by understanding good practice (and eventually knowing when it's okay to ignore those practices) is the key. From a personal perspective I'd say that C# is enough of a language to get you exposure to important concepts. I'd get the basics of coding down first before you start on the web stuff. The important thing to remember is that at the coal-face software development is like no other job and requires mental equipment that many other jobs don't. I've seen quite a few people move over from non-coding but technical jobs to development and not do too well because they assumed that being good at the job was just about 'giving the right instructions to the computer' but it's way more than that. Good luck anyway mate. Read lots of books, blogs and articles, get yourself a project you can get your teeth into and always be ready to learn something new. | |||||||||
feedback
|
|
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! | |||||
feedback
|
|
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. | |||||||||
feedback
|
|
Age has nothing to do with it. My advice is to find a mentor. There's more than a language to programming, a mentor can set you up in a week with the right tools, working habits, and way of thinking, that will take you a life-time to master on your own. | |||||||||
feedback
|
|
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#...) | |||||||||||||
feedback
|
|
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. | ||||
|
feedback
|
|
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. | |||||||||
feedback
|
|
I might sound old school, but starting programming with Ruby or Python is not a good idea, you should start by learning from the bottom : C ! Its like when you are learning to drive a stick, do you get a BMW from the start? no, you start with your old stick car from your dad or your grand pa, where you have to do all by yourself, to understand how the core actually works. Learn how it works under the hood by learning C, and try to catch good habits from it. Then only you should go in a upper level like C# or Ruby. | ||||
|
feedback
|
|
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. | ||||
|
feedback
|
|
You have a lot of answer. Most topics have been covered. I'm actually 27 too but I've been programming upwards of 15 years. I bring up my experience because I want to suggest that you consider starting with Java. It is multi-platform and it is strongly object orientated. This will allow you to move to C# and even C++ fairly easily while at the same time providing a good base. I want to quickly note that I'm not a Java programmer. I kind of know it but I spend most of my time with C#, Objective-C and (lately) C. Since you are just starting out, I want to stress that you should use a common language. I'd stay way from things like Haskell and Groovy for a single reason -- books on Java, C# and VB.net are much more plentiful. This is important. When I was learning to program, I went though two or three books before I finally "got it". I finally got it from reading VB6 For Dummies. I do not suggest that you start with this but I bring it up just to illustrate. For yourself, I actually want to specifically recommend the Head First books. I think they are excellent books. You might want to try either of the following:
Also, don't take things too seriously early-on. There is a lot to learn but you've got to take one step at a time. Also, I suggest you start following blogs. There are a bunch of them and I'm not going to post any here. But there are several (I do run one. :-) ). Also, consider this article by one of the creators of this site. Welcome to the team. Regards, | ||||
|
feedback
|
|
Would I be wrong to recommend...assembly?! | |||||
feedback
|
|
I started professional programming at 27, and I'm very glad I did: nothing else that I know how to do (Anthropology, carpentry, juggling, unicycling etc.) is worth much on the job market today. Unless you're sufficiently good-looking to be a stripper, I say go for it. | ||||
|
feedback
|
|
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. | ||||
|
feedback
|
|
As far as i believe you dont need to be of a particular age to be programmer. We all have heard/read about the people who started doing programming at a very early age or after being senior citizens ;-) So dont ask others just sit and start your work ;-) After all its your interest,ability to learn and hard work that matters!! Good Luck :-D | ||||
|
feedback
|
|
What are your intentions? Do you plan to make a career change? If so, I think you really need a formal technical education. You will not be able to compete in the industry if you take a hobby based approach. I find that the hobby approach leaves you knowing only material that is of interest to you (typically a specific language). You miss out on of all the core components: discrete mathematics, data structures, and design. | ||||
|
feedback
|
|
If you want to test the waters see if you can solve a problem or automate something you already do. Check out a good data crunching book. As a BA surely you have tons of data that sometimes has to be manipulated. See if you can program something to automate that. Book has some Java and python. http://www.pragprog.com/titles/gwd/data-crunching Another fun thing is AutoIt. See if you could use this VB like language for something you are already doing or would like to do as a BA. Language has good help and good community support via forum. | ||||
|
feedback
|
|
I started learning playing piano at 30. Beleive me, it's much harder than learning programming at 27. I am sure that I have no chance to be a pianist. But you have a great chance to be a professinal programmer. Try to spend 2-3 hours a day on learning programming, reading books, do some hands on labs and interesting small apps, asking questions at StackOverflow, try find some programmer communities in you local and join them. | ||||
|
feedback
|
|
I think its never too late to learn. Just try to get enough interest to fuel you through this journey of learning to code, by trying to code interesting problems. I would recommend you to start with C. All the best, | ||||
|
feedback
|
|
I am surprised no one has recommend Java. The language is free and there are a number of good tools such as eclipse that are also free. Pick a copy of "head first java" and try the language out. If you can understand the concepts and follow the way programs work, then there is no reason why you cannot learn programming. | ||||
|
feedback
|
|
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. | ||||
|
feedback
|
|
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. | ||||
|
feedback
|
|
I started programming at 27 back in 1996 and I'm still going just fine. Get a book or two. CONSUME them. Start coding. Send out resumes and look for a first programming job without worrying about how much money you'll make. After a year or so of experience you should be able to start making a very nice salary. Stick with it and you'll do fine. Programmers are in demand. | ||||
|
feedback
|
|
It's kind of a personal thing really. I started programming at about that age. I am now 61 and have had one hell of a ride - wouldn't trade it for any other career in the world. It takes a certain personality to really enjoy it. It seems like either you love it and can't get enough - or hate it and want to just let other people do it - no middle ground. For me it's like they are paying me to play - something I would do for free. Best of luck to you. | ||||
|
feedback
|
|
My company currently has a co-op student. He already has two degrees (Bachelors Languages, Masters Philosophy) and has recently picked up software. He's one of the best co-ops we've ever had. I'd say go for it. | ||||
|
feedback
|
|
As long as you put in enough time and most importatly, HAVE FUN!, it won't be a problem. For example, the guy running CSS Play was nearing 60 when he started doing CSS etc. and is now a consultant to the W3C board! | ||||
|
feedback
|
|
Whenever I get asked a question like that, regardless of whatever language you choose to use you have to have an idea or purpose behind what you are doing. I always recommend making games, because you know the rules and requirements and how it should look. Start with tic tac toe, then move up to solitaire and eventually something more complex. I've known some to take on pong or a scaled down version of civilization. Each game will present different hurdles for you to tackle and that is how you learn to program by solving problems with the language and dying on a problem. | ||||
|
feedback
|
