This video never get old, thank you for the tutorial
@mal93107 жыл бұрын
dziękuję pięknie za tutorial. bardzo mi to pomogło poukładać sobie to wszystko w głowie.
@ripperx4447 жыл бұрын
These are good tutorials. They make sense. I was in the rails console today and had no idea wtf I was doing!! Now I understand
@jennycrary98013 жыл бұрын
Taking a web application course, and just started learning about MVC,. This is an excellent introduction to understanding this tool at a high level, much better than my uni professor. Thanks!!
@shabycreation51683 жыл бұрын
Great tutorial ❤️thank youuu
@masterkrpto9 жыл бұрын
Indeed best tutorial I've found so far! I have a better understanding of MVC in rails now (I'm also a Ruby on Rails noob!), thanks a lot!
@simplymaker608410 жыл бұрын
The best tutorial ever!! Thank you so much,please make more videos.
@randerins4 жыл бұрын
Very clear explanation. Also, your voice is sooo relaxing.
@jigmelodey46322 жыл бұрын
awesome video for beginners
@pezaventura10 жыл бұрын
by far the best tutorial I have found.
@nsjoregon10 жыл бұрын
Struggling with MVC - thank you very much for great tutorials!
@devsCafe198010 жыл бұрын
Great tutorial, thank you.I`m waiting for more tutorial.
@guilherme81045 жыл бұрын
I understand a lot with hour explanation... thank you :D
@PcHabitat3 жыл бұрын
You're videos are awesome, are you going to make any more?
@JeffRAX5 жыл бұрын
These videos are gold. In a bootcamp right now and your videos are very helpful. Thank you sir! Are you still making tutorials? You should be! Great teaching skills.
@vineetkuruvilla85878 жыл бұрын
you're the best!
@isaheartfilia9291 Жыл бұрын
still useful today, thank you!!!
@ronniestaton15872 жыл бұрын
Just to let anyone know that is using this, with the more recent updates to rails, it prefers the "rails routes" instead of "rake routes" like is in this video.
@joelchoi16318 жыл бұрын
you're making a difference in 2016!
@RR-et6zp Жыл бұрын
So how would you query the database if you had a million users ? rails apps are meant for big projects right ?
@rohanbose48826 жыл бұрын
Where can i find this full course ?
@abhiit899 жыл бұрын
Great Tutorial. I am a beginner btw in both ruby and rails. Can you explain when you create frank object on ruby console you used 'frank = User.new(name:"Frank"....)' syntax rather than 'frank = User.new("frank"....)'
@LukaszMuzyka9 жыл бұрын
Well, User model, as we created it has some attributes that by default come empty, such as "name". We need to tell our application what is "Frank" in our new model instance. frank = User.new("frank") would raise error - Our Rails app will complain that it doesn't know what what to do with "frank" word. This is why we assign it to "name" frank = User.new(name: "Frank") it will become very natural way to operate for you as you learn :)