Those of you who are already familiar with JITs and how they work might want to skip directly to the interview, the rest of us are going to hang out for a minute and learn about how things presently work in Ruby, and what it is exactly that the MJIT would change. How does a … Continue reading MJIT: A Method Based Just-in-time Compiler for Ruby
Ruby programming language
How Ruby block works
Blocks are one of the most powerful and often overlooked feature of ruby. I must confess that it took me a while to figure out how ruby blocks work and how they can be useful in practice. There is something about yield that makes blocks very hard to understand at first. I’m going to talk … Continue reading How Ruby block works