I started programming in january of this year and have covered a lot of ground. I have learnt javascript, ruby on rails, html, css, jquery and every now and then i like to try out some clojure but i will really get into that in the middle of next yr. I really didnt like rails and prefer using netbeans with pure javaScript, html and css, i just feel like i have more control. I really like javascript, but when it comes to sever side programming i have a problem.......for my level of experience i just feel like server side js will not be a good fit yet as it is still not as mature/user friendly as php or ruby on rails.

What server side language should i invest in, should i learn php? There is so much info on source code on php. I know that there is node.js and emerging frameworks like geddy.js but i need something more user friendly....or am i just being a woos.I would really like some help on this.

Thanks in advance

PS. Update: Thanks all for advice, i have settled on python and web2py framework. I decided between django and web2py by doing a couple of simple tutorials and preferred web2py by a huge margin.

link|improve this question

75% accept rate
Mmh.. from january of this year, you say? and in 11 months you learnt javascript, jquery, css, html and rails? My 2 cents: take some time to get deeper with a language and really learn how it works. – Strae Nov 22 '10 at 23:08
feedback

3 Answers

up vote 3 down vote accepted

Not sure why you don't like rails, but you might want to try the newly released "Rails for Zombies" tutorials by Envy Labs: http://railsforzombies.org/. Or if you like books instead of online stuff, check out Agile Web Development with Rails

As ben states, sinatra is nice for smallish stuff.

A few things to choose from, broken down by language and order of their complexity/learning curve:

Ruby

Python

PHP

EDIT: I removed my comment about php and added in some PHP specifics. Personally I started with Symfony but it is rather complex. Code Igniter would be a good starting place if you want to learn a PHP framework.

link|improve this answer
1  
I'm a Rails guy, but "stay away from PHP" is not good advice. There are millions (billions?) of lines of PHP code deployed in the wild, and if you plan on a career in web development you will likely come across it at some point. Best you know how to read and write basic PHP as part of your toolkit -- it will also help you better appreciate Ruby. – zetetic Nov 22 '10 at 23:03
1  
@Ben Lee: Probably true, but such abstract statements (that give no real informational value), are not necessary - and actually not fair towards a reader. It is hard sometimes to stay from personal dislikes, but this is not place for stuff like that, PHP is not perfect (like most of the things), and I would appreciate detailed explanation like: "stay away from PHP, because in your case: 1. ect.; 2. ect.; 3. and so on... (I removed my down vote, because of authors edit) – Ernest Nov 22 '10 at 23:25
1  
@RubyGladiator: PHP is not bad. It's just not as good as other, more modern web-focused paradigms. PHP is easy -- and easy is a Very Good Thing (VGT) in my book. It was the first web development platform that made web programming accessible to a very wide audience. It is widely used because when it was invented it was a revolutionary breakthrough. Prior to PHP, the dynamic part of the web was mostly handled by a complicated Perl/CGI paradigm -- not that there is anything wrong with Perl (which I like way more than PHP in fact), but the paradigm was much more difficult to use. [continued...] – Ben Lee Nov 23 '10 at 6:09
1  
So, PHP is everywhere because it was the first language that made web programming easy and fun, and it dominated the field for many years. But over time, as new more structured languages and frameworks became available, PHP started to become obsolete. The PHP language itself is full of inconsistencies and non-obvious quirks that can really cause debugging headaches (and it's not all PHPs fault really -- it's been around so long that it has to be crufty to be as backwards-compatible as possible). – Ben Lee Nov 23 '10 at 6:12
1  
So in the end -- it's not that PHP is bad per se. It's just that there are new web development paradigms today that are better. And by better what I really mean is -- easier to make the application you want to. You'll be able to do it in PHP. But you'll be able to do it faster in Ruby or Python. – Ben Lee Nov 23 '10 at 6:13
show 10 more comments
feedback

If you like ruby as programming language, but find rails to be just too much to take in it once, I'd recommend trying Sinatra. It's also a ruby-based web framework, but it's a lot simpler than rails, and offers you a lot more control over how you want to set things up. For smaller projects, it's often a much better fit than Rails.

link|improve this answer
Rails just did too much because it was the first thing i started learning and i should have started with something more easier to get an understanding of general web development and now i that i do javascript/html and css i really feel like i understand and can be productive in web development. I really do like Ruby, i will take a look at sinatra, i hope it doesn't have activerecord, i prefer how i connect to mysql using netbeans. Can i just use ruby server side without a framework like rails or sinatra? – RubyGladiator Nov 22 '10 at 22:53
1  
Sinatra is data-model-agnostic. It has almost nothing built in except for making the web interaction stuff easier. It pretty much is just ruby server-side. You can choose to require 'active_record' if you want to, but you don't have to. I often require 'sequel' for my database needs in Sinatra, but you can use any ruby gem you desire for database interaction. – Ben Lee Nov 22 '10 at 22:56
feedback

Python language and Django web framework are another good alternative. Both elegant and easy to get started with.

link|improve this answer
I noticed python is very much like Ruby, i also noticed that it is not tied so tightly with django like ruby is with rails. If i choose python would it be an easy transition if i know Ruby? – RubyGladiator Nov 23 '10 at 5:24
@RubyGladiator: Both Ruby and Python use dynamic, duck typing so you should be able to pick up on Python quickly coming from Ruby. – vls Nov 24 '10 at 17:08
feedback

Your Answer

 
or
required, but never shown

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