Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have been looking for jobs right now. Most of the companies require RoR or Django experience. I don't know both ... the number of organization working in RoR is greater than Django ... but, I prefer django beacuase of Python ...

What do you coders/recruiter suggest me to know?

share|improve this question
70  
One suggestion I would make is that on any communications you send to a potential employer use proper words instead of things like "coz" and "u". Otherwise it might not matter which of the two you choose. – Wayne Koorts May 10 '09 at 22:36
5  
thank your Mr Wayne. I will keep a note of it. :) – Kapil D May 12 '09 at 20:29
3  
Isnt Stackoverflow supposed to be wiki-like? Why hasnt someone (including the OP) just went in and fixed the grammatical errors? – David Pearce Jun 16 '09 at 9:27
4  
In that case the comment would not make sense. – grigy Oct 2 '09 at 10:58
4  
@Wayne Koorts - that's a valuable suggestion. @kapildalwani - you might also consider reviewing on how to use punctuation and where to capitalize correctly. The rule of punctuation and usage of capital letters is probably the same for most languages that uses the alphabets. But regardless, saying English is not one's native language is not an excuse to write improperly. That's like saying I only learned Java in college, but now my employer is asking me to program in C++, so it's OK for me to make mistakes. – Khnle Jun 4 '10 at 2:16
show 1 more comment

6 Answers

up vote 44 down vote accepted

My best answer is for you to learn both.

Consider this your end goal, and instead consider your question as, "Which one should I learn first?"

I recommend that you start with Django, especially if you have Python experience. Django's approach, like that of Python itself, is more condusive to learning. Once you've gotten your feet wet, learn Ruby on Rails, because that's the framework that will net you easier cash when you get out into the modern Web 2.0 workforce.

Once you're thoroughly familiar with Ruby on Rails and have been working for a bit, continue learning Django. Refamiliarize yourself with the basics, then start to learn some of the more advanced stuff. Django's inner guts are supposedly easier to dissect than that of Rails. If you ever find yourself faced with a job opening with a surprisingly novel and challenging web platform to implement, you'll find your Django knowledge quite handy.

Here's a bulletized rundown:

Django

  • Great documentation
  • Thorough tutorial to ease you in
  • Fewer files to understand at first (vs. scaffolding in Rails)
  • Built on Python, which you might as well know anyway
  • More similar to enterprise stuff like Java Servlets/JSP
  • Easier to dig into its innards

Ruby on Rails

  • It's what's hot
  • Hot means more jobs
  • You want money, don't you?
  • When you want to make a "traditional" web 2.0 site, its generated code lets you get done really fast
  • Integration with JavaScript libraries
  • Built on Ruby, which you might as well know anyway

Verdict: Django first (do the tutorial), then Rails, then Django again

share|improve this answer

I'd suggest you to do some research regarding technologies trends and professionals demand, you can do this by using Google tools, such as Google Trends enter image description here

See more details about technology research here. Happy coding!

share|improve this answer
Bingo. Django is slowly but surely gaining ground each year, but the Ruby-on-Rails fade is losing a lot of steam. – Cerin Mar 25 at 17:19

If you're more familiar with Python, then you should do Django. Google App Engine is a big user of Django, and you can use that to "sharpen your saw" in Django skills, for a cost-free investment.

share|improve this answer
2  
(Google App Engine was cost-free at the time of this post's writing. Google has since revised the pricing structure and it's no longer so cost-free.) – Chris Jester-Young Sep 11 '11 at 7:12
1  
I found GAE to be more trouble than it was worth...even with the free price tag. It's No-SQL storage backend makes it incompatible with 90% of Django's builtin apps and other open source addons, so all you get is Django's URL parser and templates. There's a Django No-SQL fork, but it's still a pain to get Django working on GAE, not to mention the maintenance nightmare. – Cerin Mar 25 at 17:22

Learn both.

Look for a company, where the people (without ties) have fun working there and speak compassionate about there work. This matters far more, than the technology they're working with.

share|improve this answer

If you are low on time, and have to choose one, just choose the one, for which you know how to program. If you know python, learn django, if you know ruby, learn rails. Both have excellent tutorials, and reference materials, RoR rules in screencasts, django rules documentation and tutorials. If you have a lot of time on hand, say 3-4 months, then learn both. What's wrong with that?

share|improve this answer
What if you don't know either one, and are looking where to begin? – WayneM May 14 '09 at 18:24
sorry for late reply. But, if we don't know both!!!! I like python personally. If u have no background in scripting languages like perl, python ruby. u can start either python or ruby. But if u have prior experience in perl, ruby is the one for you, because ruby is very syntactically similar to perl. – roopesh May 25 '09 at 6:22

try ruby...I love ruby over python then I prefer rails over django...but if you try ruby and don't like it your best option would be django...

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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