Vadim Venediktov
Vadim Venediktov
Can I compare two objects in different currencies? I've searched throug the issues and found only [this](https://github.com/RubyMoney/money/issues/377) thread. Where only equality is discussed. I wonder if understanding which on is...
It would be awesome to avoid retyping bem-prefix every time while writing code in haml/rhtml template. I wonder one can add a preprocessor or something to convert ``` ``` into...
Tried both ``` setFixtures(sandbox({class:'First'}, {class:'Second'})); ``` and ``` setFixtures(sandbox([{class:'First'}, {class:'Second'}])); ``` None worked. Is there a way to create some complex stuff using sandbox?
Whatever text I pass as an argument I always get something like this:  ``` rb > require 'magick_title' => true > MagickTitle.options[:font] = 'Lato-Medium.ttf' => "Lato-Medium.ttf" > MagickTitle.say("Hello!") =>...
As the [MDN web docs](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/metaKey) says `metaKey` is the Windows key. ``` js // You can send a message with cmd/ctrl+enter input.addEventListener("keydown", event => { if (event.keyCode === 13 &&...