Customizable font for programming.
When you have an Angular directive that transcludes content, you might want to do something in case there is no...
See attached link. The gist is: .element { position: relative; top: 50%; transform: translateY(-50%); } Works in all web browsers and...
Directly from the MySql docs: There are three likely causes for this error message. Usually it indicates network connectivity trouble...
Great gem to consume RSS feeds. I was missing some features on Ruby's RSS::Parser that I found in...
TL;DR In blueprints, always wrap associations in blocks. # Broken Task.blueprint(:vacation) do project Project.make(:vacation) hours 8 accounting_method...
So you erased a whole day's work? There is hope! The linked article tells how to recover from an...
In Cucumber, scenario outlines help avoiding tests that are basically the same, except for a few variables (such as different...
So you have placed a breakpoint somewhere and now want to dig around, but not even inspecting variables is working...
Open a MySQL root shell and use this command: PURGE BINARY LOGS BEFORE DATE(NOW() - INTERVAL 3 DAY) + INTERVAL 0...
Amazing guide how to divide a ball of Javascript spaghetti distinct separate layers (model, view, controller, backend adapter).
Parses URLs of social networks to extract IDs or screen names. It does not get confused by child routes: you...
Previously the assets group existed to avoid unintended compilation-on-demand in production. As Rails 4 doesn't behave like...
Run this command to list the authors of the most recent commit of each branch: git for-each-ref --format...
When you don't only have a favicon.ico in your project but also PNGs of different sizes and backgrounds, you...
Spreewald 1.1.0 drops the be_true and be_false matchers in order to be RSpec 3 and Ruby 2 compatible...
Provides an easy way to retrieve Google Page Rank, Alexa Rank, backlink counts, and index counts.
When making cross-domain AJAX requests with jQuery (using CORS or xdomain or similar), you will run into issues with...
Safari on iOS accepts an apple-touch-icon favicon that is used for stuff like desktop bookmarks. Always define a...
Code snippet tested with Rails 2.3 def index # ... if request.xhr? html = render_to_string(:partial => "list", :layout => false) respond_to...
Automagically makes XHR requests work cross-domain by tunneling all communications through an IFRAME on your page.
The attached post shows some alternative ways to define Strings in Ruby using the percent notation. This can be useful...
This actually works: class Klass def initialize `hi world` end def `(message) puts "Called with backticks: #{message}" end end
Spreewald now has a spreewald binary that lists all available steps, optionally filtering them. Example: $> spreewald # All Spreewald steps