Reactive programming is a concept that is finally gaining some popularity among programmers. It makes it easier to think in data flows and to manage and work with them. Instead of imperative programming, you’re thinking about code as a series of processes that take place on streams. This is similar to the conceptual shift to… Continue reading Reactive Programming with JavaScript, Ruby and Python
Month: April 2018
Speeding up Ruby on Rails Tests and RSpec
There comes a time in the life of every Ruby on Rails project where you and your team will end up with long running tests. Rails tests can contain factories, fixtures and lots of setup procedures before tests are executed, and all of these can contribute to major slowness in the test runs. I’ve seen… Continue reading Speeding up Ruby on Rails Tests and RSpec