React Feature Flags in React Almost every feature in Product Hunt starts with a feature flag. Here is how to have feature flags with React.
React Handling Paths in React Application React Router uses the Link component for specifying url. This string works but doesn't protect us from mistyping and other issues.
React Flow as Replacement for PropTypes Why using Flow is better than user React.PropTypes for handing prop validations.
Rails Rails 5 Features, I'm Excited About I'm more excited about the smaller new features in Rails 5, which would not change my life, but will make it a bit easier.
React Using "data-test" in Tests A better approach for selecting elements during testing, than using custom class names.
Rails Retrying ActiveJob One missing feature from ActiveJob is the ability to retry when a job fails. Here is how to implement it.
Rails Rails Anti-Pattern: Setting View Variables In Before Actions In a lot of Rails project I'm seeing view assignments from before actions. I don't like this pattern. Here is why.
open_source Introducing MiniForm Introducing my newest gem - MiniForm. It is group of helpers for dealing with form objects and nested forms.
Rails Dealing With Form Objects in Rails Tutorial about handling complicated nested forms with Ruby on Rails.
ruby Preserving Named Arguments On Inheritance Ruby doesn't care very much carrying when you overwrite a method. The method is just replaced by the new method. But what happens with named arguments?