- RubyHack 2019 - The Circle of Lifecycle Events by Nelson Wittwer
- 7 Patterns to Refactor Fat ActiveRecord Models
- We can optionnally use cgriego/active_attr
- ActiveModel::Attributes が最高すぎるんだよな。 - Qiita
trap("SIGINT") { exit! } | |
total_width = `stty size`.scan(/\d+/)[1].to_i # terminal width | |
snowflakes = {} | |
puts "\033[2J"; # clearing output | |
loop do | |
snowflakes[rand(total_width)] = 0 |
# Function to create a new Heroku app instance using the ruby Heroku Platform API | |
# | |
# Documentation: | |
# https://devcenter.heroku.com/articles/setting-up-apps-using-the-heroku-platform-api | |
# https://devcenter.heroku.com/articles/platform-api-reference#app-setup | |
# https://github.com/heroku/platform-api | |
# https://heroku.github.io/platform-api | |
# | |
# Add the gem 'platform-api' | |
require "platform-api" |
Ideas are cheap. Make a prototype, sketch a CLI session, draw a wireframe. Discuss around concrete examples, not hand-waving abstractions. Don't say you did something, provide a URL that proves it.
Nothing is real until it's being used by a real user. This doesn't mean you make a prototype in the morning and blog about it in the evening. It means you find one person you believe your product will help and try to get them to use it.
# Bulk API design | |
# | |
# resources :posts | |
class PostsController < ActiveController::Base | |
# GET /posts/1,4,50,90 | |
# post_url([ @post, @post ]) | |
def show_many | |
@posts = Post.find(params[:ids]) | |
end |