Due to network or hardware failures, it can happen that one of your cronjobs will not run at the time...
When you have an Angular directive that transcludes content, you might want to do something in case there is no...
Great gem to consume RSS feeds. I was missing some features on Ruby's RSS::Parser that I found in...
You know each_with_index from arrays: ['hello', 'universe'].each_with_index do |value, index| puts "#{index}: #{value}" end
TL;DR In blueprints, always wrap associations in blocks. # Broken Task.blueprint(:vacation) do project Project.make(:vacation) hours 8 accounting_method...
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...
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...
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...
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.
Spreewald now has a spreewald binary that lists all available steps, optionally filtering them. Example: $> spreewald # All Spreewald steps
The debugger gem does not seem to be properly working on Ruby 2. Use byebug instead! Byebug is a simple...
Be careful to name any file @imported by SASS with a leading underscore. SASS files not beginning with an underscore...
Skype has been updated to 4.3 on Linux. This fixes group chat issues with non-linux clients.
Automatically builds gems from Bower packages (currently 1700 gems available). Packaged Javascript files are then automatically available in your asset...
SudoSlider is a simple yet powerful content slider that makes no (or very few) assumptions about your markup and is...
This card describes how to pass an array with multiple element to a JavaScript function, so that the first array...
So you're getting an error message like the following, although your Gemfile lists shoulda-matchers and it has always...
If you have some file or directory that should trigger a Spring reboot, tell Spring e.g. in config/spring.rb: Spring.watch 'file.rb...