Checkout the blog post for the whole story.
Setup Bower and install components:
npm install -g bower
bower install
Before deploying to Heroku, switch to the multi buildpack:
Checkout the blog post for the whole story.
Setup Bower and install components:
npm install -g bower
bower install
Before deploying to Heroku, switch to the multi buildpack:
# show keyboard shortcuts (app/views/shared/_keyboard_shortcuts_help.slim) | |
# display help | |
Shortcutter.Keyboard.bindShortcut '?', 'Show/hide this help dialog', -> | |
$('#keyboard-shortcuts-help').modal('toggle') | |
false | |
# focus on search | |
Shortcutter.Keyboard.bindShortcut '/', 'Focus on the "Search" form at the top', -> |
#!/bin/bash -e | |
PREV_PWD=`pwd` | |
mkdir -p "$HOME/tmp" | |
cd "$HOME/tmp" | |
echo "-----> Cloning into $1" | |
heroku git:clone -a $1 | |
cd $1 | |
echo "-----> Setting stack to cedar" |
I had to make a simple change to all the strings in a table, and I was dreading having to load them into memory, iterate over them, searching for the string, and updating replacements. So instead, I learned that postgresql can actually do regex replacements in an update statement.
For example, if I have a links
table with a url
column with a bunch of URLs erroneously ending in "?":
Link.where("long_url like '%?'").count #=> 487185
module Constraint | |
class Staff | |
def matches?(request) | |
warden(request).authenticated? && | |
warden(request).user.staff? | |
end | |
private |
The MIT License (MIT) | |
Permission is hereby granted, free of charge, to any person obtaining a copy of | |
this software and associated documentation files (the "Software"), to deal in | |
the Software without restriction, including without limitation the rights to | |
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | |
the Software, and to permit persons to whom the Software is furnished to do so, | |
subject to the following conditions: | |
The above copyright notice and this permission notice shall be included in all |
# A user session class, a simplified mix of the following code samples: | |
# * https://github.com/blog/1661-modeling-your-app-s-user-session | |
# * http://www.jonathanleighton.com/articles/2013/revocable-sessions-with-devise/ | |
class Session < ActiveRecord::Base | |
# Uncomment if you use Hobo Fields, else add these yourself | |
# fields do | |
# session_id :string, :index => true, :unique => true | |
# accessed_at :datetime | |
# user_ip :string |
fsync = off | |
synchronous_commit = off | |
full_page_writes = off |
# Goal: put a non-Rails-aware Ruby library using normal `require`s in | |
# lib/sim. Have it transparently reloaded between requests like Rails app | |
# code is. | |
# | |
# The code here goes inside of your configure block in | |
# config/environments/development.rb. There are two parts, commented inline. | |
# Reload code whenever the simulator changes. | |
config.watchable_dirs["lib/sim"] = [:rb] | |
config.watchable_files << "lib/sim.rb" |