“We are what we repeatedly do. Excellence, then, is not an act, but a habit.” — Aristotle
Gu (Backpack CMS) new theme & Heroku demo
Gu, my Rails app enabling you to use Backpack as a simple CMS, now has a nicer looking default theme! You can also find a demo running on Heroku which is powered by my own Backpack account. I also added some rudimentary query caching and fixed a couple of bugs.
See a preview of the theme below, or feel free to check out the updated version on Github. Any patches and/or ideas very welcome.

Jasmine Pearls Green Tea
This is really nice, I drink about 5 cups of it a day.
Best method ever?
module AdsHelper
def show_ads?
true
end
end
I wrote this the other day. Pure genius.
RubyGems version specification tip
RubyGems version string “~> 2.5.1” will look for any 2.5.x version, greater than or equal to 2.5.1. For example in Rails:
config.gem 'mygem', :version => '~> 2.5.1'

