Tutorials

Ola Bini: Programming Language Synchronicity: Ruby Metaprogramming techniques
Ruby allows you to create and modify classes and modules dynamically. You can do almost anything you would like on any class or module that isn't frozen. This is very useful in certain places. The Struct class is probably the best example, where.







RuboCoping with legacy: Bring your Ruby code up to Standard
You will hardly find a Ruby developer who hasn’t heard about RuboCop, the Ruby linter and formatter. And still, it is not that hard to find a project where code style is not enforced. Usually, these are large, mature codebases, often successful on...


Using Rack::Proxy to serve multiple React Apps on the same domain. – Josh Software
Now while calling API from any React app we need to send the token with it. Since the token is stored in local storage by Auth App which is using a different port so the local storage will not be accessible for other react apps.You may think “Why ...