When you have files in your .gitignore they won't be considered for changes, but still you might want to...

Exception notifications contain a lot of information: Backtraces, HTTP headers, etc. exception_notification tries its best to format this wall...

smartinez87.github.io

The new exception_notification has awesome options like :ignore_crawlers => true and :ignore_if => lambda {...

...}. These options should be helpful...

We tend to use database transactions as a magic bullet to get rid of all our concurrency problems. When things...

Consul 0.9 comes with many new features to optimize powers that only check access to a given record. e.g. Power.current.post...

For websites that don't do JavaScript rendering on the client, it's best practice to put script tags at...

jimneath.org

The linked page lists and explains global Ruby "dollar" variables, such as: $: (load path) $* (ARGV) $? (Last exit status) $$ (PID)

makandra dev

Using CSS sprites for background images is a technique for optimizing page load time by combining smaller images into a...

stackoverflow.com

The ipad onscreen keyboard changes position:fixed style to position:static that misplaces those elements and you'll have problems...

makandra dev

Next time you have to do more than trivial CSS changes on a project, you probably want to have live...

1. Saving files to a directory that is not shared between deploys or servers If you save your uploads to...

This card shows how to upgrade a Rails 2 application from Rails 2.3.8 through every single patch level up to...

The Rails secret_token must be unique for each application and any instance of it. If not, someone could exploit...

Merge requests are often rejected for similar reasons. To avoid this, before you send a merge request, please confirm that...

The Ruby on Rails security list archive can be found here: http://groups.google.com/group/rubyonrails-security You can subscribe to this mailing...

Our development process makes us deploy very often. As the number of releases grows, junk clogs up the hard drive...

makandra dev
askubuntu.com

Good article that tells you how to change behavior of certain keys via xmodmap (with the help of exv if...

If you want a widget for awesome that runs a command regularly (every X seconds) and puts the output into...

When you need to find out in which kind of spec you are during run-time, it's definitely possible...

Sometimes you need a piece of code to do something different for specs than for features. If you don't...

Sometimes you want git to ignore certain files that appear on your machine. You can do this in 3 ways...

railway.at

Note: These instructions are for a quick per-project setup and may require you to change code. If you generally...

makandra dev
wikihow.com

Issue this command: sqlite3 ~/Library/Application\ Support/Dock/*.db "DELETE from apps WHERE title='APP_NAME';" && killall Dock This tells sqlite3 to...

When HTTP clients make an request they can define which response formats they can process. They do it by adding...