StaticMatic is a nice tool to build simple static websites. In case you want to have some nifty styles on...

makandra dev

Trick: Do not use convert but mogrify: mogrify -resize 50% * This overwrites the original image file. In contrast, convert writes...

If you type a command in your bash that doesn't exist you get this: bash: foo: command not found...

Note: Modern Rails has two build pipelines, the asset pipeline (or "Sprockets") and Webpacker. The principles below apply for both...

The step definition below allows you to write: Then I should see an HTML redirect to "http://www.makandracards.com" in the...

funtoo.org

Keychain helps you to manage ssh and GPG keys in a convenient and secure manner. It acts as a frontend...

lab.hakim.se

Stuff like this is now possible in Webkit browsers, Firefox and IE10.

We frequently use the handy Paperclip Gem to manage file attachments. If you need to move the files from local...

rubyforge.org

Under certain circumstances gettext_i18n_rails will hit a near-infinite loop. This occured in Rails 2.3.5 with Haml 3.0.18...

youtube.com

Interesting interview with DHH, where he talks about how they made the new Basecamp feel very fast without using a...

makandra dev
github.com

pjax loads HTML from your server into the current page without a full reload. It's ajax with real permalinks...

makandra dev

If a customer calls and tells you that she cannot see some content of her website beware of the following...

If you have an html_safe string, you won't be able to call gsub with a block and match...

If (for some reason that you don't want to ask yourself) you need to know all classes that define...

If you want to update some records with boolean fields in a migration, always remember to set your values with...

In a nutshell: return statements inside blocks cause a method's return value to change. This is by design (and...

A print stylesheet is easy to create. Choose a font suited for paper, hide some elements, done. Unfortunately print stylesheets...

With the the Ruby Tempfile class you can create temporary files. Those files only stick around as long as you...

makandra dev

This article describes how to reset MySQL's or MariaDB's root password on your workstation. It's meant for...

There are many fun Unicode characters like ▲ or ☯. You might be tempted to use them for graphical elements in lieu...

sudo apt-get install gnome-session-fallback or (alias) sudo apt-get install gnome-panel from a terminal.

Assuming the following sunspot setup of the post class: class Post < ActiveRecord::Base searchable do text :title string :state

Note: Instead of using the method in this card, you probably want to use ActiveType's nested attributes which is...

When committing, you should always check the diff of your changes so you don't include any leftovers or irrelevant/bad...