Hacker News new | ask | show | jobs
by darkandbrooding 1917 days ago
https://github.com/The-Complete-Guide-to-Rails-Performance

I learned quite a bit about ruby memory mgmt from the above. Free text, pay for video tutorials IIRC. The course was authored by Nate Berkopec.

https://www.youtube.com/user/nateberkopec

I also found "the well grounded rubyist" to be very helpful.

https://www.manning.com/books/the-well-grounded-rubyist-thir...

1 comments

The Well-Grounded Rubyist is my favorite Ruby book because it really drives home just how internally consistent the Ruby object model is. It gave me a deep appreciation for the aesthetics of Ruby.
This. Ruby’s syntax sugar makes it easy for newcomers to miss the elegance of what’s actually happening with everything being an object and every expression reducing to passing messages between objects. When you dig in and really understand what’s going on, the lightbulb moment is very neat.