I am an absolute beginner at Pharo and IÂm working my way through Pharo by Example as well as the MOOC online. While coding the TinyBlog example in the MOOC, I got stuck until I kind of Âguessed the difference between ÂTBPost
methodName and ÂTBPost class >> methodNameÂ. I didnÂt know I had to click on the Class button to access the class methods and coded all the methods as instance methods. As a result, the system complained when the code tried create a new instance from a method such as Âtitle: text:Â.
I suppose I might have missed the place where this was explained in the MOOC, although IÂm not sure it was emphasized early on in the lessons. However, a suggestion would be that if you ever update the exercises that a notice be added warning students of the difference, at least in the first few exercises where there is so much to learn and remember. IÂm doing it in French, so it might look like this:  NÂoubliez pas la différence entre ÂTBPost >> et ÂTBPost class >>Â. Le premier indique quÂil sÂagit dÂune méthode dÂinstance. Le second indique quÂil sÂagit dÂune méthode de classe. Vous devez cliquer le bouton ÂClass pour accéder à la section correspondante. Dans la section pour lÂinstance, la définition débute par ÂObject subclass: #TBPost alors que dans la section pour la classe, la définition débute par ÂTBPost classÂ.  By the way, congrats on the great work providing those resources. I love the advice to poke around the system with the Browser and the Finder to find out stuff. Thanks.