Many of our developers love to use the "awesome" window manager on Linux. However, RubyMine dialogs occasionally defocus while typing...
When you have a localized website, you may want to redirect users to their preferred language when they visit the...
fake_stripe spins up a local server that acts like Stripe’s and also serves a fake version of Stripe.js...
When dealing with time zones in Rails, there is one key fact to keep in mind: Rails has configurable time...
When building a form with a file select field, you may want to offer your users a live preview before...
You will need to look here and find your own device. Look for the "bootable CD" download, which will give...
Instead of using this hack you might want to use MariaDB 10.x which can work with both old and...
jQuery's deferred objects behave somewhat like standard promises, but not really. One of many subtle differences is that there...
Current webkit browsers like Chrome and Safari have a special variable in their consoles that refers to the selected DOM...
Some modern Javascript APIs return iterators instead of arrays. In plain Javascript you can loop through an iterator using
To upload a file via AJAX (e.g. from an ) you need to wrap your params in a FormData object.
If you want to perform a failover on another haproxy backend server this is the way you should do it...
Brendan Gregg is the Linux performance god. Use the information in this link to find out what ways there are...
Chrome has discontinued support for 32-Bit Linux builds and this might break your apt-get update.
If you are on a Linux shell and want to open a file with whatever default application is configured for...
If you want to configure your nginx to drop connections to a specific location, you can do so by responding...
The following sums up all connections (ESTABLISHED, TIME_WAIT, FIN_WAIT, etc.) and sorts it: netstat -n | awk ' $5 ~ /^[0...
When you're facing a somewhat complex Google Analytics setup and want to find out what's happening, you can...
A HTTP 302 Found redirect to PATCH and DELETE requests will be followed with PATCH or DELETE. Redirect responses to...
To install gems Bundler needs to be able to talk to https://api.rubygems.org. If you are behind a proxy you...
During debugging you might pepper your code with lines like these: console.log('foo = ' + foo + ', bar = ' + bar) I recommend to use...
Geordi is now (partially) tested with Cucumber. Yay! geordi cucumber supports a new @solo tag. Scenarios tagged with @solo...
Using Scenic, you can bring the power of SQL views to your Rails application without having to switch your schema...