Legit the best video, learned more than I did through several projects and a month of class
@LukaszMuzyka3 жыл бұрын
Thank you for kind words. Such a pitty I have no time to go back to those tutorials.
@TroyboyTv8 жыл бұрын
im learning more on these videos on you channel than i did with a months worth of online tutorials
@ShahnawazSayyad8 жыл бұрын
Awesome... must say that you have explained the concept so nicely ...better than the big guys out there. Keep up the good work.
@hammassaleem28032 жыл бұрын
Great Explanation❤
@carltongordon9 жыл бұрын
thanks bro cleared it up for me nicely
@pectoralis1602 Жыл бұрын
From an ergonomic standpoint, don't think it's weird to access self.age in the model, yet the model does not document that field even to exist? You have to use the Rails console or an RDBM to know what field this model has?
@nego19888 жыл бұрын
This method (how_old) is better make in controller or in the model? What say the "good practices"?
@FrozenSandVideo7 жыл бұрын
dobrze wytłumaczone :)
@d06murd10 жыл бұрын
14:15 - Best time to demonstrate Ruby's string interpolation specially for nuby (new in Ruby).
@ajitkumargupta74706 жыл бұрын
Awesome
@jukebox60712 жыл бұрын
is this command prompt with ruby on rails?
@Sebastian-ln1gj2 жыл бұрын
he never does specify what software he uses. also he is on a mac which also complicates what he is doing. this video is for the specialists, not the general crowd.
@ksato39917 жыл бұрын
Great
@arjuns22194 жыл бұрын
Thanks bruh!
@rohanbose48826 жыл бұрын
Wow
@bryanvalencia779710 жыл бұрын
Just wondering, maybe I didn't pay attention well enough… When you defined the how_old method, where did the "self" class come from? Is that a pre-built class? (I'm a complete development beginner)
@bradchellingworth59738 жыл бұрын
+Bryan Valencia I believe "self" means to refer to the instance of the object. So in this case it would be Tom.age
@SuckBoot5 жыл бұрын
Outside of an instance method, self refers to the class and is a class method. If self is invoked inside an instance method, it refers to the calling object