CSS transitions are a simple animation framework that is built right into browsers. No need for Javascript here. They're...
There are several ways to merge two (or more) PDF files to a single file using the Linux command line...
Example (broken in IE): flex: 0 1 calc(50% - 20px) Workaround: flex-basis: calc(50% - 20px) flex-grow: 0 // Default...
Rails is split into a large number of (sub-) frameworks. The most important and central of those are activesupport (extends...
When upgrading Clearance, pay attention whether the password hashing strategy might have changed. Old clearance versions (< 1.0) used SHA1-encrypted...
You can share a state in Ruby with global variables. Even if you should avoid them whenever possible, for debugging...
General hints on the DOM the root of the DOM is document custom elements inherit from HTMLElement. They need a...
When an AJAX request raises an exception on the server, Rails will show a minimal error page with only basic...
collectd5 in version 5.9.0 is broken and you upgraded it everywhere. But because it's FreeBSD it does not...
Two weeks ago, Cloudflare was struck by a global outage that lasted ~30 minutes. The incident was rooted on a...
webpack is a very powerful asset bundler written in node.js to bundle (ES6) JavaScript modules, stylesheets, images, and other assets...
From Ubuntu 17, rbenv fails to install Ruby below 2.4 because of a mismatching OpenSSL dependency: it needs libssl1.0-dev for...
git apply allows you to apply a diff onto your HEAD. Most often you can achieve the same result with...
RubyMine comes with a nice way to grep through your project's files: The finder (ctrl + shift + f). Don't...
Element finding is a central feature of Capybara. Since #find is normally used to get elements from the current page...
Jasmine has long standing support for writing asynchronous specs. In days gone by we used the done callback to achieve...
The goal is to get Jasmine specs running in a Rails project using Webpacker, with the browser based test runner...
If rspec hangs with no output and you dont get a backtrace neither with --backtrace nor by just killing it...
In Ruby on Rails, all objects have a useful blank? method. It returns true for nil but also for empty...
Travis changed their default distribution from Ubuntu 14.04 (trusty) to 16.04 (precise). This might break your test setup for new...
Not all versions of Node.js are compatible with each other. Also npm packages may require a minimum or maximum version...
When you update your ChromeDriver to version 75 or beyond, you might get w3c errors in your tests.
Cucumber up to version 2 had a neat feature called Step Argument Transforms which was dropped in favor of Cucumber...
When deploying with capistrano it's possible you get this "error" message: *** [err :: example.com] There are no Phusion Passenger-served...