An unresponsive service can be worse than a down one. It can tie up your entire system if not handled...
...styling advice that's mainly taken from SMACSS. Although at makandra we're using BEM instead of SMACSS, here's my favorites. Do not use ID's in CSS Selectors...
...a page so do not use ID's for CSS. Id's are much better used as javascript hooks so use them for this instead. .list {…} instead of #list {…}
The rubocop binary has a few interesting flags: rubocop (using the --parallel default ) scans the current repository for linting issues...
Currently, only up to 500 rows of Analytics table data can be exported at a time into CSV format. If...
On my Ubuntu MATE machine, switching applications with ALT + TAB was impossible, because it took nearly 2 seconds. The culprit...
A collection of code snippets which return a boolean value for a regex comparison. regexp.match?(string) # Recommended for Ruby >= 2.4...
DTAUS & DTAZV are formats for German bank transfers and is short for "Datenträgeraustausch". The format itself totally sucks because it...
When writing a story description in Pivotal Tracker, there is now a tiny button at the bottom of the description...
If you plan to insert an existing PDF into a new LaTeX document that you will compile to PDF, you...
If you use Tempfile and pass your own filename containing an extension, it will just be consumed by the Tempfile...
Google’s Font Directory and API for web fonts could have a transformative effect on how we read the web...
...Open Source software. It's about assessing your real needs and understanding the cost-benefit balance before making significant financial decisions. Don't try to dust your crops with a...
Rails also autoloads classes on demand during development. This means every request begins with none of your models, controllers, loaded. Whenever Ruby encounters a constant name it doesn...
If your pidgin IM fails to connect to ICQ, you may need to update it. The ubuntu default sources are...
When running an executable, ALWAYS use bundle exec. In some cases, running executables without bundle exec may work, if the...
Touch devices have their own set of events like touchstart or touchmove. Because mobile browsers should also work with with...
A week after Tommy Refenes (Super Meat Boy) declared the Apple App Store to be the Tiger Electronics handheld of...
The linked article has a great explanation how to to deal with string encodings in Ruby. Furthermore you can check...
If you recorded a bad fix for a conflict, you can tell git to forget that bad resolution:
PhantomJS is a minimalistic headless WebKit. It has fast and native support for various web standards: DOM handling, CSS selector...
Our awesome collection of rspec helpers (formerly known as "spec_candy.rb") is now available as a gem. It works, it is...
Applications must be originally written in Objective-C, C, C++, or JavaScript as executed by the iPhone OS WebKit engine...
Sometimes modern Javascript projects get out of hand. A major culprit in this can be the messy handling of asynchronous...
This post will describe how I stumbled upon a code path in the Linux kernel which allows external programs to...