out of all the rails tutorials I've seen, this is some of the best
@LukaszMuzyka4 жыл бұрын
thanks, It's been a while sine I have post those. Those videos are really due for a refresh ;) happy coding.
@JoshuaStowers10 жыл бұрын
Thanks. Rails has been confusing me for a long time, but this helps to clear things up a lot.
@ryujiganaha96459 жыл бұрын
Your video helped me so much to understand the idea of MVC. Thank you very much. (From Japan)
@wayne869598 жыл бұрын
The video is really awesome!!! Thanks for walking through the whole process steps by step
@LukaszMuzyka10 жыл бұрын
I'm sorry everybody for I have been quiet recently. I took job at interactive agency couple months ago and I'm still trying to figure out how to find time for more videos. I have so much to show , yet fewer time to do it. Thanks for all words below. This is super nice to see:)
@pavankumarreddy53726 жыл бұрын
Lukasz Muzyka please provide more videos from u .... Oops in ruby
@LTRuns4 жыл бұрын
I'm glad I found this tutorial. Very helpful!
@jollygoodin8 жыл бұрын
Very nice video. Thanks for creating and posting.
@JeremiahAdams201410 жыл бұрын
Yes I have really enjoyed learning with your tutorials, you rock my friend ;]
@robr64519 жыл бұрын
Great tutorial, thanks from Poland! Dzieki !!!
@simplymaker608410 жыл бұрын
Best teacher,thank you so much,will watch all videos)
@rajeshpaul738310 жыл бұрын
yes it covers the whole aspect of MVC, many many thanx.
@Newbyte5 жыл бұрын
Brilliant videos.
@lucascorreaaa7 жыл бұрын
Thank you Lukasz, very simple and very clear! :)
@polygonfreak10 жыл бұрын
That cleared up a few things for me. Thanks.
@sindaniel_10 жыл бұрын
You are great, thank you from Colombia
@lakshmisnair72259 жыл бұрын
Thank you for your videos. It was really helpful.
@wipedowt8 жыл бұрын
enjoying your tutorials , however the Typo's are getting to me , for example.. @ which point does it "Redender" the invalid entries and what happens if that case is met? assumbably if user tries sending 'Extra' info via injection or code-fiddling in the POST process. Where would they be redirected to?
@soufiane_akki8 жыл бұрын
if the user submitted something wrong in your form he will be redirected to any page you want to, that's why we use the Method redirect_to , for more info visit api.rubyonrails.org/classes/ActionController/Redirecting.html i hope this may help you .
@LukaszMuzyka8 жыл бұрын
you should only redirect_to when everything went well. otherwise you should keep user at "current location" and re-render template. This way you can display error messages to user. redirect_to will loose all this information. @wipedowt - sorry about the typo
@rahulmaddy23227 жыл бұрын
From Last 10 days I'm watching ror videos this 1 is the best
@LukaszMuzyka7 жыл бұрын
good news, after 3 years I finally have time and energy to make some more videos :). more to come soon
@Dritir9 жыл бұрын
Lukasz Muzyka I believe Rails solve this, but, if @drink is a global variable if many people are using the system to the point of someone making an action with this variable while it has another (controller) thing inside it, would it not be a problem? Like a controller being executed while in the middle of another controller action, changing the @drink variable in the middle.