Exclude Some Stylesheets in Rails 4 18 Nov 2014 Ruby on Rails CSS Exclude Some Stylesheets in Rails 4 Rails 4 uses asset pipeline to concatenate and minify or compress JavaScript and CSS assets. It creates a default app/assets/stylesheets/application.css file
Javascript Prototype and Inherance 10 Nov 2014 Javascript Programming Javascript Prototype and Inherance We know that one way of Javascript supporting inherence is through prototype/__proto__. var accord = {make: 'Honda', model: 'accord'} var civic
Fix Homebrew After Upgrade to Yosemite 04 Nov 2014 Mac Yosemite Homebrew Fix Homebrew After Upgrade to Yosemite I have been on Snow Leopard for years. My mac book air is almost 4 years old and I don't think I'
Closure in Javascript, Ruby and Python 01 Oct 2014 Javascript Ruby Python functional programming Closure in Javascript, Ruby and Python Closure is after an outer function returns, when inner function is called, it still has access to the outer function's defined variables. In
Button Behavior Inside a Form 10 Sep 2014 Ruby on Rails HTML Button Behavior Inside a Form A form is usually associated with a submit button. In Rails, you typically have a form specified as following: (if use form_for helper) <