It's crazy how clear and helpful some people are and how utterly confusing and frustrating others can be. I wonder how often people give up learning something, thinking it's too hard, when really it's just terrible teachers making things seem much harder than they are... You, sir, made this seem incredibly simple and, as a result, I learned a lot and feel confident that I can learn more. Thank you very much!
@JayBowles11 жыл бұрын
I agree - this is by far the best tutorial I've come across. If you did another series I would happily pay for it.
@jhunter3411 жыл бұрын
This is the best tutorial for rails I have found. I was hoping you were going to get into other data models to show how you define the relationships, but I really appreciate what you've done here. Thanks!
@dealloc12 жыл бұрын
I've always wanted to learn Ruby but never really got to it. Your videos makes it painless and I now realize that it's easier than I thought. I already do a lot of other languages, but RoR just makes making applications and websites easy and fast. Thank you, Andrew - I hope you upload more videos :-)
@codemaker3812 жыл бұрын
At first I had thought that RoR is so complex that its makes me lazy to study it, but with your tutorial its makes me wanting more to dive on it. Thanks =)
@MegaKittenzz11 жыл бұрын
Hi, I just completed the series and I just wanted to thank you for the videos! They're super awesome!! I've tried to learn rails several times and I was always frustrated but now I understand the basics thanks to your effort!
@Burkaz0id13 жыл бұрын
Thanks for these videos, they actually helped me understand RoR much better than one of the book tutorials :)
@Iain010112 жыл бұрын
Andrew, thanks for posting this series. I have followed through your CakePHP and Rails tutorials and find them easy to get started with.
@nikinjain111 жыл бұрын
Thanks a lot, These videos helped me understand RoR much better than few of the famous books
@ammsa712 жыл бұрын
Thank you very much for this series! I wish it was longer, please do more tutorials on ruby on rails, your tutorials are clear and easy to understand :)
@mjhamm197512 жыл бұрын
I just watched all 9 videos and they were extremely helpful. Thanks for the time and effort. Cant wait until you finish some more of them.
@thusithaniroshan10 жыл бұрын
really useful videos for ruby on rails. great explanations. If I found these tutorials before one week I will definitely complete my assignment . but it really useful for future studies. really learnt a lot about Ruby on Rails. how MVC works and many more things . two thumbs up dude. keep up the good works. this is good for non scaffolding users. gives deep explanation. really great stuff. (y)
@9vg80zm4lybt0kb12 жыл бұрын
Hey Andrew, fantastic series. You should really have a site dedicated to these videos and a donation button, I'd gladly pay for more.
11 жыл бұрын
Thanks for a great tutorial series! Like the other viewers have mentioned, it would be really great to see the 10th video.
@PowderkegHQ12 жыл бұрын
Keep the tutorials coming! These are great. Would love to learn more about version control and security, too. Thanks, Andrew!
@willandheidi12 жыл бұрын
Thanks so much! This is the best beginner Ruby on Rails screencast series I've watched. Are you planning to do more Rails screencasts???
@adebcfc88510 жыл бұрын
Excellent quick, concise and very well explained tutorial - Andrew, you should be writing books mate!
@rodd912 жыл бұрын
thanks a lot. helped me finished my homework in 2022. spent days trying to get the error message for blank fields. 😂
@andrewperk2 жыл бұрын
Hey no problem. Glad it helped, even after all these years haha.
@DillonBenson9312 жыл бұрын
Thanks, these set of tutorials really got me onboard Ruby on Rails!
@abhilashreddy11 жыл бұрын
literally waiting for the rest of the lessons hope you would you get time to make more videos thanks a lot they made me understand more than a book thanks once again
@avattathil12 жыл бұрын
Andrew, This series has been very help full. Thank you.
@majestade234511 жыл бұрын
Great videos!!!! I just finished all 9 tutorials and it was great!!!! I fallowed some tutorials.... but i always ended up with error that i don't know how to solve.... in here i had some minor issues (strong_parameters) but it was not that hard to solve! Hope to see video 10 and more videos explaining how to add and connect more resources!!!!
@andrewperk13 жыл бұрын
@Burkaz0id You're welcome, I'm happy they were helpful. I'll be working on the rest of the series this weekend. So I should have a few more videos up with in a week.
@pokegaiyui11 жыл бұрын
Don't you dare stop on us!! I enjoyed following your tutorial!
@waczellmer605310 жыл бұрын
Great series of tutorials, even though slightly outdated
@chhunlytiv9 жыл бұрын
Awesome tutorial! This is very detail in explanation. Great works!! Thanks Andrew
@xenover12 жыл бұрын
Sad that he quit from the 9th part but these videos were very helpful nevertheless. Much obliged!
@amritsth11 жыл бұрын
Great Tutorial.. very nice presentation.. Waiting for a new lesson..
@Guybrush36910 жыл бұрын
Great tutorial series. To the point and good pacing. Good job!
@stefanicai11 жыл бұрын
great simple tutorials, awesome for someone new with RoR. Thanks mate!
@MikeTownsend12 жыл бұрын
Thanks Andrew, this is has been very helpful, when are you planning on finishing the series?
@gaganremba12 жыл бұрын
All tutorial is awesome. please upload 10 tutorials
@tonato91112 жыл бұрын
Thank you for the videos, but i would have liked to have seen the ten part, to see how the DRY principle was applied to the new and the update methods. Anyways thank you so much, by this videos I was able to see what RaR is about, thanks! ( :
@vukky11 жыл бұрын
Thank for the tutorials, it really helped my to start with RoR. Hope you make more lessons soon. Cheers
@FreeNextGen12 жыл бұрын
great vidoes, would like to see more RoR stuff with different kinds of projects.
@SergioBarreracoding12 жыл бұрын
Great RoR tutorial! Thank you Andrew for sharing your knowledge!!
@nguyenong156710 жыл бұрын
thank you andrewperk! pls make more Rails tutorials
@yanmyoe11 жыл бұрын
Thank you so much Andrew. Now I got basic knowledge in ROR. !!!
@Royals18911 жыл бұрын
I cannot like these videos enough!
@andrewperk12 жыл бұрын
@mjhamm1975 Its called snippets, you enable it in plugins under preferences, then under tools you can edit and add new snippets.
@MrKarvalhovsky12 жыл бұрын
Great video tutorials! I hope you upload more... Thank you Sir!
@andrewperk12 жыл бұрын
@tonato911 I'm sorry I haven't had the time to make more videos and complete the series. A few things you could do to dry this code out would be using partials for the new and edit forms, a partial for the form errors, and by using a before_filter to declare the @post = Post.find(params[:id]) on the show, edit, update, and destroy actions, then you could remove this variable declaration from each action to remove code duplication. Thanks for watching.
@laylock12 жыл бұрын
These tutorials have helped me SO MUCH. Thank you!
@tommy88c12 жыл бұрын
Thanks for the all vid they ware really helpful but can you tell me what plugins do you use in your gedit? Especially the one that colors ruby better and the one that fill the rest of the html code.
@tinodefaultino673211 жыл бұрын
hey Andy! many thanks man for the videos.. really cool stuff to get started with ROR :)
@nikhilfadnis80099 жыл бұрын
awesome set of on point tutorials, thanks!
@perliva12 жыл бұрын
thanks for this series! very well done.
@stepsalin10 жыл бұрын
really helpful and easy guide, thanks a lot
@edgargutierrez943411 жыл бұрын
Where are we on vid number 10 Andrew? Great vids!
@RafaelDias49611 жыл бұрын
You'll have to part 10 of the Ruby on Rails tutorial ?
@JosephWeinerE10 жыл бұрын
Very helpful thanks! One think on rails 2.0.0 I commented out this line #attr_accessible :url, :name url and name are the two fields I am using on my form, you would have :title and :content Don't know why rails was barking at me but I take out that line and it works!
@JosephWeinerE10 жыл бұрын
Also my form, created by my scaffolding, automatically put out error messages as soon as I added the validation, didn't need to write the code.
@aigulimadildayeva83488 жыл бұрын
gr8 video, thanx! Maybe I am mistaken, but this will not work without configuring posts_controller. So I would also add following command: def create @post = Post.create(post_params) if @post.valid? redirect_to posts_path else render new_post_path end end
@dasten12311 жыл бұрын
EXCELLENT tutorial, really!!!!
@mjhamm197512 жыл бұрын
What is the plugin you are using with gedit to autocomplete the html? thanks for the help.
@annabortsova13 жыл бұрын
same here, thanks again !
@gadamson1211 жыл бұрын
How would you require a login to create, update, and destroy posts?
@derSchmidi12 жыл бұрын
Very good!
@IndrajitRajtilak12 жыл бұрын
Well, any updates on the new videos?
@JulieSMusic0112 жыл бұрын
how do you validates on a partial?
@heyimanh4 жыл бұрын
thank you!
@opeodumakin5 жыл бұрын
does anyone know i this will still work
@3DASMR_24 Жыл бұрын
How to handle that error(already been taken)
@borismeldre12 жыл бұрын
More PLEASE
@matt00981710 жыл бұрын
What do I do from here...?
@sairamreddypulikanti11538 жыл бұрын
awesome
@naplesnola13 жыл бұрын
make a tutorial for ajax responses :)
@Blenderhacker12 жыл бұрын
Hi, thanks for the great tutorial. I have a Main Page, from there you can go to "My Blog", now i want to make a link in My Blog what should be like "Go back to Main Page". How can i do this? Sorry for my bad english, i am from germany.^^
@quatroquatroSJSU12 жыл бұрын
MORE TUTORIALSS !!!!!! PLZ
@mrios911 жыл бұрын
can i has more pls?
@N1TR0able11 жыл бұрын
Hi Andrew, Thank you, nice videos! Could you, please tell me how to add html.erb language to gedit on Windows? Thank you in advance! Nikita - young russian developer)