Finished the third chapter of the Blogger tutorial.
It was a lot of the same stuff from a different perspective: how Views work, and how they pass information to controllers. How forms work. But, like I said, more practice is what I needed.
There was the new thing about the belongs_to/has_many thing. I saw that in the Rails tutorial, too; it still seems like something I just have to treat as a black box.
One thing that confused me. We created the comment_params in the comment controller itself, not in the helper like we did with the article_params. The params functions are also still a little bit black box to me anyway, but it's not clear why did it one way one time and another way the other time. Worse, when I tried to move it to the helper, it stopped working, giving me an undefined local variable or method exception, as if they simple weren't there (even with include CommentsHelper). I'm puzzled.
I also took a look at some of the autogenerated code in the Rails Tutorial. I recognize some of it from this tutorial, though not as much as I'd like.