Magic sucks, Django Rocks
christopherroach.com
Magic sucks, Django Rocks
1–10 of 40 posts
Re: Magic sucks, Django Rocks
#2That's about how I feel now. I'm a relative newbie to Ruby and really like the language, even while aware of its warts and headaches as recent posts here illustrate.
I'm trying out Rails so that I understand it better from my own experience, rather than relying on other opinions. It is really quick to get from point 0 to point 1, but then after that, I find I have to dig in to the various parts because my intuition does not lead me to how Rails works, so I have to first understand the "Rails way" of a particular aspect, and then start digging into the source code to see how it works.
But one thing I'm really happy about with my experience learning Rails is getting a much better understanding of Representational State Transfer (REST). I ran into some roadblocks in figuring out routes, which led me to realize I didn't understand REST well enough, so I've been reading Roy Fielding's dissertation (focusing on the REST parts, but more I read, the more I'm inclined to consider it essential reading for web developers, or at least for me).
So I still want to get proficient at Rails and use it for my current web project, but I'm now more interested in trying out Django too, even if just for perspective.
Re: Magic sucks, Django Rocks
#3Re: Magic sucks, Django Rocks
#4Re: Magic sucks, Django Rocks
#5Libraries and frameworks are all about not knowing how they work behind the scenes. That's kind of the point.
Re: Magic sucks, Django Rocks
#6This echoes perfectly my feelings about Rails. I have tried, several times, to do something with it, but I always hit some magical wall or mythical creature that demands something from me I really don't know what it is.
If I have to define the main difference between Rails and Django is that Rails is a DSL for building websites on RDBMSs. Django is a web framework for building web sites with RDBMSs. Django stuff is Python. Rails stuff is almost, but not quite, entirely unlike Ruby.
Re: Magic sucks, Django Rocks
#7I wonder if this person knows the implementation details of the language he uses? Or the RDBMS he uses? What about the OS he uses? Text editor?
Re: Magic sucks, Django Rocks
#8"I can’t seem to get anything done in Rails because before I can work with it I have to understand it." That's about how I feel now. I'm a relative newbie to Ruby and really like the language, even while aware of its warts and headaches as recent posts here illustrate. I'm trying out Rails so that I understand it better from my own experience, rather than relying on other opinions. It is really quick to get from poin…
In retrospect, it was a wall worth scaling. I have no fear of Rails meta-programming bugs, and I've developed strategies for dealing with the thorny issues that pop up every few months. All in all the FUD from the Java advocates has proven to be unfounded (the FUD from Haskell camp, not so much). The effort saved by eliminating reams of boilerplate and heavy IDEs is well worth a few less-obvious exceptions.
As Rails has matured I think the core team has exercised restraint, and the magic situation, while an integral part of the "Rails Way" is at least not getting too much worse. Plus work on Rails 3.0 is bringing real improvement to plugin-compatibility and modularity issues. That said, I'm glad I got in on Rails early and I'm looking forward to the next big thing already. When Rails came out it refreshingly plucked the best of 10 years of web development. Over time, as with all technologies it is getting bloated and ultimately will gain complexity as the developer base gains experience and needs to solve a greater and greater set of problems. Eventually someone will come along and distill all that experience into a much-simpler new framework (maybe ajax-based? maybe continuations-based ala Seaside?) that dumps the cruft of the current "best practices."
Re: Magic sucks, Django Rocks
#9Re: Magic sucks, Django Rocks
#10Unfortunately it seems the author has a crazy annoying blog like other Rails people. Oh well, at least he wrote a good book.