Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have been an Oracle DBA for 12 years. I want to teach myself some web development. I think it might be useful for displaying reports to managers and some tool development down the line. Plus in general, I want to learn something new. I have extensive development experience with pl/sql, unix/awk scripting. Most of it is reporting or large amounts of data processing, database logic and ETL.

I have done some c/c++ and java development when I was in school. However, I am not current. I also know my way around the apache webserver and can get it running myself.

I don't think java is really ideal for what I want to do. I want a simple language. I do not want to use php since I have been on a lot of projects and no one uses that language(so odds are I won't be allowed to use it anyway).

Questions:

  1. I was think of ruby on rails, python (what web framework is good?), or perl (is this good for web development? ). Any other ideas?

  2. Also does anyone have any book recommendations for quality web links for their recommended language? I can always google it, but its easier to weed them out if I get recommendations.

  3. any IDEs you can recommend for each language? I'll start with the command line to keep it simple.

  4. any online videos for any of these languages or web tools you can recommend? I saw a python intro on the Khan Academy, but its just the basics of the language.

share|improve this question
Hi @Bob - this is likely to be closed as is. Have a read of the Don't Ask section of the FAQ. The reason for such restrictions is that it is honestly personal preference. For example, I have no idea how some people cope with netbeans, but some people love it. Such questions are therefore very difficult to answer. I suggest trying a few, read up etc and decide what you like the look of. The various chat rooms on Stack Overflow might also be able to offer some opinions on different tools etc. – Antony Vennard Nov 29 '11 at 14:27

closed as off topic by Juhana, M42, pilsetnieks, Pete, Mark Bell May 13 at 7:59

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

Below is the answer for your question:

I was think of ruby on rails, python (what web framework is good?), or perl (is this good for web development? ). Any other ideas?

Ruby and Rails is a good choice as it is powerful and the ORM via Active Records + given your DBA background, this would make a lot of sense. If you want to learn new cool thing based on well known, easy to learn (and yet powerful) Javascript language, you should consider node.js. It's based on Javascript and yet run on the server. As an additional plus, you would get the benefit of learning Javascript pattern which you will use for your web development as well. Most Web 2.0 website will leverage the patterns that you will be learning.

Also does anyone have any book recommendations for quality web links for their recommended >language? I can always google it, but its easier to weed them out if I get recommendations.

Ruby on Rails Tutorial provide good source to start with. For node.js, you need a good javascript knowledget. This is kind of more spread out across the web, I'll update my answer if I found out a good single resource. The SO Question Good Javascript Books might assist you on that. Once you learn the language, dive in into the node.js API docs and check out 6 e-free books on node.js

any IDEs you can recommend for each language? I'll start with the command line to keep it simple.

Regardless of choice, Eclipse does both Rails and node.js (via its Javascript Editor). It's very extensible and popular. Aptana is good as a plugin or standalone

any online videos for any of these languages or web tools you can recommend? I saw a python intro on the Khan Academy, but its just the basics of the language

Ruby and Rails tutorial has the VideoCast that you could watch

share|improve this answer
I know javascript. I used it in school and have used it some when I wrote some greasemonkey scripts. So would I use node.js with ruby on rails? Or would I do the server side coding in ruby? I know can do alot of things, looking for advice. I do not know how dynamic the web pages are that you create in ruby on rails. From what I have seen of ruby on rails is that it generates web pages for you. To make these pages more dynamic would I then import javascript? Thank you for the tips. – Bob Sep 6 '11 at 18:25
node.js and Ruby and Rails are two separate options for you to take. If you know JS, you will have fun with node.js and you don't need to learn Ruby (unless you want to). As the language, technique and pattern on both server and client (browser) are the same, you don't have to learn things twice separately. These combo creates a pretty powerful combo such as the one illustrated by nowjs.com (a module for node.js). I would try node.js if I were you, however note that node.js is a cool new thing that might be temporary (2 years old maybe?) though I think its future is very promising. – momo Sep 6 '11 at 18:37

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