Rails and Node and Client-Side MVC Oh My
1–10 of 18 posts
Re: Rails and Node and Client-Side MVC Oh My
#2If I had to do it again, I wouldn't change my choice of technology. You can debate forever which technology is "best", but one cannot debate that the support system for learning Rails is tremendous.
Re: Rails and Node and Client-Side MVC Oh My
#3I was in your shoes about 6 months ago (experienced non-web developer, looking to expand my skill-set) and went with Rails. I took the Michael Hartl tutorial (highly recommend it), viewed some Railscasts and haven't looked back. I'm hoping to do a Show HN with my first side project rather shortly (I realize 6 months is a long time, but with a family and a job, I'm happy if I get 5 hours a week to work on it). If I ha…
Re: Rails and Node and Client-Side MVC Oh My
#4Picking up a heavyweight framework like Rails while simultaneously trying to understand web development is probably going to be very overwhelming. I'd only recommend jumping straight to Rails if you have significant experience with another similar Web Framework and understand at least the basics of Ruby.
Re: Rails and Node and Client-Side MVC Oh My
#5My suggestion would be to go with Sinatra over Rails initially. You could potentially go with Node/Express instead, but picking up async javascript simultaneously may be a bit of a burden. Actually if you know Python, Flask may be the best place to start. Picking up a heavyweight framework like Rails while simultaneously trying to understand web development is probably going to be very overwhelming. I'd only recommen…
Re: Rails and Node and Client-Side MVC Oh My
#6Then explore some commonly used Django apps (the Django term for reusable modules) at https://www.djangopackages.com and make something simple. Add easy user accounts with https://github.com/bread-and-pepper/django-userena or https://github.com/pinax/django-user-accounts.
Other people may point out that Django isn't the best framework, and they will be correct, but I don't think that matters right now as much as working in a language you already know. If you said you already knew Ruby, my answer would be different.
Re: Rails and Node and Client-Side MVC Oh My
#7I put it to the side for a while, then recently decided to try again. This time I spent a little time getting used to Ruby (via codecademy.com and a few small personal projects), then doing the Hartl tutorial. What worked best for me was taking intermittent breaks in the tutorial to go off and implement something on my own from scratch.
For example, after chapter 3 I created a basic, one-page app [1]. Later in the tutorial, I made a pretty terrible To-Do list app [2] that nonetheless helped me finally understand MVC. After finishing the tutorial I signed up to codeschool.com and did a couple of the Ruby, Rails and testing tracks just to revise what I'd been learning.
I'm still a complete beginner, but I'm thoroughly enjoying working with Rails now and am making good progress working on a much bigger project.
* [1] http://jayrobin-yield-calculator.herokuapp.com/ * [2] http://jayrobin-todo.herokuapp.com/
Re: Rails and Node and Client-Side MVC Oh My
#8I was in your shoes about 6 months ago (experienced non-web developer, looking to expand my skill-set) and went with Rails. I took the Michael Hartl tutorial (highly recommend it), viewed some Railscasts and haven't looked back. I'm hoping to do a Show HN with my first side project rather shortly (I realize 6 months is a long time, but with a family and a job, I'm happy if I get 5 hours a week to work on it). If I ha…
Thanks for the response! I think one of the best lines of advice I've seen online was on Quora: "The language and technologies you learn are not the most important bit when it comes to becoming a programmer. When friends ask me whether they should learn Ruby or Python I respond by asking "Which language do more of your friends know?"" I think that's what keeps bringing me back to Rails, the support around it. I have…
I can't say I've had a mentor yet, other than StackOverflow and random blog postings. I still consider myself a Rails n00b, but building a functioning web application in Rails is extremely easy. Doing it well and quickly, is probably something that will require more experience and mentorship.
Re: Rails and Node and Client-Side MVC Oh My
#9I was in a sort of similar position a few months back and did the EDX.org Software as a Service course with the end goal of learning Rails. I was able to complete the set work and pass with a good grade, but Rails never really clicked for me (I think partially because Ruby felt so different to what I was used to). I put it to the side for a while, then recently decided to try again. This time I spent a little time ge…
Re: Rails and Node and Client-Side MVC Oh My
#10Writing web apps involves wrangling a lot of warty technologies. If you try to grapple with them all simultaneously, it's going to feel like a quagmire. You should try to limit the number of unknowns and leverage the thing you know, Python, in order to start getting some positive reinforcement from success as soon as possible. So do the Django tutorial: https://docs.djangoproject.com/en/dev/intro/tutorial01/ Then exp…